]> git.saurik.com Git - bison.git/blob - ChangeLog
0356af2abb534165d0a2bd8c19e204eb99004932
[bison.git] / ChangeLog
1 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
2
3 Document gcc -Wundef fix.
4 * NEWS (2.4.2): Here.
5 * THANKS (Jonathan Nieder): Add.
6
7 2009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
8
9 Avoid warnings from gcc -Wundef y.tab.c.
10 * data/glr.c: Check if YYENABLE_NLS and YYLTYPE_IS_TRIVIAL are
11 defined before using them.
12 * data/lalr1.cc: Likewise.
13 * data/yacc.c: Likewise.
14
15 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
16
17 Import M4 detection fix from Autoconf.
18 Reported by Eric Blake.
19 * m4/m4.m4: Copy serial 10.
20
21 2009-12-14 Joel E. Denny <jdenny@clemson.edu>
22
23 Enable assertion output and --disable-assert for configure.
24 * bootstrap.conf (gnulib_modules): Add assert module.
25 * src/system.h (aver): Define as assert, and summarize the
26 discussion on this issue.
27
28 2009-10-11 Joel E. Denny <jdenny@clemson.edu>
29
30 portability: use va_start and va_end in the same function.
31 * src/complain.c (error_message): Move va_end from here...
32 (ERROR_MESSAGE): ... to here.
33
34 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
35
36 tests: skip tests of file names that platform does not support.
37 Reported by Michael Raskin at
38 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
39 * THANKS (Michael Raskin): Add.
40 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
41 to fail at least for file names containing ":" or "\".
42
43 2009-09-16 Akim Demaille <demaille@gostai.com>
44
45 doc: spell checking.
46 * doc/bison.texinfo: here.
47
48 2009-09-13 Joel E. Denny <jdenny@clemson.edu>
49
50 tests: clean up push.at test group titles.
51 * tests/push.at: Remove "Push Parsing: " from test group titles
52 because these are already under the banner "Push Parsing Tests".
53
54 2009-09-03 Akim Demaille <demaille@gostai.com>
55
56 * NEWS (2.4.2): Add "Internationalization" item.
57
58 2009-09-03 Akim Demaille <demaille@gostai.com>
59
60 bootstrap: fix/improve find_tool.
61 * bootstrap (find_tool): Improve error messages.
62 Fix typo about find_tool_names.
63
64 2009-08-27 Eric Blake <ebb9@byu.net>
65
66 scan-gram: avoid portability trap with ctype usage.
67 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
68 Avoid compiler warning.
69
70 2009-08-27 Joel E. Denny <jdenny@clemson.edu>
71
72 tests: use perl for printing special sequences to files.
73 And skip tests if perl is not available. This is better than
74 playing tricks with shell portability. Suggested by Akim
75 Demaille.
76 * tests/input.at (Bad character literals): Use it here for
77 omitting final newlines.
78 (Bad escapes in literals): Use it here for special characters.
79
80 2009-08-21 Joel E. Denny <jdenny@clemson.edu>
81
82 Use locale when quoting.
83 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
84 quote rather than implementing quoting here.
85
86 2009-08-20 Eric Blake <ebb9@byu.net>
87
88 Make previous patch more robust.
89 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
90 argmatch.h.
91 (output_skeleton): Use it.
92 Suggested by Akim Demaille.
93
94 Import latest m4/m4.m4.
95 * m4/m4.m4: Copy from autoconf 2.64.
96 * configure.ac (M4_GNU_OPTION): New define.
97 * src/output.c (output_skeleton): Use it to resolve FIXME.
98 * NEWS: Mention this.
99
100 2009-08-19 Joel E. Denny <jdenny@clemson.edu>
101
102 Fix complaints about escape sequences.
103 Discussed starting at
104 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
105 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
106 For a \0 and similar escape sequences meaning the null
107 character, report an invalid escape sequence instead of an
108 invalid null character because the latter does not actually
109 appear in the user's input.
110 In all escape sequence complaints, don't escape the initial
111 backslash, and don't quote when the sequence appears at the end
112 of the complaint line unless there's whitespace that quotearg
113 won't escape.
114 Consistently say "invalid" not "unrecognized".
115 * tests/input.at (Bad escapes in literals): New.
116
117 2009-08-19 Akim Demaille <demaille@gostai.com>
118
119 doc: %initial-action to initialize yylloc.
120 Reported by Bill Allombert.
121 * doc/bison.texinfo: Set fill-column to 76.
122 (Location Type): Document the use of %initial-action to initialize
123 yylloc.
124
125 2009-08-18 Joel E. Denny <jdenny@clemson.edu>
126
127 maint: update for gnulib's recent update-copyright changes
128 * gnulib: Update.
129 * .x-update-copyright (COPYING): Add as it's no longer implied
130 when .x-update-copyright is present.
131 * cfg.mk (update-copyright-local): Remove, now ignored.
132 (update-copyright): Declare update-b4-copyright as a dependency.
133
134 2009-08-17 Akim Demaille <demaille@gostai.com>
135
136 build: lower gettext requirements.
137
138 Bison was uselessly requiring the formatstring macros from
139 gettext, which resulted in mo files not being installed on systems
140 that perfectly supported Bison mo files. Lower the requirement.
141 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
142
143 * configure.ac: Require need-ngettext instead of
144 need-formatstring-macros.
145 Reported by Martin Jabocs.
146 Suggested by Bruno Haible.
147 * INSTALL: Restructure.
148 (Internationalization): New.
149
150 2009-08-14 Joel E. Denny <jdenny@clemson.edu>
151
152 maint: fix use of copyright year intervals.
153 * gnulib: Update.
154 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
155 as now recommended in gnulib/NEWS.
156 * build-aux/update-b4-copyright: Fix.
157 * cfg.mk (update-copyright-env): Configure update-copyright.
158
159 2009-08-12 Akim Demaille <demaille@gostai.com>
160
161 distcheck: fix.
162
163 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
164
165 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
166
167 maint: run "make update-copyright"
168 But first...
169 * .x-update-copyright (^data/m4sugar/): Add, because these
170 files are from Autoconf.
171
172 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
173
174 maint: make update-b4-copyright easier to use
175 * build-aux/update-b4-copyright: In warnings, report line
176 numbers rather than character positions.
177 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
178 that update-copyright runs it.
179 * gnulib: Update.
180
181 2009-08-05 Joel E. Denny <jdenny@clemson.edu>
182
183 maint: clean up update-b4-copyright code
184 * build-aux/update-b4-copyright: Do not accept 2-digit
185 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
186 Don't accept a `[' in a b4_copyright argument.
187 Format code more consistently.
188 Don't assume b4*copyright never occurs.
189
190 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
191
192 maint: automate b4_copyright updates.
193 * Makefile.am (update-b4-copyright): New target rule.
194 * build-aux/Makefile.am (EXTRA_DIST): Add update-b4-copyright.
195 * build-aux/update-b4-copyright: New.
196 * data/yacc.c: Remove stray characters around b4_copyright
197 invocations.
198
199 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
200
201 maint: automate annual package-wide copyright-year update.
202 * .x-update-copyright: New.
203 * Makefile.am (EXTRA_DIST): Remove maint.mk.
204 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
205 update-copyright. Remove gnumakefile, which is implied by
206 maintainer-makefile.
207 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
208 * gnulib: Update.
209 * maint.mk: Remove, now copied from gnulib.
210 * examples/extexi: Add missing "(C)" in copyright statement so
211 update-copyright can recognize it.
212 * src/LR0.h: Likewise.
213 * src/print.h: Likewise.
214 * src/print_graph.h: Likewise.
215 * src/gram.c: Add missing comma in copyright statement.
216 * src/gram.h: Likewise.
217
218 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
219
220 Fix "make distcheck".
221 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
222 of just calc.stamp.
223
224 2009-08-01 Joel E. Denny <jdenny@clemson.edu>
225
226 Pacify "gcc -Wunused" for the input function from Flex.
227 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
228 and later.
229 * src/scan-code.l: Add "%option noinput", which I cannot find in
230 the Flex manual, but which Flex has supported since at least as
231 far back as 2.5.4. However, if any of our developers still use
232 Flex 2.5.4, they'll need to stop configuring with
233 --enable-gcc-warnings because "%option noinput" didn't work
234 correctly until Flex 2.5.6.
235 * src/scan-gram.l: Likewise.
236 * src/scan-skel.l: Likewise.
237
238 2009-06-29 Akim Demaille <demaille@gostai.com>
239
240 build: avoid concurrent extraction of calc++.
241 * examples/calc++/Makefile.am (calc.stamp): New.
242 Depend on it to create the sources of calc++ so that concurrent
243 builds don't launch several "extexi" in parallel.
244 Not only this is inefficient, this also builds incorrect sources
245 with several extractions mixed together.
246
247 2009-06-25 Akim Demaille <demaille@gostai.com>
248
249 hash: check insertion for memory exhaustion.
250 * src/uniqstr.c (uniqstr_new): New.
251
252 2009-06-11 Akim Demaille <demaille@gostai.com>
253
254 hash: check insertion for memory exhaustion.
255 * src/muscle-tab.c (muscle_insert, muscle_grow)
256 * src/state.c (state_hash_insert): Check the return value of
257 hash_insert.
258
259 2009-06-10 Akim Demaille <demaille@gostai.com>
260
261 gnulib: update.
262 * gnulib: Update to latest.
263 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
264 * m4/.gitignore: Regen.
265 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
266 Call xalloc_die on hash_insert failures.
267 Requested by the new __warn_unused_result__ attribute of
268 hash_insert.
269
270 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
271
272 * data/c++.m4: Update copyright year.
273
274 2009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
275
276 Handle a trailing `:' in a user-supplied C++ namespace better.
277 * data/c++.m4 (b4_namespace_close): Don't let it be printed
278 among the closing braces here. This fix might make the
279 generated code easier to debug, but otherwise it should be
280 insignificant because a trailing `:' is a C++ error already.
281
282 2009-05-11 Akim Demaille <demaille@gostai.com>
283
284 doc: use C++ headers.
285 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
286 headers.
287
288 2009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
289
290 Declare %code to be a permanent feature.
291 * NEWS (2.4.2): Here.
292 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
293 experimental.
294 (Decl Summary): Likewise.
295
296 2009-04-14 Akim Demaille <demaille@gostai.com>
297
298 doc: minor fixes.
299 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
300 (Table of Symbols): Remove duplicate entry for %debug.
301
302 2009-04-06 Eric Blake <ebb9@byu.net>
303
304 Work around autoconf 2.63b bug in testsuite.
305 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
306 autoconf bug related to # in test.
307
308 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
309
310 Fix options documentation.
311 * build-aux/cross-options.pl: As in --help output, write optional
312 arguments as [=ARG] not =[ARG].
313 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
314
315 2008-11-07 Akim Demaille <demaille@gostai.com>
316
317 Fix --help.
318 * src/getargs.c (usage): Fix help string for -W.
319
320 2008-11-07 Akim Demaille <demaille@gostai.com>
321
322 Handle more general types of option arguments.
323 * build-aux/cross-options.pl: The argument ends at the first
324 space, not the first non-symbol character.
325 Use @var for each word appearing the argument description.
326
327 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
328
329 Remove spurious initial empty lines.
330 * data/location.cc: End the @output lines with an @.
331
332 2008-11-04 Akim Demaille <demaille@gostai.com>
333
334 Remove spurious initial empty lines.
335 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
336 * data/yacc.c: End the @output lines with an @.
337
338 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
339
340 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
341 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
342 requirements for a correct m4 are stricter.
343 * m4/m4.m4: Replace with Autoconf 2.63's m4/m4.m4.
344 * configure.ac: Update to use AC_PROG_GNU_M4.
345 Reported by Eric Blake.
346
347 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
348
349 Help with updating web manual.
350 * HACKING: Incorporate instructions from gnulib/doc/README.
351 * bootstrap.conf (gnulib_modules): Add gendocs.
352
353 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
354
355 Fix strange %define locations for default values.
356 Reported by Akim Demaille at
357 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
358 and discussed again starting at
359 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
360 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
361 because location information is bogus.
362 Use angle brackets to delimit fake file name because square brackets
363 look like underexpanded m4. Choose a better fake file name.
364 Use negative line numbers.
365 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
366 * src/location.c (location_print): If line for a boundary is negative,
367 only print that boundary's file name.
368 * src/location.h: Document that.
369 * tests/skeletons.at (%define Boolean variables: invalid skeleton
370 defaults): Update output.
371
372 2008-11-07 Akim Demaille <demaille@gostai.com>
373
374 Locations without columns for command line arguments.
375 * src/location.c (location_print): Don't display negative columns.
376 * src/location.h: Document this.
377
378 2009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
379
380 Add reminder about uploading public key to keys.gnupg.net.
381 * HACKING (Release Procedure): Here.
382
383 2009-03-31 Akim Demaille <demaille@gostai.com>
384
385 bootstrap: --help to stdout.
386 * bootstrap (usage): Don't send --help to stderr.
387 Use a here doc instead of a long string.
388
389 2009-03-31 Akim Demaille <demaille@gostai.com>
390
391 bootstrap: README-hacking no longer exists
392 * bootstrap (checkout_only_file): Set to HACKING.
393
394 2009-03-26 Akim Demaille <demaille@gostai.com>
395
396 doc: merge HACKING and README-hacking.
397 Two files is confusing.
398 Reported by Alexandre Duret-Lutz.
399
400 * README-hacking: Merge into...
401 * HACKING (Working from the repository): here.
402
403 2009-03-26 Akim Demaille <demaille@gostai.com>
404
405 doc: update README-hacking.
406 * README-hacking: We now use git and git submodules.
407 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
408
409 2009-03-26 Akim Demaille <demaille@gostai.com>
410
411 lalr1.cc: avoid GCC 4.3 warnings.
412 GCC 4.3 now warns about "a || b && c" and asks for explicit
413 parentheses.
414 Reported by Alexandre Duret-Lutz.
415 * data/location.cc: Update copyright years.
416 (Position::operator==): Use parens to make precedence explicit.
417 Compare lines and columns first, as they are more likely to be
418 different, and they are faster to compare.
419
420 2009-03-26 Akim Demaille <demaille@gostai.com>
421
422 gnulib: update.
423 * gnulib: Update to latest.
424 * lib/Makefile.am (AM_CPPFLAGS): It is now defined by gnulib, so
425 use +=.
426
427 2009-01-08 Akim Demaille <demaille@gostai.com>
428
429 Fix grep portability issues.
430 Grep on Solaris does not support -q.
431 Reported by Summum Bonum.
432
433 * NEWS: Add a stub for 2.4.2.
434 * THANKS: Add Summum Bonum.
435 * tests/atlocal.in (EGREP): New.
436 (CC, CXX, XSLTPROC): Make it possible to override them via
437 envvars.
438 * tests/java.at: Use $EGREP instead of egrep.
439 Use AT_CHECK's ignore instead of grep's -q.
440
441 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
442
443 Version 2.4.1.
444 * NEWS: Set version and date.
445 * lib/Makefile.am: Update copyright year.
446 * tests/atlocal.in: Update copyright year.
447
448 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
449
450 Semicolon feature removal is not about future language support.
451 * NEWS: The semicolon feature is no longer active for newer languages,
452 so don't claim that it causes trouble for them.
453
454 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
455
456 * gnulib: Update submodule to HEAD.
457
458 2008-12-09 Akim Demaille <demaille@gostai.com>
459
460 Update data/README.
461 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
462
463 2008-12-05 Eric Blake <ebb9@byu.net>
464
465 Build testsuite with newer autoconf.
466 * tests/output.at (m4_expand): Don't override in newer autoconf,
467 where the underlying implementation changed.
468 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
469 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
470 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
471 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
472 since some of them contain unbalanced ')'.
473
474 2008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
475
476 * NEWS: Clarify a little.
477
478 2008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
479
480 * NEWS: Update for recent changes.
481
482 2008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
483
484 Fix unexpanded macros in GLR defines file.
485 Reported by Csaba Raduly at
486 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
487 * THANKS (Csaba Raduly): Add.
488 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
489 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
490 lexer in a separate module that includes the defines file.
491 (AT_CHECK_CALC): Use AT_FULL_COMPILE and request compilation of lexer
492 source.
493 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
494 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
495 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
496 (AT_DATA_SOURCE_PROLOGUE): New.
497 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
498 (AT_DATA_SOURCE): New.
499 (AT_FULL_COMPILE): New, copied from master branch and extended to
500 support an additional source file.
501
502 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
503
504 Don't let maintainer-*-check targets force a version update.
505 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
506 handled.
507
508 2008-11-17 Di-an Jan <dianj@freeshell.org>
509
510 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
511 Align menus. Adjust word wrapping. Use node names for menu names.
512 (Examples): Don't abbreviate node names.
513 (LocalWords): Remove abbreviations.
514 (Copying): Make description a sentence.
515 (Java Action Features): Remove period to match the rest of menu.
516
517 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
518
519 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
520 * configure.ac: Adjust usage.
521 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
522 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
523 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
524
525 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
526
527 Don't add a semicolon to actions for %skeleton or %language.
528 It breaks Java test cases as reported by Akim Demaille.
529 * src/scan-code.l: Implement.
530
531 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
532
533 Clean up %skeleton and %language priority implementation.
534 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
535 remove static qualifier because others will soon need to see it.
536 (language_prio): Likewise.
537 (getargs): Use command_line_prio rather than 0.
538 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
539 enum fields.
540 (skeleton_prio): Extern it.
541 (language_prio): Extern it.
542 * src/parse-gram.y: Use grammar_prio rather than 1.
543
544 2008-11-04 Akim Demaille <demaille@gostai.com>
545
546 * NEWS: Mention the trailing semicolon in action.
547
548 2008-11-04 Akim Demaille <demaille@gostai.com>
549
550 Reformat NEWS.
551 * NEWS: Use more outline-mode markup.
552 Suggested by Jim Meyering.
553
554 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
555
556 Fix user actions without a trailing semicolon.
557 Reported by Sergei Steshenko at
558 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
559 * THANKS (Sergei Steshenko): Add.
560 * src/scan-code.l (SC_RULE_ACTION): Fix it.
561 * tests/regression.at (Fix user actions without a trailing semicolon):
562 New test case.
563
564 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
565
566 Initiate further development.
567 * NEWS: Create an empty section for new entries.
568 * gnulib: Update submodule to HEAD.
569
570 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
571
572 * NEWS: Version 2.4.
573
574 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
575
576 Prepare for next release.
577 * NEWS: Briefly mention changes since 2.3b.
578 * README: Say GNU m4 1.4.6, which we've been requiring in release
579 announcements already, not 1.4.3, which breaks the build.
580
581 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
582
583 Say %language is experimental.
584 We're thinking of extending it's effect on output file naming. See the
585 thread at
586 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
587 * NEWS: Say it's experimental.
588 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
589 recommend it over %skeleton for now.
590 (Bison Options): Likewise.
591 (C++ Bison Interface): Use %skeleton not %language.
592 (Calc++ Parser): Use %skeleton not %language.
593 * src/getargs.c (usage): Say it's experimental.
594
595 2008-11-01 Di-an Jan <dianj@freeshell.org>
596 Paolo Bonzini <bonzini@gnu.org>
597
598 Support all Java parser class modifiers.
599 * data/java.m4 (b4_percent_define_get3): New.
600 (b4_final_if, b4_strictfp_if): New.
601 * data/lalr1.java (final, strictfp, extends, implements): Support.
602 * doc/bison.texinfo (final, strictfp, extends, implements): Add
603 documentation.
604 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
605 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
606 (AT_CHECK_JAVA_GREP): New.
607 (Java parser class modifiers): New test.
608 (Java parser class extends and implements): New test.
609
610 Model exception propagation better with throws and lex_throws.
611 * data/java.m4 (b4_list2): New.
612 (throws): Change default.
613 * data/lalr1.java (yyaction): Add throws.
614 (parse): Add lex_throws in addition to throws.
615 * doc/bison.texinfo (throws, lex_throws): Add documentation.
616 * tests/java.at (Java throws specifications): New test.
617
618 Improve documentation for Java parsers.
619 * doc/bison.texinfo (Java Parsers): Add subsections.
620 Don't quote first argument of %define.
621 (Java Bison Interface): Document output files. Move documentation
622 of parser class and merge into Java Parser Interface. Document
623 features that error out. Document directives with no effect.
624 Move note about Javadoc higher.
625 (Java Semantic Values): Explicitly mention stype.
626 Document that generic types cannot be used.
627 (Java Location Values): Use @deftypeivar. Document constructors.
628 Correct return value for toString.
629 (Java Parser Interface): List undocumented constants/fields.
630 Move documentation of fields added by %parse-param closer to list
631 of members. Document that token names are added as fields.
632 Document constructors accurately. Remove error method.
633 (Java Scanner Interface): Move note on %pure-parser to Java Bison
634 Interface. Describe %code lexer and yylex accutately.
635 Remove documentation that does not match the code.
636 (Java Action Features): New.
637 (Java Differences): Add reference. Add item on semantic values.
638 Add note about @{ ... @}. Clarify %% epilogue placement.
639 (Java Declarations Summary): New.
640
641 Fix Java skeleton.
642 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
643 (b4_remove_comma): Quote test argument.
644 (b4_identification): Remove "bison" field.
645 * tests/java.at (Java parser class and package names): New test.
646 (Java %parse-param and %lex-param): New test.
647 (Java stype, position_class and location_class): New test.
648
649 2008-10-31 Di-an Jan <dianj@freeshell.org>
650
651 * data/lalr1.jave: Update copyright years.
652 (YYParser): Correct name of "generated from" file in Javadoc:
653 use b4_file_name instead of @ofile@.
654 (Location constructor): Correct Javadoc parameter name.
655 (yylloc): Add missing opening m4 quote after b4_location_if.
656 This removes a stray [ in the Javadoc of Lexer.getStartPos.
657 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
658 (YYParser constructor): Correct Javadoc parameter name.
659
660 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
661
662 Always put auxiliary code files in the same dir as other output files.
663 * src/files.c (compute_file_name_parts): When the user specifies
664 --output but not --file-prefix, extract the directory prefix from the
665 file prefix not from the grammar file name. This affects the location
666 of files like location.hh generated by the C++ skeleton. The includes
667 in the other output files require this fix.
668 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
669 for expected output files.
670 (Output files): Add a test for the above.
671
672 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
673
674 * gnulib: Update submodule to HEAD.
675
676 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
677
678 Update copyright year.
679 * src/files.c: Here.
680
681 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
682
683 Don't overwrite the input file.
684 * src/files.c (output_file_name_check): Fatal error if using input file
685 for output.
686 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
687 argument.
688 (Conflicting output files): Add test.
689
690 2008-10-28 Akim Demaille <demaille@gostai.com>
691
692 Space changes.
693 * data/lalr1.cc: Formatting changes.
694
695 2008-10-28 Akim Demaille <demaille@gostai.com>
696
697 Don't define debugging functions when !YYDEBUG.
698 * data/lalr1.cc (debug_stream, set_debug_stream)
699 (debug_level_type, debug_level, set_debug_level): Don't
700 declare them when YYDEBUG is not defined.
701 The implementation are already YYDEBUG-aware.
702
703 2008-10-28 Akim Demaille <demaille@gostai.com>
704
705 Prefer "continue" for empty loop bodies.
706 * etc/bench.pl.in: Use "continue" instead of {}.
707
708 2008-10-28 Akim Demaille <demaille@gostai.com>
709
710 Space and comments changes.
711 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
712 * data/c.m4, data/lalr1.cc: Space changes.
713
714 2008-10-28 Akim Demaille <demaille@gostai.com>
715
716 Make gnulib a submodule.
717 * gnulib: New.
718 * .gitmodules (gnulib): New.
719
720 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
721
722 Fix yyerror_range for user-defined location type in C++. Reported by
723 Georg Sauthoff at
724 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
725 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
726 * THANKS (Georg Sauthoff): Add.
727
728 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
729
730 Update several administrative files mainly to facilitate releasing.
731 * HACKING (Administrivia): Make the git-merge-changelog notes more
732 helpful.
733 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
734 (Release Procedure): Update for git and add numerous details that were
735 previously missing.
736 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
737 * maint.mk (announcement): Don't list bison as a bootstrap tool so
738 that announcements don't claim we bootstrapped with whatever bison
739 happened to be in PATH. Add flex as a bootstrap tool.
740 * Makefile.maint: Remove, previously replaced by maint.mk.
741 * Makefile.cfg: Remove, and migrate settings to...
742 * cfg.mk: ... here for the sake of `make announcement'.
743 * bootstrap.conf (gnulib_modules): Add announce-gen.
744 * README: Say GNU Bison instead of just Bison. Suggested by Karl
745 Berry.
746
747 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
748
749 Small but important bugfixes for the Java skeleton.
750 * data/lalr1.java (yyerror): Change Location to b4_location_type.
751 (yy_symbol_print): Call toString on yyvaluep.
752
753 2008-08-29 Akim Demaille <demaille@gostai.com>
754
755 Clarify UPDATED use.
756 * doc/bison.texinfo: It refers to the last edition of this file,
757 not to the release date of Bison.
758 Reported by Joel E. Denny.
759
760 2008-08-29 Akim Demaille <demaille@gostai.com>
761
762 * README: Update FAQ pointer.
763 Reported by Joel E. Denny.
764
765 2008-08-27 Eric Blake <ebb9@byu.net>
766
767 Resync m4sugar from autoconf.
768 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
769 (m4_init): Adjust to latest m4.git changes.
770 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
771 effects.
772 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
773 (_m4_list_cmp): Reduce side effects.
774
775 2008-08-27 Akim Demaille <demaille@gostai.com>
776
777 Check yyerrok in calc.at.
778 * tests/calc.at (calc.y): Use yyerrok on "( error )".
779 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
780 expected.
781
782 2008-08-27 Akim Demaille <demaille@gostai.com>
783
784 Support yyerrok in lalr1.cc.
785 YYBACKUP is still to import back into lalr1.cc.
786 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
787
788 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
789
790 For maintainer-check*, don't recompile for a $(VERSION) update.
791 * cfg.mk: New file.
792 (_is-dist-target): Override the one in GNUmakefile.
793 * Makefile.am (EXTRA_DIST): Add cfg.mk.
794
795 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
796
797 Update for recent change to gnulib.
798 * src/parse-gram.y: Don't include strverscmp.h. It comes from
799 string.h now.
800
801 2008-08-15 Eric Blake <ebb9@byu.net>
802
803 Remaining m4sugar merge from autoconf.
804 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
805 * data/m4sugar/foreach.m4: New file, copied from autoconf.
806 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
807 * src/output.c (output_skeleton): Tell m4 how to find it.
808
809 Partial m4sugar merge from autoconf: m4_map.
810 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
811 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
812 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
813 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
814 for empty list.
815 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
816 Likewise.
817 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
818 declares it.
819
820 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
821
822 Keep .version and PACKAGE_VERSION in sync.
823 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
824 dependency, and add comments justifying this in more detail. Discussed
825 starting at
826 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
827
828 2008-08-06 Eric Blake <ebb9@byu.net>
829
830 Partial m4sugar merge from autoconf: m4_shiftn.
831 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
832 (m4_shift2, m4_shift3): New macros.
833 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
834 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
835 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
836 * data/java.m4 (b4_remove_comma): Likewise.
837
838 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
839 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
840 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
841 (m4_init): Consolidate wrapped text into single m4_wrap.
842 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
843 in wrapped text.
844
845 2008-08-05 Eric Blake <ebb9@byu.net>
846
847 Partial m4sugar merge from autoconf: builtins, version.m4.
848 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
849 (m4_prepend): Remove, as it is unused and inherently quadratic,
850 whereas m4_append is linear in newer m4.
851 (m4_mkstemp): New builtin.
852 (m4_symbols): Make rename conditional.
853 (m4_version_prereq): Ensure fatal error if used in bison, which
854 intentionally lacks version.m4.
855
856 Fix comments in m4sugar.
857 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
858
859 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
860
861 Update for recent .gitignore fix in Gnulib.
862 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
863 anchored .gitignore entries.
864
865 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
866
867 Set gnu or gnits strictness.
868 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
869 development and gnits strictness for releases. Based on Eric Blake's
870 suggestion at
871 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
872
873 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
874
875 * NEWS: Clarify documentation of %language.
876
877 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
878
879 Support usage of git-merge-changelog.
880 * .gitattributes: New.
881 * HACKING: Document usage of git-merge-changelog.
882 * bootstrap: Install git-merge-changelog entries in .git/config
883 if appropriate.
884
885 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
886
887 Remove remaining dependence on CVS Id keyword.
888 * ChangeLog: For the sake of people still using CVS, don't use dollars
889 when mentioning Id.
890 * data/xslt/bison.xsl: Remove Id from header comments, where it was
891 unusual anyway.
892 * data/xslt/xml2dot.xsl: Likewise.
893 * data/xslt/xml2text.xsl: Likewise.
894 * data/xslt/xml2xhtml.xsl: Likewise.
895 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
896 * doc/Makefile.am (neutralize): Remove, no longer needed.
897 (.x.1): Don't use neutralize.
898 (edit): Don't substitute for ID.
899 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
900
901 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
902
903 Fix dependence on computed configure variables.
904 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
905 $(top_srcdir)/configure.ac so that changes to computed variables, such
906 as PACKAGE_VERSION, are seen.
907 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
908
909 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
910
911 Update copyright dates for recent changes.
912 * Makefile.am: Here.
913 * src/Makefile.am: Here.
914 * src/reduce.c: Here.
915 * tests/reduce.at: Here.
916
917 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
918
919 Use git-version-gen for version names between releases.
920 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
921 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
922 * .prev-version: New.
923 * .version.in: Remove.
924 * ChangeLog: Remove the Id previously used for capturing the CVS
925 revision.
926 * GNUmakefile: Remove, now copied from Gnulib.
927 * Makefile.am: Add code suggested by comments in
928 build-aux/git-version-gen.
929 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
930 .prev-version, and .version.
931 * NEWS (2.3b+): Rename to...
932 (?.?): ... this because we're dropping the "+" version naming scheme,
933 but, in general, we still can't be sure of our next release name.
934 * bootstrap: Add a quick hack to remove from .gitignore the
935 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
936 entry. This should really be fixed in gnulib instead.
937 * bootstrap.conf (gnulib_modules): Add gnumakefile.
938 * configure.ac (AC_INIT): Set version name by invoking
939 build-aux/git-version-gen.
940 (AC_CONFIG_FILES): Remove .version, now generated by
941 build-aux/git-version-gen.
942 * maint.mk: New, copied from coreutils.
943 * doc/.cvsignore (bison.1): Add.
944 * doc/.gitignore (/bison.1): Add.
945 * doc/bison.1: Remove, generated.
946 * src/.cvsignore (revision.c): Remove.
947 * src/.gitignore (/revision.c): Remove.
948 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
949 (BUILT_SOURCES): Remove revision.c.
950 (revision.c): Remove.
951 * src/getargs.c (version): Don't print revision after the VERSION.
952 * src/revision.h: Remove.
953
954 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
955
956 Fix untranslatable composition of sentences. Reported by Goran
957 Uddeborg at
958 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
959 * THANKS (Goran Uddeborg): Add.
960 * src/reduce.c (reduce_print): Report the number of nonterminals and
961 rules useless in the grammar in separate sentences.
962 * tests/reduce.at (Useless Rules): Update output.
963 (Reduced Automaton): Likewise.
964 (Underivable Rules): Likewise.
965 (Empty Language): Likewise.
966
967 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
968
969 Fix some .gitignore and .cvsignore problems.
970 * bootstrap (insert_sorted_if_absent): Replace all uses with...
971 (insert_vc_ignore): ... this new function, which prepends `/' to all
972 .gitignore entries before passing them to insert_sorted_if_absent.
973 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
974 .cvsignore files are maintained even though Bison developers run
975 bootstrap while using Git.
976 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
977 unneeded by Bison.
978 (gnulib): Add.
979 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
980 unneeded. Reported by Eric Blake.
981 * lib/.gitignore (/*~): Add.
982 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
983 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
984 Blake.
985 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
986
987 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
988
989 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
990 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
991 * bootstrap.conf (gnulib_modules): Add unsetenv.
992 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
993 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
994 (/setenv.m4): Add.
995 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
996 the first argument because it may become position-dependent, and unset
997 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
998 Add comments explaining these issues in more detail.
999
1000 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
1001
1002 Add .gitignore everywhere based on .cvsignore.
1003 * .gitignore: New.
1004 * build-aux/.gitignore: New.
1005 * data/.gitignore: New.
1006 * doc/.gitignore: New.
1007 * etc/.gitignore: New.
1008 * examples/.gitignore: New.
1009 * examples/calc++/.gitignore: New.
1010 * lib/.gitignore: New.
1011 * m4/.gitignore: New.
1012 * po/.gitignore: New.
1013 * runtime-po/.gitignore: New.
1014 * src/.gitignore: New.
1015 * tests/.gitignore: New.
1016
1017 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1018
1019 * NEWS (2.3b+): New section, empty for now.
1020 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
1021
1022 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1023
1024 * NEWS (2.3b): Update release date since there has been a delay in
1025 getting the announcements and tarballs out.
1026
1027 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1028
1029 * NEWS: Version 2.3b.
1030 * configure.ac (AC_INIT): Likewise.
1031 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
1032
1033 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1034
1035 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
1036 been doing it for years.
1037 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
1038 (Release Procedure): Add FIXME about make alpha being unmaintained.
1039
1040 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
1041
1042 * data/yacc.c: Reformat m4 a little for readability.
1043 * src/lalr.c (build_relations): Correct comment.
1044
1045 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1046
1047 DJGPP specific issue.
1048 * djgpp/config.sed: Fixes required to run configure scripts generated
1049 by autoconf 2.62.
1050
1051 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
1052
1053 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
1054 coordinator@translationproject.org.
1055
1056 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
1057
1058 * THANKS: Add Eric Blake.
1059
1060 2008-04-23 Eric Blake <ebb9@byu.net>
1061
1062 Revert prior patch, by working around autoconf regression.
1063 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
1064 ("Output file name: ("): Uncomment test.
1065 ("Output file name: )"): Likewise.
1066 Based on an idea from Noah Misch.
1067
1068 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1069
1070 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
1071 2.61. Reported by Juan Manuel Guerrero at
1072 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
1073 * tests/output.at ("Output file name: ("): Comment out test case for
1074 now.
1075 ("Output file name: )"): Likewise.
1076
1077 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1078
1079 * GNUmakefile: Update git-version-gen invocation so make dist
1080 succeeds.
1081
1082 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1083
1084 Update to the current gnulib CVS repository, and fix trigraph handling
1085 in Bison.
1086 * bootstrap: Update gnulib CVS repository URL.
1087 (symlink_to_dir): Encapsulate the code that guarantees the destination
1088 directory exists into...
1089 (check_dst_dir): ... this new function, and...
1090 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
1091 fail when copying files into lib/uniwidth/.
1092 * src/output.c (prepare_symbols): When writing yytname muscles, where
1093 symbol names will be encoded in C-string literals, tell quotearg to
1094 escape trigraphs. This used to be the default in gnulib.
1095 * tests/regression.at (Token definitions): Because of the change in
1096 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
1097 escapes trigraphs in symbol names. Thus, yytname no longer has
1098 trigraphs unnecessarily doubly escaped. Update test case output.
1099 Extend test case to be sure Bison's own error messages will no longer
1100 have trigraphs in symbol names unnecessarily escaped once.
1101
1102 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1103
1104 Fix make dist infinite loop reported by Juan Manuel Guerrero at
1105 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
1106 * .cvsignore: Add .version.
1107 * .version.in: New.
1108 * bootstrap.conf (gnulib_modules): Add git-version-gen.
1109 * configure.ac (AC_CONFIG_FILES): Add .version.
1110 * build-aux/.cvsignore: Add git-version-gen.
1111
1112 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
1113
1114 * NEWS (2.3a+): Mention that -g now takes an argument.
1115 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
1116 consistency. Update the -g and -x entries now that they take
1117 arguments. Use brackets to indicate optional arguments.
1118 * src/getargs.c (usage): Explain the relationship between arguments of
1119 long and short options more completely. Document --defines and -d
1120 separately since the former takes an argument but, for POSIX Yacc, the
1121 latter does not.
1122 (short_options): Let -W take an optional argument like --warnings.
1123 (getargs): Sort cases.
1124
1125 2008-02-28 Akim Demaille <demaille@gostai.com>
1126
1127 * doc/bison.texinfo: Fix a few typos.
1128
1129 2008-02-28 Akim Demaille <akim@epita.fr>
1130
1131 * doc/bison.texinfo (Bison Options): Document -W.
1132 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
1133
1134 2008-02-28 Akim Demaille <akim@epita.fr>
1135
1136 * src/getargs.c (short_options): Split and sort for readability.
1137 -g and -x take optional arguments, just like their long options.
1138 * build-aux/cross-options.pl: Use /x to make the regexp easier to
1139 understand.
1140 Fix the handling of $opt which resulted in all the argument to be
1141 considered as optional.
1142
1143 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
1144
1145 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
1146 say its interface is experimental.
1147 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
1148 Java.
1149 (Bison Options): In the -L and --language entry, mention Java.
1150 (Java Bison Interface): Say the interface is experimental.
1151 * src/getargs.c (usage): Mention -L and --language.
1152
1153 * NEWS (2.3a+): Say the push parsing interface is experimental.
1154 * doc/bison.texinfo (Push Decl): Likewise.
1155 (Decl Summary): Likewise in the "%define api.push_pull" entry.
1156 (Push Parser Function): Likewise.
1157 (Pull Parser Function): Likewise.
1158 (Parser Create Function): Likewise.
1159 (Parser Delete Function): Likewise.
1160 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
1161 yypull_parse, and yypush_parse entries.
1162
1163 * NEWS (2.3a+): Mention XML support, and say the schema is
1164 experimental.
1165 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
1166 * src/getargs.c (usage): Say the XML schema is experimental.
1167
1168 * NEWS (2.3a+): Say option instead of flag.
1169
1170 2008-02-21 Wojciech Polak <polak@gnu.org>
1171
1172 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
1173 text.
1174
1175 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
1176
1177 Fix impure push parser compile error reported by Bob Rossi at
1178 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
1179 * data/yacc.c: Clean up whitespace in the output a little.
1180 (yypstate_allocated): Define for impure push parsers regardless of
1181 whether the pull interface is also requested.
1182 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
1183 check impure push parsers without the pull interface.
1184
1185 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
1186 yyerror takes arguments specified by %parse-param while yypstate_new
1187 does not.
1188 * doc/bison.texinfo (Parser Create Function): Document that
1189 yypstate_new returns 0 for multiple impure parser instances.
1190 * tests/push.at (Push Parsing: Multiple impure instances): Update
1191 expected stderr output.
1192
1193 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
1194
1195 * runtime-po/POTFILES.in (push.c): Remove.
1196
1197 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
1198
1199 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
1200 * data/push.c: Rename to...
1201 * data/yacc.c: ... this, overwriting it.
1202 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
1203 `%push-pull-parser' -> `%define api.push_pull "both"'.
1204 Remove old yacc.c tests, and update push.c tests to yacc.c.
1205
1206 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
1207
1208 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
1209 `"%code top" blocks' instead of `%code "top" blocks'.
1210 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
1211 Clean up whitespace in the output a little.
1212
1213 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
1214
1215 Fix documentation problems reported by Tim Josling at
1216 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
1217 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
1218 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
1219 integers. Explain the effect of literal string aliases on error
1220 messages. Copy token 0 documentation from the C++ skeleton
1221 documentation.
1222
1223 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
1224
1225 Accept a token number in a %left, %right, or %nonassoc for POSIX
1226 conformance. Reported by Tim Josling at
1227 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
1228 * NEWS (2.3a+): Mention.
1229 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
1230 and code numbers are treated by precedence declarations.
1231 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
1232 of symbols.1.
1233 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
1234 of symbol.
1235 (symbol.prec): New, just like symbol but allows INT.
1236 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
1237 longer holds.
1238 * tests/regression.at (Token number in precedence declaration): New
1239 test case.
1240
1241 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1242
1243 DJGPP specific issues.
1244 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
1245 be changed. Copyright timestamp adjusted.
1246 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
1247 be changed. Copyright timestamp adjusted.
1248 * djgpp/config.site: Copyright timestamp adjusted.
1249 * djgpp/config_h.sed: Copyright timestamp adjusted.
1250 * djgpp/djunpack.bat: Copyright timestamp adjusted.
1251 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
1252 filename translation list.
1253 * djgpp/subpipe.c (init_subpipe): Check the environment variables
1254 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
1255 files shall be created. Before trying to use the temp dir where the
1256 environment variable points to check that the dir really exists. If
1257 not default to the cwd as temp dir. Copyright timestamp adjusted.
1258 * djgpp/subpipe.h: Copyright timestamp adjusted.
1259 * djgpp/testsuite.sed: Copyright timestamp adjusted.
1260
1261 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
1262
1263 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
1264
1265 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
1266
1267 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
1268 Problem reported by Claudio Saavedra in
1269 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
1270
1271 2008-01-05 Wojciech Polak <polak@gnu.org>
1272
1273 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
1274 document's title with the input grammar file name.
1275
1276 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
1277
1278 Automate regression testing of the XML/XSLT implementation. Discussed
1279 starting at
1280 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
1281 * configure.ac (XSLTPROC): New substitution.
1282 * Makefile.am (maintainer-xml-check): New phony target invoking...
1283 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
1284 invoking make maintainer-check with BISON_TEST_XML=1.
1285 * tests/atlocal.in (XSLTPROC): New.
1286 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
1287 not to report reachable memory when Bison is expected to have a
1288 non-zero exit status and (2) to compare XML/XSLT output with --graph
1289 and --report=all output for every working grammar when
1290 BISON_TEST_XML=1.
1291 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
1292 (AT_BISON_CHECK_XML): New.
1293 (AT_QUELL_VALGRIND): New.
1294 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
1295 (AT_CHECK): ... don't redefine this since this was the old way to
1296 quell Valgrind.
1297 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
1298 AT_BISON_CHECK invocations.
1299 * tests/c++.at: Likewise.
1300 * tests/calc.at: Likewise.
1301 * tests/conflicts.at: Likewise.
1302 * tests/cxx-type.at: Likewise.
1303 * tests/existing.at: Likewise.
1304 * tests/glr-regression.at: Likewise.
1305 * tests/headers.at: Likewise.
1306 * tests/input.at: Likewise.
1307 * tests/java.at: Likewise.
1308 * tests/output.at: Likewise.
1309 * tests/push.at: Likewise.
1310 * tests/reduce.at: Likewise.
1311 * tests/regression.at: Likewise.
1312 * tests/sets.at: Likewise.
1313 * tests/skeletons.at: Likewise.
1314 * tests/synclines.at: Likewise.
1315 * tests/torture.at: Likewise.
1316 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
1317 tends to hang xsltproc.
1318 (Big horizontal): Likewise.
1319
1320 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
1321
1322 In XML output, remove redundant class attribute on symbol element.
1323 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
1324 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
1325 look up a symbol to determine whether it's a nonterminal or terminal.
1326 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
1327 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
1328
1329 Add prec/assoc information to XML output.
1330 * src/gram.c (grammar_rules_print_xml): For each rule that has a
1331 %prec, add a percent_prec attribute.
1332 * src/print-xml.c (print_grammar): For each terminal that has a
1333 precedence or associativity, add a prec or assoc attribute.
1334 (xml_indent): New.
1335 (xml_puts): Use xml_indent.
1336 (xml_printf): Use xml_indent.
1337 * src/print-xml.h (xml_indent): Prototype.
1338
1339 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
1340 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
1341
1342 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
1343
1344 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
1345 (bison:ruleByNumber): ... this for clarity.
1346 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
1347 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
1348 (xsl:template match="reduction"): Update.
1349 (xsl:template match="item"): Update.
1350 (xsl:template match="reduction"): Update.
1351
1352 In the XML output, don't print the list of rules where symbols appear.
1353 Compute it in XSLT instead. Discussed at
1354 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
1355 * data/xslt/bison.xsl (bison:ruleByLhs): New.
1356 (bison:ruleByRhs): New.
1357 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
1358 bison:ruleByRhs.
1359 (xsl:template match="terminal/rule"): Remove.
1360 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
1361 bison:ruleByRhs.
1362 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
1363 Remove.
1364 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
1365 bison:ruleByRhs and mode="number-link" for rule template.
1366 (xsl:template match="terminal/rule"): Remove.
1367 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
1368 bison:ruleByRhs and mode="number-link" for rule template.
1369 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
1370 Rewrite as...
1371 (xsl:template match="rule" mode="number-link"): ... this.
1372 * src/print-xml.c (print_grammar): Don't print the list of rules.
1373
1374 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
1375
1376 Don't let --report affect XML output; always print all information.
1377 Discussed at
1378 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
1379 * src/conflicts.c (log_resolution): Implement.
1380 * src/print-xml.c (print_core): Implement.
1381 (print_state): Implement.
1382 (print_xml): Implement.
1383
1384 * NEWS (2.3a+): Fix quotes.
1385 * src/parse-gram.y (prologue_declaration): For consistency with -v,
1386 don't let %verbose clear the list specified by --report.
1387
1388 2007-11-26 Akim Demaille <akim@epita.fr>
1389
1390 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
1391
1392 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
1393
1394 In the XML output, list useless and unused symbols and rules with the
1395 useful ones and add a "usefulness" attribute. Discussed starting at
1396 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
1397 * src/gram.c (grammar_rules_partial_print_xml): Remove.
1398 (grammar_rules_print_xml): Print all rules instead of just those
1399 useful in the grammar, and add a "usefulness" attribute.
1400 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
1401 * src/print-xml.c (print_rules_useless_in_parser): Remove.
1402 (print_grammar): Print all nonterminals instead of just useful ones,
1403 and add a "usefulness" attribute to nonterminals and terminals.
1404 (print_xml): Don't print a separate "reductions" or
1405 "rules-useless-in-parser" element.
1406 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
1407 (reduce_xml): Remove.
1408 (reduce_token_unused_in_grammar): New.
1409 (reduce_nonterminal_useless_in_grammar): New.
1410 * src/reduce.h (reduce_xml): Remove prototype.
1411 (reduce_token_unused_in_grammar): Add prototype.
1412 (reduce_nonterminal_useless_in_grammar): Add prototype.
1413 * data/xslt/xml2text.xsl: Update for XML changes.
1414 * data/xslt/xml2xhtml.xsl: Update for XML changes.
1415 * tests/reduce.at (Useless Terminals): Update output.
1416 (Useless Rules): Update output.
1417 (Reduced Automaton): Update output.
1418
1419 Say "Terminals unused in grammar" instead of "Unused terminals".
1420 * NEWS (2.3a+): Update.
1421 * doc/bison.texinfo (Understanding): Update example output.
1422 * src/reduce.c (reduce_output): Implement.
1423 * data/xslt/xml2text.xsl: Implement.
1424 * data/xslt/xml2xhtml.xsl: Implement.
1425
1426 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
1427
1428 Accept --report-file=FILE to override the default `.output' filename.
1429 * NEWS (2.3a+): Mention.
1430 * doc/bison.texinfo (Bison Options): Add an entry.
1431 * src/files.c (compute_output_file_names): Don't override
1432 spec_verbose_file if already set.
1433 * src/getargs.c (usage): Document --report-file.
1434 (REPORT_FILE_OPTION): New anonymous enum member.
1435 (long_options): Add entry for it.
1436 (getargs): Add case for it setting spec_verbose_file.
1437
1438 * build-aux/cross-options.pl: Don't record a short option just because
1439 there's an arg.
1440 * doc/.cvsignore: Add yacc.1.
1441
1442 2007-11-14 Akim Demaille <akim@epita.fr>
1443
1444 * doc/yacc.1.in: New.
1445 * configure.ac, doc/Makefile.am: Adjust.
1446 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
1447 config.h symbol.
1448 Use AC_SUBST for assignments too.
1449 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
1450
1451 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
1452
1453 * src/gram.c: Remove comments that duplicate comments in gram.h.
1454
1455 When reporting useless rules and nonterminals, say "useless in grammar"
1456 instead of "useless", and say "useless in parser" instead of "never
1457 reduced". Discussed starting at
1458 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
1459 * NEWS (2.3a+): Mention this change.
1460 * data/xslt/xml2text.xsl: Update output text and expected input XML
1461 element names to match changes below.
1462 * data/xslt/xml2xhtml.xsl: Likewise.
1463 (xsl:template match="bison-xml-report"): Add missing entry in Table of
1464 Contents: "Rules useless in parser due to conflicts".
1465 * doc/bison.texinfo (Decl Summary): Reword a little.
1466 (Understanding): Update example output for changes below.
1467 * src/gram.c: (rule_useful_p): Rename to...
1468 (rule_useful_in_grammar_p): ... this.
1469 (rule_useless_p): Rename to...
1470 (rule_useless_in_grammar_p): ... this.
1471 (rule_never_reduced_p): Rename to...
1472 (rule_useless_in_parser_p): ... this.
1473 (grammar_rules_print): Update for renames.
1474 (grammar_rules_print_xml): Update for renames.
1475 (grammar_rules_never_reduced_report): Rename to...
1476 (grammar_rules_useless_report): ... this since it is used for either
1477 kind of useless rule.
1478 * src/gram.h: Reword comments and update function names in prototypes.
1479 * src/main.c (main): Say "rule useless in parser due to conflicts".
1480 * src/print-xml.c (print_rules_never_reduced): Rename to...
1481 (print_rules_useless_in_parser): ... this, and rename output XML
1482 element "rules-never-reduced" to "rules-useless-in-parser".
1483 (print_xml): Update for rename.
1484 * src/print.c (print_results): Say "Rules useless in parser due to
1485 conflicts".
1486 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
1487 (nonterminals_reduce): Say "nonterminal useless in grammar".
1488 (reduce_output): Say "Nonterminals useless in grammar".
1489 Say "Rules useless in grammar".
1490 (reduce_xml): Rename output XML element "useless" to
1491 "useless-in-grammar".
1492 (reduce_print): Don't report the count of grammatically useless rules
1493 as "rules never reduced" just because %yacc is specified.
1494 In the correct report of this count, say nonterminal(s) and rule(s)
1495 "useless in grammar".
1496 * tests/conflicts.at (S/R in initial): Update expected output.
1497 (Defaulted Conflicted Reduction): Likewise.
1498 (Unreachable States After Conflict Resolution): Likewise.
1499 * tests/existing.at (GNU pic Grammar): Likewise.
1500 * tests/reduce.at (Useless Nonterminals): Likewise.
1501 (Useless Rules): Likewise.
1502 (Reduced Automaton): Likewise.
1503 (Underivable Rules): Likewise.
1504 (Empty Language): Likewise.
1505
1506 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
1507
1508 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
1509 here document and before the EOF so that BSD's implementation of Bourne
1510 shell doesn't parse the delimiter as part of the here document.
1511 * doc/.cvsignore: Add cross-options.texi.
1512 * src/getargs.c (usage): Add a blank line after the warning categories.
1513
1514 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
1515
1516 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
1517
1518 2007-11-05 Akim Demaille <akim@epita.fr>
1519
1520 Remove Id: from bison.1.
1521 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
1522 (perl -0777 -pi -e 's/\.PP\nId): New.
1523 (.x.1): Use it to ignore the version control revision.
1524
1525 2007-11-05 Akim Demaille <demaille@gostai.com>
1526
1527 * build-aux/Makefile.am: Ship cross-options.pl.
1528 * doc/Makefile.am: Always refer to cross-options.texi with
1529 $(srcdir).
1530 (MAINTAINERCLEANFILES): Add it.
1531
1532 2007-11-04 Akim Demaille <demaille@gostai.com>
1533
1534 Generate the long/short option cross-table.
1535 * build-aux/cross-options.pl: New.
1536 * doc/Makefile.am (cross-options.texi): New.
1537 * doc/bison.texinfo: Use it.
1538
1539 2007-11-04 Akim Demaille <demaille@gostai.com>
1540
1541 Generate bison.1 using help2man.
1542 * doc/common.x, doc/bison.x: New.
1543 * doc/Makefile.am (bison.1, .x.1): New.
1544 The code is taken from autoconf-2.61/man/Makefile.am.
1545 * configure.ac: Look for help2man.
1546
1547 2007-11-04 Akim Demaille <demaille@gostai.com>
1548
1549 Complete --help.
1550 * src/getargs.c (usage): Document -W, make it clear that -d,
1551 -g and -x have optional arguments.
1552
1553 2007-11-04 Akim Demaille <demaille@gostai.com>
1554
1555 Find sha1sum when named gsha1sum.
1556 * bootstrap (find_tool): New.
1557 ($SHA1SUM): New.
1558
1559 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1560
1561 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
1562 at
1563 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
1564 * NEWS (2.3a+): Mention.
1565 * data/bison.m4 (b4_pure_if): Don't define it here.
1566 * data/c.m4 (b4_identification): Depend on individual skeletons to
1567 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
1568 values of the %define variables api.pure or api.push_pull. Define
1569 YYPURE, YYPUSH, and YYPULL accordingly.
1570 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
1571 glr.cc has already defined b4_pure_flag.
1572 * data/push.c: Define b4_pure_if based on `%define api.pure'.
1573 Remove YYPUSH and YYPULL since they're back in b4_identification again.
1574 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
1575 * doc/bison.texinfo (Pure Decl): Update.
1576 (Push Decl): Update.
1577 (Decl Summary): Add api.pure to %define entry.
1578 In %pure-parser entry, say it's deprecated and reference %define.
1579 (Pure Calling): Update.
1580 (Error Reporting): Update.
1581 (C++ Scanner Interface): Update.
1582 (How Can I Reset the Parser): Update.
1583 (Table of Symbols): In %pure-parser entry, say it's deprecated and
1584 reference %define.
1585 * src/getargs.c (pure_parser): Remove global variable.
1586 * src/getargs.h (pure_parser): Remove extern.
1587 * src/output.c (prepare): Don't define pure_flag muscle.
1588 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
1589 wrapper around `%define api.pure'.
1590 * tests/calc.at (Simple LALR Calculator): Update.
1591 (Simple GLR Calculator): Update.
1592 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
1593 Update.
1594 (GLR: Resolve ambiguity, pure, locations): Update.
1595 (GLR: Merge conflicting parses, pure, no locations): Update.
1596 (GLR: Merge conflicting parses, pure, locations): Update.
1597 * tests/glr-regression.at (Uninitialized location when reporting
1598 ambiguity): Update
1599 * tests/input.at (Unused %define api.pure): New test case.
1600 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
1601 AT_PURE_IF and AT_PURE_AND_LOC_IF.
1602 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
1603
1604 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1605
1606 %define push_pull -> %define api.push_pull. Discussed starting at
1607 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
1608 * data/push.c: Expect the new name.
1609 * data/yacc.c: Likewise.
1610 * doc/bison.texinfo (Push Decl): Update.
1611 (Decl Summary): Update %define entry.
1612 (Push Parser Function): Update.
1613 (Pull Parser Function): Update.
1614 (Parser Create Function): Update.
1615 (Parser Delete Function): Update.
1616 * tests/calc.at (Simple LALR Calculator): Update.
1617 * tests/input.at (%define enum variables): Update.
1618 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
1619 (Push Parsing: Multiple impure instances): Update.
1620 (Push Parsing: Unsupported Skeletons): Update.
1621 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
1622 (Exploding the Stack Size with Malloc): Update.
1623
1624 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
1625 other entries some.
1626
1627 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
1628
1629 For the XML output's terminal element, rename @number to @token-number,
1630 and add @symbol-number. In the nonterminal element, rename @number to
1631 @symbol-number. Discussed starting at
1632 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
1633 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
1634 renames.
1635 (xsl:template match="nonterminal"): Likewise.
1636 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
1637 (xsl:template match="nonterminal"): Likewise.
1638 * src/print-xml.c (print_grammar): Implement.
1639
1640 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
1641
1642 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
1643 2007-10-11 change, the child elements here are items not rules.
1644 (xsl:template match="item"): New.
1645 (xsl:template match="rule"): Update for new reduced itemset.
1646 (xsl:template match="point"): Remove.
1647 (xsl:template match="empty"): For consistency with --graph, don't
1648 output "/* empty */".
1649 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
1650 line-wrap, don't pass a negative value as first-line-length since this
1651 won't work with the following changes.
1652 (xsl:template name="line-wrap"): Simplify slightly.
1653 (xsl:template name="ws-search"): Eliminate recursion.
1654 * src/print_graph.c (print_core): Don't print a reduction's lookahead
1655 set next to an item whose dot is not at the end of the RHS even if it
1656 happens to be associated with the same rule.
1657
1658 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
1659
1660 Add %define lr.keep_unreachable_states.
1661 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
1662 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
1663 * src/main.c (main): Implement it.
1664 * tests/conflicts.at (Unreachable States After Conflict Resolution):
1665 Extend to test it, and fix a typo.
1666
1667 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
1668
1669 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
1670 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
1671 the example .output text.
1672 * tests/regression.at (Extra lookahead sets in report): Improve wording
1673 of comments.
1674
1675 2007-10-17 Wojciech Polak <polak@gnu.org>
1676
1677 * src/print-xml.c (print_grammar): Renamed
1678 <terminal> and <nonterminal> attributes:
1679 "type" to "number" and "symbol" to "name".
1680 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
1681 Use new attribute names.
1682 (xsl:template match="nonterminal"): Likewise.
1683 * data/xslt/xml2xhtml.xsl: Likewise.
1684
1685 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
1686
1687 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
1688 (Option Cross Key): Likewise.
1689
1690 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
1691 next to an item whose dot is not at the end of the RHS even if it
1692 happens to be associated with the same rule.
1693 * src/print.c (print_core): Likewise.
1694 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
1695 (Resolved SR Conflicts): Update output.
1696 * tests/regression.at (Extra lookahead sets in report): New test case.
1697
1698 2007-10-11 Wojciech Polak <polak@gnu.org>
1699
1700 * src/print-xml.c (print_core): Remove item set
1701 redundancy.
1702 * data/xslt/bison.xsl (bison:ruleNumber): New key.
1703 Improve processing time. Suggested by Joel E. Denny.
1704 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
1705 Write xsl:param "required" attribute as comment.
1706 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
1707 (xsl:template match="rule"): Support new reduced itemset.
1708 (xsl:template match="point"): Remove.
1709 * data/xslt/xml2xhtml.xsl: Likewise.
1710
1711 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
1712
1713 * src/getargs.c (version): Update copyright year.
1714
1715 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
1716
1717 Make xml2dot.xsl and --graph produce the same output.
1718 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
1719 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
1720 escaped later.
1721 (xsl:template name="output-node"): Use the new escape template instead
1722 of the string-replace template directly.
1723 (xsl:template name="output-edge"): Likewise.
1724 (xsl:template name="escape"): New, escapes backslashes and newlines in
1725 addition to quotation marks.
1726 * src/graphviz.c (start_graph, output_node, output_edge): Add
1727 whitespace to output for legibility.
1728
1729 Make xml2text.xsl and --report produce the same output, and remove the
1730 XML "conflicts" element since a conflict summary is easily extracted
1731 from the automaton.
1732 * data/xslt/bison.xsl: New.
1733 (xsl:template match="state" mode="bison:count-conflicts): New.
1734 * data/xslt/xml2text.xsl: Import bison.xsl.
1735 (xsl:template match="bison-xml-report"): Instead of styling the
1736 "conflicts" element, style the "automaton" element with mode
1737 "conflicts". Unlike the former, the latter lists S/R and R/R
1738 conflicts for a state on the same line.
1739 (xsl:template match="conflicts"): Remove.
1740 (xsl:template match="conflict"): Remove.
1741 (xsl:template match="terminal"): Line-wrap the list of rules in which
1742 the terminal is used.
1743 (xsl:template match="nonterminal"): Likewise for nonterminals.
1744 (xsl:template match="automaton" mode="conflicts"): New.
1745 (xsl:template match="state" mode="conflicts"): New.
1746 (xsl:template name="line-wrap"): New.
1747 (xsl:template name="ws-search"): New.
1748 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
1749 (xsl:template match="bison-xml-report"): Instead of styling the
1750 "conflicts" element, style the "automaton" element with mode
1751 "conflicts."
1752 (xsl:template match="conflicts"): Remove.
1753 (xsl:template match="conflict"): Remove.
1754 (xsl:template match="automaton" mode="conflicts"): New.
1755 (xsl:template match="state" mode="conflicts): New.
1756 * src/conflicts.c (conflicts_output_xml): Remove.
1757 * src/conflicts.h (conflicts_output_xml): Remove prototype.
1758 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
1759 * src/print.c (print_grammar): Consistently wrap at the 66th column so
1760 the corresponding XSLT is easier. Also, never wrap between a word and
1761 the comma that follows it.
1762
1763 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
1764
1765 Improve C++ namespace support. Discussed starting at
1766 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
1767 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
1768 b4_namespace_close): New macros that interpret the %define variable
1769 "namespace" so its value can contain "::" to indicate nested
1770 namespaces.
1771 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
1772 the above macros.
1773 * data/lalr1.cc (b4_namespace): Likewise.
1774 * data/location.cc (b4_namespace): Likewise.
1775 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
1776 inside a new table in the general %define entry. Document `%define
1777 namespace' there as well. Point the %name-prefix entry to it since it
1778 explains it more completely in the case of C++.
1779 (C++ Bison Interface): Mention `%define namespace' instead of
1780 %name-prefix.
1781 (Table of Symbols): Remove the `%define push_pull' entry. The %define
1782 entry suffices.
1783 * tests/c++.at (Relative namespace references): New test case.
1784 (Absolute namespace references): New test case.
1785 (Syntactically invalid namespace references): New test case.
1786 * tests/input.at (C++ namespace reference errors): New test case.
1787
1788 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
1789
1790 Add syncline support and location accessor to internal %define
1791 interfaces.
1792 * data/bison.m4 (b4_percent_define_get_loc): New.
1793 (b4_percent_define_get_syncline): New.
1794 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
1795 (b4_percent_define_default): Record defining location as line 1 rather
1796 than 0 for the sake of synchronizing #line's, and define
1797 b4_percent_define_syncline(VARIABLE).
1798 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
1799 * src/muscle_tab.c (muscle_syncline_grow): New.
1800 (muscle_code_grow): Use muscle_syncline_grow.
1801 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
1802 define b4_percent_define_syncline(VARIABLE).
1803 (muscle_percent_define_get_loc): New.
1804 (muscle_percent_define_get_syncline): New.
1805 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
1806 remove some unused variables.
1807 (muscle_percent_define_default): Record defining location as line 1
1808 rather than 0 for the sake of synchronizing #line's, and define
1809 b4_percent_define_syncline(VARIABLE).
1810 (muscle_percent_define_check_values): Use
1811 muscle_percent_define_get_loc.
1812 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
1813 (muscle_percent_define_get_syncline): Prototype.
1814 * tests/skeletons.at (%define Boolean variables: invalid skeleton
1815 defaults): Update output for location change.
1816 (Complaining during macro argument expansion): Extend to test
1817 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
1818
1819 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
1820
1821 Fix some error-reporting macro bugs.
1822 * data/bison.m4 (b4_cat): New.
1823 (b4_error, b4_error_at): Use b4_cat to send error directives directly
1824 to stdout so they don't become arguments to other macros. Update
1825 comments and add examples.
1826 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
1827 add examples.
1828 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
1829 after printing the error directive so that M4 doesn't report subsequent
1830 problems that are induced by this problem.
1831 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
1832 instead of just in them. Recognize @\n in both places. Both expand to
1833 the empty string. Needed by b4_cat.
1834 * tests/skeletons.at (Complaining during macro argument expansion):
1835 New test case.
1836 (Fatal errors make M4 exit immediately): New test case.
1837
1838 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
1839
1840 Implement --print-datadir.
1841 * src/getargs.c (usage): Mention.
1842 (PRINT_DATADIR_OPTION): New anonymous enum member.
1843 (long_options): Add entry for it.
1844 (getargs): Add case for it calling compute_pkgdatadir.
1845 * src/output.c (output_skeleton): Encapsulate data directory
1846 computation from here...
1847 (prepare): ... and from here...
1848 (compute_pkgdatadir): ... into this new function.
1849 * src/output.h (compute_pkgdatadir): Prototype.
1850
1851 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
1852
1853 * src/print-xml.c (escape_bufs): New static global variable
1854 replacing...
1855 (xml_escape_n): ... the static local variable buf here.
1856 (print_xml): Free memory for escape_bufs.
1857 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
1858
1859 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
1860
1861 Replace `%push-parser' and `%push-pull-parser' with
1862 `%define push_pull "push"' and `%define push_pull "both"'.
1863 `%define push_pull "pull"' is the default.
1864 * doc/bison.texinfo (Push Decl, Push Parser Function,
1865 Pull Parser Function, Parser Create Function, Parser Delete Function):
1866 Update declarations.
1867 (Decl Summary, Table of Symbols): Replace %push-parser and
1868 %push-pull-parser entries with a %define push_pull entry.
1869 * data/bison.m4 (b4_percent_define_check_values): New macro.
1870 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
1871 definitions...
1872 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
1873 definitions...
1874 * data/push.c: ... to here and compute them from the value of the
1875 %define variable push_pull.
1876 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
1877 parsing requests here...
1878 * data/yacc.c: ... hack this to switch to push.c any time
1879 b4_use_push_pull_flag or the %define variable push_pull is set. This
1880 will go away when we mv push.c yacc.c.
1881 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
1882 push parsing is not supported since unused %define variables are
1883 reported anyway.
1884 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
1885 * src/muscle_tab.h (muscle_percent_define_check_values): Update
1886 comments for consistency with b4_percent_define_check_values.
1887 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
1888 muscles.
1889 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
1890 Remove.
1891 (prologue_declaration): Remove %push-parser and %push-pull-parser
1892 rules.
1893 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
1894 * tests/calc.at: Update declarations.
1895 * tests/input.at (%define enum variables): New test case.
1896 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
1897 declaration.
1898 (Push Parsing: Multiple impure instances): Update declaration.
1899 (Push Parsing: Unsupported Skeletons): New test case.
1900 * tests/torture.at (Exploding the Stack Size with Alloca): Update
1901 declaration.
1902 (Exploding the Stack Size with Malloc): Update declaration.
1903
1904 2007-09-24 Wojciech Polak <polak@gnu.org>
1905
1906 Add XSLT transformations.
1907
1908 * data/xslt/xml2dot.xsl: Transform XML into DOT.
1909 * data/xslt/xml2text.xsl: Transform XML into plain text.
1910 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
1911 * data/Makefile.am (xsltdir): New variable.
1912 (dist_xslt_DATA): Add xslt/*.xsl files.
1913
1914 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
1915
1916 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
1917 Problem reported by Wojciech Polak.
1918 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
1919 (xml_printf): Undo change I made on 21 September; that is,
1920 indent 2 spaces, not 1.
1921
1922 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
1923
1924 Pacify ./configure --enable-gcc-warnings.
1925 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
1926 `char const *' instead of `char *'.
1927 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
1928 local variable `sep'.
1929
1930 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
1931
1932 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
1933 elsewhere.
1934 * src/print-xml.c: Prefer "const" after types; that's more consistent.
1935 (xml_printf): Indent just 1 space for level.
1936 (e_char, xlate_char): Remove.
1937 (xml_escape_string): Rewrite to avoid undefined behavior (used
1938 storage that was freed from the stack).
1939 (xml_escape_n): Don't bother checking for subscript error.
1940
1941 2007-09-21 Wojciech Polak <polak@gnu.org>
1942
1943 Add Bison XML Automaton Report.
1944
1945 Add support for an -x option to generate an XML report.
1946 It is not documented yet.
1947 * src/print-xml.c: New file.
1948 * src/print-xml.h: Likewise.
1949 * lib/timevar.def (TV_XML): New var.
1950 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
1951 * src/conflicts.c: Include print-xml.h.
1952 (solved_conflicts_xml_obstack): New var.
1953 (log_resolution, conflicts_solve, conflicts_free):
1954 Add support for XML report.
1955 (conflicts_output_val): New function.
1956 * src/conflicts.h (conflicts_output_val): New decl.
1957 * src/files.c (spec_xml_file): New var.
1958 (compute_output_file_names, output_file_names_free): Add XML support.
1959 * src/files.h (spec_xml_file): New decl.
1960 * src/getargs.c (xml_flag): New var.
1961 (usage, short_options, long_options, getargs): Add XML support.
1962 * src/getargs.h (xml_flag): New decl.
1963 * src/gram.c: Include print-xml.h.
1964 (rule_lhs_print_xml, rule_rhs_print_xml):
1965 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
1966 New functions.
1967 * src/gram.h: Declare external ones.
1968 * src/main.c: Include print-xml.h.
1969 (main): Add XML support.
1970 * src/reduce.c: Include print-xml.h.
1971 (reduce_xml): New function.
1972 * src/reduce.h: Declare it.
1973 * src/state.c: Include print-xml.h.
1974 (state_new): Add XML support.
1975 (state_rule_lookahead_tokens_print_xml): New function.
1976 * src/state.h: Declare it.
1977 (struct state): New member solved_conflicts_xml.
1978 * src/symtab.c (symbol_class_get_string): New function.
1979 * src/symtab.h: Declare it.
1980
1981 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
1982
1983 * GNUmakefile: Switch to coreutils's version.
1984 * bootstrap: Likewise.
1985 * Makefile.cfg: Adjust to new GNUmakefile.
1986 * README-hacking: Likewise.
1987
1988 Import from gnulib:
1989
1990 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
1991 Bruno Haible <bruno@clisp.org>
1992
1993 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
1994 and is a script that invokes bison. Tighten the code. Add comments.
1995
1996 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
1997
1998 Spell "boolean" as "Boolean". Reported by Akim Demaille.
1999 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
2000 * doc/bison.texinfo (Decl Summary): Fix.
2001 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
2002 * tests/input.at (Boolean %define variables): Update output.
2003 * tests/skeletons.at (%define boolean variables: invalid skeleton
2004 defaults): Rename to...
2005 (%define Boolean variables: invalid skeleton defaults): ... this and
2006 update output.
2007
2008 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
2009
2010 In impure push mode, don't allow more than one yypstate to be allocated
2011 since multiple impure parsers would corrupt yynerrs.
2012 * data/push.c (yypstate_allocated): New static global variable
2013 initialized to 0.
2014 (yypull_parse): If yypstate_new returns 0, don't report it as memory
2015 exhaustion if yypstate_allocated is 1, but still return 2.
2016 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
2017 already 1. Otherwise, set it to 1.
2018 (yypstate_delete): Set it to 0.
2019 * tests/push.at (Push Parsing: Multiple impure instances): New test
2020 case.
2021
2022 2007-08-17 Bob Rossi <bob@brasko.net>
2023
2024 * doc/bison.texinfo (Push Decl): Document the push parser.
2025 (Table of Symbols): Ditto.
2026 (Pure Decl): Ditto.
2027 (Decl Summary): Ditto.
2028 (Multiple Parsers, Push Parser Function, Pull Parser Function,
2029 Parser Create Function, Parser Delete Function):
2030 Add new push parser symbols.
2031 (Table of Symbols): Document push-parser, push-pull-parser,
2032 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
2033
2034 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
2035
2036 Update to GPLv3.
2037 * doc/gpl-3.0.texi: New file.
2038 * doc/gpl.texi: Remove.
2039 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
2040 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
2041 * README-hacking, TODO, bootstrap, bootstrap.conf:
2042 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
2043 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
2044 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
2045 * data/lalr1.cc, data/lalr1.java, data/location.cc:
2046 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
2047 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
2048 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
2049 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
2050 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
2051 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
2052 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
2053 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
2054 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
2055 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
2056 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
2057 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
2058 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
2059 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
2060 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
2061 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
2062 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
2063 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
2064 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
2065 * src/complain.c, src/complain.h, src/conflicts.c:
2066 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
2067 * src/files.h, src/flex-scanner.h, src/getargs.c:
2068 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
2069 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
2070 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
2071 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
2072 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
2073 * src/print.c, src/print.h, src/print_graph.c:
2074 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
2075 * src/reduce.h, src/relation.c, src/relation.h:
2076 * src/revision.h, src/scan-code.h, src/scan-code.l:
2077 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
2078 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
2079 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
2080 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
2081 * tests/Makefile.am, tests/actions.at, tests/c++.at:
2082 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
2083 * tests/existing.at, tests/glr-regression.at:
2084 * tests/headers.at, tests/input.at, tests/java.at:
2085 * tests/local.at, tests/output.at, tests/push.at:
2086 * tests/reduce.at, tests/regression.at, tests/sets.at:
2087 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
2088 * tests/torture.at:
2089 Update to GPLv3.
2090
2091 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2092
2093 Get rid of broken %no-parser, -n, and --no-parser implementation and
2094 documentation.
2095 * TODO: Don't mention them.
2096 * doc/bison.1: Likewise.
2097 * doc/bison.texinfo (Decl Summary): Likewise.
2098 (Bison Options): Likewise.
2099 (Option Cross Key): Likewise.
2100 * src/getargs.c (no_parser_flag): Remove global variable.
2101 (usage): Don't print description of -n and --no-parser.
2102 (long_options): Remove --no-parser entry here.
2103 (getargs): Remove -n case in the switch here.
2104 * src/getargs.h (no_parser_flag): Remove extern.
2105 * tests/regression.at (Web2c Actions): Remove comment that mentions
2106 --no-parser.
2107
2108 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2109
2110 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
2111 name user variables starting with `yy'. Just pass NULL instead of a
2112 dummy local &yylval to yypush_parse.
2113 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
2114 starting with `yy'.
2115
2116 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
2117
2118 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
2119 true since it's then always used regardless of whether yyoverflow is
2120 defined. Reported by Christian Burger at
2121 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
2122 * THANKS: Add Christian Burger.
2123
2124 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
2125 node names: say "Decl Summary" not "Bison Declaration Summary".
2126
2127 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
2128
2129 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
2130 determine whether this function has already complained about an invalid
2131 value for a %define boolean variable, don't check whether Bison has
2132 ever examined the value. As written, the check was a tautology.
2133 Instead, record and check for this complaint using a separate muscle.
2134
2135 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
2136
2137 Fix push parsing memory leak reported by Brandon Lucia at
2138 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
2139 * THANKS: Add Brandon Lucia.
2140 * data/push.c (yypstate_delete): Free the stack if it was reallocated
2141 but the parse never completed and thus freed it.
2142 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
2143 * tests/testsuite.at: Include push.at.
2144 * test/push.at: New.
2145 (Push Parsing: Memory Leak for Early Deletion): New test case.
2146
2147 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
2148
2149 Improve handling of multiple S/R conflicts in the same state and of S/R
2150 conflicts involving multiple reductions.
2151 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
2152 set for a state here or Bison will abort if it is reassigned on a
2153 later conflicted reduction in the same state.
2154 Similarly, don't finalize and assign the solved conflicts report here
2155 or it will be lost if it is reassigned on a later conflicted reduction
2156 in the same state.
2157 (set_conflicts): Instead, assign them both here after all S/R conflicts
2158 in the state have been fully examined.
2159 * src/print.c (shift_set): Rename to...
2160 (no_reduce_set): ... this.
2161 (print_reductions): Update for rename, and add %nonassoc error action
2162 tokens to no_reduce_set so that, when printing the first remaining
2163 reduction on an error action token, the reduction is enclosed in
2164 brackets.
2165 (print_results): Update for rename.
2166 * tests/conflicts.at (Solved conflicts report for multiple reductions
2167 in a state): New test case.
2168 (%nonassoc error actions for multiple reductions in a state): New test
2169 case.
2170
2171 * src/main.c (main): Don't depend on C99 features.
2172
2173 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
2174
2175 * build-aux/.cvsignore: Add compile.
2176 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
2177 uniwidth.
2178
2179 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
2180
2181 * bootstrap (slurp): Create target directories that don't exist.
2182 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
2183
2184 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
2185
2186 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
2187 than item number.
2188 * closure.c (closure): Likewise.
2189 * state.h (reductions): Comment sorting of rules.
2190 (state): Comment sorting of items.
2191
2192 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
2193
2194 Fix C++ test cases after recent Gnulib changes. Discussed starting at
2195 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
2196 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
2197 definition in order to avoid Gnulib headers since we don't use config.h
2198 here.
2199 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
2200 rather than AT_DATA so that config.h is included.
2201
2202 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
2203
2204 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
2205 instead of fprintf. Guard these functions with #if YYDEBUG instead of
2206 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
2207 and so that YYFPRINTF is guaranteed to be defined here.
2208
2209 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
2210
2211 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
2212 with...
2213 (muscle_percent_define_check_values): ... this more helpful function.
2214 Again, it's not used yet, but it will be.
2215 * src/muscle_tab.h: Likewise.
2216
2217 Improve some comments in parser table construction.
2218 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
2219 (generate_states): Don't mention ruleset, which is internal to closure.
2220 * src/closure.c (closure): Explain sorting of core and itemset, which
2221 is required for this function to behave correctly.
2222 * src/closure.h (closure): Mention sorting.
2223
2224 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
2225
2226 * src/lalr.c (state_lookahead_tokens_count): For code readability,
2227 move the check for disabled transitions to an aver since conflict
2228 resolution hasn't happened yet.
2229
2230 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
2231 labels a state as inconsistent just because it has error transitions.
2232 The original form of this check appeared in revision 1.1 of lalr.c,
2233 which was committed on 1991-12-21. Now (at least), changing the
2234 consistency label on such a state appears to have no useful effect in
2235 any of the places it is examined, which I enumerate below. The key
2236 point to understanding each item in this enumeration is that a state
2237 with an error transition is labelled consistent in the first place only
2238 if it has no rules, so the check cannot matter for states that have
2239 rules. (1) Labelling a state as inconsistent will cause set_conflicts
2240 to try to identify its conflicts, and a state must have *rules* to have
2241 conflicts. (2) Labelling a state as inconsistent will affect how
2242 action_row sets the default *rule* for the state. (3) Labelling a
2243 state as inconsistent will cause build_relations to add lookback edges
2244 to *rules* in that state.
2245 * src/state.h (struct state): Word the comment for member consistent
2246 more carefully.
2247
2248 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
2249
2250 Don't depend on C99 features.
2251 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
2252 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
2253 * src/reader.c (check_and_convert_grammar): Fix for-loop.
2254 * src/state.c (state_mark_reachable_states): Fix for-loop.
2255 (state_remove_unreachable_states): Fix for-loop.
2256
2257 Don't widen struct state with member reachable just to temporarily
2258 record reachability. Instead, use a local bitset.
2259 * src/state.h (struct state): Remove member.
2260 * src/state.c (state_new): Don't initialize it.
2261 (state_mark_reachable_states): Rename to...
2262 (state_record_reachable_states): ... this, and use bitset.
2263 (state_remove_unreachable_states): Use bitset.
2264
2265 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
2266
2267 * src/Makefile.am (yacc): Quote target action commands properly so
2268 that the yacc script isn't corrupt. Reported by Hans Aberg at
2269 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
2270
2271 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
2272 the case of pure parsers. Reported by Frans Englich at
2273 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
2274 * THANKS: Add Frans Englich.
2275
2276 * NEWS (2.3a+): In the %code entry, reference section `Bison
2277 Declaration Summary' from the manual now since the %code summary has
2278 moved there.
2279 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
2280 in the rules section must be terminated by semicolons.
2281
2282 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
2283
2284 Extend the front-end API for %define variables to more completely
2285 mirror the back-end. This will be useful in the future.
2286 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
2287 Update comments to mention the new front-end counterparts of these
2288 macros.
2289 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
2290 for muscle_string_decode and muscle_location_decode.
2291 (muscle_string_decode): New static function.
2292 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
2293 (muscle_percent_define_get, muscle_percent_define_ifdef): New
2294 functions.
2295 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
2296 muscle_percent_define_get to mimic the b4_percent_define_flag_if
2297 implementation more closely.
2298 (muscle_percent_define_invalid_value): New function.
2299 * src/muscle_tab.h (muscle_percent_define_get,
2300 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
2301 Prototype.
2302
2303 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
2304
2305 * NEWS (2.3a+): Mention yesterday's state-removal change.
2306 (2.3a): Remove the %language entry, which was added after 2.3a.
2307 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
2308 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
2309 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
2310 tests/existing.at: Update copyright date.
2311
2312 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2313
2314 If conflict resolution makes states unreachable, remove those states,
2315 report rules that are then unused, and don't report conflicts in those
2316 states.
2317 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
2318 New global function.
2319 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
2320 function.
2321 * src/main.c (main): After conflict resolution, remove the unreachable
2322 states and update all data structures that reference states by number.
2323 * src/state.c (state_new): Initialize each state's reachable member to
2324 false.
2325 (state_mark_reachable_states): New static function.
2326 (state_remove_unreachable_states): New global function.
2327 * src/state.h (struct state): Add member bool reachable.
2328 (state_remove_unreachable_states): Prototype.
2329 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2330 New test case.
2331 * tests/existing.at (GNU pic Grammar): Update test case output now that
2332 an unused rule is discovered.
2333
2334 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2335
2336 Minor code cleanup in parser table construction.
2337 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
2338 (new_itemsets, save_reductions): Update for rename to nitemset.
2339 * src/closure.c (nritemset): Rename to...
2340 (nitemset): ... this since the "r" appears to meaningless and isn't
2341 used in the comments.
2342 (closure): Update for rename.
2343 * src/closure.h (nritemset): Update extern to...
2344 (nitemset): ... this.
2345 * src/lalr.c (LA): Fix a typo in comments.
2346 * src/print.c (print_core): Update for rename to nitemset.
2347 * src/print_graph.c (print_graph): Likewise.
2348 * src/state.h: Fix some typos in header comments.
2349
2350 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
2351
2352 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
2353 still sticks to ASCII. Sorry!
2354
2355 * README-hacking: New file, taken mostly from coreutils, with changes
2356 for Bison. Contains much of the contents of:
2357 * README-cvs: Remove.
2358 * bootstrap: Sync from gnulib.
2359 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
2360 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
2361
2362 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
2363
2364 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
2365 Setzer.
2366 (Java Differences): Fix some typos.
2367 * THANKS: Add Sebastian Setzer.
2368
2369 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
2370
2371 * data/java.m4 (b4_single_class_if): Remove.
2372 (b4_abstract_if): Look at "%define abstract".
2373 (b4_lexer_if): New.
2374 (b4_union_name): Rename...
2375 (b4_yystype): ... to this. Map to "%define stype".
2376 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
2377 b4_maybe_throws): Fix quoting.
2378 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
2379 * data/lalr1.java (Lexer interface): Always define.
2380 (Lexer interface within parser class): Remove.
2381 (YYLexer class): New, used when "%code lexer" is present.
2382 (constructor): When "%code lexer" is used, pass %lex-param
2383 to the lexer constructor.
2384 (yylex, yyparse): Remove %lex-param from method invocations
2385 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
2386
2387 * doc/bison.texinfo (Java Bison Interface): Mention "%define
2388 abstract". Rename "%define union_name" to "%define stype".
2389 Rename method names according to previous patch.
2390 (Java Scanner Interface): Describe "%code lexer" instead of
2391 "%pure-parser" and "%define single_class".
2392 (Java Differences): Mention "%code lexer".
2393
2394 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
2395 Include scanner here, using macros from tests/local.at.
2396 (AT_DATA_CALC_Y): Remove final argument.
2397 (_AT_CHECK_JAVA_CALC): Likewise.
2398 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
2399 of %locations and %error-verbose.
2400 (main): Test with and without %lex-param.
2401 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
2402 (AT_BISON_OPTION_POPDEFS): Pop it.
2403
2404 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2405
2406 DJGPP spefic issue. Inhibit the use of disallowed characters for
2407 file name genertion on Win98, WinXP, etc. These are |<>":?*\
2408 and concern testsuite case 46.
2409 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
2410 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
2411 * djgpp/config.bat: Inhibit the use of disallowed characters.
2412
2413 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
2414
2415 Miscellaneous %define and %code cleanup.
2416 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
2417 values are interpreted.
2418 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
2419 documentation a little more.
2420 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
2421 muscle_percent_define_insert, muscle_percent_code_grow): New
2422 functions/macros.
2423 * src/muscle_tab.h (muscle_percent_define_insert,
2424 muscle_percent_code_grow): Prototype.
2425 * src/parse-gram.y (prologue_declaration): Use
2426 muscle_percent_define_insert and muscle_percent_code_grow when parsing
2427 %define and %code directives.
2428
2429 Make it easy to share %define boolean variables between the front-end
2430 and back-end. Though not used yet, this will be useful in the future.
2431 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
2432 Bison uses of names rather than just skeleton uses of names.
2433 (b4_percent_define_get, b4_percent_define_ifdef): Rename
2434 b4_percent_define_skeleton_variables(VARIABLE) to
2435 b4_percent_define_bison_variables(VARIABLE).
2436 (b4_percent_code_get, b4_percent_code_ifdef): Rename
2437 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
2438 b4_percent_code_bison_qualifiers(QUALIFIER).
2439 (b4_check_user_names_wrap): Update for renames.
2440 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
2441 muscle_percent_define_default): New functions mimicking
2442 b4_percent_define_flag_if and b4_percent_define_default.
2443
2444 For %define variables, report locations for invalid values and
2445 redefinitions.
2446 * data/bison.m4 (b4_percent_define_flag_if): Read
2447 b4_percent_define_loc(VARIABLE) to report the location of an invalid
2448 value for VARIABLE.
2449 (b4_percent_define_default): Save a special location in
2450 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
2451 must later be reported as invalid.
2452 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
2453 functions.
2454 (muscle_percent_define_insert): Record the location of VARIABLE in
2455 muscle percent_define_loc(VARIABLE), and use it to report the previous
2456 location for a redefinition.
2457 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
2458 (muscle_percent_define_default): Update like b4_percent_define_default.
2459 (muscle_grow_user_name_list): Rename to...
2460 (muscle_user_name_list_grow): ... this for consistency and use
2461 muscle_location_grow.
2462 * src/muscle_tab.h (muscle_location_grow): Prototype.
2463 * tests/input.at (%define errors): Update expected output.
2464 * tests/skeletons.at (%define boolean variables: invalid skeleton
2465 defaults): New test case.
2466
2467 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
2468
2469 * src/print.c (lookahead_set, state_default_rule): Remove.
2470 (print_reductions): Replace state_default_rule invocation with
2471 equivalent use of yydefact, which was computed in token_actions in
2472 tables.c.
2473 (print_results): Don't allocate lookahead_set.
2474
2475 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
2476
2477 * data/lalr1.java: Prefix all private members with yy.
2478
2479 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
2480
2481 Use YYFPRINTF instead of fprintf where appropriate. Reported by
2482 Sebastien Fricker at
2483 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
2484 * THANKS: Add Sebastien Fricker.
2485 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
2486 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
2487 accept a variable number of arguments.
2488
2489 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
2490
2491 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
2492
2493 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2494
2495 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
2496 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
2497 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
2498
2499 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
2500
2501 Undo my 2007-02-07 change, switching back to the c-strcase module
2502 introduced in the 2007-02-03 change. Bruno Haible reported that
2503 the 2007-02-07 change would be dangerous in Turkish if we add a
2504 language whose name contains "i", since "i" is not lowercase "I"
2505 in Turkish.
2506 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
2507 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
2508 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
2509 * m4/.cvsignore: Remove strcase.m4.
2510 * src/getargs.c: Revert 2007-02-07 change, as follows.
2511 Include c-strcase.h.
2512 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
2513
2514 2007-02-11 Bruno Haible <bruno@clisp.org>
2515
2516 Enable the Java related testsuite tests when the only Java compiler
2517 found is a gcj < 4.3. Discussed at
2518 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
2519 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
2520
2521 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
2522
2523 * data/Makefile.am: Update copyright date.
2524 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
2525 yypstate_new returns NULL.
2526 (yypstate_new): Return NULL if malloc does.
2527 * src/reader.c (packgram): Move translation of rule actions from the
2528 beginning of packgram to...
2529 (check_and_convert_grammar): ... here right before packgram is invoked
2530 so it's easier to write more complete comments, and remove redundant
2531 code.
2532
2533 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
2534
2535 As in semantic actions, make @$ in %initial-action, %destructor, and
2536 %printer imply %locations.
2537 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
2538 scanning @$.
2539 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
2540 (@$ in %initial-action implies %locations,
2541 @$ in %destructor implies %locations,
2542 @$ in %printer implies %locations): ... these new test cases.
2543
2544 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
2545
2546 Undo most of the 2007-02-03 change, switching to the strcase module
2547 now that gnulib strcase has been fixed.
2548 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
2549 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
2550 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
2551 * m4/.cvsignore: Add strcase.m4.
2552 * src/getargs.c: Revert 2007-02-03 change, as follows.
2553 Don't include c-strcase.h.
2554 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
2555 strcasecmp has "unspecified behavior" outside the POSIX locale,
2556 but it works fine in practice if at least one argument is ASCII,
2557 as is the case in Bison.
2558
2559 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
2560
2561 * tests/java.at: Skip tests if only one of javac/java is present.
2562 Reported by Joel E. Denny.
2563 * tests/atlocal.in: Adjust copyright years.
2564
2565 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
2566
2567 * data/lalr1.java (Stack): Work around old verifiers that disallow
2568 access to the private fields of an inner class, from the outer class.
2569 We can make Stack's fields public because user code doesn't have access
2570 to the instance of Stack used by parse(). Reported by Paul Eggert.
2571
2572 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
2573
2574 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
2575 the right spot for these files?
2576 * bootstrap.conf (gnulib_modules): Add c-strcase.
2577 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
2578 c-strncasecmp.c.
2579 * src/getargs.c: Include c-strcase.h.
2580 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
2581 to avoid unspecified behavior.
2582
2583 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
2584
2585 * doc/bison.texinfo (Decl Summary): Correct typo.
2586
2587 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
2588
2589 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
2590 Complain if the value does not match empty, "true" or "false".
2591 * data/c++.m4: Adjust default definitions of %define variables.
2592 * data/java.m4: Adjust default definitions of %define variables.
2593 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
2594 to above behavior.
2595 * tests/input.at (Boolean %define variables): Test new behavior.
2596
2597 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
2598
2599 * NEWS: Mention java.
2600 * TODO: Remove things that are done.
2601 * bootstrap.conf: Add javacomp-script and javaexec-script.
2602 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
2603
2604 * data/Makefile.am: Add new files.
2605 * data/java-skel.m4: New.
2606 * data/java.m4: New.
2607 * data/lalr1.java: New.
2608
2609 * doc/bison.texinfo: Put "A Complete C++ Example" under
2610 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
2611 under Other Languages.
2612
2613 * src/getargs.c (valid_languages): Add Java.
2614 * src/getargs.h (struct bison_language): Update size of string fields.
2615
2616 * tests/Makefile.am: Add java.at.
2617 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
2618 * tests/java.at: New.
2619 * tests/testsuite.at: Include it.
2620
2621 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
2622
2623 Clean up.
2624 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
2625 at_directive_argv arguments so these no longer have to be global
2626 variables. Also, update the implementation for the following changes.
2627 (fail_for_at_directive_too_many_args,
2628 fail_for_at_directive_too_few_args): Add at_directive_name argument.
2629 (at_directive_name): Remove as at_directive_argv[0] will be used for
2630 this now.
2631 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
2632 for the directive name.
2633 (at_directive_argc, at_directive_argv): Make these local within
2634 skel_lex instead of global.
2635 (INITIAL): Update directive start action for above changes.
2636 (SC_AT_DIRECTIVE_ARG): Rename to...
2637 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
2638 (SC_AT_DIRECTIVE_SKIP_WS): Update.
2639 (scan_skel): Move yylex_destroy to...
2640 (skel_scanner_free): ... here.
2641 * tests/skeletons.at (installed skeleton file name): Rename to...
2642 (installed skeleton file names): ... this.
2643
2644 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
2645
2646 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
2647 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
2648 Summary" not "Directives".
2649 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
2650 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
2651 since the former is now the more complete one.
2652 (Prologue Alternatives): Likewise and do the same for %defines.
2653 (Table of Symbols): Add summary of %code, add summary of %define, and
2654 move full %code documentation to...
2655 (Decl Summary): ... here for consistency with other entries in these
2656 sections.
2657 Move %define entry in order to keep this list alphabetized.
2658 Reword %define entry a little to put less emphasis on the skeleton
2659 concept, which most users shouldn't have to think about.
2660
2661 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
2662
2663 Adjust to recent gnulib changes.
2664 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
2665 Add string.h, string_.h, unistd_.h, wchar_.h.
2666 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
2667 * src/system.h: Don't include <stpcpy.h>; this is now done by
2668 <string.h>.
2669
2670 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
2671
2672 Simplify implementation of unqualified %code, implement macros for
2673 uniform treatment of boolean %define flags. Document %define.
2674 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
2675 b4_percent_code_ifdef): New.
2676 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
2677 * data/c++.m4: Define default value for global_tokens_and_yystype.
2678 * data/glr.cc: Likewise.
2679 * data/location.cc: Use b4_percent_define_flag_if.
2680
2681 * doc/bison.texinfo (Decl Summary): Document %define.
2682
2683 * src/parse-gram.y (Unqualified %code): Change muscle name to
2684 b4_percent_code().
2685 (content.opt): Default to empty.
2686
2687 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
2688
2689 Implement support for relative and absolute skeleton file names.
2690 Discussed starting at
2691 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
2692 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
2693 (Bison Options): Document in --skeleton entry.
2694 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
2695 full_skeleton can't necessarily hold all of pkgdatadir.
2696 If the specified skeleton file name contains a `/', don't prepend
2697 pkgdatadir.
2698 * src/parse-gram.y (prologue_declaration): If the specified skeleton
2699 file name contains a `/', prepend the grammar file directory.
2700 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
2701 * skeletons.at: New file.
2702 (relative skeleton file names): New test case.
2703 (installed skeleton file names): New test case.
2704 * tests/testsuite.at: Include skeletons.at.
2705
2706 * bootstrap: Update copyright to 2007.
2707
2708 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
2709
2710 * bootstrap: Remove occurrences of .#bootmp from the files.
2711
2712 2007-01-17 Akim Demaille <akim@epita.fr>
2713
2714 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
2715 nonterminals.
2716 Use per-type %printer.
2717
2718 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
2719
2720 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
2721 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
2722 djgpp/config.site, src/files.c, src/files.h, src/main.c,
2723 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
2724 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
2725 tests/glr-regression.at, tests/input.at, tests/local.at,
2726 tests/output.at, tests/torture.at: Update copyright to 2007.
2727
2728 2007-01-16 Akim Demaille <akim@epita.fr>
2729
2730 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
2731 error code.
2732 (Calc++ Scanner): Exit with failure if we can't open the input
2733 file.
2734 Accept "-" standing for stdin.
2735 (Calc++ Top Level): Print the result only if the parsing was
2736 successful.
2737
2738 2007-01-16 Akim Demaille <akim@epita.fr>
2739
2740 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
2741
2742 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
2743 and Joel E. Denny <jdenny@ces.clemson.edu>
2744
2745 Clean up %define and %code implementation in M4 some. Most
2746 importantly, rename all related macros to be in the b4_percent_define
2747 and b4_percent_code namespaces. Also, complete support for `.' in
2748 %define variable names and %code qualifiers.
2749 * data/bison.m4 (b4_check_user_names): Check for special
2750 "SKELETON-NAMESPACE(name)" macros instead of using two nested
2751 m4_foreach loops.
2752 (b4_get_percent_define, b4_get_percent_code): Rename to...
2753 (b4_percent_define_get, b4_percent_code_get): ... these.
2754 Extend documentation with examples.
2755 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
2756 b4_percent_define_skeleton_variables and
2757 b4_percent_code_skeleton_qualifiers.
2758 Expect any value for the %define variable `foo' to be stored in the
2759 macro named `b4_percent_define(foo)'; expect any %code blocks for the
2760 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
2761 expect any unqualified %code blocks to be stored in a macro named
2762 `b4_percent_code_unqualified'.
2763 Use m4_indir so that %define variable names and %code qualifiers can
2764 contain `.', which is allowed by the grammar parser.
2765 (b4_percent_define_default): New macro to set a default value for a
2766 %define variable.
2767 (m4_wrap): Update wrapped code, and fix some underquoting.
2768 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
2769 Expect grammar uses of %define variables and %code qualifiers to be
2770 defined in b4_percent_define_user_variables and
2771 b4_percent_code_user_qualifiers.
2772 * data/c++.m4: Use b4_percent_define_default rather than
2773 m4_define_default. Fix some underquoting. Skeleton usage of %define
2774 variable define_location_comparison now implies skeleton usage of
2775 %define variable filename_type.
2776 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
2777 data/push.c, data/yacc.c: Update macro names.
2778 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
2779 muscle names.
2780
2781 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2782
2783 DJGPP specific issues.
2784
2785 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
2786 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
2787
2788 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
2789
2790 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
2791 run parsers in all tests so that Valgrind is invoked during
2792 maintainer-check-valgrind.
2793 (Duplicate representation of merged trees): Free all semantic values.
2794 (Duplicated user destructor for lookahead): Likewise.
2795
2796 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
2797
2798 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
2799 command-line prefix.
2800 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
2801 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
2802 miss Valgrind messages.
2803 (Exploding the Stack Size with Malloc): Likewise.
2804
2805 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
2806
2807 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
2808 locals. Reported by Juan Manuel Guerrero at
2809 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
2810 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
2811 Fix some indentation also.
2812 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
2813 explaining this issue.
2814
2815 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
2816 and Joel E. Denny <jdenny@ces.clemson.edu>
2817
2818 Simplify union and prologue handling, and escape union and lex/parse
2819 params with digraphs.
2820 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
2821 values to the empty string since these are no longer guaranteed
2822 initialized by the front-end.
2823 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
2824 braces around b4_user_stype since this is no longer done by the
2825 front-end.
2826 * src/files.c, src/files.h (pre_prologue_obstack,
2827 post_prologue_obstack): Remove.
2828 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
2829 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
2830 with digraphs. This fixes lex params and parse params.
2831 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
2832 * src/output.c (prepare): Remove muscle insertion of the prologues.
2833 (output): Remove freeing of pre_prologue_obstack and
2834 post_prologue_obstack.
2835 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
2836 than prologue_augment for prologue parsing so you don't need prologue
2837 obstacks.
2838 (grammar_declaration): For %union RHS, use `braceless' instead of
2839 "{...}" so that braces are already stripped and code is escaped with
2840 digraphs.
2841 * src/reader.c (prologue_augment): Remove.
2842 (reader): Remove initialization of pre_prologue_obstack and
2843 post_prologue_obstack.
2844 * src/reader.h (prologue_augment): Remove.
2845
2846 * data/c.m4: Remove stray parenthesis.
2847
2848 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2849
2850 Remove quotes from variables names in %define directives and from
2851 qualifiers in %code directives, and restrict the characters that are
2852 allowed in them to M4-friendly ones. For %define, continue to support
2853 the quoted form as a deprecated feature. Discussed starting at
2854 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
2855 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
2856 %code.
2857 * doc/bison.texinfo (Prologue Alternatives): Update.
2858 (Decl Summary): In %defines entry, update mention of `%code requires'
2859 and `%code provides'.
2860 (C++ Location Values): Update %define uses.
2861 (Calc++ Parser Interface): Likewise.
2862 (Calc++ Parser): Likewise, and update `%code requires' uses.
2863 (Table of Symbols): Update %code documentation.
2864 * src/parse-gram.y (prologue_declaration): For %define variables, use
2865 `variable' instead of `STRING'.
2866 (grammar_declaration): For %code qualifiers, use `ID' instead of
2867 `STRING'.
2868 (variable): New nonterminal that takes an `ID' or a `STRING'.
2869 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
2870 and %define uses.
2871 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
2872 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
2873 (%define errors): Update %define uses.
2874
2875 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2876
2877 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
2878 instead of muscle_insert for %define values so that M4-special
2879 characters are replaced with digraphs.
2880 * tests/input.at (%define errors): Extend to check weird values.
2881
2882 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2883
2884 Instead of having skeletons declare all valid %define variables and
2885 %code qualifiers, provide macros that retrieve the associated values
2886 and build these lists automatically. Thus Bison will now warn when a
2887 variable or qualifier is not used by the skeleton in the current
2888 invocation regardless of whether it might sometimes be used by that
2889 skeleton in other invocations. Also, move all %define value macros to
2890 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
2891 form, which is replaced by %code.
2892 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
2893 (b4_check_user_names): ... this, and change the series of valid name
2894 arguments to a single list argument for names used in the skeleton
2895 similar to the existing list argument for names used in the grammar.
2896 Warn instead of complaining.
2897 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
2898 values and %code code, to format %code code properly, and to build
2899 lists of all %define variables and %code qualifiers used in the
2900 skeleton: b4_skeleton_percent_define_variables and
2901 b4_skeleton_percent_code_qualifiers.
2902 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
2903 Remove, and...
2904 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
2905 the skeleton names lists can finish building first. In place of
2906 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
2907 expect the lists b4_user_percent_define_variables and
2908 b4_user_percent_code_qualifiers.
2909 * data/c++.m4: Where setting default values for b4_parser_class_name,
2910 b4_location_type, b4_filename_type, b4_namespace, and
2911 b4_define_location_comparison, update their names to the
2912 b4_percent_define_ namespace.
2913 * data/glr.c: Don't use b4_check_percent_define_variables and
2914 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
2915 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
2916 (b4_parser_class_name, b4_namespace): Define these using
2917 b4_get_percent_define for parser_class_name and namespace.
2918 * data/location.cc: Use b4_get_percent_define.
2919 * data/push.c: Don't use b4_check_percent_define_variables and
2920 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
2921 * data/yacc.c: Likewise, and don't call m4_exit in
2922 b4_use_push_for_pull_if or m4_wrap code will never execute.
2923 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
2924 Rename to...
2925 (muscle_grow_user_name_list): ... this for consistency with the
2926 terminology used in bison.m4.
2927 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
2928 %define variable names, and rename muscle used_percent_define_variables
2929 to user_percent_define_variables.
2930 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
2931 user_percent_code_qualifiers.
2932 (content): Remove.
2933 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
2934 {CODE} form is no longer accepted.
2935 * tests/input.at (Reject bad %code qualifiers): Rename to...
2936 (Reject unused %code qualifiers): ... this, and update test output.
2937 (%define error): Update test output.
2938
2939 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
2940
2941 Check for unrecognized %define variables similar to checking for
2942 unrecognized %code qualifiers. Check for redefined %define variables.
2943 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
2944 generalizes...
2945 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
2946 (b4_check_percent_define_variables): New, also wraps it.
2947 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
2948 variables using b4_check_percent_define_variables.
2949 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
2950 all those exercised in the test suite and all those listed in the
2951 `Default values' section of c++.m4. Are there others?
2952 * data/push.c, data/yacc.c: Declare no valid %define variables.
2953 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
2954 similar to muscle_find, but it works even when the muscle stores a
2955 const value.
2956 (muscle_grow_used_name_list): New function for constructing the used
2957 name list muscles that b4_check_for_unrecognized_names requires.
2958 * src/parse-gram.y (prologue_declaration): Warn if a variable is
2959 %define'd more than once. Define the b4_used_percent_define_variables
2960 muscle with muscle_grow_used_name_list.
2961 (grammar_declaration): Abbreviate %code code with
2962 muscle_grow_used_name_list.
2963 * tests/input.at (%define errors): New.
2964
2965 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
2966
2967 Provide warn_at, complain_at, and fatal_at function callbacks to the
2968 skeletons, and use this for %code qualifier complaints.
2969 * data/bison.m4 (b4_error_at): New, invoked by...
2970 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
2971 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
2972 @fatal_at(...@) directives.
2973 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
2974 qualifiers in b4_used_percent_code_qualifiers and to use
2975 b4_complain_at.
2976 * src/location.c, src/location.h (boundary_set_from_string): New global
2977 function.
2978 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
2979 function.
2980 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
2981 to b4_used_percent_code_qualifiers.
2982 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
2983 function.
2984 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
2985 (lineno): Rename to...
2986 (out_lineno): ... this so I don't misunderstand it again.
2987 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
2988 here; these newlines are in the input but not the output file.
2989 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
2990 (at_directive_perform): ... this new static function, and add handling
2991 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
2992 directives.
2993 * tests/input.at (Reject bad %code qualifiers): Update test output with
2994 locations and extend.
2995
2996 * tests/output.at (Output file name: [, Output file name: ]): Remove
2997 bogus comment about these tests failing.
2998
2999 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3000
3001 Clean up b4_check_percent_code_qualifiers a little.
3002 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
3003 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
3004 documentation and add examples.
3005 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
3006 qualifiers here.
3007
3008 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
3009
3010 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
3011 unreliable -- especially when they're hidden inside another macro.
3012 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
3013 data/c.m4: Remove m4_divert(-1).
3014 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3015 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
3016 m4_divert_push(0) and m4_divert_pop(0).
3017 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
3018 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
3019 pushed and popped by m4sugar, should be first on the stack.
3020
3021 Provide warn, complain, and fatal function callbacks to the skeletons.
3022 This provides more flexibility than m4_fatal, improves the error
3023 message format, and captures messages for translation. Discussed
3024 starting at
3025 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
3026 * data/bison.m4 (b4_error): New, invoked by...
3027 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
3028 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
3029 directives. Because these M4 macros might be called when the current
3030 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
3031 the previous removal of uses of m4_divert, which caused trouble.
3032 (b4_check_percent_code_qualifiers): Use b4_complain instead of
3033 m4_fatal to report unrecognized %code qualifiers.
3034 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
3035 push parser requests.
3036 * data/glr.c: Use b4_complain instead of m4_fatal to report
3037 non-deterministic push parser requests.
3038 Update @output usage to @output(...@) form.
3039 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
3040 report missing %defines. Update @output usage to @output(...@) form.
3041 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
3042 @output(...@) form.
3043 * src/main.c (main): Invoke skel_scanner_free.
3044 * src/scan-skel.h (skel_scanner_free): Prototype new function.
3045 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
3046 obstack_for_string from flex-scanner.h.
3047 (YY_DECL): Use to declare skel_lex static.
3048 (decode_at_digraphs): Remove; now handled in the new
3049 SC_AT_DIRECTIVE_ARG start condition.
3050 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
3051 functions.
3052 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
3053 at_directive_argv): New static globals.
3054 (INITIAL): Use fail_for_invalid_at.
3055 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
3056 recognize the start of a generalized `@directive(...@)' form and
3057 start...
3058 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
3059 directive args (using the new obstack_for_string), to decode the
3060 contained @ diagraphs, and to perform the directive. It recognizes
3061 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
3062 @output(...@).
3063 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
3064 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
3065 `@,'.
3066 (scan_skel): Initialize obstack_for_string on the first call.
3067 (skel_scanner_free): New function to free obstack_for_string.
3068 * tests/input.at (Reject bad %code qualifiers): Update test output.
3069
3070 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
3071
3072 Consolidate the 4 prologue alternative directives (%code, %requires,
3073 %provides, and %code-top) into a single %code directive with an
3074 optional qualifier field. Discussed at
3075 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
3076 * NEWS (2.3a+): Rewrite the existing entry for the prologue
3077 alternatives.
3078 * doc/bison.texinfo (Prologue Alternatives): Update.
3079 (Decl Summary): Update to %code "requires" and %code "provides".
3080 (Calc++ Parser): Update to %code "requires".
3081 (Table of Symbols): Remove entries for %requires, %provides, and
3082 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
3083 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
3084 are replaced by b4_percent_code_provides and b4_percent_code_requires,
3085 which are skeleton-specific.
3086 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
3087 declare what %code qualifiers it supports and to complain if any other
3088 qualifiers were used in the grammar.
3089 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
3090 and b4_user_code([b4_percent_code_provides]) in place of
3091 b4_user_requires and b4_user_provides.
3092 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
3093 Add b4_user_code([b4_percent_code_top]) and
3094 b4_user_code([b4_percent_code]).
3095 Invoke b4_check_percent_code_qualifiers.
3096 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3097 PERCENT_REQUIRES): Remove.
3098 (grammar_declaration): Remove RHS's for %code-top, %provides, and
3099 %requires. Rewrite the %code RHS as the unqualified form defining the
3100 muscle b4_percent_code. Add another RHS for the qualified %code form,
3101 which defines muscles of the form b4_percent_code_QUALIFIER and the
3102 b4_used_percent_code_qualifiers muscle.
3103 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3104 PERCENT_REQUIRES): Remove.
3105 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
3106 %code "requires" and %code "provides".
3107 * tests/input.at (Reject bad %code qualifiers): New.
3108
3109 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3110
3111 Use the new code_props interface for destructors and printers.
3112 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
3113 printer_location members, and change the type of the destructor and
3114 printer members to code_props.
3115 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
3116 symbol_printer_get, semantic_type_destructor_set,
3117 semantic_type_printer_set, default_tagged_destructor_set,
3118 default_tagless_destructor_set, default_tagged_printer_set,
3119 default_tagless_printer_set): Use code_props in arguments and return
3120 types in place of char const * and location.
3121 (symbol_destructor_location_get, symbol_printer_location_get): Remove
3122 since the locations are now contained in the return of
3123 symbol_destructor_get and symbol_printer_get.
3124 * src/output.c (symbol_destructors_output, symbol_printers_output):
3125 Replace with...
3126 (symbol_code_props_output): ... this to eliminate duplicate code.
3127 (output_skeleton): Update to use symbol_code_props_output.
3128 * src/reader.c (symbol_should_be_used): Update use of
3129 symbol_destructor_get.
3130 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
3131 Update uses of the various _destructor_set and _printer_set functions.
3132 * src/symtab.c: (default_tagged_destructor_location,
3133 default_tagless_destructor_location, default_tagged_printer_location,
3134 default_tagless_printer_location): Remove since we...
3135 (default_tagged_destructor, default_tagless_destructor,
3136 default_tagged_printer, default_tagless_printer): ... change the type
3137 of these to code_props.
3138 (symbol_new, semantic_type_new, symbol_destructor_set,
3139 semantic_type_destructor_set, symbol_destructor_get,
3140 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
3141 symbol_check_alias_consistency, default_tagged_destructor_set,
3142 default_tagless_destructor_set, default_tagged_printer_set,
3143 default_tagless_printer_set): Update.
3144 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
3145 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
3146 code_props members.
3147 (symbol_print): Use SYMBOL_CODE_PRINT.
3148
3149 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3150
3151 Use the new code_props interface for rule actions.
3152 * src/symlist.h (symbol_list): Replace action, action_location, and
3153 used members with a code_props action_props member.
3154 * src/reader.c (symbol_should_be_used, grammar_rule_check,
3155 grammar_midrule_action, grammar_current_rule_merge_set,
3156 grammar_current_rule_symbol_append, packgram): Update.
3157 * src/scan-code.h (translate_rule_action): Remove, no longer used.
3158 * src/scan-code.l (handle_action_dollar): Update.
3159 (translate_rule_action): Remove, no longer used.
3160 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
3161
3162 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
3163
3164 Use the new code_props interface in parse-gram.y.
3165 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
3166 Update all uses of translate_* functions to use the new code_props
3167 interface and to use gram_scanner_last_string_free and
3168 code_scanner_last_string_free where possible.
3169 (grammar_declaration): symbol_list_destructor_set and
3170 symbol_list_printer_set now perform the translation, so don't do it
3171 here. Use gram_scanner_last_string_free where possible.
3172 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
3173 translate_code): Remove, no longer used.
3174 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
3175 symbol_list_printer_set): Perform code translation here rather than
3176 depending on the caller to do so.
3177
3178 * src/symlist.h (struct symbol_list): Correct some documentation typos.
3179 * src/scan-gram.h (gram_last_string): Remove declaration.
3180 * src/scan-gram.l (last_string): Declare it static.
3181
3182 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
3183
3184 Encapsulate code properties and related functionality for the various
3185 destructors, printers, and actions into a code_props structure and
3186 interface. This patch merely implements code_props in scan-code.h and
3187 scan-code.l. Future patches will rewrite other modules to use it.
3188 Discussed starting at
3189 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
3190 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
3191 consistently initialize const structs that have an empty location
3192 field.
3193 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
3194 to ensure consistency.
3195 * src/scan-code.h (code_props): New structure.
3196 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
3197 function, macro, and const global variable for initializing a
3198 code_props with no code.
3199 (code_props_plain_init, code_props_symbol_action_init,
3200 code_props_rule_action_init, code_props_translate_code): The rest of
3201 the new code_props functional interface. Among other things, the init
3202 functions set the code_props kind field so that
3203 code_props_translate_code will know whether to behave like
3204 translate_symbol_action, translate_rule_action, or translate_code.
3205 These old translate functions must remain until all other modules are
3206 updated to use the new code_props interface.
3207 (code_scanner_last_string_free): New function similar to
3208 gram_scanner_last_string_free.
3209 (code_scanner_free): Add documentation.
3210 * src/scan-code.l: Implement the new interface.
3211 (code_lex): Make it static, add a code_props* argument, and remove the
3212 rule argument.
3213 (last_string): New static global similar to the one in scan-gram.l.
3214 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
3215 instead of rule.
3216 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
3217 code_props since Bison may one day use this information for destructors
3218 and printers.
3219 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
3220 (handle_action_dollar): Use symbol_list_n_get and set used flag
3221 directly since symbol_list_n_used_set is removed.
3222 (translate_action): Add a code_props* argument and remove the rule,
3223 action, and location arguments. Pass the code_props* on to code_lex.
3224 (translate_rule_action, translate_symbol_action, translate_code):
3225 Rewrite as wrappers around the new code_props interface.
3226 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
3227 it would eventually need to break the encapsulation of code_props.
3228
3229 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
3230
3231 * etc/.cvsignore: New.
3232
3233 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
3234
3235 Add maintainer-push-check to run maintainer-check using push parsing in
3236 place of pull parsing where available.
3237 * Makefile.am (maintainer-push-check): New.
3238 * data/bison.m4 (b4_use_push_for_pull_if): New.
3239 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
3240 appropriately based on their existing values.
3241 (yypush_parse): Don't print push-parser-specific diagnostics if push
3242 parsing is being used in place of pull parsing.
3243 * data/yacc.c: If push parsing should replace pull parsing, redirect to
3244 push.c.
3245 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
3246 variable, and insert b4_use_push_for_pull_flag into muscles.
3247 * tests/Makefile.am (maintainer-push-check): New.
3248
3249 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
3250
3251 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
3252 (whether successful or failed) so that yypush_parse can be invoked
3253 again to start a new parse using the same yypstate.
3254 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
3255 check multiple yypull_parse invocations on the same yypstate. For pull
3256 mode, extend to check multiple yyparse invocations.
3257 (Exploding the Stack Size with Alloca): Extend to try with
3258 %push-pull-parser.
3259 (Exploding the Stack Size with Malloc): Likewise.
3260
3261 * tests/calc.at (Simple LALR Calculator): Don't specify
3262 %skeleton "push.c" since %push-pull-parser implies that now.
3263 * tests/headers.at (export YYLTYPE): Don't check for the push
3264 declarations. Otherwise, this test case can't be used to see if push
3265 mode can truly emulate pull mode.
3266 * tests/input.at (Torturing the Scanner): Likewise.
3267 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
3268 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
3269 AT_YACC_IF, which now includes the case of push mode since %skeleton
3270 need not be used for push mode. This will be more intuitive once
3271 push.c is renamed to yacc.c.
3272
3273 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
3274
3275 For push mode, convert yyparse from a macro to a function, invoke yylex
3276 instead of passing a yylexp argument to yypull_parse, and don't
3277 generate yypull_parse or yyparse unless %push-pull-parser is declared.
3278 Discussed starting at
3279 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
3280 * data/bison.m4 (b4_pull_if): New.
3281 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
3282 * data/push.c: Improve M4 quoting a little.
3283 (b4_generate_macro_args, b4_parenthesize): Remove.
3284 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
3285 any time a pull parser is requested.
3286 Don't #define this as a wrapper around yypull_parse. Instead, when
3287 both push and pull are requested, make it a function that does that
3288 same thing.
3289 (yypull_parse): If there's a b4_prefix, #define this to
3290 b4_prefix[pull_parse] when both push and pull are requested.
3291 Don't define this as a function unless both push and pull are
3292 requested.
3293 Remove the yylexp argument and hard-code yylex invocation instead.
3294 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
3295 %push-parser.
3296 * src/getargs.c (pull_parser): New global initialized to true.
3297 * getargs.h (pull_parser): extern it.
3298 * src/output.c (prepare): Insert pull_flag muscle.
3299 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
3300 (prologue_declaration): Set both push_parser and pull_parser = true for
3301 %push-pull-parser. Set push_parser = true and pull_parser = false for
3302 %push-parser.
3303 * src/scan-gram.l: Don't accept %push_parser as an alternative to
3304 %push-parser since there's no backward-compatibility concern here.
3305 Scan %push-pull-parser.
3306 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
3307 instead of %push-parser.
3308 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
3309 prototype it in the module that calls yyparse.
3310 * tests/input.at (Torturing the Scanner): Likewise.
3311 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
3312
3313 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
3314
3315 Update etc/bench.pl. Optimize push mode a little (the yyn change
3316 deserves most of the credit).
3317 * Makefile.am (SUBDIRS): Add etc subdirectory.
3318 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
3319 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
3320 yytoken, yyval, and yyloc declarations to...
3321 (yyparse or yypush_parse): ... here to improve performance. For
3322 yypush_parse invocations after the first, be sure to assign yyn its old
3323 value again.
3324 (yypstate_new): Don't bother initializing the yyresult field since the
3325 initial value isn't used.
3326 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
3327 remove the #define that, in push mode, set it to yyps->NAME.
3328 * etc/Makefile.am: New.
3329 * etc/bench.pl: Remove and build it instead from...
3330 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
3331 "tests/bison" from the build directory by default rather than just
3332 invoking "bison" from $PATH.
3333 (calc_grammar): Update push parser code: don't declare yylval globally,
3334 don't define yyparse_wrapper, and don't #define yyparse.
3335 (bench_grammar): Update to check all working combinations of yacc.c,
3336 push.c, impure, pure, pull, and push.
3337
3338 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
3339
3340 For push mode, add pull wrappers around yypush_parse.
3341 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
3342 (yypull_parse): New function wrapping yypush_parse.
3343 (yyparse): New #define wrapping yypull_parse.
3344 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
3345 is declared.
3346 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
3347 prototype yylex in the module that calls yyparse, and don't prototype
3348 yyparse there. Otherwise, the yyparse expansion won't compile.
3349 * tests/input.at (Torturing the Scanner): Likewise.
3350
3351 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
3352
3353 Enable push parsers to operate in impure mode. Thus, %push-parser no
3354 longer implies %pure-parser. The point of this change is to move
3355 towards being able to test the push parser code by running the entire
3356 test suite as if %push-parser had been declared.
3357 * data/push.c (yypush_parse): For impure mode, remove the
3358 yypushed_char, yypushed_val, and yypushed_loc arguments.
3359 Instead, declare these as local variables initialized to the global
3360 yychar, yylval, and yylloc.
3361 For the first yypush_parse invocation only, restore the initial values
3362 of these global variables when it's time to read a token since they
3363 have been overwritten.
3364 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
3365 %push-parser.
3366 * tests/calc.at (Simple LALR(1) Calculator): Always declare
3367 %pure-parser along with %push-parser since this test case was designed
3368 for pure push parsers.
3369 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
3370 (AT_YACC_OR_PUSH_IF): New.
3371 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
3372 add a note that it's still wrong for some cases (as it has been for a
3373 while).
3374 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
3375 %push-parser no longer implies %pure-parser.
3376
3377 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
3378
3379 Remove some unnecessary differences between the pull parser code and
3380 the push parser code. This patch enables yynerrs in push mode.
3381 * data/push.c: Reformat M4 a little.
3382 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
3383 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
3384 because push mode is on. Instead, if pure mode is on, move yynerrs
3385 to...
3386 (b4_declare_parser_state_variables): ... here.
3387 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
3388 to yyps->NAME so it can be used in yypush_parse.
3389 (yypush_parse): Don't omit uses of yynerrs in push mode.
3390
3391 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
3392
3393 Fix bug such that the first pushed token's value and location are
3394 sometimes overwritten (sometimes by %initial-action) before being used.
3395 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
3396 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
3397 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
3398 more closely mimic the pull parser logic.
3399 Don't copy the pushed token to yychar, yylval, and yylloc until it's
3400 time to read a token, which is after any initialization of yylval and
3401 yylloc.
3402 (gottoken): Rename label to...
3403 (yyread_pushed_token): ... for clarity and to avoid infringing on the
3404 user namespace.
3405
3406 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
3407
3408 Rearrange initialization of the parser state variables so that the
3409 skeleton doesn't have to have a copy for pull mode and another for push
3410 mode. This patch also fixes at least a bug such that yylloc was not
3411 initialized (with b4_location_initial_line and
3412 b4_location_initial_column) upon calling yypush_parse. However, that
3413 initialization now overwrites the first token's location;
3414 %initial-action assigning @$ already did the same thing, and both bugs
3415 will be fixed in a later patch.
3416 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
3417 (b4_declare_parser_state_variables): Remove initialization of yytoken,
3418 yyss, yyvs, yyls, and yystacksize.
3419 (yypstate_new): Remove initialization of some yypstate fields: yystate,
3420 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
3421 yylsp.
3422 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
3423 yyps->NAME so it can be used in yypush_parse.
3424 (yyparse or yypush_parse): For yypush_parse, don't print the
3425 "Starting parse" diagnostic for invocations after the first.
3426 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
3427 yypush_parse, only do it for the first invocation.
3428 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
3429 initialization to occur in yypush_parse but only on the first
3430 invocation.
3431
3432 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
3433
3434 * data/push.c: Add CPP guards around push parser declarations in both
3435 the header and the code file.
3436 In the code file, move the push parser declarations to the same place
3437 they appear in the header file.
3438 Clean up the M4 some, especially the inconsistent underquoting in
3439 some b4_c_function_def and b4_c_function_decl uses.
3440
3441 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
3442
3443 Encapsulate the push parser state variables into an M4 macro so the
3444 push skeleton doesn't have to list them again for pull mode's yyparse.
3445 For push mode, remove yypush_parse's local equivalents of these
3446 variables to eliminate unnecessary copying between the two sets at
3447 run-time. This patch also fixes at least a bug related to multiple
3448 %initial-action invocations in push mode.
3449 * data/push.c (b4_declare_parser_variables): Rename to...
3450 (b4_declare_scanner_communication_variables): ... this for clarity and
3451 update both uses.
3452 (b4_declare_yyparse_variables): Remove and move its contents to the one
3453 spot where it was invoked.
3454 (b4_declare_parser_state_variables): New macro containing the parser
3455 state variables required by push mode.
3456 (struct yypstate): Replace all fields but yynew with
3457 b4_declare_parser_state_variables.
3458 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
3459 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
3460 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
3461 (yyparse or yypush_parse): For yyparse in pull mode, replace local
3462 parser state variable declarations with
3463 b4_declare_parser_state_variables.
3464 Don't initialize parser state variables when calling yypush_parse since
3465 yypstate_new already does that.
3466 Invoke the user's initial action only upon the first yypush_parse
3467 invocation.
3468 Remove all code that copies between the local parser state variables
3469 and the yypstate.
3470
3471 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
3472
3473 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
3474 prevent a name collision in a future patch where these names will
3475 sometimes be #define'd.
3476 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
3477 since it no longer has the same name as the existing argument.
3478 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
3479
3480 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
3481 and Joel E. Denny <jdenny@ces.clemson.edu>
3482
3483 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
3484 that the argument is case-insensitive, and there's no `=' here.
3485 For the %skeleton entry, mention that %language is better.
3486 (Bison Options): Likewise for --language and --skeleton. Move the
3487 --skeleton entry so that the `Tuning the parser' section is sorted
3488 alphabetically on long options.
3489 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
3490 %language directive in detail here; cross-reference the %language
3491 documentation instead.
3492 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
3493 `%require "2.3b"' so that the example is always up-to-date.
3494 (Table of Symbols): Add entries for %language and %skeleton.
3495 * examples/extexi (normalize): Instead of replacing every %require
3496 argument with the current Bison version, just substitute for
3497 `@value{VERSION}'. This guarantees that we're testing what actually
3498 appears in the documentation.
3499 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
3500 rather than `@VERSION@'.
3501
3502 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
3503
3504 * NEWS: Reword the %language news a bit, and put it earlier.
3505
3506 * src/getargs.c (skeleton_arg): Last arg is now location const *.
3507 Rewrite to simplify the logic.
3508 (language_argmatch): Likewise.
3509 (program_name): We now own this var.
3510 * src/getargs.h (struct bison_language): Use char[] rather than
3511 const char *.
3512
3513 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
3514 Java is supported.
3515 * src/complain.c (program_name): Remove decl; no longer needed.
3516 * src/main.c (program_name): Remove; now belongs to getargs.
3517
3518 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
3519
3520 * NEWS: Document %language.
3521
3522 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
3523
3524 * data/c-skel.m4, data/c++-skel.m4: New files.
3525 * data/glr.c: Complain on push parsers.
3526
3527 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
3528 over %skeleton.
3529 (Decl Summary): Document %language and %skeleton.
3530 (Command line): Document -L.
3531
3532 * examples/extexi: Rewrite %require directive.
3533 * examples/calc++/Makefile.am: Pass VERSION to extexi.
3534
3535 * src/files.c (compute_exts_from_gc): Look in language structure
3536 for .y extension.
3537 (compute_file_name_parts): Check whether .tab should be added.
3538 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
3539 (language, skeleton_arg, language_argmatch): New.
3540 (long_options): Add --language.
3541 (getargs): Use skeleton_arg, add -L/--language.
3542 * src/getargs.h: Include location.h.
3543 (struct bison_language, language, skeleton_arg, language_argmatch): New.
3544 * src/output.c (prepare): Pick default skeleton from struct language.
3545 Don't dispatch C skeletons here.
3546 * src/parse-gram.y (PERCENT_LANGUAGE): New.
3547 (prologue_declaration): Add "%language" rule, use skeleton_arg.
3548 * src/scan-gram.l ("%language"): New rule.
3549
3550 * tests/calc.at: Test %skeleton and %language.
3551 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
3552 (AT_GLR_IF): Look for %skeleton "glr.cc".
3553 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
3554 (AT_YACC_IF): Reject %language.
3555
3556 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
3557
3558 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
3559 since it wasn't used; only the typedef name 'semantic_type' is needed.
3560 Also, omit trailing white space.
3561
3562 * bootstrap: Sync from coreutils.
3563 (gnulib_extra_files): Add build-aux/announce.gen.
3564 (slurp): Adjust .gitignore files like .cvsignore files.
3565 * build-aux/announce-gen: Remove from CVS, since bootstrap
3566 now creates this.
3567
3568 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
3569
3570 Make %push-parser imply %pure-parser. This fixes several bugs; see
3571 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
3572 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
3573 pure_parser = true.
3574 * data/push.c: Don't bother testing b4_push_if when deciding whether
3575 to expand b4_declare_parser_variables globally.
3576 (yypush_parse): Likewise in here.
3577
3578 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
3579 (yy_reduce_print): Reformat M4 for readability.
3580
3581 2006-12-15 Bob Rossi <bob@brasko.net>
3582 and Joel Denny <jdenny@ces.clemson.edu>
3583
3584 * data/push.c (yypstate): Add typedef, and update all uses of
3585 struct yypstate to just yypstate.
3586 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
3587
3588 2006-12-14 Bob Rossi <bob@brasko.net>
3589
3590 * data/push.c (yypush_parse): Declare prototype regardless of
3591 %locations option.
3592
3593 2006-12-14 Bob Rossi <bob@brasko.net>
3594
3595 * data/push.c (yyparse): Remove the prototype and the #define when in
3596 push-parser mode.
3597
3598 2006-12-13 Bob Rossi <bob@brasko.net>
3599
3600 * data/push.c (yypstate_init): Rename to...
3601 (yypstate_new): ... this and use b4_c_function_def.
3602 (yypstate_delete): New.
3603 (yypush_parse): Change parameters yynval and yynlloc to be const.
3604 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
3605 yypstate_delete functions.
3606
3607 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
3608
3609 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
3610 strange test case titles. Reported by Bob Rossi.
3611
3612 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
3613
3614 * TODO: Add pointer to Sylvain Schmitz's work on static detection
3615 of potential ambiguities in GLR grammers.
3616
3617 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
3618
3619 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
3620 `bison ', use m4_index instead of m4_substr since chopping up a string
3621 containing M4-special characters causes problems here.
3622
3623 Fix a couple of bugs related to special characters in user-specified
3624 file names, and make it easier for skeletons to compute output file
3625 names with the same file name prefix as Bison-computed output file
3626 names.
3627 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
3628 b4_parser_file_name and b4_spec_defines_file instead of
3629 @output_parser_name@ and @output_header_name@, which are now redundant.
3630 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
3631 b4_parser_file_name, b4_spec_defines_file, and the new
3632 @basename(FILENAME@) instead of @output_parser_name@ and
3633 @output_header_name@, which inappropriately escaped the file names as
3634 C string literals.
3635 * src/files.c (all_but_ext): Remove static qualifier.
3636 (compute_output_file_names): Move `free (all_but_ext)' to...
3637 (output_file_names_free): ... here since all_but_ext is needed later.
3638 * src/files.h (all_but_ext): Extern.
3639 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
3640 exactly what MUSCLE_INSERT_STRING used to do.
3641 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
3642 characters are escaped properly.
3643 * src/output.c (prepare): Define muscle file_name_all_but_ext as
3644 all_but_ext.
3645 For pkgdatadir muscle, maintain previous functionality by using
3646 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
3647 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
3648 digraphs would never be expanded. Hopefully no one has M4-special
3649 characters in his Bison installation path.
3650 * src/scan-skel.l: Don't parse @output_header_name@ and
3651 @output_parser_name@ anymore since they're now redundant.
3652 In @output, use decode_at_digraphs.
3653 Parse a new @basename command that invokes last_component.
3654 (decode_at_digraphs): New.
3655 (BASE_QPUTS): Remove unused.
3656 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
3657 (Output file name): New tests.
3658
3659 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
3660
3661 Warn about output files that are generated by the skeletons and that
3662 conflict with other output files.
3663 * data/glr.c: Don't generate the header file here when glr.cc does.
3664 * src/files.c (file_names, file_names_count): New static globals.
3665 (compute_output_file_names): Invoke output_file_name_check for files
3666 not generated by the skeletons and remove existing checks.
3667 (output_file_name_check): New function that warns about conflicting
3668 output file names.
3669 (output_file_names_free): Free file_names.
3670 * src/files.h (output_file_name_check): Declare.
3671 * src/scan-skel.l: Invoke output_file_name_check for files generated by
3672 the skeletons.
3673 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
3674 (Conflicting output files): New tests.
3675
3676 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3677
3678 * doc/bison.texinfo: Fix a couple of typos.
3679
3680 2006-12-08 Bob Rossi <bob@brasko.net>
3681
3682 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
3683 Rename to...
3684 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
3685 update all uses.
3686 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
3687 (yypush_parse): Rename yypvars argument to yyps and remove redundant
3688 local pv.
3689 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
3690 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
3691
3692 2006-12-07 Bob Rossi <bob@brasko.net>
3693 and Joel Denny <jdenny@ces.clemson.edu>
3694
3695 * data/push.c (yypvarsinit): Change return type from void* to struct
3696 yypvars*. No longer cast to void* on return.
3697 (struct yypvars): Remove yylen since it need not be remembered between
3698 yypushparse invocations.
3699 (yypushparse): Don't copy between yylen and pv->yylen.
3700
3701 2006-12-05 Bob Rossi <bob@brasko.net>
3702
3703 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
3704 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
3705 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
3706 (struct yypvars): Remove b4_declare_parser_variables.
3707 (yypvarsinit): Remove init code for removed variables.
3708 (global scope): Do not declare b4_declare_parser_variables if
3709 push or pure mode.
3710 (yypushparse): Add b4_declare_parser_variables.
3711 Init new local variables, and remove init code for removed
3712 yypvars variables.
3713 (yyparse): Delete.
3714 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
3715 and yyparse for other modes.
3716 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
3717 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
3718 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
3719 (AT_PURE_LEX_IF): True if pure or push parser.
3720
3721 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
3722
3723 Document Yacc prologue alternatives and default %destructor's and
3724 %printer's as experimental. Don't mention Java yet. Discussed at
3725 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
3726 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
3727 (2.3a): Annotate this entry to say the old forms of these features were
3728 also experimental.
3729 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
3730 Table of Symbols): Say they're experimental. Comment out any mention
3731 of Java (we'll want this back eventually).
3732
3733 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
3734
3735 Support a file name argument to %defines. Deprecate `=' in
3736 %file-prefix, %name-prefix, and %output. Discussed at
3737 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
3738 * NEWS (2.3a+): Mention.
3739 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
3740 form of %defines, and remove `=' from entries for %file-prefix,
3741 %name-prefix, and %output.
3742 * src/parse-gram.y (prologue_declaration): Implement.
3743 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
3744 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
3745 all but one occurrence of %name-prefix.
3746 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
3747 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
3748 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
3749 occurrence of each of %file-prefix and %output. Add check for %defines
3750 with argument.
3751 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
3752 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
3753 Remove the `=' from %output.
3754
3755 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
3756
3757 Don't escape $ in test case titles since Autoconf 2.61 now does that
3758 correctly.
3759 * tests/actions.at (Default %printer and %destructor are not for error
3760 or $undefined): Here.
3761 (Default %printer and %destructor are not for $accept): Here.
3762 * tests/input.at (Invalid $n and @n): Here.
3763
3764 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
3765
3766 Rename <!> to <>. Discussed starting at
3767 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
3768 * NEWS (2.3a+): Update.
3769 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
3770 Update.
3771 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
3772 * src/scan-gram.l (INITIAL): Implement.
3773 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
3774 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
3775 comment.
3776 * tests/actions.at (Default tagless %printer and %destructor,
3777 Default tagged and per-type %printer and %destructor,
3778 Default %printer and %destructor are not for error or $undefined,
3779 Default %printer and %destructor are not for $accept,
3780 Default %printer and %destructor for mid-rule values): Update.
3781 * tests/input.at (Default %printer and %destructor redeclared,
3782 Unused values with default %destructor): Update.
3783
3784 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
3785
3786 Don't let %prec take a nonterminal.
3787 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
3788 token.
3789 * tests/input.at (%prec takes a token): New test checking that %prec
3790 won't take a nonterminal.
3791
3792 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
3793
3794 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
3795 it was double-quoted.
3796 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
3797 grammar is maintained with Bison's highest standards.
3798 * src/getargs.c: Fix some typos in Doxygen comments.
3799
3800 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
3801
3802 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
3803 later. Reported by Paul Eggert in
3804 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
3805 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
3806 * src/scan-code.l (translate_action): Don't bother invoking
3807 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
3808 (code_scanner_free): Instead of invoking
3809 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
3810 which frees more.
3811 * src/scan-gram.l (gram_scanner_free): Likewise.
3812 * src/scan-skel.l (scan_skel): Likewise.
3813
3814 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
3815
3816 * src/files.c (tr): Change return type to void.
3817 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
3818 has been called previously for the same key.
3819 (muscle_find): Return storage instead of value so that
3820 --enable-gcc-warnings doesn't produce warnings that the return discards
3821 const. aver that the value and storage are the same since storage
3822 could potentially be NULL when value is not.
3823 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
3824 same as 0.
3825
3826 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
3827
3828 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
3829 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
3830 us a slightly cleaner distribution, and also works.
3831 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
3832 gnulib changes.
3833
3834 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
3835 and Paul Eggert <eggert@cs.ucla.edu>
3836
3837 Don't let Bison leak memory except when it complains.
3838 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
3839 (spec_defines_file, dir_prefix): Now char *, not const char *,
3840 since they are freed.
3841 * src/files.c: Likewise.
3842 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
3843 Likewise.
3844 (tr): Now operates in-place. All uses changed.
3845 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
3846 values.
3847 (compute_file_name_parts, compute_output_file_names): Don't store
3848 read-only data in variables that will be freed.
3849 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
3850 src_extension, and header_extension.
3851 (output_file_names_free): New public function to free
3852 spec_verbose_file, spec_graph_file, spec_defines_file,
3853 parser_file_name, and dir_prefix.
3854 * src/getargs.c (getargs): Don't store read-only data in variables that
3855 will be freed.
3856 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
3857 (which previously existed but was unused), and quotearg_free.
3858 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
3859 * src/muscle_tab.c: Likewise.
3860 (muscle_entry): Make the value char const *,
3861 and add a new storage member that is char * and can be freed.
3862 (muscle_entry_free): New private function.
3863 (muscle_init): Use it instead of free.
3864 (muscle_insert, muscle_grow): Update and use new storage member.
3865 (muscle_code_grow): Free the string passed to muscle_grow
3866 since it's not needed anymore.
3867 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
3868 add a new `char *code' member.
3869 ("{...}"): Declare semantic type as code.
3870 * src/scan-code.h (translate_rule_action):
3871 (translate_symbol_action, translate_code, translate_action): Return
3872 `char const *' rather than `char *' since external code should not free
3873 these strings.
3874 * src/scan-code.l: Likewise.
3875 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
3876 which is "{...}" in the parser.
3877 * tests/Makefile.am (maintainer-check-valgrind): Set
3878 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
3879 Valgrind.
3880 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
3881 complain.
3882 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
3883 expecting a non-zero exit status sets --leak-check=summary and
3884 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
3885 this case, and we don't want to hear about it.
3886
3887 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
3888
3889 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
3890 instead of from the template, to simplify configuration a bit.
3891 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
3892 and m4/wint_t.m4, as they are needed with the latest gnulib.
3893
3894 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
3895
3896 Disable unset/unused mid-rule value warnings by default, and recognize
3897 --warnings=midrule-values to enable them. Discussed starting at
3898 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
3899 * NEWS (2.3a+): Mention.
3900 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
3901 warnings): Add entry for midrule-values subargument.
3902 * src/reader.c (symbol_should_be_used): Don't return true just because
3903 the value is a set/used mid-rule value unless
3904 --warnings=midrule-values was specified.
3905 * tests/input.at (Unused values, Unused values before symbol
3906 declarations): Run tests with and without --warnings=midrule-values.
3907
3908 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
3909 than LIST_FREE directly.
3910
3911 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
3912
3913 Finish implementing --warnings=error, which should not be implied by
3914 --warnings=all (or by its synonyms -W and --warnings without
3915 subarguments).
3916 * src/complain.c (set_warning_issued): New function to report that
3917 warnings are being treated as errors and to record an error if so.
3918 Invoke...
3919 (warn_at, warn): ... here.
3920 * src/getargs.c (warnings_args, warnings_types): Reorder so that
3921 "error - warnings are errors" does not appear above "all - all of the
3922 above".
3923 (getargs): For -W and --warnings without subarguments, don't let
3924 FLAGS_ARGMATCH set warnings_error in warnings_flag.
3925 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
3926
3927 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
3928
3929 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
3930 empty subargument list. For example: `bison --warnings= parser.y'.
3931
3932 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3933
3934 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
3935 the parser header file so that gcc doesn't warn.
3936
3937 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3938
3939 Split the default %destructor/%printer into two kinds: <*> and <!>.
3940 Discussed starting at
3941 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
3942 * NEWS (2.3a+): Mention.
3943 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
3944 previous change today related to mid-rules.
3945 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
3946 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
3947 (TYPE_TAG_ANY): Add as <*>.
3948 (TYPE_TAG_NONE): Add as <!>.
3949 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
3950 for <*> and <!>.
3951 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
3952 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
3953 * src/symlist.c (symbol_list_default_new): Split into tagged and
3954 tagless versions.
3955 (symbol_list_destructor_set, symbol_list_printer_set): Split
3956 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
3957 SYMLIST_DEFAULT_TAGLESS.
3958 * src/symlist.h: Update symbol_list_default*_new prototypes.
3959 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
3960 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
3961 * src/symtab.c (default_destructor, default_destructor_location,
3962 default_printer, default_printer_location): Split each into tagged and
3963 tagless versions.
3964 (symbol_destructor_get, symbol_destructor_location_get,
3965 symbol_printer_get, symbol_printer_location_get): Implement tagged
3966 default and tagless default cases.
3967 (default_destructor_set, default_printer_set): Split each into tagged
3968 and tagless versions.
3969 * src/symtab.h: Update prototypes.
3970 * tests/actions.at (Default %printer and %destructor): Rename to...
3971 (Default tagless %printer and %destructor): ... this, and extend.
3972 (Per-type %printer and %destructor): Rename to...
3973 (Default tagged and per-type %printer and %destructor): ... this, and
3974 extend.
3975 (Default %printer and %destructor for user-defined end token): Extend.
3976 (Default %printer and %destructor are not for error or $undefined):
3977 Update.
3978 (Default %printer and %destructor are not for $accept): Update.
3979 (Default %printer and %destructor for mid-rule values): Extend.
3980 * tests/input.at (Default %printer and %destructor redeclared): Extend.
3981 (Unused values with default %destructor): Extend.
3982
3983 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3984
3985 Don't apply the default %destructor/%printer to an unreferenced midrule
3986 value. Mentioned at
3987 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
3988 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
3989 like $@n instead of just @n so that the default %destructor/%printer
3990 logic doesn't see them as user-defined symbols.
3991 (symbol_is_dummy): Check for both forms of the name.
3992 * src/reader.c (packgram): Remove the `$' from each midrule symbol
3993 name for which the midrule value is referenced in any action.
3994 * tests/actions.at (Default %printer and %destructor for mid-rule
3995 values): New test.
3996 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
3997 for change to dummy symbol names.
3998
3999 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4000
4001 Warn about unset midrule $$ if the corresponding $n is used.
4002 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
4003 $n usage.
4004 (packgram): Before invoking grammar_rule_check on any rule, make sure
4005 all actions have already been scanned in order to set `used' flags.
4006 Otherwise, checking that a midrule's $$ is set will not always work
4007 properly because the midrule check must forward-reference the midrule's
4008 parent rule.
4009 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
4010 warning.
4011
4012 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4013
4014 More improvements to the documentation of the prologue alternatives:
4015 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
4016 Bison manual.
4017 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
4018 some text to clarify the relative importance of the new directives and
4019 to show how these directives may be viewed as code labels.
4020
4021 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
4022
4023 Similar to the recently removed %before-header, add %code-top as the
4024 alternative to the pre-prologue. Mentioned at
4025 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
4026 Also, let the prologue alternatives appear in the grammar section.
4027 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
4028 (prologue_declaration): Move the existing prologue alternatives to...
4029 (grammar_declaration): ... here and add %code-top.
4030 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
4031
4032 Clean up and extend documentation for the prologue alternatives.
4033 * NEWS (2.3a+): Describe prologue alternatives.
4034 * doc/bison.texinfo (Prologue): Move discussion of prologue
4035 alternatives to...
4036 (Prologue Alternatives): ... this new section, and extend it to discuss
4037 all 4 directives in detail.
4038 (Table of Symbols): Clean up discussion of prologue alternatives and
4039 add %code-top.
4040
4041 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4042
4043 DJGPP specific issues.
4044
4045 * djgpp/config.bat: config.hin has been moved to lib. Adjust
4046 config.bat accordingly.
4047 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
4048 * djgpp/config.site: Likewise.
4049
4050 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
4051
4052 Replace %*-header with %provides, %requires, %code. See discussion at
4053 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
4054
4055 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
4056 (b4_user_start_header): Remove.
4057 * data/glr.c: Use new macros instead of b4_*start_header
4058 and b4_*end_header.
4059 * data/glr.cc: Likewise.
4060 * data/lalr1.cc: Likewise.
4061 * data/push.c: Likewise.
4062 * data/yacc.c: Likewise.
4063
4064 * doc/bison.texinfo: Remove %before-header, rename
4065 %{start,end,after}-header to %requires, %provides, %code.
4066
4067 * src/parse-gram.y: Likewise (also rename token names accordingly).
4068 * src/scan-gram.l: Likewise.
4069 * tests/actions.at: Likewise.
4070
4071 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
4072
4073 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
4074 Problem reported by Joel E. Denny.
4075
4076 2006-10-14 Jim Meyering <jim@meyering.net>
4077
4078 (Sync from coreutils.)
4079 Work also when the working directory (with e.g. coreutils sources)
4080 is version controlled with git, rather than CVS.
4081 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
4082 rather than CVS.
4083 In messages and comments, say e.g., "checked-out sources",
4084 rather than "CVS sources".
4085 (version_controlled_file): New function. Work for git as well as
4086 for CVS. Don't use grep's -q option.
4087 (slurp): Call it here, in place of CVS-specific code.
4088
4089 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
4090
4091 Fix testsuite for ./configure --enable-gcc-warnings:
4092 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
4093 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
4094 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
4095 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
4096 * test/regression.at (Diagnostic that expects two alternatives):
4097 Likewise.
4098
4099 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4100
4101 * bootstrap.conf (gnulib_modules): Add config-h.
4102 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
4103 worry about HAVE_CONFIG_H.
4104 * lib/abitset.c: Likewise.
4105 * lib/bitset.c: Likewise.
4106 * lib/bitset_stats.c: Likewise.
4107 * lib/bitsetv-print.c: Likewise.
4108 * lib/bitsetv.c: Likewise.
4109 * lib/ebitset.c: Likewise.
4110 * lib/get-errno.c: Likewise.
4111 * lib/lbitset.c: Likewise.
4112 * lib/subpipe.c: Likewise.
4113 * lib/timevar.c: Likewise.
4114 * lib/vbitset.c: Likewise.
4115 * lib/bitset.c: Include "bitset.h" first, to test interface.
4116 * lib/bitset_stats.c: Include "bitset_stats.h" first.
4117 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
4118 * lib/bitsetv.c: Include "bitsetv.h" first.
4119 * lib/get-errno.c: Include "get-errno.h" first.
4120 * m4/.cvsignore: Add config-h.m4.
4121 * tests/actions.at (Default %printer and %destructor for ...):
4122 Adjust expected line numbers in output to reflect removal of #if
4123 HAVE_CONFIG_H lines.
4124 * tests/glr-regression.at (Missed %merge type warnings when ...):
4125 Likewise.
4126 * tests/regression.at (Braced code in declaration in rules section):
4127 Likewise.
4128 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
4129 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
4130 Include <config.h> unconditionally.
4131
4132 * bootstrap: Sync from coreutils, as follows:
4133
4134 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
4135
4136 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
4137 variable was sometimes used without being initialized. This
4138 messed up the installation of the INSTALL file in some cases.
4139
4140 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
4141
4142 * bootstrap (usage, main program, symlink_to_gnulib): Add option
4143 --copy. Inspired by a suggestion from Bruno Haible.
4144
4145 2006-10-03 Jim Meyering <jim@meyering.net>
4146
4147 * bootstrap: Undo last change to this file, since now gnulib-tool
4148 sticks with the automake default in generating dependencies.
4149
4150 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4151
4152 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
4153 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
4154
4155 * doc/bison.1: Add copyright notice.
4156
4157 * data/glr.c: Don't include <stdarg.h>; not used.
4158
4159 * NEWS: The -g and --graph options now output graphs in Graphviz
4160 DOT format, not VCG format.
4161 * doc/bison.1: Likewise.
4162 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
4163 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
4164 of this change in
4165 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
4166 * TODO: Remove Graphviz entry.
4167 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
4168 remove vcg.c, vcg.h, vcg_defaults.h.
4169 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
4170 * src/graphviz.c, src/graphviz.h: New files.
4171 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
4172 * src/files.h: Make comment more generic.
4173 * src/main.c (main): Likewise.
4174 * src/print_graph.h: Likewise.
4175 * src/getargs.c (usage): Make usage description more generic.
4176 * src/print_graph.c: Include graphviz.h rather than vcg.h.
4177 (static_graph, fgraph): Remove. All uses changed to pass
4178 arguments instead of sharing a static var.
4179 (print_core, print_actions, print_state, print_graph):
4180 Output graphviz format rather than VCG format.
4181 * tests/.cvsignore: Remove *.vcg; add *.dot.
4182 * tests/output.at: Expect *.dot files, not *.vcg files.
4183
4184 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
4185 accommodates the 2006-10-08 change.
4186
4187 2006-10-11 Bob Rossi <bob@brasko.net>
4188
4189 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
4190 (b4_yyssa, b4_yyerror_range): New macros.
4191 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
4192 (yypvarsinit): Remove init of removed fields.
4193 (yypushparse): Remove use of removed fields; use new macros instead.
4194
4195 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
4196
4197 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
4198 in a push parser. Reindent slightly to match yacc.c better.
4199
4200 2006-10-11 Bob Rossi <bob@brasko.net>
4201
4202 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
4203 yymsg_alloc fields.
4204 (yypvarsinit, yypushparse): Remove init of removed fields.
4205 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
4206
4207 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
4208
4209 * THANKS: Add Paolo Bonzini and Bob Rossi.
4210
4211 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
4212
4213 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
4214 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
4215 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
4216 b4_define_user_cde and uses): Remove.
4217 (b4_comment, b4_prefix, b4_sync_start): New.
4218 * data/bison.m4: New file, with most of the content removed from c.m4.
4219 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
4220 * src/output.c (output_skeleton): Pass bison.m4.
4221 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
4222 only if specified.
4223
4224 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
4225
4226 Fix test failure reported by Tom Lane in
4227 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
4228 and try to make such failures easier to catch in the future.
4229 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
4230 that's now the caller's responsibility.
4231 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
4232 Set yychar = YYEOF if it's negative.
4233 * tests/actions.at (yylex): Abort if asked to read past EOF.
4234 * tests/conflicts.at (yylex): Likewise.
4235 * tests/cxx-type.at (yylex): Likewise.
4236 * tests/glr-regression.at (yylex): Likewise.
4237 * tests/input.at (yylex): Likewise.
4238 * tests/regression.at (yylex): Likewise.
4239 * tests/torture.at (yylex): Likewise.
4240
4241 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
4242
4243 Fix problems with translating English-language diagnostics.
4244 * bootstrap: Fix bug introduced in recent bootstrap changes, with
4245 respect to bison-runtime pot generation. The YY_ stuff
4246 wasn't being captured.
4247 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
4248 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
4249 * runtime-po/POTFILES.in: Add data/push.c.
4250
4251 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
4252
4253 Merge bootstrap changes from coreutils.
4254
4255 2006-09-28 Jim Meyering <jim@meyering.net>
4256
4257 Automatically generated dependencies are important even
4258 when all of the sources in a directory come from gnulib.
4259 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
4260 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
4261
4262 2006-09-23 Jim Meyering <jim@meyering.net>
4263
4264 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
4265
4266 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4267
4268 * bootstrap: Add support for --force.
4269 (usage): New function. Describe usage less tersely.
4270 (CVS_only_file): New var.
4271
4272 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
4273
4274 * data/push.c (YYPUSH_MORE): Make it an enum instead.
4275 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
4276 Adjust white space and comments to match GNU style better.
4277
4278 2006-09-20 Bob Rossi <bob@brasko.net>
4279
4280 * data/push.c (yyresult_get): Remove function.
4281 (YYPUSH_MORE): Add #define.
4282 (yypushparse): Modify return value.
4283
4284 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4285
4286 * stamp-h.in: Remove; no longer needed.
4287 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
4288 Remove config.h, config.hin, intl (no longer created).
4289 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
4290 stamp-h1.
4291
4292 Sync bootstrap from coreutils, as follows:
4293
4294 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
4295
4296 * bootstrap (symlink_to_gnulib): New function.
4297 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
4298 to copies-of-gnulib.
4299 (cp_mark_as_generated, slurp, gnulib_files):
4300 Avoid making a copy if it's the same as the old version.
4301 (gnulib_files): Add support for this variable (used by Bison).
4302
4303 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4304
4305 * src/getargs.c (usage): Rework to use conventions similar to
4306 coreutils, to make translation a bit easier and the code a bit
4307 smaller. Problem reported by Tim Van Holder.
4308
4309 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
4310
4311 Use some of gnulib's new modules, taken from coreutils.
4312
4313 * bootstrap: Sync from coreutils, except add support for gnulib_files.
4314 * bootstrap.conf: New file.
4315 (gnulib_modules): Add configmake, inttypes, unistd.
4316 (XGETTEXT_OPTIONS): Add complain, complain_at,
4317 fatal, fatal_at, warn, warn_at, unexpected_end.
4318 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
4319 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
4320 (gl_EARLY): Add.
4321 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
4322 (gl_INIT): Add
4323 (GNULIB_AUTOCONF_SNIPPET): Remove.
4324 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
4325 the pickiest.
4326 * lib/.cvsignore: Add inttypes_.h.
4327 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
4328 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
4329 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
4330 no-longer-necessary initializations.
4331 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
4332 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
4333 use the unistd module.
4334 * src/system.h: Likewise.
4335 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
4336 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
4337 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
4338 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
4339 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
4340 * src/system.h: Include inttypes.h unconditionally, now that we
4341 use the inttypes module. Don't bother to include stdint.h, since
4342 inttypes.h now does that for us.
4343 (LOCALEDIR): Remove, now that we use the configmake module.
4344 * src/getargs.c: Include configmake.h.
4345 * src/main.c: Likewise.
4346 * src/output.c: Likewise.
4347 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
4348 not from $abs_top_builddir, since config.h moved.
4349
4350
4351 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
4352 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
4353
4354 * src/parse-gram.y (symbol_declaration): Don't put statements
4355 before declarations; it's not portable to C89.
4356 * src/scan-code.l (handle_action_at): Likewise.
4357
4358 * src/scan-code.l: Always initialize braces_level; the old code
4359 left it uninitialized and therefore had undefined behavior.
4360
4361 Don't attempt to redefine 'assert', since it runs afoul of
4362 systems where standard headers (mistakenly) include <assert.h>.
4363 Instead, define and use our own alternative, called 'aver'.
4364 * src/reader.c: Don't include assert.h, since we no longer
4365 use assert.
4366 * src/scan-code.l: Likewise.
4367 * src/system.h (assert): Remove, replacing with....
4368 (aver): New function, taking a bool arg. All uses changed.
4369 * src/tables.c (pack_vector): Ensure that aver arg is bool,
4370 not merely an integer.
4371
4372 2006-09-15 Bob Rossi <bob@brasko.net>
4373
4374 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
4375 * data/c.m4 (YYPUSH): New.
4376 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
4377 * src/getargs.c (push_parser): New var.
4378 * src/getargs.h (push_parser): New declaration.
4379 * src/output.c (prepare): Add macro insertion of `push_flag'.
4380 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
4381 (prologue_declaration): Parse %push-parser.
4382 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
4383 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
4384 list of removed lines from the traces observed.
4385 (AT_CHECK_CALC_LALR): Added push parser tests.
4386
4387 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
4388
4389 * NEWS: Version 2.3a.
4390 * configure.ac (AC_INIT): Likewise.
4391
4392 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
4393 "#define YYSTYPE int" that caused "make maintainer-check" to fail
4394 due to header ordering dependencies. I don't know why the #define
4395 was there.
4396
4397 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
4398 runtime cost when YYDEBUG is not defined, and so that some tests
4399 that used to fail now work. Problem and initial suggestion by
4400 Paolo Bonzini.
4401 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
4402 * data/glr.cc (b4_parser_class_name):
4403 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
4404 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
4405 (yydebug_) [YYDEBUG]: New member.
4406 (yycdebug_): Now defined only if YYDEBUG.
4407 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
4408 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
4409 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
4410 if YYYDEBUG.
4411 (debug_stream, set_debug_stream, debug_level, set_debug_level):
4412 Define only if YYDEBUG.
4413 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
4414 set_debug_level.
4415 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
4416 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
4417 AT_CHECK_CALC_GLR_CC that are working now.
4418
4419 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
4420
4421 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
4422 We don't need them in glr.cc, and glr.c defines them.
4423 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
4424 assumes that defining it to anything is the same as defining
4425 it to 1. Problem reported by Paolo Bonzini.
4426
4427 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
4428
4429 * data/c.m4 (b4_null, b4_case): Define.
4430 * src/output.c (prepare_symbols): Use b4_null.
4431 (user_actions_output): Use b4_case.
4432
4433 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
4434
4435 * data/glr.c (b4_shared_declarations): Put start-header first,
4436 before any #includes that we generate, so that feature-test
4437 macros work. Problem reported by Michael Deutschmann in
4438 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
4439 * data/lalr1.cc: Likewise.
4440 * doc/bison.texinfo (Prologue): Document that feature-test macros
4441 should be defined before any Bison declarations.
4442 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
4443 that depend on location.hh after, not before, Bison decls, since
4444 we now include location.hh after the first user prologue.
4445
4446 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
4447 Sander Brandenburg in
4448 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
4449 Also, fix minor white space and comment issues.
4450 (Prologue): Mention that it's better to define feature-test macros
4451 before Bison declarations. Problem reported by Michael Deutschmann.
4452
4453 * README-cvs: Fix typo: "&" should be "&&". Problem reported
4454 by Jim Meyering.
4455 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
4456 This adjusts to recent gnulib changes.
4457
4458 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
4459
4460 Finish implementation of per-type %destructor/%printer. Discussed
4461 starting at
4462 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
4463 and
4464 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
4465 * NEWS (2.3+): Add a description of this feature to the default
4466 %destructor/%printer description.
4467 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
4468 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
4469 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
4470 list node contains a semantic type.
4471 * src/symtab.c, src/symtab.h: Extend with a table that associates
4472 semantic types with their %destructor's and %printer's.
4473 (semantic_type_from_uniqstr, semantic_type_get,
4474 semantic_type_destructor_set, semantic_type_printer_set): New functions
4475 composing the public interface of that table.
4476 (symbol_destructor_get, symbol_destructor_location_get,
4477 symbol_printer_get, symbol_printer_location_get): If there's no
4478 per-symbol %destructor/%printer, look up the per-type before trying
4479 the default.
4480 * tests/actions.at (Per-type %printer and %destructor): New test case.
4481 * tests/input.at (Default %printer and %destructor redeclared):
4482 Extend to check that multiple occurrences of %symbol-default in a
4483 single %destructor/%printer declaration is an error.
4484 (Per-type %printer and %destructor redeclared, Unused values with
4485 per-type %destructor): New test cases.
4486
4487 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
4488
4489 Require default %destructor/%printer to be declared using
4490 %symbol-default instead of an empty symbol list, and start working on
4491 new per-type %destructor/%printer. Discussed at
4492 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
4493 * NEWS (2.3+): Add %symbol-default to example.
4494 * bison.texinfo (Freeing Discarded Symbols): Likewise.
4495 (Table of Symbols): Add entry for %symbol-default.
4496 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
4497 (generic_symlist, generic_symlist_item): New nonterminals for creating
4498 a list in which each item is a symbol, semantic type, or
4499 %symbol-default.
4500 (grammar_declaration): Use generic_symlist in %destructor and %printer
4501 declarations instead of symbols.1 or an empty list.
4502 (symbol_declaration, precedence_declaration, symbols.1): Update actions
4503 for changes to symbol_list.
4504 * src/reader.c: Update for changes to symbol_list.
4505 * src/scan-code.l: Likewise.
4506 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
4507 * src/symlist.c, src/symlist.h: Extend such that a list node may
4508 represent a semantic type or a %symbol-default in addition to just an
4509 ordinary symbol. Add switched functions for setting %destructor's and
4510 %printer's.
4511 * tests/actions.at, tests/input.at: Add %symbol-default to all default
4512 %destructor/%printer declarations.
4513
4514 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
4515
4516 Whether the default %destructor/%printer applies to a particular symbol
4517 isn't a question of whether the user *declares* that symbol (in %token,
4518 for example). It's a question of whether the user by any means
4519 *defines* the symbol at all (by simply using a char token, for
4520 example). $end is defined by Bison whereas any other token with token
4521 number 0 is defined by the user. The error token is always defined by
4522 Bison regardless of whether the user declares it with %token, but we
4523 may one day let the user define error as a nonterminal instead.
4524 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
4525 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
4526 the meaning of "user-defined".
4527 * tests/actions.at (Default %printer and %destructor for user-declared
4528 end token): Rename to...
4529 (Default %printer and %destructor for user-defined end token): ...
4530 this.
4531
4532 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
4533 computation of whether to apply the default, don't maintain a list of
4534 every Bison-defined symbol. Instead, just check for a first character
4535 of '$', which a user symbol cannot have, and check for the error token.
4536
4537 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
4538
4539 Don't apply the default %destructor or %printer to the error token,
4540 $undefined, or $accept. This change fits the general rule that the
4541 default %destructor and %printer are only for user-declared symbols,
4542 and it solves several difficulties that are described in the new test
4543 cases listed below.
4544 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
4545 * tests/actions.at (Default %printer and %destructor are not for error
4546 or $undefined, Default %printer and %destructor are not for $accept):
4547 New test cases.
4548
4549 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
4550
4551 Allow %start after the first rule.
4552 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
4553 when parsing the first rule.
4554 (check_and_convert_grammar): Search for it here after all grammar
4555 declarations have been parsed. Skip midrules, which have dummy LHS
4556 nonterminals.
4557 * src/symtab.c (symbol_is_dummy): New function.
4558 * src/symtab.h (symbol_is_dummy): Declare it.
4559 * tests/input.at (%start after first rule): New test.
4560
4561 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
4562
4563 Redo some of the previous commit: add back the ability to use
4564 non-aliased/undeclared string literals since it might be useful to
4565 those declaring %token-table.
4566 * src/reader.c (check_and_convert_grammar): Undo changes in previous
4567 commit: don't worry about complaints from symbols_pack.
4568 * src/symtab.c (symbol_new, symbol_class_set,
4569 symbol_check_alias_consistency): Undo changes in previous commit: count
4570 each string literal as a new symbol and token, assign it a symbol
4571 number, and don't complain about non-aliased string literals.
4572 (symbols_pack): Since symbol_make_alias still does not decrement symbol
4573 and token counts but does still set aliased tokens to the same number,
4574 symbol_pack_processor now leaves empty slots in the symbols array.
4575 Remove those slots.
4576 * tests/regression.at (Undeclared string literal): Remove test case
4577 added in previous commit since non-aliased string literals are allowed
4578 again.
4579 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
4580 remove unnecessary string literal declarations.
4581 * tests/sets.at (Firsts): Likewise.
4582
4583 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
4584
4585 Don't allow an undeclared string literal, but allow a string literal to
4586 be used before its declaration.
4587 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
4588 symbols_pack complained.
4589 * src/symtab.c (symbol_new): Don't count a string literal as a new
4590 symbol.
4591 (symbol_class_set): Don't count a string literal as a new token, and
4592 don't assign it a symbol number since symbol_make_alias does that.
4593 (symbol_make_alias): It's not necessary to decrement the symbol and
4594 token counts anymore. Don't assume that an alias declaration occurs
4595 before any uses of the identifier or string, and thus don't assert that
4596 one of them has the highest symbol number so far.
4597 (symbol_check_alias_consistency): Complain if there's a string literal
4598 that wasn't declared as an alias.
4599 (symbols_pack): Bail if symbol_check_alias_consistency failed since
4600 symbol_pack asserts that every token has been assigned a symbol number
4601 although undeclared string literals have not.
4602 * tests/regression.at (String alias declared after use, Undeclared
4603 string literal): New test cases.
4604 (Characters Escapes, Web2c Actions): Declare string literals as
4605 aliases.
4606 * tests/sets.at (Firsts): Likewise.
4607
4608 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
4609
4610 In the grammar scanner, STRING_FINISH unclosed constructs and return
4611 them to the parser in order to improve error messages.
4612 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
4613 SC_BRACED_CODE, SC_PROLOGUE): Implement.
4614 * tests/input.at (Unclosed constructs): New test case.
4615 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
4616 seen.
4617
4618 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
4619 unused global.
4620
4621 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
4622
4623 Handle string aliases for character tokens correctly.
4624 * src/symtab.c (symbol_user_token_number_set): If the token has an
4625 alias, check and set its alias's user token number instead of its own,
4626 which is set to indicate the alias. Previously, every occurrence of
4627 the character token in the grammar overwrote that alias indicator with
4628 the character code.
4629 * tests/input.at (String aliases for character tokens): New test.
4630
4631 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
4632
4633 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
4634
4635 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
4636
4637 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
4638 to prevent failures when building on older platforms.
4639 Check for autopoint failure.
4640 Set XGETTEXT_OPTIONS to values that check for C format strings,
4641 so that translators are warned about them (this also helps
4642 prevent core dumps).
4643
4644 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
4645 function, since it simplifies our code a bit.
4646
4647 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
4648 rather than -W, so we don't get bogus warnings about sign comparisons.
4649 Add -Wpointer-arith, since that warning is useful (it reports code
4650 that does not conform to C89 and that some compilers reject).
4651 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
4652 since it's no longer needed.
4653
4654 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
4655
4656 Clean up scanners a bit.
4657 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
4658 definitions so gcc won't warn when obstack_for_string is unused.
4659 * src/scan-code.l: config.h and system.h are already #include'd by
4660 scan-code-c.c, so get rid of them here.
4661 * src/scan-gram.l: Likewise.
4662 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
4663 definitions rather than duplicating the rest of it.
4664 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
4665
4666 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
4667
4668 Suppress signed/unsigned comparison warnings for yycheck.
4669 * data/c.m4 (b4_safest_int_type): New macro.
4670 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
4671 a signed int type, cast it to b4_safest_int_type first.
4672 * data/yacc.c: Likewise.
4673 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
4674 also overwritten.
4675
4676 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
4677
4678 * doc/bison.texinfo: Fix some typos.
4679
4680 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
4681
4682 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
4683 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
4684
4685 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
4686 the latest gnulib does this a different way.
4687 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
4688 translation was patched, so stop omitting it.
4689
4690 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
4691
4692 Enable declaration of default %printer/%destructor. Make the parser
4693 use these for all user-declared grammar symbols for which the user does
4694 not declare a specific %printer/%destructor. Thus, the parser uses it
4695 for token 0 if the user declares it but not if Bison generates it as
4696 $end. Discussed starting at
4697 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
4698 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
4699 and
4700 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
4701 * NEWS (2.3+): Mention.
4702 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
4703 declare a %destructor for a mid-rule's semantic value. It's just
4704 impossible to declare one specific to it.
4705 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
4706 code. Describe default %destructor form.
4707 * src/parse-gram.y (grammar_declaration): Parse default
4708 %printer/%destructor declarations.
4709 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
4710 and symbol_destructor_location_get rather than accessing the destructor
4711 and destructor_location members of struct symbol.
4712 (symbol_printers_output): Likewise but for %printer's.
4713 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
4714 again.
4715 * src/symtab.c (default_destructor, default_destructor_location,
4716 default_printer, default_printer_location): New static global
4717 variables to record the default %destructor and %printer.
4718 (symbol_destructor_get, symbol_destructor_location_get,
4719 symbol_printer_get, symbol_printer_location_get): New functions to
4720 compute the appropriate %destructor and %printer for a symbol.
4721 (default_destructor_set, default_printer_set): New functions to set the
4722 default %destructor and %printer.
4723 * src/symtab.h: Prototype all those new functions.
4724 * tests/actions.at (Default %printer and %destructor): New test to
4725 check that the right %printer and %destructor are called, that they're
4726 not called for $end, and that $$ and @$ work correctly.
4727 (Default %printer and %destructor for user-declared end token): New
4728 test to check that the default %printer and %destructor are called for
4729 a user-declared end token.
4730 * tests/input.at (Default %printer and %destructor redeclared, Unused
4731 values with default %destructor): New tests to check related grammar
4732 warnings and errors.
4733
4734 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
4735
4736 Clean up handling of %destructor for the end token (token 0).
4737 Discussed starting at
4738 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
4739 and
4740 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
4741
4742 Make the skeletons consistent in how they pop the end token and invoke
4743 its %destructor.
4744 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
4745 state, which has token number 0, since this would invoke the
4746 %destructor for the end token.
4747 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
4748 until after shifting the end token, or else it won't be popped.
4749 * data/yacc.c (yyparse): Likewise.
4750
4751 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
4752 it's the end token. Upon termination, destroy an unshifted lookahead
4753 even when it's the end token.
4754 * data/lalr1.cc (yy::parser::parse): Likewise.
4755 * data/yacc.c (yyparse): Likewise.
4756
4757 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
4758 value warnings for the end token when the user gives the end token a
4759 %destructor.
4760
4761 * tests/actions.at (Printers and Destructors): Test all the above.
4762
4763 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
4764
4765 Update to latest gnulib and gettext versions.
4766 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
4767 Add fopen-safer.
4768 (gnulib_files): Add m4/warning.m4. Don't worry about files
4769 overwritten by autopoint.
4770 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
4771 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
4772 rejects them.
4773 Don't use autoreconf; instead, invoke autopoint etc. by hand,
4774 so that we can remove the intl files at a better time.
4775 (intl_files_to_remove): Remove aclocal.m4, since it gets
4776 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
4777 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
4778 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
4779 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
4780 Remove datarootdir hack; no longer needed.
4781 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
4782 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
4783 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
4784 strdup.h.
4785 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
4786 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
4787
4788 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
4789
4790 * bootstrap: Adjust to today's change to gnulib-tool by invoking
4791 it with --assume-autoconf='latest-stable'.
4792
4793 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
4794
4795 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
4796 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
4797 YYSTYPE' and `{'.
4798 * src/muscle_tab.h (muscle_grow): Replace the header comments with
4799 those from muscle_tab.c since the old ones are misleading.
4800
4801 2006-07-13 Akim Demaille <akim@epita.fr>
4802
4803 Support %define "KEY" {VALUE}.
4804 * src/scan-code.h, src/scan-code.l (translate_action)
4805 (translate_rule_action, translate_symbol_action, translate_code):
4806 Return char *, not const char *.
4807 * src/parse-gram.y (declaration): Rename as...
4808 (prologue_declaration): this.
4809 (string_content): Remove this nonterminal, use STRING.
4810 (braceless, content, content.opt): New nonterminal.
4811 Use them.
4812 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
4813 as value.
4814 * src/scan-gram.l (getargs.h): Don't include it.
4815
4816 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
4817
4818 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
4819 rather than a for-loop that declares a local bool variable. This
4820 should work around a compatibility problem with a Cray x1e C++
4821 compiler reported by Hung Nguyen in
4822 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
4823 The for-loop was introduced in the 2004-11-17 change but I don't
4824 know why it was needed.
4825
4826 2006-07-12 Akim Demaille <akim@epita.fr>
4827
4828 * data/c.m4: Comment changes.
4829
4830 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
4831
4832 * src/complain.c (error_message, ERROR_MESSAGE): New.
4833 To factor...
4834 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
4835 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
4836
4837 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
4838
4839 * NEWS: Instead of %union, you can define and use your own union type
4840 YYSTYPE if your grammar contains at least one <type> tag.
4841 Your YYSTYPE need not be a macro; it can be a typedef.
4842 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
4843 (Union Decl, Decl Summary): Document this.
4844 * data/glr.c (YYSTYPE): Implement this.
4845 * data/glr.cc (YYSTYPE): Likewise.
4846 * data/lalr1.cc (YYSTYPE): Likewise.
4847 * data/yacc.c (YYSTYPE): Likewise.
4848 * src/output.c (prepare): Output tag_seen_flag.
4849 * src/parse-gram.y (declaration, grammar_declaration):
4850 Use 'union_seen' rather than 'typed' to determine whether
4851 %union has been seen, since grammars can now be typed without
4852 %union.
4853 (symbol_declaration, type.opt, symbol_def):
4854 Keep track of whether a tag has been seen.
4855 * src/reader.c (union_seen, tag_seen): New vars.
4856 (typed): remove.
4857 * src/reader.h (union_seen, tag_seen, typed): Likewise.
4858 * src/scan-code.l (untyped_var_seen): New variable.
4859 (handle_action_dollar): Adjust to above changes.
4860 (handle_action_dollar, handle_action_at):
4861 Improve overflow checking for outlandish numbers.
4862 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
4863 avoid new diagnostics generated by above changes.
4864 * tests/regression.at (YYSTYPE typedef): Add test to check
4865 for type tags without %union.
4866
4867 * src/symlist.c (symbol_list_length): Return int, not unsigned
4868 int, since callers expect int. This may need to get revisited
4869 once we have proper integer overflow checking.
4870
4871 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
4872 object is now static.
4873
4874 * src/getargs.c (flags_argmatch): Return void, not int,
4875 to pacify ./configure --enable-gcc-warnings.
4876
4877 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
4878 since last_string is already defined to FLEX_PREFIX (last_string).
4879
4880 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
4881
4882 Implement --warnings/-W.
4883 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
4884 replaced by...
4885 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
4886 Adjust callers.
4887 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
4888 (warnings_args, warnings_types): New.
4889 (getargs, short_options, long_options): Accept -W/--warnings.
4890 Sort the options by alphabetical order, upper case letter right
4891 before its lower case.
4892
4893 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
4894
4895 Change %merge result type clash warnings to errors. Discussed at
4896 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
4897 * src/reader.c (record_merge_function_type): Use complain_at.
4898 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
4899 declared later): Update test case results.
4900
4901 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
4902
4903 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
4904 to be in alphabetical order.
4905 (trace_args): Spelling fixes.
4906
4907 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
4908
4909 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
4910 so they don't collide with user-defined macros.
4911 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
4912 this was never guaranteed, and now that we're using gnulib stdint,
4913 which defines int_fast16_t to long int, the problem is exposed.
4914
4915 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
4916
4917 * data/c.m4 (b4_basename): Simplify a bit, since we don't
4918 need the full POSIX semantics (and weren't implementing them
4919 anyway).
4920
4921 Adjust to Autoconf 2.60 and today's gnulib.
4922 * bootstrap (gnulib_modules): Add stdint.
4923 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
4924 no longer copies it.
4925 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
4926 since stdint needs the former and wcwidth (which is now required
4927 by mbswidth) needs the latter.
4928 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
4929 work around a compatibility glitch between gettext 0.14.6 and
4930 Autoconf 2.60.
4931 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
4932 Do not check for uintptr_t, since new stdint module does the right
4933 thing.
4934 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
4935 Add stdint.h, stdint_.h, wcwidth.h.
4936 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
4937 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
4938 stdint.m4, wchar_t.m4, wcwidth.m4.
4939 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
4940 usual order for ../lib/*.h files.
4941 (file_name_split): Use last_component, not base_name, to adjust
4942 to gnulib changes.
4943 * src/parse-gram.h: Include <strverscmp.h> in the usual order
4944 for ../lib/*.h files.
4945 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
4946 Define unconditionally, since we now assume the stdint module.
4947 * src/scan-skel.l: Include <dirname.h>.
4948 (BASE_QPUTS): Use last_component, not base_name.
4949 * src/system.h: Include <unlocked-io.h> in the usual order
4950 for ../lib/*.h files. Include <stdint.h> unconditionally,
4951 since we now use the stdint module.
4952 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
4953 HAVE_UINTPTR_T, since we now use the stdint module.
4954 (base_name): Remove decl, since files now include <dirname.h>
4955 to get the decl.
4956
4957 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
4958
4959 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
4960 New, default to 1.
4961 * data/yacc.c, data/glr.c, data/location.cc: Use them.
4962 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
4963 default.
4964 * tests/calc.at: Adjust.
4965
4966 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
4967
4968 * data/c.m4 (b4_basename): New.
4969 (b4_syncline): Also output the location of its invocation (from
4970 the skeleton).
4971 (b4_user_action, b4_define_user_action, b4_user_actions)
4972 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
4973 (b4_user_stype): New.
4974 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
4975
4976 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
4977
4978 In the grammar file, the first column is 1 not 0 on the first line as
4979 on every other line.
4980 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
4981 * tests/input.at (Torturing the Scanner): Update output.
4982
4983 * src/scan-gram.l (scanner_cursor): Declare it static.
4984
4985 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
4986
4987 In warnings, say "previous declaration" rather than "first
4988 declaration".
4989 * src/symtab.c (redeclaration): Do that here.
4990 * src/reader.c (record_merge_function_type): In the case of a result
4991 type clash, report the previous declaration rather than the very first
4992 one in the grammar file.
4993 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
4994 declared later): Add a third declaration to check this behavior.
4995 * tests/input.at (Incompatible Aliases): Update output.
4996
4997 2006-06-27 Akim Demaille <akim@epita.fr>
4998
4999 * doc/Doxyfile.in: New.
5000 * doc/Makefile.am: Use it.
5001 * src/lalr.h, src/symtab.h: Initial doxygenation.
5002
5003 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5004
5005 Don't miss %merge result type warnings just because the LHS types are
5006 declared after the %merge. This continues the effort of the previous
5007 patch.
5008 * src/reader.c (get_merge_function): Don't set the merger type yet.
5009 (record_merge_function_type): New function for setting the merger type
5010 and checking for clashes.
5011 (grammar_current_rule_merge_set): Set the location of the %merge for
5012 the current rule.
5013 (packgram): Invoke record_merge_function_type for each rule now that
5014 all symbol type declarations have been parsed.
5015 * src/reader.h (merger_list.type_declaration_location): New member
5016 storing the location of the first %merge from which the type for this
5017 merging function was derived.
5018 * src/symlist.h (symbol_list.merger_declaration_location): New member
5019 storing the location of a rule's %merge, if any.
5020 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5021 declared later): New test to catch the error fixed by the above patch.
5022
5023 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5024
5025 Get action warnings (grammar_rule_check) right even when symbol
5026 declarations appear after the rules. Discussed at
5027 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
5028 and
5029 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
5030 Don't mistake the type of $$ in a midrule to be that of its parent
5031 rule's $$.
5032 * src/reader.c (grammar_current_rule_end): Don't invoke
5033 grammar_rule_check yet since not all symbol declarations may have been
5034 parsed yet.
5035 (grammar_midrule_action): Likewise.
5036 Don't record whether the midrule's $$ has been used yet since actions
5037 haven't been translated yet.
5038 Record the midrule's parent rule and its RHS index within the parent
5039 rule.
5040 (grammar_current_rule_action_append): Don't translate the action yet
5041 since not all symbol declarations may have been parsed yet and, thus,
5042 warnings about types for $$, $n, @$, and @n can't be reported yet.
5043 (packgram): Translate the action and invoke grammar_rule_check now that
5044 all symbol declarations have been parsed.
5045 * src/scan-code.l (handle_action_dollar): Now that this is invoked
5046 after parsing the entire grammar file, the symbol list here in the case
5047 of a midrule is actually the midrule's empty RHS, so reference its
5048 parent rule's RHS where necessary.
5049 On the other hand, now that you can already know it's a midrule, you
5050 aren't forced to think $$ has the same type as its parent rule's $$.
5051 (handle_action_at): In the case of a midrule, reference the parent rule
5052 where necessary.
5053 * src/symlist.c (symbol_list_new): Initialize new midrule-related
5054 members.
5055 (symbol_list_length): Now that this is invoked after all rules have
5056 been parsed, a NULL symbol (rather than a NULL symbol list node)
5057 terminates a rule. symbol_list_print already does this correctly.
5058 * src/symlist.h (symbol_list.midrule_parent_rule,
5059 symbol_list.midrule_parent_rhs_index): New members so that midrules can
5060 remember their relationships with their parents.
5061 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
5062 fixed by the above patch.
5063 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
5064 implementing...
5065 (Unused values): ... this old test case and...
5066 (Unused values before symbol declarations): ... this new test case.
5067 This one is the same as `Unused values' except that all symbol
5068 declarations appear after the rules in order to catch the rest of the
5069 errors fixed by the above patch.
5070
5071 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5072
5073 More cleanup.
5074 * src/reader.c (current_rule): Declare it static since it's no longer
5075 used outside this file.
5076 (grammar_current_rule_action_append): Remove redundant arguments from
5077 translate_rule_action invocation.
5078 * src/reader.h (current_rule): Remove this unused extern.
5079 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
5080 * src/scan-code.l (translate_rule_action): Likewise.
5081
5082 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
5083
5084 Clean up yesterday's patch.
5085 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
5086 to...
5087 * src/reader.c (grammar_current_rule_action_append): ... here for
5088 consistency with grammar_current_rule_symbol_append.
5089 * tests/regression.at (Braced code in declaration in rules section):
5090 Make yyerror and yylex static as usual.
5091
5092 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
5093
5094 Fix bug that mistakes braced code in a declaration in the rules section
5095 to be a rule action. Mentioned at
5096 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
5097 * src/scan-gram.l: Move midrule action detection from the start of the
5098 scanning of any braced code to...
5099 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
5100 action. For readability, use $2 and @2 rather than the equivalent
5101 global variables.
5102 * tests/regression.at (Braced code in declaration in rules section):
5103 New test to catch the error fixed by the above patch.
5104
5105 Work on code readability some.
5106 * src/scan-code.l (current_rule): Get rid of this misleading and
5107 redundant declaration: it's actually extern'ed in reader.h.
5108 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
5109 translate_action): Add a rule argument and use it instead of the global
5110 current_rule.
5111 (translate_rule_action): This already receives current_rule through an
5112 argument, so pass it on to translate_action instead of assigning
5113 current_rule to current_rule.
5114 (translate_symbol_action, translate_code): Pass rule = NULL to
5115 translate_action.
5116
5117 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
5118
5119 Rename %before-definitions to %start-header and %after-definitions to
5120 %end-header. Don't use these declarations to separate pre-prologue
5121 blocks from post-prologue blocks. Add new order-independent
5122 declarations %before-header and %after-header as alternatives to the
5123 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
5124 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
5125 * NEWS (2.3+): Update for these changes.
5126 * data/glr.c (b4_before_definitions): Update to...
5127 (b4_start_header): ... this.
5128 (b4_after_definitions): Update to...
5129 (b4_end_header): ... this.
5130 * data/glr.cc: Likewise.
5131 * data/lalr1.cc: Likewise.
5132 * data/yacc.c: Likewise.
5133 * doc/bison.texinfo (The prologue): Update names, and replace remaining
5134 prologue blocks with %*-header declarations.
5135 (Calc++ Parser): Likewise.
5136 (Decl Summary): Update names.
5137 (Table of Symbols): Update description.
5138 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
5139 (PERCENT_END_HEADER): ... this.
5140 (PERCENT_BEFORE_DEFINITIONS): Update to...
5141 (PERCENT_START_HEADER): ... this.
5142 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5143 (declaration): Update token names and m4 macro names.
5144 When parsing %end-header and %start-header, invoke translate_code
5145 before muscle_code_grow, and no longer set global booleans to remember
5146 whether these declarations have been seen.
5147 Parse new %after-header and %before-header.
5148 * src/reader.c (before_definitions, after_definitions): Remove.
5149 (prologue_augment): Accept a new bool argument to specify whether to
5150 augment the pre-prologue or post-prologue.
5151 * src/reader.h (before_definitions, after_definitions): Remove these
5152 extern's.
5153 (prologue_augment): Add new bool argument.
5154 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
5155 (PERCENT_END_HEADER): ... this.
5156 (PERCENT_BEFORE_DEFINITIONS): Update to...
5157 (PERCENT_START_HEADER): ... this.
5158 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5159 * tests/actions.at (Printers and Destructors): Update names.
5160
5161 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
5162
5163 Add comparison operators for C++ location classes. Discussed at
5164 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
5165 * data/c++.m4 (b4_define_location_comparison): New boolean %define
5166 declaration indicating whether filename_type has an operator==. If
5167 filename_type is `std::string', it defaults to `1', `0' otherwise.
5168 * data/location.cc: Iff b4_define_location_comparison is `1', add
5169 operator== and operator!= for class position and for class location.
5170
5171 Some minor fixes.
5172 * src/scan-action.l: Remove unused file.
5173 * src/symtab.c (symbol_printer_set): Use printer_location not
5174 destructor_location.
5175 * src/symtab.h (struct symbol): Replace incorrect source comment for
5176 printer members.
5177 * tests/input.at (Incompatible Aliases): Update output with correct
5178 printer location.
5179
5180 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
5181
5182 Don't put the pre-prologue in the header file. For the yacc.c code
5183 file and the glr.c header and code files, move the pre-prologue before
5184 the token definitions. Add new %before-definitions and
5185 %after-definitions to declare code that will go in both the header file
5186 and code file. Discussed at
5187 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
5188 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
5189 and
5190 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
5191 * NEWS (2.3+): Describe these changes.
5192 * data/glr.c (b4_pre_prologue): Move from within to before...
5193 (b4_shared_declarations): ... this.
5194 Add new b4_before_definitions before b4_token_enums.
5195 Add new b4_after_definitions at the end.
5196 * data/glr.cc (b4_pre_prologue): Replace with...
5197 (b4_before_definitions): ... this in the header file.
5198 (b4_after_definitions): New near the end of the header file.
5199 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
5200 code file right before including the header file.
5201 (b4_before_definitions): New in the previous position of
5202 b4_pre_prologue in the header file.
5203 (b4_after_definitions): New near the end of the header file.
5204 * data/yacc.c: Clean up some m4 quoting especially in the header file.
5205 (b4_token_enums_defines): In the code file, move to right before
5206 YYSTYPE for consistency with the header file.
5207 (b4_before_definitions): New right before b4_token_enums_defines in
5208 both the header and code file.
5209 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
5210 header and code file.
5211 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
5212 of prologues for %union dependencies.
5213 (Decl Summary): In %defines description, mention the effect of
5214 %before-definitions and %after-definitions on the header file.
5215 (Calc++ Parser): Forward declare driver in a %before-definitions rather
5216 than in the pre-prologue so that make check succeeds.
5217 (Table of Symbols): Add entries for %before-definitions and
5218 %after-definitions.
5219 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
5220 %before-definitions.
5221 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
5222 (declaration): Parse those declarations and append to
5223 b4_before_definitions and b4_after_definitions, respectively.
5224 * src/reader.c (before_definitions, after_definitions): New bools to
5225 track whether those declarations have been seen.
5226 (prologue_augment): Add to the post-prologue if %union,
5227 %before-definitions, or %after-definitions has been seen.
5228 * src/reader.h (before_definitions, after_definitions): New extern's.
5229 * src/scan-gram.l: Scan the new declarations.
5230 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
5231 prologue block in a %before-definitions or a %after-definitions based
5232 on whether the %union is declared.
5233 * tests/regression.at (Early token definitions with --yacc, Early token
5234 definitions without --yacc): Move tests for token definitions into the
5235 post-prologue since token names are no longer defined in the
5236 pre-prologue.
5237
5238 2006-06-20 Akim Demaille <akim@epita.fr>
5239
5240 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
5241 (symbol_get): Use it.
5242 * src/parse-gram.y: Use it.
5243
5244 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
5245
5246 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
5247 build succeeds when configured with --enable-gcc-warnings.
5248
5249 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
5250
5251 * src/parse-gram.y (char_name): New function.
5252 (CHAR, STRING, string_content): For %printer, properly escape.
5253 (ID): Prefer fputs to fprintf.
5254 (id): Reindent to be consistent with other rules.
5255 Properly quote char.
5256
5257 The Translation Project changed its way of publishing translations
5258 to maintainers. I haven't received any responses to my request
5259 for supporting the old way, or for documenting the new way. I
5260 have modified 'bootstrap' to use screen scraping
5261 (in this case, HTML scraping). This is unreliable and inelegant,
5262 but I don't see any better way. Yuck.
5263 * bootstrap (TP_URL, WGET_COMMAND): New vars.
5264 (get_translations): New function, which uses HTML scraping to
5265 deduce locations of latest translations.
5266 Use this function to grab both bison and bison-runtime .po files.
5267 Don't bother priming the pump for the runtime-po domain any more,
5268 as it's now translated better than bison is.
5269
5270 2006-06-19 Akim Demaille <akim@epita.fr>
5271
5272 * src/scan-gram.l: No longer "parse" things after `%union' until
5273 `{'. Rather, return a single "%union" token.
5274 No longer make symbols: return strings, and leave the conversion
5275 to symbols to the parser.
5276 (SC_PRE_CODE, token_type): Remove.
5277 * src/parse-gram.y (%union): New field `character'.
5278 Sort tokens.
5279 (CHAR): New token.
5280 (ID, ID_COLON): Now that the scanner no longer makes them
5281 identifiers, adjust all uses to invoke symbol_get.
5282 (id_colon): New, wraps the conversion from string to symbol.
5283 (%union): Accept a possible union_name.
5284 (symbol): Now can be a char.
5285 * data/c.m4 (b4_union_name): Leave a default value.
5286 * data/glr.c, data/yacc.c: Use it.
5287
5288 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
5289
5290 For associating token numbers with token names for "yacc.c", don't use
5291 #define statements unless `--yacc' is specified; always use enum
5292 yytokentype. Most important discussions start at:
5293 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
5294 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
5295 and
5296 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
5297 * NEWS (2.3+): Mention.
5298 * data/c.m4 (b4_yacc_if): New.
5299 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
5300 token #define's.
5301 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
5302 on token name definitions.
5303 * src/getargs.c (usage): Capitalize `Yacc' in English.
5304 * src/output.c (prepare): Define b4_yacc_flag.
5305 * tests/regression.at (Early token definitions): Test that tokens names
5306 are defined before the pre-prologue not just before the post-prologue.
5307 Remove this test case and copy to...
5308 (Early token definitions with --yacc): ... this to test #define's.
5309 (Early token definitions without --yacc): ... and this to test enums.
5310
5311 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
5312
5313 * NEWS: Reword the post-2.3 change to not be so optimistic about
5314 removing the old "look-ahead" spelling.
5315 Update previous look-ahead/lookahead change reports.
5316 * REFERENCES: look-ahead -> lookahead (since that's
5317 what he actually wrote).
5318 * doc/refcard.tex: look ahead -> lookahead,
5319 look-ahead -> lookahead
5320
5321 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
5322
5323 For consistency, use `lookahead' instead of `look-ahead' or
5324 `look_ahead'. Discussed starting at
5325 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
5326 and then at
5327 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
5328 * NEWS: For the next release, note the change to `--report'.
5329 * TODO, doc/bison.1: Update English.
5330 * doc/bison.texinfo: Update English.
5331 (Understanding Your Parser, Bison Options): Document as
5332 `--report=lookahead' rather than `--report=look-ahead'.
5333 * src/conflicts.c: Update English in comments.
5334 (lookahead_set): Rename from look_ahead_set.
5335 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
5336 (resolve_sr_conflict): Rename local look_ahead_tokens to
5337 lookahead_tokens, and update other uses.
5338 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
5339 count_rr_conflicts, conflicts_free): Update uses.
5340 * src/getargs.c (report_args): Move "lookahead" before alternate
5341 spellings.
5342 (report_types): Update uses.
5343 (usage): For `--report' usage description, state `lookahead' spelling
5344 rather than `look-ahead'.
5345 * src/getargs.h (report.report_lookahead_tokens): Rename from
5346 report_look_ahead_tokens.
5347 * src/lalr.c: Update English in comments.
5348 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
5349 (state_lookahead_tokens_count): Rename from
5350 state_look_ahead_tokens_count.
5351 Rename local n_look_ahead_tokens to n_lookahead_tokens.
5352 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
5353 Rename local n_look_ahead_tokens to n_lookahead_tokens.
5354 Update other uses.
5355 Update English in output.
5356 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
5357 * src/print.c: Update English in comments.
5358 (lookahead_set): Rename from look_ahead_set.
5359 (print_reduction): Rename argument lookahead_token from
5360 look_ahead_token.
5361 (print_core, state_default_rule, print_reductions, print_results):
5362 Update uses.
5363 * src/print_graph.c: Update English in comments.
5364 (print_core): Update uses.
5365 * src/state.c: Update English in comments.
5366 (reductions_new): Update uses.
5367 (state_rule_lookahead_tokens_print): Rename from
5368 state_rule_look_ahead_tokens_print, and update other uses.
5369 * src/state.h: Update English in comments.
5370 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
5371 (state_rule_lookahead_tokens_print): Rename from
5372 state_rule_look_ahead_tokens_print.
5373 * src/tables.c: Update English in comments.
5374 (conflict_row, action_row): Update uses.
5375 * tests/glr-regression.at
5376 (Incorrect lookahead during deterministic GLR,
5377 Incorrect lookahead during nondeterministic GLR): Rename
5378 print_look_ahead to print_lookahead.
5379 * tests/torture.at: Update English in comments.
5380 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
5381 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
5382 (Many lookahead tokens): Update uses.
5383 * data/glr.c: Update English in comments.
5384 * lalr1.cc: Likewise.
5385 * yacc.c: Likewise.
5386 * src/conflicts.h: Likewise.
5387 * src/lalr.h: Likewise.
5388 * src/main.c: Likewise.
5389 * src/output.c: Likewise.
5390 * src/parse-gram.c: Likewise.
5391 * src/tables.h: Likewise.
5392 * tests/calc.at: Likewise.
5393
5394 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
5395
5396 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
5397
5398 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
5399
5400 * TODO: Add request from Nelson H. F. Beebe to be able to install
5401 Bison without installing the yacc script.
5402
5403 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
5404
5405 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
5406 and yytext if they're already #define'd.
5407 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
5408 * src/scan-code-c.c: ... here.
5409 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
5410 <config.h>.
5411
5412 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
5413
5414 Get Bison to build again when configured with --enable-gcc-warnings.
5415 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
5416 missing #include's.
5417 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
5418 loc argument as it shadows a global.
5419 * src/scan-gram.l: Remove stray comma that prevents boundary_set
5420 invocation.
5421
5422 * src/.cvsignore: Add scan-code.c.
5423
5424 2006-06-07 Akim Demaille <akim@epita.fr>
5425
5426 * src/scan-gram.l: Move the "add a trailing ; to actions" code
5427 to...
5428 * src/scan-code.l: here.
5429 * tests/input.at (Torturing the Scanner): Fix another location
5430 error.
5431
5432 2006-06-07 Akim Demaille <akim@epita.fr>
5433
5434 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
5435
5436 2006-06-06 Akim Demaille <akim@epita.fr>
5437
5438 Extract the parsing of user actions from the grammar scanner.
5439 As a consequence, the relation between the grammar scanner and
5440 parser is much simpler. We can also split "composite tokens" back
5441 into simple tokens.
5442 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
5443 * src/scan-gram.l (add_column_width, adjust_location): Move to and
5444 rename as...
5445 * src/location.h, src/location.c (add_column_width)
5446 (location_compute): these.
5447 Fix the column count: the initial column is 0.
5448 (location_print): Be robust to ending column being 0.
5449 * src/location.h (boundary_set): New.
5450 * src/main.c: Adjust to scanner_free being renamed as
5451 gram_scanner_free.
5452 * src/output.c: Include scan-code.h.
5453 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
5454 Use boundary_set.
5455 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
5456 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
5457 which is now, again, a separate token.
5458 Adjust all dependencies.
5459 Whereever actions with $ and @ are used, use translate_code.
5460 (action): Remove this nonterminal which is now useless.
5461 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
5462 (grammar_current_rule_action_append): Use translate_code.
5463 (packgram): Bound check ruleno, itemno, and rule_length.
5464 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
5465 (last_string, last_braced_code_loc, max_left_semantic_context)
5466 (scanner_initialize, scanner_free, scanner_last_string_free)
5467 (gram_out, gram_lineno, YY_DECL_): Move to...
5468 * src/scan-gram.h: this new file.
5469 (YY_DECL): Rename as...
5470 (GRAM_DECL): this.
5471 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
5472 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
5473 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
5474 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
5475 Move these declarations, and...
5476 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
5477 these to...
5478 * src/flex-scanner.h: this new file.
5479 * src/scan-gram.l (rule_length, rule_length_overflow)
5480 (increment_rule_length): Remove.
5481 (last_braced_code_loc): Rename as...
5482 (gram_last_braced_code_loc): this.
5483 Adjust to the changes of the parser.
5484 Move all the handling of $ and @ into...
5485 * src/scan-code.l: here.
5486 * src/scan-gram.l (handle_dollar, handle_at): Remove.
5487 (handle_action_dollar, handle_action_at): Move to...
5488 * src/scan-code.l: here.
5489 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
5490 scan-code.h, scan-code-c.c, scan-gram.h.
5491 (EXTRA_bison_SOURCES): Add scan-code.l.
5492 (BUILT_SOURCES): Add scan-code.c.
5493 (yacc): Be robust to white spaces.
5494
5495 * tests/conflicts.at, tests/input.at, tests/reduce.at,
5496 * tests/regression.at: Adjust the column numbers.
5497 * tests/regression.at: Adjust the error message.
5498
5499 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
5500
5501 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
5502 Use Akim's wording from
5503 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
5504
5505 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
5506
5507 Between Bison releases, manually append `+' to the previous Bison
5508 release number, and use that as a signal to automatically print the
5509 ChangeLog's CVS Id keyword from --version. Discussed starting at
5510 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
5511 * ChangeLog: Add Id header.
5512 * configure.ac (AC_INIT): Append `+' to `2.3'.
5513 * src/.cvsignore: Add revision.c.
5514 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
5515 (BUILT_SOURCES): Add revision.c.
5516 (revision.c): New target rule. This file defines a new global variable
5517 named revision. It initializes it with either the Id from ChangeLog
5518 or, if VERSION doesn't contain `+', with the empty string.
5519 * src/getargs.c (version): Print the value of revision.
5520 * src/revision.h: Extern revision.
5521
5522 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
5523
5524 * NEWS: Version 2.3.
5525 * configure.ac (AC_INIT): Likewise.
5526
5527 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
5528
5529 * data/glr.c (YYRECOVERING): Define to be a function-like macro
5530 with no arguments, not as an object-like macro. This is for
5531 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
5532 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
5533 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
5534 Document this.
5535
5536 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
5537
5538 * src/getargs.c (usage): Back out yesterday's modification of the
5539 --help output so that we don't have to wait for translation before
5540 releasing 2.3.
5541
5542 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
5543
5544 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
5545 Problem reported by Akim Demaille.
5546
5547 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
5548
5549 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
5550
5551 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
5552
5553 * data/yacc.c (yy_reduce_print): Omit trailing white space in
5554 generated source code. Problem reported by Frans Englich in
5555 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
5556
5557 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
5558
5559 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
5560 shell, not within 'make', so that 'make' by an ordinary builder
5561 (using GNU make) does not worry about configuring gzip. This also
5562 works around a bug reported independently by Keith Thompson and by
5563 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
5564 stderr rather than stdout, messing up the build logs.
5565
5566 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
5567
5568 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
5569 to make sure that YYID will never be unused. This fixes a 'make
5570 maintainer-check' failure caused by the recent changes to the 'Trivial
5571 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
5572 not used.
5573 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
5574
5575 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
5576
5577 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
5578 state before an empty RHS is always resolved here. Only the location
5579 of that state is guaranteed to be resolved, and that's enough. This
5580 fixes the remaining bug reported by Derek M. Jones in
5581 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
5582 * tests/glr-regression.at (Uninitialized location when reporting
5583 ambiguity): Test the above case.
5584 Also, the embedded comments in this test case claim it checks the case
5585 of an empty RHS that has inherited the initial location. However, the
5586 corresponding LHS was already resolved, so yyresolveLocations didn't
5587 actually have reason to modify it. Fix this by forcing
5588 nondeterministic operation at the beginning of the parse.
5589
5590 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
5591
5592 * data/c.m4 (b4_yy_symbol_print_generate):
5593 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
5594 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
5595 of the bugs reported today by Derek M Jones in
5596 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
5597 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
5598 defined to be a type name without parens or brackets.
5599 (Location Type): Similarly for YYLTYPE.
5600 * tests/regression.at (Trivial grammars): Put in a test for this
5601 bug that will be caught by 'make maintainer-check' (though not,
5602 alas, by 'make check' unless your compiler is picky).
5603
5604 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
5605
5606 * NEWS: Version 2.2.
5607 * configure.ac (AC_INIT): Likewise.
5608
5609 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
5610
5611 * data/glr.c (yyreportTree): Make room in yystates for the state
5612 preceding the RHS. This fixes the segmentation fault reported by Derek
5613 M. Jones in
5614 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
5615 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
5616 to the user. Reported for yyreportTree by Derek M. Jones later in the
5617 same thread.
5618 * THANKS: Add Derek M. Jones.
5619 Update my email address.
5620 Fix typo in Steve Murphy's name.
5621
5622 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
5623
5624 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
5625 checking against YYLAST that caused the parser to miss a potential
5626 alternative in its diagnostic.
5627 Problem reported by Maria Jose Moron Fernandez in
5628 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
5629 * data/lalr1.cc (yysyntax_error_): Likewise.
5630 * data/yacc.c (yysyntax_error): Likewise.
5631 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
5632 tokens, in case we run into an older C compiler.
5633 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
5634 Use them to check for the off-by-one error fixed above.
5635
5636 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
5637 YYSIZE_T, not size_t.
5638 * tests/regression.at (Trivial grammars): New test, to catch
5639 the error fixed by the above patch.
5640
5641 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
5642
5643 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
5644 scheme.
5645 Reported by Steve Murphy.
5646
5647 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
5648
5649 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
5650 * data/glr.cc: b4_location_flag is now b4_locations_flag.
5651
5652 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
5653
5654 Implement --trace=m4.
5655 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
5656 * src/output.c (output_skeleton): When set, pass -dV to m4.
5657
5658 Factor the handling of flags in m4.
5659 * src/output.c (prepare): Rename the muscle names debug, defines,
5660 error_verbose to debug_flag, defines_flag, error_verbose_flag.
5661 * data/c.m4: Adjust.
5662 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
5663 Use b4_define_flag_if to define other b4_FLAG_if macros.
5664 (b4_location_if): As a consequence, rename as...
5665 (b4_locations_if): this, for consistency.
5666 Adjust all the skeletons.
5667
5668 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
5669
5670 * etc/bench.pm: Shorten bench names.
5671
5672 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
5673
5674 * src/output.h, src/output.c (error_verbose): Move to...
5675 * src/getargs.h, src/getargs.c: here.
5676 Sort the flags.
5677 Adjust dependencies.
5678
5679 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
5680
5681 * data/c.m4 (b4_copyright): Put the special exception for Bison
5682 skeletons here, so we don't have to put it in each skeleton. All
5683 uses changed. Suggested by Akim Demaille. Also, wrap the
5684 copyright notice, in case it is longer than 80 columns. Replace
5685 comma by newline after title.
5686
5687 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
5688
5689 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
5690 incompatibility, not a bug. Mention that it wasn't fixed as of
5691 flex 2.5.33.
5692
5693 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
5694
5695 * examples/extexi: Enforce the precedence of concatenation over
5696 >>.
5697 Reported by Tommy Nordgren.
5698
5699 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
5700
5701 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
5702 with the member "token".
5703 Reported by Martin Nylin.
5704
5705 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
5706
5707 * data/glr.c: Switch to Bison 2.2 special-exception language in
5708 the copyright notice. Use more-regular format for titles and
5709 copyright notices.
5710 * data/glr.cc: Likewise.
5711 * data/location.cc: Likewise.
5712 * data/yacc.cc: Likewise.
5713 * doc/bison.texinfo (Conditions): Document this.
5714 * NEWS: likewise. Upgrade version to 2.2.
5715
5716 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
5717
5718 * data/glr.cc: Remove dead code.
5719
5720 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
5721
5722 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
5723 that variable and the line breaks the bootstrap. Problem reported
5724 by Juan M. Guerrero.
5725
5726 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
5727
5728 * doc/bison.texinfo (Multiple start-symbols): New.
5729
5730 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
5731
5732 * etc/README, etc/bench.pl: New.
5733
5734 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
5735
5736 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
5737 rule.
5738 Reported by Mickael Labau.
5739 * tests/input.at (Torturing the Scanner): Test it.
5740
5741 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
5742
5743 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
5744 Problem reported by Bob Rossi.
5745
5746 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
5747
5748 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
5749 and didn't really work.
5750 For the index, use @ifnotinfo, not @iftex.
5751 Minor cleanups of spacing and terminology.
5752
5753 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
5754
5755 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
5756 of AT_NAME_PREFIX when %name-prefix is not used.
5757
5758 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
5759
5760 Apply --prefix to C++ skeletons too: they change the namespace.
5761 The test suite already exercize these cases.
5762 * data/c++.m4 (b4_namespace): New.
5763 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
5764 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
5765 * data/yacc.c, data/glr.c: Remove a useless `[]'.
5766 * doc/bison.texinfo: Document it.
5767 (Option Cross Key): Use @multitable in all formats. It looks
5768 nicer, even in TeX outputs.
5769 (Rules): Use the same code whatever the output type is.
5770 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
5771 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
5772 * tests/calc.at: Use it, instead of hard coding `yy'.
5773
5774 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
5775
5776 * TODO: Remove dead items.
5777
5778 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
5779
5780 * doc/FAQ: Remove, merged into...
5781 * doc/bison.texinfo (FAQ): this.
5782 * doc/Makefile.am (EXTRA_DIST): Adjust.
5783
5784 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
5785
5786 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
5787 even if empty.
5788 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
5789 * doc/bison.texinfo (Calc++ Scanner): Use it.
5790
5791 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
5792
5793 Fix two nits reported by twlevo, plus one more that I discovered.
5794
5795 * src/assoc.h (assoc_to_string): Give a name to the arg, as
5796 this is the usual Bison style.
5797 * src/location.h (location_print): Likewise.
5798
5799 * src/reader.h (token_name): Likewise.
5800
5801 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
5802
5803 Fix some nits reported by twlevo.
5804 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
5805 and "POSIX". Use more-modern syntax for URLs. Mention C++
5806 and ask for Java. Don't hardwire OS version numbers. Add
5807 copyright notice.
5808 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
5809 * src/conflicts.c (solved_conflicts_obstack): Now static.
5810
5811 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
5812
5813 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
5814 page. Say "you can use it" not "you may use it" as on the web page;
5815 we're describing capabilities not granting permission.
5816
5817 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
5818
5819 * data/glr.c (yyresolveLocations): Rename local variables to avoid
5820 shadowing warnings. Use usual patter for iterating through RHS.
5821 * tests/glr-regression.at
5822 (Uninitialized location when reporting ambiguity):
5823 Modify yylex so that it uses its argument, rather than trying
5824 to rely on ARGSUSED (which doesn't work for gcc with warnings).
5825 const char -> char const.
5826
5827 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
5828 Don't use tabs inside commands; it messes up 'ps'.
5829 Problem reported by twlevo.
5830
5831 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
5832
5833 * tests/glr-regression.at (Uninitialized location when reporting
5834 ambiguity): New test case.
5835 * data/glr.c (yyresolveLocations): New function, which uses
5836 YYLLOC_DEFAULT.
5837 (yyresolveValue): Invoke yyresolveLocations before reporting an
5838 ambiguity.
5839 * doc/bison.texinfo (Default Action for Locations): Note
5840 YYLLOC_DEFAULT's usage for ambiguity locations.
5841 (GLR Semantic Actions): Cross-reference those notes.
5842
5843 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
5844
5845 * tests/glr-regression.at (Leaked semantic values when reporting
5846 ambiguity): Remove unnecessary union and type declarations.
5847 (Leaked lookahead after nondeterministic parse syntax error): New test
5848 case.
5849 * data/glr.c (yyparse): Check for zero stacks remaining before
5850 attempting to shift the lookahead so that you don't lose it.
5851
5852 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
5853
5854 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
5855 * tests/glr-regression.at (Leaked semantic values when reporting
5856 ambiguity): New test case.
5857 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
5858 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
5859 now unnecessary yystackp parameter.
5860 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
5861 destructors can be called.
5862
5863 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
5864 in existing testcases.
5865
5866 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
5867
5868 Don't leak semantic values for parent RHS when a user action cuts the
5869 parser, and clean up related code a bit.
5870 * tests/glr-regression.at (Leaked merged semantic value if user action
5871 cuts parse): Rename to...
5872 (Leaked semantic values if user action cuts parse): ... this. Add check
5873 for leaked parent RHS values.
5874 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
5875 between an unresolved state (non-empty chain of semantic options) and
5876 an incomplete one (signaled by an empty chain).
5877 (yyresolveStates): Document the interface. Move all manipulation of a
5878 successfully or unsuccessfully resolved yyGLRState to...
5879 (yyresolveValue): ... here so that yyresolveValue always leaves a
5880 yyGLRState with consistent data and thus is easier to understand.
5881 Remove the yyvalp and yylocp parameters since they are always just
5882 taken from the yys parameter. When reporting a discarded merged value
5883 in debugging output, note that it is incompletely merged. Document the
5884 interface.
5885 (yyresolveAction): If resolving any of the RHS states fails, destroy
5886 them all rather than leaking them. Thus, as long as user actions are
5887 written to clean up the RHS correctly, yyresolveAction always cleans up
5888 the RHS of a semantic option. Document the interface.
5889
5890 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
5891
5892 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
5893 led to a segmentation fault in GNU Pascal. Problem reported
5894 by Waldek Hebisch.
5895
5896 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
5897
5898 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
5899 mid-rule action inside a nonterminal symbol in order to declare a
5900 destructor for its semantic value.
5901
5902 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
5903
5904 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
5905 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
5906 __cplusplus && ! defined _STDLIB_H && !
5907 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
5908 defined free))]: Include <stdlib.h> rather than rolling our own
5909 declarations of malloc and free, to avoid problems with
5910 incompatible declarations (using 'throw') C++'s stdlib.h. This
5911 should fix Debian bug 340012
5912 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
5913 reported by Guillaume Melquiond.
5914
5915 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
5916
5917 * NEWS: Clarify symbols versus types in unused-value warnings.
5918
5919 * configure.ac (AC_INIT): Bump version number.
5920
5921 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
5922
5923 * NEWS: Version 2.1a.
5924 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
5925 since C99 requires this.
5926
5927 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
5928
5929 * m4/c-working.m4: New file.
5930 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
5931
5932 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
5933
5934 * Makefile.maint: Merge from coreutils.
5935
5936 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
5937
5938 More portability fixes for problems summarized by Nelson H. F. Beebe.
5939
5940 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
5941 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
5942 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
5943 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
5944 messes up because C++ code is compiled in 32-bit mode but linked
5945 in 64-bit mode.
5946
5947 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
5948
5949 More portability fixes for problems summarized by Nelson H. F. Beebe.
5950
5951 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
5952 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
5953
5954 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
5955 nodist_PROGRAMS, since we don't need to actually compile the
5956 example if we're just doing a plain 'make'. This avoids bothering
5957 the installer unnecessarily about problems due to weird C++
5958 compilers.
5959
5960 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
5961
5962 More portability fixes for problems summarized by Nelson H. F. Beebe.
5963
5964 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
5965 than #include "...", and compile with -I'.'. The old method was
5966 not portable, according to Posix and the C standard, and it does
5967 not work with Sun C 5.7, where previous #line directives affect
5968 the working directory used in later #include "..." directives.
5969
5970 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5971
5972 Various DJGGP specific issues in /djgpp
5973
5974 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
5975
5976 More portability fixes for problems summarized by Nelson H. F. Beebe.
5977
5978 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
5979 '#include <map>' works and that you can apply ++ to iterators.
5980
5981 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
5982
5983 Work around portability problems summarized by Nelson H. F. Beebe in
5984 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
5985
5986 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
5987 that '#include <string>' works.
5988
5989 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
5990 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
5991 "warning: sorry: semantics of inline function static data `const
5992 unsigned char translate_table[262]' are wrong (you'll wind up with
5993 multiple copies)".
5994
5995 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
5996 or, xor to not_, and_, or_, and xor_, respectively. This works
5997 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
5998 random system header somewhere that includes the equivalent of
5999 <iso646.h>.
6000
6001 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
6002 -E" works; it apparently doesn't work with PathScale EKO Compiler
6003 Suite Version 2.0.
6004
6005 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
6006
6007 During deterministic GLR operation, user actions should be able to
6008 influence the parse by changing yychar. To make this easier to fix and
6009 to make glr.c easier to evolve in general, don't maintain yytoken in
6010 parallel with yychar; just compute yytoken when needed.
6011 * tests/glr-regression.at (Incorrect lookahead during deterministic
6012 GLR): Check that setting yychar in a user action has the intended
6013 effect.
6014 * data/glr.c (yyGLRStack): Remove yytokenp member.
6015 (yyclearin): Don't set *yytokenp.
6016 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
6017 yychar rather than *yytokenp to determine the current lookahead.
6018 Compute yytoken locally when needed.
6019 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
6020 point to.
6021
6022 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
6023 after `--report' documentation.
6024
6025 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
6026
6027 * src/parse-gram.y (grammar_declaration): Location of printer
6028 symbol is @1, not list->location. Bug reported by twlevo.
6029 * tests/input.at (Incompatible Aliases): Adjust to above change.
6030
6031 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
6032
6033 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
6034 all the test at once. This makes the output easier to read in the
6035 normal case.
6036
6037 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
6038 got from <http://bro-ids.org/download.html>. The bug is that
6039 when two actions appeared in succession, the second one was
6040 scanned before the first one was added to the grammar rule
6041 as a midrule action. Bison then output the incorrect warning
6042 "parse.y:905.17-906.36: warning: unused value: $3".
6043 * src/parse-gram.y (BRACED_CODE, action): These are no longer
6044 associated with a value.
6045 (rhs): Don't invoke grammar_current_rule_action_append.
6046 (action): Invoke it here instead.
6047 * src/reader.c (grammar_midrule_action): Now extern.
6048 (grammar_current_rule_action_append): Don't invoke
6049 grammar_midrule_action; that is now the scanner's job.
6050 * src/reader.h (last_string, last_braced_code_loc):
6051 (grammar_midrule_action): New decls.
6052 * src/scan-gram.l (last_string): Now extern, sigh.
6053 (last_braced_code_loc): New extern variable.
6054 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
6055 rule already has an action.
6056 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
6057 * tests/input.at (AT_CHECK_UNUSED_VALUES):
6058 Add some tests to check that the above changes fixed the bug.
6059
6060 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
6061
6062 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
6063 All used changed. Check whether the symbol has a destructor,
6064 not whether it is typed.
6065 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
6066 that the values are still reported as unused. All line numbers
6067 adjusted.
6068
6069 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
6070
6071 Work around a bug in bro 0.8, which underparenthesizes its
6072 definition of YYLLOC_DEFAULT.
6073 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
6074 their arguments.
6075 * data/lalr1.cc: Likewise.
6076 * data/yacc.cc: Likewise.
6077
6078 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
6079
6080 Work around a bug in Pike 7.0, and give the Pike folks a
6081 better way to override the usual int widths.
6082 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
6083 user can override the types.
6084 (short): #undef, to work around a bug in Pike 7.0.
6085 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
6086 (union yyalloc.yyss): Use yytype_int16 rather than short.
6087 All uses changed.
6088 (yysigned_char): Remove.
6089 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
6090 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
6091 * tests/regression.at (Web2c Actions): Adjust to above changes.
6092
6093 * src/reader.c (check_and_convert_grammar): New function.
6094 (reader): Close the input file even if something went wrong during
6095 parsing. Minor file descriptor leak reported by twlevo.
6096
6097 * src/assoc.c (assoc_to_string): Use a default: abort (); case
6098 to pacify gcc -Wswitch-default.
6099 * src/scan-gram.l (adjust_location): Use a default: break; case
6100 to pacify gcc -Wswitch-default.
6101 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
6102 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
6103 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
6104 Move these decls to scan-skel.l, since they don't need to be
6105 visible elsewhere.
6106 * src/scan-skel.l: Accept the above decls.
6107 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
6108 is used.
6109
6110 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
6111
6112 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
6113 since we don't want to insist on a version number at the start
6114 of the changelog every time.
6115 * Makefile.maint: Sync from coreutils a bit better.
6116 (sc_trailing_blank): Renamed from sc_trailing_space.
6117 All uses changed.
6118 (sc_no_if_have_config_h, sc_require_config_h):
6119 (sc_prohibit_assert_without_use): New rules.
6120 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
6121 (sc_dd_max_sym_length): Fix leading spaces in rule.
6122 (sc_system_h_headers): Prefix with @.
6123 (sc_useless_cpp_parens, m4-check): Output line numbers.
6124 (changelog-check): Allow version only in head.
6125 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
6126 satisfy new Makefile.maint rule.
6127 * data/glr.c: Likewise.
6128 * data/glr.cc: Likewise.
6129 * data/lalr1.cc: Likewise.
6130 * data/yacc.c: Likewise.
6131 * lib/ebitsetv.c: Likewise.
6132 * lib/lbitset.c: Likewise.
6133 * lib/subpipe.c: Likewise.
6134 * lib/timevar.c: Likewise.
6135 * src/system.h: Likewise.
6136 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
6137 * djgpp/Makefile.maint: Add copyright notice.
6138 * djgpp/README.in: Likewise.
6139 * djgpp/config.bat: Likewise.
6140 * djgpp/config.site: Likewise.
6141 * djgpp/config_h.sed: Likewise.
6142 * djgpp/djunpack.bat: Likewise.
6143 * djgpp/config.sed: Fix copyright notice to match standard format.
6144 * djgpp/subpipe.h: Likewise.
6145 * lib/bitsetv-print.c: Likewise.
6146 * lib/bitsetv.c: Likewise.
6147 * lib/subpipe.h: Likewise.
6148 * lib/timevar.c: Likewise.
6149 * lib/timevar.h: Likewise.
6150 * djgpp/subpipe.c: Use standard recipe for config.h.
6151 * lib/abitset.c: Likewise.
6152 * lib/bitset.c: Likewise.
6153 * lib/bitset_stats.c: Likewise.
6154 * lib/bitsetv-print.c: Likewise.
6155 * lib/bitsetv.c: Likewise.
6156 * lib/ebitsetv.c: Likewise.
6157 * lib/get-errno.c: Likewise.
6158 * lib/lbitset.c: Likewise.
6159 * lib/subpipe.c: Likewise.
6160 * lib/timevar.c: Likewise.
6161 * lib/vbitset.c: Likewise.
6162 * tests/local.at: Likewise.
6163 * src/scan-gram.l: Don't include verify.h, since system.h does
6164 that for us.
6165 * .x-sc_require_config_h: New file.
6166 * .x-sc_unmarked_diagnostics: New file.
6167
6168 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
6169
6170 Be a bit more systematic about using 'abort'.
6171 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
6172 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
6173 Put 'default: abort ();' before some other case, to satisfy older
6174 pedantic compilers.
6175 * lib/bitset_stats.c (bitset_stats_init): Likewise.
6176 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
6177 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
6178 * src/conflicts.c (resolve_sr_conflict): Likewise.
6179 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
6180 (get_decision_str, get_orientation_str, get_node_alignment_str):
6181 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
6182 (get_linestyle_str, get_arrowstyle_str): Likewise.
6183 * src/conflicts.c (resolve_sr_conflict):
6184 Use a default case rather than one for the one remaining enum
6185 value, to catch invalid enum values as well.
6186 * src/lalr.c (set_goto_map, map_goto):
6187 Prefer "assert (FOO);" to "if (!FOO) abort ();".
6188 * src/nullable.c (nullable_compute, token_definitions_output):
6189 Likewise.
6190 * src/reader.c (packgram, reader): Likewise.
6191 * src/state.c (transitions_to, state_new, state_reduction_find):
6192 Likewise.
6193 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
6194 (symbol_pack): Likewise.
6195 * src/tables.c (conflict_row, pack_vector): Likewise.
6196 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
6197 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
6198 * src/system.h: Don't include <assert.h>.
6199 (assert): New macro.
6200
6201 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
6202 (Destructor Decl, Parser Function, Pure Calling):
6203 Describe rules for braces inside C code more carefully.
6204
6205 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
6206
6207 Fix some porting glitches found by Nelson H. F. Beebe.
6208 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
6209 compilers that don't understand that abort () does not return.
6210 * src/state.c (transitions_to): Likewise.
6211 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
6212 that '#include <cstdlib>' works.
6213 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
6214 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
6215 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
6216 for the benefit of some pre-C99 compilers.
6217
6218 * bootstrap: Undo changes to gnulib files that autoreconf made.
6219
6220 Minor fixups to get 'make maintainer-check' to work.
6221 * configure.ac: Don't use -Wnested-externs, as it's incompatible
6222 with the new verify.h implementation.
6223 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
6224 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
6225 * data/yacc.c (YYUSE): Likewise.
6226 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
6227 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
6228 * src/parse-gram.y (declaration): Don't pass a string constant
6229 to a function that expects char *, since GCC might complain
6230 about the constant value.
6231 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
6232 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
6233 before #defining them.
6234 * tests/glr-regression.at
6235 (Incorrectly initialized location for empty right-hand side in GLR):
6236 In yyerror, use the msg arg.
6237 (Corrupted semantic options if user action cuts parse):
6238 (Incorrect lookahead during deterministic GLR):
6239 (Incorrect lookahead during nondeterministic GLR):
6240 Don't name a local var 'index'; it shadows string.h's 'index'.
6241
6242 2006-01-19 Akim Demaille <akim@epita.fr>
6243
6244 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
6245 location, not just parts of it.
6246
6247 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
6248
6249 * NEWS: Document the fact that multiple %unions are now allowed.
6250 * doc/bison.texinfo (Union Decl): Likewise.
6251 * TODO: This feature is now implemented, so remove it from
6252 the wishlist.
6253
6254 * Makefile.maint: Merge with coreutils Makefile.maint.
6255 (CVS_LIST): Use build-aux version if available.
6256 (VERSION_REGEXP): New macro.
6257 (syntax-check-rules): Add sc_no_if_have_config_h,
6258 sc_prohibit_assert_without_use, sc_require_config_h,
6259 sc_useless_cpp_parens.
6260 (sc_obsolete_symbols): Check for O_NDELAY.
6261 (sc_dd_max_sym_length): Track coreutils.
6262 (sc_unmarked_diagnostics): Look in all files, not just *.c.
6263 (sc_useless_cpp_parens): New rule.
6264 (news-date-check): Look for version or today's date.
6265 (changelog-check): Don't require version number near head.
6266 (copyright-check): Use current year instead of hardwiring 2005.
6267 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
6268 (announcement): Add --gpg-key-ID.
6269
6270 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
6271 with "file system".
6272
6273 Avoid undefined behavior that addressed just before the start of an
6274 array. Problem reported by twlevo.
6275 * src/reader.c (packgram): Prepend a new sentinel before ritem.
6276 * src/lalr.c (build_relations): Rely on new sentinel.
6277 * src/gram.c (gram_free): Adjust to new sentinel.
6278
6279 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
6280
6281 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
6282 yylookaheadNeeds. All uses updated.
6283 (yysplitStack): Rename local yynewLookaheadStatuses to
6284 yynewLookaheadNeeds.
6285 * data/glr-regression.at (Incorrect lookahead during nondeterministic
6286 GLR): In comments, change `lookahead status' to `lookahead need'.
6287
6288 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6289
6290 * data/glr.c (yysplitStack): A little stylistic rewrite.
6291
6292 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6293
6294 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
6295
6296 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
6297
6298 * doc/bison.texinfo: Fix some typos.
6299 (GLR Semantic Actions): New subsection discussing special
6300 considerations because GLR semantic actions might be deferred.
6301 (Actions): Mention look-ahead usage of yylval.
6302 (Actions and Locations): Mention look-ahead usage of yylloc.
6303 (Special Features for Use in Actions): Add YYEOF entry and mention it
6304 in the yychar entry.
6305 In the yychar entry, remove mention of the local yychar case (pure
6306 parser) since this is irrelevant information when writing semantic
6307 actions and since it's already discussed in `Table of Symbols' where
6308 yychar is otherwise described as an external variable.
6309 In the yychar entry, don't call it the `current' look-ahead since it
6310 isn't when semantic actions are deferred.
6311 In the yychar and yyclearin entries, add note about deferred semantic
6312 actions.
6313 Add yylloc and yylval entries discussing look-ahead usage.
6314 (Look-Ahead Tokens): When discussing yychar, don't call it the
6315 `current' look-ahead, and do mention yylval and yylloc.
6316 (Error Recovery): Cross-reference `Action Features' when mentioning
6317 yyclearin.
6318 (Table of Symbols): In the yychar entry, don't call it the `current'
6319 look-ahead.
6320 In the yylloc and yylval entries, mention look-ahead usage.
6321
6322 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6323
6324 * tests/glr-regression.at: Update copyright year to 2006.
6325
6326 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6327
6328 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
6329 use during nondeterministic operation to track which stacks have
6330 actually needed the current lookahead.
6331 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
6332 Allocate, deallocate, resize, and otherwise shuffle space for
6333 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
6334 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
6335 appropriately during nondeterministic operation.
6336 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
6337 members to store the current lookahead to be used by the deferred
6338 user action.
6339 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
6340 from which the RHS is taken. Set the lookahead members of the new
6341 yySemanticOption according to the lookahead status for stack yyk.
6342 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
6343 yyaddDeferredAction.
6344 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
6345 members of yySemanticOption before invoking yyuserAction, and then set
6346 them back to their current values afterward.
6347 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
6348 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
6349 * tests/glr-regression.at: Remove `.' from the ends of recent test case
6350 titles for consistency.
6351 (Leaked merged semantic value if user action cuts parse): In order to
6352 suppress lint warnings, use arguments in merge function, and assign
6353 char value < 128 in main.
6354 (Incorrect lookahead during deterministic GLR): New test case.
6355 (Incorrect lookahead during nondeterministic GLR): New test case.
6356
6357 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6358
6359 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
6360 !yyvaluep as signal that no semantic value is available to print.
6361 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
6362 to print a semantic value.
6363
6364 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6365
6366 * tests/glr-regression.at: For consistency with my newer test cases,
6367 don't thank myself.
6368
6369 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
6370
6371 * data/glr.c (yyresolveValue): When merging semantic options, if at
6372 least one user action succeeds but a later one cuts the parse, then
6373 destroy the semantic value before returning rather than leaking it.
6374 (yyresolveStates): If a user action cuts the parse and thus
6375 yyresolveValue fails, ignore the (unset) semantic value rather than
6376 corrupting the yyGLRState, and empty the semantic options list since
6377 the user actions should have called all necessary destructors.
6378 Simplify code with YYCHK.
6379 * tests/glr-regression.at (Corrupted semantic options if user action
6380 cuts parse): New test case.
6381 (Undesirable destructors if user action cuts parse): New test case.
6382 Before applying any of this patch, this test case never actually failed
6383 for me... but only because the corrupted semantic options usually
6384 masked this bug.
6385 (Leaked merged semantic value if user action cuts parse): New test
6386 case.
6387
6388 2006-01-05 Akim Demaille <akim@epita.fr>
6389
6390 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
6391
6392 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
6393
6394 * data/c.m4 (b4_c_modern): New macro, with a new provision for
6395 _MSC_VER. Problem reported by Cenzato Marco.
6396 (b4_c_function_def): Use it.
6397 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
6398 b4_c_modern.
6399 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
6400 than rolling our own.
6401
6402 2006-01-04 Akim Demaille <akim@epita.fr>
6403
6404 Also warn about non-used mid-rule values.
6405 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
6406 member.
6407 (symbol_list_new): Adjust.
6408 * src/reader.c (symbol_typed_p): New.
6409 (grammar_rule_check): Use it.
6410 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
6411 Check its rule.
6412 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
6413 Use it.
6414 * tests/actions.at (Exotic Dollars): Adjust.
6415
6416 2006-01-04 Akim Demaille <akim@epita.fr>
6417
6418 * src/reader.c (grammar_midrule_action): If $$ is set in a
6419 mid-rule, move the `used' bit to its lhs.
6420 * tests/input.at (Unused values): New.
6421 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
6422
6423 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
6424
6425 * doc/bison.texinfo (Bison Options): Say more accurately what
6426 --yacc does.
6427 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
6428 about declarations in the grammar when in Yacc mode, as POSIX does
6429 not require a diagnostic when the grammar uses extensions.
6430
6431 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
6432
6433 Warn about dubious constructions like "%token T T".
6434 Reported by twlevo.
6435 * src/symtab.h (struct symbol.declared): New member.
6436 * src/symtab.c (symbol_new): Initialize it to false.
6437 (symbol_class_set): New arg DECLARING, specifying whether
6438 this is a declaration that we want to warn about, if there
6439 is more than one of them. All uses changed.
6440
6441 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
6442 Allow multiple %union directives, whose contents concatenate.
6443 * src/parse-gram.y (grammar_declaration): Likewise.
6444 Use muscle_code_grow, so that we don't need stype_line any more.
6445 All uses changed.
6446
6447 * src/muscle_tab.c (muscle_grow): Fix comment.
6448
6449 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
6450 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
6451 Update copyright year to 2006.
6452
6453 2006-01-03 Akim Demaille <akim@epita.fr>
6454
6455 Have glr.cc pass (some of) the calc.at tests.
6456 * data/glr.cc (b4_parse_param_orig): New.
6457 (b4_parse_param): Improve its definition, and bound it more
6458 clearly in the skeleton.
6459 (b4_epilogue): Append, instead of prepending, in order to keep
6460 #line consistency.
6461 Simplify the generation of auxiliary functions: locations and
6462 purity are mandated.
6463 (b4_global_tokens_and_yystype): Honor it.
6464 * data/location.cc (c++.m4): Don't include it.
6465 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
6466 and AT_SKEL_CC_IF.
6467 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
6468 AT_LALR1_CC_IF.
6469 Be sure to initialize the first position's filename.
6470 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
6471 mandated anyway.
6472 (AT_CHECK_CALC_GLR_CC): New.
6473 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
6474
6475 2006-01-02 Akim Demaille <akim@epita.fr>
6476
6477 * src/output.c (output_skeleton): Don't hard wire the inclusion of
6478 c.m4.
6479 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
6480 * data/glr.cc: Do not include stack.hh.
6481
6482 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6483
6484 * data/glr.c: Reformat whitespace with tabs.
6485 (b4_lpure_formals): Remove this unused m4 macro.
6486 * tests/cxx-type.at: Reformat whitespace with tabs.
6487 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
6488 since it's a member. Rename type to isNterm for clarity.
6489
6490 2005-12-29 Akim <akim@sulaco.local>
6491
6492 Let glr.cc catch up with symbol_value_print.
6493 * data/glr.cc (b4_yysymprint_generate): Replace by...
6494 (b4_yy_symbol_print_generate): this.
6495 (yy_symbol_print, yy_symbol_value_print): Declare them.
6496
6497 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
6498
6499 * src/location.h (boundary): Note that a line or column equal
6500 to INT_MAX indicates an overflow.
6501 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
6502 (rule_length_overflow, increment_rule_length, add_column_width):
6503 New functions.
6504 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
6505 (<SC_BRACED_CODE>"}"):
6506 Use increment_rule_length rather than incrementing it by hand.
6507 (adjust_location, handle_syncline): Diagnose overflow.
6508 (handle_action_dollar, handle_action_at):
6509 Fix bug with monstrosities like $-2147483648.
6510 Remove now-unnecessary checks.
6511 (scan_integer): Verify assumptions and remove now-unnecessary checks.
6512 (convert_ucn_to_byte): Verify assumptions.
6513 (handle_syncline): New arg LOC. All callers changed.
6514 Don't store through a value derived from char const * pointer.
6515
6516 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
6517 GCC warnings.
6518
6519 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
6520
6521 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
6522 Remove unnecessary forward static decls.
6523
6524 2005-12-27 Akim Demaille <akim@epita.fr>
6525
6526 * src/reader.c (grammar_current_rule_check): Also check that $$
6527 is used.
6528 Take the rule to check as argument, hence rename as...
6529 (grammar_rule_check): this.
6530 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
6531 Rename as...
6532 (grammar_rule_begin, grammar_rule_end): these, for consistency.
6533 (grammar_midrule_action, grammar_symbol_append): Now static.
6534 * tests/torture.at (input): Don't rely on the default action
6535 being always performed.
6536 * tests/calc.at: "Set" $$ even when the action is "cut" with
6537 YYERROR or other.
6538 * tests/actions.at (Exotic Dollars): Instead of using unused
6539 values, check that the warning is issued.
6540
6541 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
6542
6543 * NEWS: Improve wording for unused-value warnings.
6544
6545 2005-12-22 Akim Demaille <akim@epita.fr>
6546
6547 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
6548 (b4_yysymprint_generate): Rename as...
6549 (b4_yy_symbol_print_generate): this.
6550 Generate yy_symbol_print instead of yysymprint.
6551 Generate also yy_symbol_value_print, and use it.
6552
6553 2005-12-22 Akim Demaille <akim@epita.fr>
6554
6555 * NEWS: Warn about unused values.
6556 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
6557 a `used' member.
6558 (symbol_list_n_get, symbol_list_n_used_set): New.
6559 (symbol_list_n_type_name_get): Use symbol_list_n_get.
6560 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
6561 * src/reader.c (grammar_current_rule_check): Check that values are
6562 used.
6563 * src/symtab.c (symbol_print): Accept 0.
6564 * tests/existing.at: Remove the type information.
6565 Empty the actions.
6566 Remove useless actions (beware of mid-rule actions: perl -000
6567 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
6568 * tests/actions.at (Exotic Dollars): Use unused values.
6569 * tests/calc.at: Likewise.
6570 * tests/glr-regression.at (No users destructors if stack 0 deleted):
6571 Likewise.
6572
6573 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
6574 rule_useful_p.
6575
6576 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
6577
6578 Undo 2005-12-01 tentative license wording change. The wording is
6579 still being reviewed by the lawyers, and we don't want to wait for
6580 them before publishing a test release. For now, revert to the
6581 previous wording.
6582 * NEWS: Undo 2005-12-01 change.
6583 * data/glr.c: Revert to previous license wording.
6584 * data/glr.cc: Likewise.
6585 * data/lalr1.cc: Likewise.
6586 * data/location.cc: Likewise.
6587 * data/yacc.c: Likewise.
6588
6589 * NEWS: Reword %destructor vs YYABORT etc.
6590 * data/glr.c: Use American spacing, for consistency.
6591 * data/glr.cc: Likewise.
6592 * data/lalr1.cc: Likewise.
6593 * data/yacc.c: Likewise.
6594 * data/yacc.c: Reformat comments slightly.
6595 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
6596 for consistency. Fix some spelling errors and reword recently-included
6597 text slightly.
6598 * tests/cxx-type.at: Cast results of malloc, for C++.
6599
6600 2005-12-21 Joel E. Denny <address@hidden>
6601
6602 * tests/cxx-type.at: Construct a tree, count the parents of shared
6603 nodes, and free each node once and only once. Previously, the memory
6604 for semantic values was leaked instead.
6605
6606 2005-12-21 Joel E. Denny <address@hidden>
6607
6608 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
6609 (yylval, yylloc): If pure, #define to yystackp->yyval and
6610 yystackp->yyloc similar to yychar and yynerrs.
6611 (yyparse): If pure, remove local yylval and yylloc. Add local
6612 yystackp to accommodate pure definitions of yylval and yylloc.
6613 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
6614 yylvalp and yyllocp to &yylval and &yylloc.
6615 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
6616 namespace. Previously, nerrs and char were missing, but lval and lloc
6617 weren't necessary.
6618 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
6619 yylvalp and yyllocp parameters since, if pure, these are now always
6620 accessible through yystackp. If not pure, they are still accessible
6621 globally.
6622 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
6623 `if (YYID (N))' to pacify lint.
6624
6625 2005-12-21 Akim Demaille <akim@epita.fr>
6626
6627 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
6628 destroy the RHS symbols of a rule.
6629 * data/yacc.c (yylen): Initialize to 0.
6630 Keep its value to the number of items to possibly shift.
6631 In particular, a regular successful parse that ends on YYFINAL by
6632 a (internal) YYACCEPT must not have yylen != 0.
6633 (yyerrorlab, yyreturn): Pop the RHS.
6634 Reorder a bit to emphasize the `shifting' bits of code.
6635 (YYPOPSTACK): Now accept a number of items to pop.
6636 * data/lalr1.cc: Likewise.
6637 * data/glr.c: Formatting changes.
6638 Use goto instead of fall through.
6639 * doc/bison.texinfo (Destructor Decl): Complete.
6640
6641 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6642
6643 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
6644 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
6645 * djgpp/config.bat: Replace every occurence of the file name
6646 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
6647 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
6648 * djgpp/config.sed: Replace every occurence of the file name
6649 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
6650 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
6651 * djgpp/djunpack.bat: DJGPP specific file.
6652 * djgpp/fnchange.lst: DJGPP specific file.
6653 * djgpp/README.in: Add new information about how to unpack the bison
6654 source on MSDOS and other systems which have 8.3 file name restrictions
6655 using djunpack.bat and fnchange.lst.
6656
6657 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
6658
6659 * bootstrap (build_cvs_prefix): Remove; unused.
6660 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
6661 when getting gnulib.
6662
6663 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
6664
6665 * data/glr.c: Reorder typedef declarations for structs to match order
6666 of struct declarations.
6667 Rename yystack everywhere to yystackp except in yyparse where it's not
6668 a pointer.
6669 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
6670 consistency.
6671 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
6672 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
6673 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
6674 lint.
6675
6676 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
6677
6678 * tests/sets.at (Accept): Fix typos in regular expression used to
6679 sed out the final state number.
6680
6681 Work around portability problem on Solaris 10: flex-generated
6682 files include <stdio.h> before <config.h>, which messes up
6683 because the latter defines __EXTENSIONS__. Address the problem
6684 by creating two new little files that include <config.h> first,
6685 then include the flex-generated files. Rewrite everyone else
6686 to include <config.h> first, as well.
6687 * lib/timevar.c: Always include "config.h".
6688 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
6689 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
6690 (EXTRA_bison_SOURCES): New macro.
6691 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
6692 * src/system.h: Don't include config.h.
6693 * src/LR0.c: Include <config.h> first.
6694 * src/assoc.c: Likewise.
6695 * src/closure.c: Likewise.
6696 * src/complain.c: Likewise.
6697 * src/conflicts.c: Likewise.
6698 * src/derives.c: Likewise.
6699 * src/files.c: Likewise.
6700 * src/getargs.c: Likewise.
6701 * src/gram.c: Likewise.
6702 * src/lalr.c: Likewise.
6703 * src/location.c: Likewise.
6704 * src/main.c: Likewise.
6705 * src/muscle_tab.c: Likewise.
6706 * src/nullable.c: Likewise.
6707 * src/output.c: Likewise.
6708 * src/parse-gram.y: Likewise.
6709 * src/print.c: Likewise.
6710 * src/print_graph.c: Likewise.
6711 * src/reader.c: Likewise.
6712 * src/reduce.c: Likewise.
6713 * src/relation.c: Likewise.
6714 * src/state.c: Likewise.
6715 * src/symlist.c: Likewise.
6716 * src/symtab.c: Likewise.
6717 * src/tables.c: Likewise.
6718 * src/uniqstr.c: Likewise.
6719 * src/vcg.c: Likewise.
6720
6721 * src/parse-gram.y: Fix minor problems uncovered by lint.
6722 (current_lhs, current_lhs_location): Now static.
6723 (current_assoc): Remove unused variable.
6724
6725 Cleanups so that Bison-generated parsers have less lint.
6726 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
6727 Prepend /*ARGSUSED*/, for lint's sake.
6728 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
6729 definition if 'lint' is defined.
6730 (YYID): New macro (or function, if lint).
6731 All uses of /*CONSTCOND*/0 replaced by YYID(0).
6732 * data/yacc.c: Likewise.
6733 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
6734 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
6735 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
6736 is C++ only.
6737 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
6738 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
6739 Use YYID(0) rather than 0, for lint.
6740 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
6741 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
6742
6743 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
6744
6745 * tests/glr-regression.at
6746 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
6747 Close memory leak reported by twlevo.
6748
6749 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
6750
6751 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
6752 all stacks.
6753 (yyparse): Iterate another stack in order to call user destructors.
6754 * tests/glr-regression.at (No users destructors if stack 0 deleted):
6755 New test case.
6756 (Duplicated user destructor for lookahead): This test now is expected
6757 to succeed.
6758
6759 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
6760
6761 * NEWS: Document the following change.
6762 * data/yacc.c: Say "parser skeleton" rather than "file", since
6763 it's no longer just a file.
6764 * data/glr.c: Grant a special exception for C GLR parsers, that
6765 reads like the already-existing exception for C LALR(1) parsers.
6766 * data/glr.cc: Likewise.
6767 * data/lalr1.cc: Likewise.
6768 * data/location.cc: Likewise.
6769 * data/yacc.c: Reword the "written by" statement to clarify that
6770 it was the parser skeleton, not the entire output file.
6771 * data/glr.c: Written by Paul Hilfinger.
6772 * data/glr.cc: Written by Akim Demaille.
6773 * data/lalr1.cc: Likewise.
6774
6775 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
6776
6777 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
6778 Fix typos in previous change that broke 'make check'.
6779 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
6780 supported in C.
6781 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
6782 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
6783 We can revert this once things settle down.
6784
6785 * src/conflicts.c (conflicts_print): Don't print file name twice
6786 when %expect fails because there were no conflicts.
6787 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
6788 change.
6789 * tests/conflicts.at (%expect not enough, %expect too much):
6790 (%expect with reduce conflicts): Adjust to new behavior.
6791
6792 2005-11-18 Akim Demaille <akim@epita.fr>
6793
6794 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
6795 errors.
6796 * NEWS: Document this.
6797 * doc/bison.texinfo (Expect Decl): Likewise.
6798
6799 2005-11-16 Akim Demaille <akim@epita.fr>
6800
6801 Generalize the display of semantic values and locations in traces.
6802 * data/glr.c (yy_reduce_print): Fix indices (again).
6803 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
6804 literal integers.
6805 * data/lalr1.cc (yyreduce_print): Rename as...
6806 (yy_reduce_print): this.
6807 Display values and locations.
6808 * data/yacc.c (yy_reduce_print): Likewise.
6809 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
6810 (yysymprint): Move higher to be visible from yy_reduce_print).
6811 (yyparse): Adjust.
6812 * tests/calc.at: Adjust the expected length of the traces.
6813
6814 2005-11-14 Akim Demaille <akim@epita.fr>
6815
6816 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
6817 from 1 to N, while values and location start at 0.
6818 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
6819
6820 2005-11-14 Akim Demaille <akim@epita.fr>
6821
6822 * data/glr.c (yy_reduce_print): Fix the $ number.
6823
6824 2005-11-14 Akim Demaille <akim@epita.fr>
6825
6826 "Use" parse parameters.
6827 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
6828 * data/glr.c, data/glr.cc: Use them.
6829 * data/glr.c (YYUSE): Have a C++ definition that supports
6830 non-pointer types.
6831
6832 2005-11-14 Akim Demaille <akim@epita.fr>
6833
6834 * data/glr.c (yyexpandGLRStack): Declare only if defined.
6835
6836 2005-11-14 Akim Demaille <akim@epita.fr>
6837
6838 * data/glr.cc: New.
6839 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
6840
6841 2005-11-12 Akim Demaille <akim@epita.fr>
6842
6843 Let position and location be PODs.
6844 * data/location.cc (position::initialize, location::initialize): New.
6845 (position::position, location::location): Define only if
6846 b4_location_constructors is defined.
6847 * data/lalr1.cc (b4_location_constructors): Define it for backward
6848 compatibility.
6849 * doc/bison.texinfo (Initial Action Decl): Use initialize.
6850
6851 2005-11-12 Akim Demaille <akim@epita.fr>
6852
6853 * data/lalr1.cc: Move the body of the ctor and dtor into the
6854 parser file (instead of the header).
6855 Wrap the implementations in a "namespace yy".
6856
6857 2005-11-12 Akim Demaille <akim@epita.fr>
6858
6859 Have glr.c include its header file when created.
6860 * data/glr.c (b4_shared_declarations): New.
6861 Output them verbatim in the parser if !%defines, otherwise
6862 output then in the header file, and include it instead.
6863
6864 2005-11-11 Akim Demaille <akim@epita.fr>
6865
6866 * data/glr.c: Comment changes.
6867
6868 2005-11-11 Akim Demaille <akim@epita.fr>
6869
6870 When yydebug, report semantic and location values for reductions.
6871 * data/glr.c (yy_reduce_print): Report the semantic values and the
6872 locations.
6873 (YY_REDUCE_PRINT): Adjust.
6874 (yyglrReduce): Use them.
6875 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
6876 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
6877 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
6878 traces.
6879
6880 2005-11-10 Akim Demaille <akim@epita.fr>
6881
6882 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
6883 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
6884 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
6885
6886 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
6887
6888 * m4/cxx.m4, examples/Makefile.am: Don't build
6889 examples/calc++ if no C++ compiler is available. (trivial change)
6890
6891 2005-11-09 Akim Demaille <akim@epita.fr>
6892
6893 * src/scan-skel.l: Use a couple of asserts.
6894
6895 2005-11-03 Akim Demaille <akim@epita.fr>
6896
6897 In some (weird) cases, the final state number is incorrect.
6898 Reported by Alexandre Duret-Lutz.
6899 * src/LR0.c (state_list_append): Remove the computation of
6900 final_state.
6901 (save_reductions): Do it here.
6902 (get_state): Alpha conversion.
6903 (generate_states): Use a for loop.
6904 * src/gram.h (item_number_is_rule_number)
6905 (item_number_is_symbol_number): New.
6906 * src/state.c: Use assert.
6907 * src/system.h: Include assert.h.
6908 * tests/sets.at (Accept): New.
6909
6910 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6911
6912 * data/glr.c (yyfill): Adjust comment.
6913 (yyresolveAction): Initialize default location properly
6914 for empty right-hand sides.
6915 (yydoAction): Ditto.
6916 Add comment explaining apparently dead code.
6917 * tests/glr-regression.at
6918 (Incorrectly initialized location for empty right-hand side in GLR):
6919 New test.
6920
6921 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
6922
6923 * bootstrap (cleanup_gnulib): New function. Use it to clean up
6924 gnulib when interrupted. This fixes some race conditions and
6925 works around some portability problems (one noted by Paul
6926 Hilfinger).
6927
6928 2005-10-22 Akim <akim@epita.fr>
6929
6930 * Makefile.cfg: Adjust to config -> build-aux.
6931 Reported by twledo.
6932
6933 2005-10-21 Akim Demaille <akim@epita.fr>
6934
6935 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
6936 the %parse-params.
6937 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
6938 * data/yacc.c (b4_Pure_if): Rename as...
6939 (b4_yacc_pure_if): this.
6940 (YY_SYMBOL_PRINT, yyparse): Adjust.
6941 * doc/bison.texinfo: Formatting changes.
6942
6943 2005-10-21 Akim Demaille <akim@epita.fr>
6944
6945 Finish the transition config -> build-aux.
6946 * configure.ac, Makefile.am: Use build-aux.
6947 * config/prev-version, config/announce-gen, config/Makefile.am:
6948 Move to...
6949 * build-aux/prev-version, build-aux/announce-gen,
6950 * build-aux/Makefile.am: here.
6951
6952 2005-10-14 Akim Demaille <akim@epita.fr>
6953
6954 * examples/calc++/test: Use set -x only when VERBOSE.
6955
6956 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
6957
6958 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
6959 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
6960
6961 2005-10-13 Akim Demaille <akim@epita.fr>
6962
6963 * src/scan-skel.l: Output the base name parts of the parser and
6964 header file names.
6965 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
6966 additional checks.
6967 Use this to exercise C++ outputs in subdirs.
6968 Reported by Oleg Smolsky.
6969
6970 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
6971
6972 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
6973 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
6974 Problem reported by John P. Hartmann.
6975 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
6976 already defined it.
6977
6978 2005-10-12 Akim Demaille <akim@epita.fr>
6979
6980 * src/parse-gram.y (version_check): Exit 63 to please missing
6981 (stands for "version mismatch).
6982 * tests/input.at, doc/bison.texinfo: Adjust.
6983
6984 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
6985
6986 Work around portability problems with Visual Age C compiler
6987 (xlc and xlC_r) reported by John P. Hartmann.
6988 * data/location.cc (initial_column, initial_line): Remove.
6989 All uses replaced by 0 and 1.
6990 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
6991 that xlc complains about.
6992 * src/scan-skel.l (skel_wrap): Likewise.
6993 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
6994 as __STDC__.
6995 * data/yacc.c (YYMODERN_C): New macro, which also looks at
6996 __STDC_VERSION__. Use it everywhere instead of looking at
6997 __STDC__ and __cplusplus.
6998
6999 2005-10-10 Akim Demaille <akim@epita.fr>
7000
7001 * examples/calc++/test: Be quiet unless VERBOSE.
7002
7003 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
7004
7005 * data/c.m4 (yydestruct, yysymprint):
7006 Use YYUSE instead of casting to void.
7007 * data/glr.c (YYUSE): New macro.
7008 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7009 Use it instead of rolling our own.
7010 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7011 (YYCHK1):
7012 Use /*CONSTCOND*/ to suppress lint warnings.
7013 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7014 (YY_STACK_PRINT): Use 'false' not '0'.
7015 (YYUSE): New macro.
7016 (yysymprint_, yydestruct_): Use it instead of rolling our own.
7017 * data/yacc.c (YYUSE): New macro.
7018 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
7019 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
7020 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
7021
7022
7023 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
7024 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
7025
7026 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
7027
7028 Undo the parts of the unlocked-I/O change that substituted
7029 putc or puts for printf. This might hurt performance a bit,
7030 but some people prefer the printf style.
7031 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
7032 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
7033 All uses replaced by YYFPRINTF and YYDPRINTF.
7034 * data/yacc.c: Likewise.
7035 * lib/bitset.c (bitset_print): Likewise.
7036 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
7037 putc and puts.
7038 * lib/lbitset.c (debug_lbitset): Likewise.
7039 * src/closure.c (print_firsts, print_fderives): Likewise.
7040 * src/gram.c (grammar_dump): Likewise.
7041 * src/lalr.c (look_ahead_tokens_print): Likewise.
7042 * src/output.c (escaped_output): Likewise.
7043 (user_actions_output): Break apart two printfs.
7044 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
7045 * src/reduce.c (reduce_print): Likewise.
7046 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7047 * src/system.h: Include unlocked-io.h rathe than stdio.h.
7048
7049 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7050 Use assignments rather than casts-to-void to suppress
7051 unused-variable warnings. This pacifies 'lint'.
7052 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
7053 unused-variable warnings.
7054
7055 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7056
7057 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7058
7059 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
7060
7061 Use unlocked I/O for a minor performance improvement on hosts like
7062 GNU/Linux and Solaris that support unlocked I/O. The basic idea
7063 is to use the gnlib unlocked-io module, and to prefer putc and
7064 puts to printf when either will work (since the latter doesn't
7065 come in an unlocked flavor).
7066 * bootstrap (gnulib_modules): Add unlocked-io.
7067 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
7068 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
7069 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
7070 and similarly for puts and putc and printf.
7071 * data/yacc.c: Likewise.
7072 * lib/bitset.c (bitset_print): Likewise.
7073 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
7074 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
7075 to printf.
7076 * lib/lbitset.c (debug_lbitset): Likewise.
7077 * src/closure.c (print_firsts, print_fderives): Likewise.
7078 * src/gram.c (grammar_dump): Likewise.
7079 * src/lalr.c (look_ahead_tokens_print): Likewise.
7080 * src/output.c (escaped_output): Likewise.
7081 (user_actions_output): Coalesce two printfs.
7082 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
7083 * src/reduce.c (reduce_print): Likewise.
7084 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7085 * src/system.h: Include unlocked-io.h rather than stdio.h.
7086
7087 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
7088 this confuses xgettext.
7089
7090 2005-10-02 Akim Demaille <akim@epita.fr>
7091
7092 * bootstrap (gnulib_modules): Add strverscmp.
7093 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
7094 * m4/.cvsignore: Add strverscmp.m4.
7095 * src/parse-gram.y (%require): New token, new rule.
7096 (version_check): New.
7097 * src/scan-gram.l (%require): Adjust.
7098 * tests/input.at (AT_REQUIRE): New.
7099 Use it.
7100 * doc/bison.texinfo (Require Decl): New.
7101 (Calc++ Parser): Use %require.
7102
7103 2005-10-02 Akim Demaille <akim@epita.fr>
7104
7105 * data/location.cc: New.
7106
7107 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
7108 Akim Demaille <akim@epita.fr>
7109
7110 Make sure -odir/foo.cc creates dir/location.hh etc.
7111 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
7112 (spec_file_prefix, spec_verbose_file, spec_graph_file)
7113 (spec_defines_file): Now const.
7114 (dir_prefix): New.
7115 (short_base_name): Remove.
7116 * src/files.c: Adjust.
7117 (dirname.h): Include.
7118 (base_name): Don't prototype it.
7119 (finput): Remove, duplicates gram_in.
7120 (full_base_name, short_base_name): Replace by...
7121 (all_but_ext, all_but_tab_ext): these.
7122 (compute_base_names): Rename as...
7123 (compute_file_name_parts): this.
7124 Update to compute the new variables, including dir_prefix.
7125 Adjust dependencies.
7126 * src/output.c (prepare): Output them.
7127 * src/reader.c: Adjust to use gram_in, not finput.
7128 * src/scan-skel.l (@dir_prefix@): New.
7129
7130 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7131
7132 * lib/subpipe.c: New function end_of_output_subpipe() added
7133 to allow support for non-posix systems. This is a no-op function
7134 for posix systems.
7135
7136 * lib/subpipe.h: New function end_of_output_subpipe() added
7137 to allow support for non-posix systems. This is a no-op function
7138 for posix systems.
7139
7140 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
7141 handle the lack of pipe/fork functionality on non-posix systems.
7142
7143 * djgpp/Makefile.maint: DJGPP specific file.
7144
7145 * djgpp/README.in: DJGPP specific file.
7146
7147 * djgpp/config.bat: DJGPP specific configuration file.
7148
7149 * djgpp/config.sed: DJGPP specific configuration file.
7150
7151 * djgpp/config.site: DJGPP specific configuration file.
7152
7153 * djgpp/config_h.sed: DJGPP specific configuration file.
7154
7155 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
7156
7157 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
7158
7159 2005-10-02 Akim Demaille <akim@epita.fr>
7160
7161 * data/location.cc: New, extract from...
7162 * data/lalr1.cc: here.
7163 (location.hh): Include it after the user prologue, in case the
7164 filename type is defined by the user.
7165 Forward declation location and position before the pre-prologue.
7166 (yyresult_): Rename as...
7167 (yyresult): this, it's a local variable, not an attribute.
7168 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
7169
7170 2005-10-01 Akim Demaille <akim@epita.fr>
7171
7172 * examples/extexi: Restore the #line generation.
7173
7174 2005-09-30 Akim Demaille <akim@epita.fr>,
7175 Alexandre Duret-Lutz <adl@gnu.org>
7176
7177 Move the token type and YYSTYPE in the parser class.
7178 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
7179 (parser::token): New, from the moved free definition of tokens.
7180 (parser::semantic_value): Now a full definition instead of an
7181 indirection to YYSTYPE.
7182 (b4_post_prologue): No longer included in the header file, but
7183 in the implementation file.
7184 * doc/bison.texi (C+ Language Interface): Update.
7185 * src/parse-gram.y: Support unary %define.
7186 * tests/actions.at: Define global_tokens_and_yystype for backward
7187 compatibility until we update the tests.
7188 * tests/calc.at: Idem.
7189 (first_line, first_column, last_line, last_column): Define for lalr1.cc
7190 to simplify the code.
7191
7192 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
7193
7194 Port to SunOS 4.1.4, which lacks strtoul and strerror.
7195 Ah, the good old days! Problem reported by Peter Klein.
7196 * bootstrap (gnulib_modules): Add strerror, strtoul.
7197 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
7198 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
7199
7200 2005-09-29 Akim Demaille <akim@epita.fr>
7201
7202 * data/c.m4 (b4_error_verbose_if): New.
7203 * data/lalr1.cc: Use it.
7204 (YYERROR_VERBOSE_IF): Remove.
7205 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
7206 parser members, replaced by...
7207 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
7208 local variables.
7209 (yysyntax_error_): Takes the state number as argument.
7210 (yyreduce_print_): Use the argument yyrule, not the former
7211 attribute yyn_.
7212
7213 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
7214
7215 * bootstrap (gnulib_modules): Add verify.
7216 * lib/.cvsignore: Add verify.h.
7217 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
7218 * src/system.h (verify): Remove.
7219 Include verify.h instead.
7220 * src/tables.c (tables_generate): Use new API for 'verify'.
7221
7222 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
7223
7224 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
7225 local variables whose names begin with 'yy'.
7226 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
7227 Trivial changes from Joel E. Denny.
7228
7229 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
7230 it itself.
7231 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
7232 don't use alloca any more.
7233
7234 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
7235 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
7236 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
7237 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
7238 to match yacc.c, to test more hosts.
7239
7240 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
7241
7242 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
7243 doesn't affect behavior.
7244 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
7245 Solaris, AIX, MSC.
7246 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
7247 This works a bit better with glibc, if user code has already included
7248 stdlib.h.
7249 * doc/bison.texinfo (Bison Parser): Document that users can't
7250 arbitrarily use malloc and free for other purposes. Document
7251 that <alloca.h> and <malloc.h> might be included.
7252 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
7253 user must declare alloca.
7254
7255 * HACKING (release): Forwarn the Translation Project about
7256 stable releses.
7257
7258 2005-09-20 Akim Demaille <akim@epita.fr>
7259
7260 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
7261
7262 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
7263
7264 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
7265 (YYSTACK_ALLOC_MAXIMUM): Use it.
7266 (yysyntax_error): New function.
7267 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
7268 multiple syntax errors are reported, and alloca is being used.
7269 Instead, reallocate buffers twice as big each time, so that
7270 we waste at most half the allocated memory. Start with a small
7271 (128-byte) buffer that will suffice in most cases anyway.
7272 Use yysyntax_error to do most of the work.
7273
7274 * doc/bison.texinfo (Error Reporting, Table of Symbols):
7275 yynerrs is the number of errors reported, not the number of
7276 errors encountered.
7277
7278 * tests/glr-regression.at (Duplicated user destructor for lookahead):
7279 Mark it as expected to fail.
7280 Cast result of malloc; problem reported by twlevo@xs4all.nl.
7281 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
7282 Don't start user-code symbols with "yy", to avoid name space problems.
7283
7284 2005-09-19 Akim Demaille <akim@epita.fr>
7285
7286 Remove the traits, failed experiment.
7287 It never proved useful, and anyway because of the current
7288 definition, it was not possible to have several specialization of
7289 this traits, making it useless.
7290 * data/lalr1.cc (yy:traits): Remove.
7291 Inline its definitions in the parser class.
7292
7293 2005-09-19 Akim Demaille <akim@epita.fr>
7294
7295 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
7296 least Mac OSX with a /usr/local install of gettext.
7297
7298 2005-09-19 Akim Demaille <akim@epita.fr>
7299
7300 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
7301 and yytoken for similarity with the other skeletons.
7302
7303 2005-09-19 Akim Demaille <akim@epita.fr>
7304
7305 * NEWS, configure.ac: update version number to 2.1a.
7306
7307 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
7308
7309 * NEWS: Version 2.1.
7310
7311 * NEWS: Remove notice of yytname change, since it was never in an
7312 official release.
7313 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
7314 diagnostic.
7315 * src/output.c (prepare): Likewise.
7316 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
7317 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
7318 is not defined. This is an awful hack, but it's enough for now.
7319 All callers changed.
7320 * tests/glr-regression-at (make_value): Args are const pointers now,
7321 to avoid GCC warning.
7322 (Duplicated user destructor for lookahead): New test. Currently
7323 skipped. It fails on my host but I'm not sure it'll always fail.
7324
7325 2005-09-16 Akim Demaille <akim@epita.fr>
7326
7327 * src/symtab.h (struct symbol): Declare the printer and destructor
7328 as const, to avoid accidental calls to free.
7329 (symbol_destructor_set, symbol_printer_set): Adjust.
7330 * src/symtab.c: Adjust.
7331
7332 2005-09-16 Akim Demaille <akim@epita.fr>
7333
7334 * data/c.m4 (b4_token_enums): New.
7335 (b4_token_defines): Rename as...
7336 (b4_token_enums_defines): this.
7337 (b4_token_defines): New, output only the #defines.
7338 * data/yacc.c, data/glr.c: Adjust.
7339 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
7340 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
7341 as default values.
7342
7343 2005-09-16 Akim Demaille <akim@epita.fr>
7344
7345 * data/lalr1.cc (yylex_): Remove, inline its code.
7346 (yyreport_syntax_error_): Remove, replaced by...
7347 (yysyntax_error_): this which returns a string and leaves to the
7348 caller the call to the users' error function.
7349 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
7350 Move from members of the parser object...
7351 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
7352 to local variables of the parse function.
7353
7354 2005-09-16 Akim Demaille <akim@epita.fr>
7355
7356 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
7357 since it's in Bison's name space.
7358
7359 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
7360
7361 * data/glr.c (yyresolveValue): Add default case to pacify
7362 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
7363
7364 * NEWS: Document when yyparse started to return 2.
7365 * doc/bison.texinfo (Parser Function): Document when yyparse
7366 returns 2.
7367
7368 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
7369 (b4_filename_type): Renamed back from b4_file_name_type. All uses
7370 changed.
7371 (class position): file_name -> filename (reverting). All uses changed.
7372
7373 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
7374
7375 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
7376 do anything if $@ exists. This reverts part of the 2005-07-07
7377 patch.
7378
7379 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
7380
7381 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
7382 contains obsolete information and isn't worth distributing as a
7383 separate file anyway.
7384 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
7385 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
7386 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
7387 (yyparse): Abort if user code uses longjmp to throw an unexpected
7388 value.
7389
7390 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
7391
7392 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
7393 Suggested by twlevo@xs4all.nl.
7394
7395 * data/glr.c (YYCHK1): Do not assume YYE is in range.
7396 This avoids a diagnostic from gcc -Wswitch-enum.
7397 Problem reported by twlevo@xs4all.nl.
7398
7399 * doc/bison.texinfo: Don't use "filename", as per GNU coding
7400 standards. Use "file name" or "file" or "name", depending on
7401 the context.
7402 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
7403 not to hack/foo.tab.c.
7404 (Calc++ Top Level): 2nd arg of main is not const.
7405 * data/glr.c: b4_filename -> b4_file_name.
7406 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
7407 All uses changed.
7408 (class position): filename -> file_name. All uses changed.
7409 * data/yacc.c: b4_filename -> b4_file_name.
7410 * lib/bitset.h: filename -> file_name in local vars.
7411 * lib/bitset_stats.c: Likewise.
7412 * src/files.c: Likewise.
7413 * src/scan-skel.l ("@output ".*\n): Likewise.
7414 * src/files.c (file_name_split): Renamed from filename_split.
7415 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
7416
7417 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
7418
7419 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
7420 to accommodate latest gnulib.
7421
7422 * tests/glr-regression.at (Duplicate representation of merged trees):
7423 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
7424
7425 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
7426 needed.
7427
7428 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
7429
7430 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
7431 All uses changed. Invoke user destructor after an error during a
7432 split parse (trivial change from Joel E. Denny).
7433
7434 * tests/glr-regression.at
7435 (User destructor after an error during a split parse): New test case.
7436 Problem reported by Joel E. Denny in:
7437 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
7438
7439 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
7440
7441 * README-cvs: Give URLs for recommended tools.
7442 Mention Gzip version problem, and bootstrapping issues.
7443 Remove troubleshooting section, as it's somewhat obsolete.
7444
7445 * bootstrap (no_cache): New var, to accommodate different wget
7446 variants. Use it instead of '-C off'. Problem reported by
7447 twlevo@xs4all.nl.
7448
7449 * data/glr.c (yydestroyStackItem): New function.
7450 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
7451 debugging information. Problem reported by Joel E. Denny.
7452
7453 2005-08-25 Akim Demaille <akim@epita.fr>
7454
7455 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
7456
7457 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
7458
7459 * data/glr.c (yyrecoverSyntaxError, yyreturn):
7460 Don't invoke destructor on unresolved entries.
7461 * tests/glr-regression.at
7462 (User destructor for unresolved GLR semantic value): New test case.
7463 Problem reported by Joel E. Denny in:
7464 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
7465
7466 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
7467
7468 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
7469 Add strnlen.c.
7470 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
7471 lib-prefix.m4, po.m4.
7472
7473 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
7474 in yydestruct diagnostic, since it might not be an error.
7475 Problem reported by Joel Denny near end of
7476 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
7477 * data/lalr1.cc (yyerturn): Likewise.
7478 * data/yacc.c (yyreturn): Likewise.
7479 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
7480
7481 * src/files.c: Remove obsolete FIXME comment.
7482
7483 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
7484 with the other templates, and to fix bogus run-on messages such
7485 as the one reported at the end of
7486 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
7487 All callers changed to avoid the newline.
7488 (yyprocessOneStack): Output two lines rather than one, to accommodate
7489 the above change. This changes the debug output format slightly.
7490
7491 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
7492 reported by Joel E. Denny in
7493 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
7494 (trivial change).
7495 * tests/glr-regression.at (Duplicate representation of merged trees):
7496 New test, from Joel E. Denny in:
7497 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
7498 * THANKS: Add Joel E. Denny.
7499
7500 * configure.ac (AC_INIT): Bump to 2.0c.
7501
7502 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
7503
7504 * NEWS: Version 2.0b.
7505
7506 * Makefile.am (SUBDIRS): Put examples before tests, so that
7507 "make check" doesn't finish with "All 1 tests passed".
7508
7509 * tests/regression.at (Token definitions): Don't rely on
7510 AT_PARSER_CHECK for data that contains backslashes. It currently
7511 uses 'echo', and 'echo' isn't portable if its argument contains
7512 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
7513 that the byte '\0xff' is not printable in the C locale; it is,
7514 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
7515 not printable, so use '\0x81' to test.
7516
7517 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
7518 version of GCC, since the macro is used with non-GCC compilers.
7519
7520 Fix core dump reported by Pablo De Napoli in
7521 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
7522 * tests/regression.at (Invalid inputs with {}): New test.
7523 * src/parse-gram.y (token_name): Translate type before using
7524 it as an index.
7525
7526 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
7527 the user's name space. All uses changed to __attribute__
7528 ((__unused__)).
7529 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
7530 Add __attribute__ ((__noreturn__)).
7531
7532 * etc/clcommit: Remove. We weren't using it, and it failed
7533 "make maintainer-distcheck".
7534 * Makefile.maint: Merge from coreutils.
7535 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
7536 (syntax-check-rules): Change list of rules as described below.
7537 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
7538 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
7539 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
7540 (sc_trailing_space): New rules.
7541 (sc_xalloc_h_in_src): Remove.
7542 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
7543 (sc_space_tab, sc_error_exit_success, sc_changelog):
7544 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
7545 (makefile-check, po-check, author_mark_check):
7546 (makefile_path_separator_check, copyright-check):
7547 Use grep -n, to make it easier to find violations.
7548 Use CVS_LIST and CVS_LIST_EXCEPT.
7549 (header_regexp, h_re): Remove.
7550 (dd_c): New macro.
7551 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
7552 (my-distcheck): Use more-modern GCC flags.
7553 (signatures, %.asc): Remove.
7554 (rel-files, announcement): Remove signatures.
7555 Restore old updating code, even though we don't use it, so
7556 that we're the same as coreutils.
7557 (alpha, beta, major): Depend on news-date-check.
7558 Make the upload commands.
7559
7560 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
7561 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
7562 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
7563 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
7564 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
7565 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
7566 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
7567 * tests/sets.at: Likewise.
7568
7569 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
7570 we comment out the Autoconf version number.
7571 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
7572 it's error-prone and "make maintainer-distcheck" rejects it.
7573
7574 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
7575 Indent calls to "error" to pacify "make maintainer-distcheck",
7576 when the calls are not intended to be translated.
7577 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
7578
7579 * src/Makefile.am (DEFS): Use +=, to pacify
7580 "make maintainer-distcheck".
7581 (bison_SOURCES): Add scan-skel.h.
7582 (sc_tight_scope): New rule, from coreutils.
7583
7584 * src/files.c (src_extension, header_extension):
7585 Now static, not extern.
7586 * src/getargs.c (short_options): Likewise.
7587 * src/muscle_tab.c (muscle_table): Likewise.
7588 * src/parse-gram.y (current_class, current_type, current_prec):
7589 Likewise.
7590 * src/reader.c (grammar_end, previous_rule_end): Likewise.
7591 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
7592 * src/main.c (main): Cast bindtextdomain and textdomain calls to
7593 void, to avoid warning when NLS is disabled.
7594 * src/output.c: Include scan-skel.h.
7595 (scan_skel): Remove decl, since scan-skel.h does this.
7596 (output_skeleton):
7597 Indent calls to "error" to pacify "make maintainer-distcheck".
7598 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
7599 * src/reader.h (gram_end, gram_lineno): New decls to pacify
7600 "make maintainer-distcheck".
7601 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
7602 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
7603 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
7604 (skel_lex_destroy, scan_skel): Move these decls to...
7605 * src/scan-skel.h: New file.
7606 * src/uniqstr.c (uniqstr_assert):
7607 Indent calls to "error" to pacify "make maintainer-distcheck".
7608
7609 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
7610 not @VAR@.
7611
7612 * tests/torture.at: Revamp to avoid misuse of atoi that
7613 "make maintainer-distcheck" complained about.
7614
7615 * examples/extexi (message): Don't print a message more than once,
7616 and omit line-number decoration that makes Emacs compile think
7617 that informative messages are worth worrying about.
7618
7619 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
7620
7621 * configure.ac: Update version number.
7622
7623 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
7624 accidentally.
7625 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
7626 autogenerated by the maintainer.
7627 * examples/calc++/.cvsignore: Add *.yy.
7628
7629 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
7630 * lib/bitset_stats.c (bitset_stats_init): Likewise.
7631 * lib/bitsetv.c (bitsetv_alloc): Likewise.
7632
7633 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
7634
7635 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
7636 from maintainer-distcheck about casting the argument of 'free'.
7637
7638 * NEWS: Mention recent yytname changes.
7639 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
7640
7641 * bootstrap: For translations that have not yet been upgraded to
7642 the new runtime-po domain, prime the pump by extracting the
7643 relevant strings from the obsolete translations. This code can be
7644 removed once the bison-runtime domain has been translated by each
7645 team.
7646
7647 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
7648 now that token names are already quoted.
7649
7650 Fix problem reported by Anthony Heading.
7651 * data/glr.c (YYTOKEN_TABLE): New macro.
7652 (yytname): Define if YYTOKEN_TABLE.
7653 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
7654 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
7655 (YYERROR_VERBOSE): Define the same way the other skeletons do.
7656 * src/output.c (prepare_symbols): Output token_table_flag.
7657
7658 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
7659
7660 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
7661 again if the first call fails.
7662
7663 * data/glr.c (yytnamerr): New function.
7664 (yyreportSyntaxError): Use it to dequote most string literals.
7665 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
7666 with other skeletons. All uses changed.
7667 (yytnameerr_): New function.
7668 (yyreport_syntax_error): Use it to dequote most string literals.
7669 * data/yacc.c (yytnamerr): New function.
7670 (yyerrlab): Use it to decode most string literals.
7671 * doc/bison.texinfo (Decl Summary, Calling Convention):
7672 Clarify quoting convention of yytname.
7673 * src/output.c (prepare_symbols): Quote all names. This undoes
7674 the 2005-04-17 change, which is now accomplished (mostly) via
7675 changes in the parsers as described above.
7676 * tests/regression.at (Token definitions, Web2c Actions):
7677 Undo most 2005-04-17 change here, too.
7678
7679 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
7680
7681 Fix more problems reported by twlevo@xs4all.nl.
7682 * tests/cxx-type.at: Don't pipe output of ./types through sed to
7683 remove trailing spaces. This loses the exit status of ./types,
7684 and isn't needed since ./types shouldn't be emitting trailing
7685 spaces.
7686 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
7687 as the stack isn't valid in that case.
7688
7689 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
7690 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
7691 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
7692 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
7693 is used.
7694 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
7695 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
7696 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
7697 Likewise.
7698
7699 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
7700 overly-picky compilers that reject 'char *foo = "bar";'.
7701
7702 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
7703 to FILE * parameter, not to stderr. This fixes a typo introduced
7704 in the 2005-07-12 change.
7705
7706 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
7707 warnings from GCC 4.
7708
7709 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
7710 (yyglrShiftDefer, yysplitStack):
7711 Remove unused parameters b4_pure_formals. All uses changed.
7712 (yyglrShift): Remove unused parameters b4_user_formals.
7713 All uses changed.
7714 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
7715
7716 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
7717
7718 Destructor cleanups and regularization among the three skeletons.
7719 * NEWS: Document the behavior changes.
7720 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
7721 stack before failing, as the cleanup code will do it for us now.
7722 * data/lalr1.cc (yyerrlab): Likewise.
7723 * data/glr.c (yyparse): Pop everything off the stack before
7724 freeing it, so that destructors get called properly.
7725 * data/lalr1.cc (yyreturn): Likewise.
7726 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
7727 This is more consistent.
7728 * doc/bison.texinfo (Destructor Decl): Mention more reasons
7729 why destructors might be called. 1.875 -> 2.1.
7730 (Destructor Decl, Decl Summary, Table of Symbols):
7731 Some English-language cleanups for %destructor.
7732 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
7733 Add output line for destructor of start symbol.
7734 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
7735 because of that same extra output line.
7736
7737 * NEWS: Document minor wording changes in diagnostics of
7738 Bison-generated parsers.
7739 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
7740 Remove unused formals. All uses changed.
7741 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
7742 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
7743 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
7744 Rename yyoverflowab to yyexhaustedlab.
7745 When memory exhaustion occurs during syntax-error reporting,
7746 report it separately rather than in a single diagnostic; this
7747 eases translation.
7748 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
7749 (Memory Exhausted): Renamed from Parser Stack Overflow.
7750 Revamp wording slightly to prefer "memory exhaustion".
7751 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
7752
7753 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
7754
7755 Add i18n support to the GLR skeleton. Partially fix the C++
7756 skeleton; a C++ expert needs to finish this. Remove debugging
7757 msgids; there's little point to having them translated, since they
7758 can be understood only by someone who can read the
7759 (English-language) source code.
7760
7761 Generate runtime-po/bison-runtime.pot automatically, so that we
7762 don't have to worry about garbage getting in that file. We'll
7763 make sure after the next official release that old msgids don't
7764 get lost. See
7765 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
7766
7767 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
7768 Now auto-generated.
7769 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
7770 Fix typos in explanations of the runtime file.
7771 * bootstrap: Change gettext keyword from YYI18N to YY_.
7772 Use standard Makefile.in.in in runtime-po, since we'll arrange
7773 for backward-compatible bison-runtime.po files in a different way.
7774 * data/glr.c (YY_): New macro, from yacc.c.
7775 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
7776 Translate messages intended for users.
7777 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
7778 the wording in the other skeletons. We don't know that the memory
7779 is virtual.
7780 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
7781 Use same method that yacc.c uses.
7782 Don't translate debugging messages.
7783 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
7784 it doesn't work (yet), and requires C++ expertise to fix.
7785 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
7786 Move defn to a more logical place, to be consistent with other
7787 skeletons.
7788 Don't translate debugging messages.
7789 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
7790 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
7791 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
7792 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
7793
7794 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
7795 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
7796 void, not int.
7797 * tests/glr-regression.at (Badly Collapsed GLR States):
7798 Likewise.
7799 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7800 yylex should return 0 at EOF rather than aborting.
7801
7802 Improve tests for stack overflow in GLR parser.
7803 Problem reported by twlevo@xs4all.nl.
7804 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
7805 All uses removed.
7806 (yyStackOverflow): Just longjmp, but with value 2 so that caller
7807 can handle the problem.
7808 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
7809 (yyparse): New local variable yyresult to record the result.
7810 Use result of setjmp to set it, rather than storing itinto
7811 struct.
7812 (yyDone): Remove label.
7813 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
7814 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
7815 if YYABORT is used).
7816 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
7817 yyparse status; put status > 1 into diagnostic.
7818 Check that status==2 works.
7819 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
7820 Use exit status 3 for failure to open (which shouldn't happen).
7821
7822 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
7823
7824 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
7825 1 on syntax error; just let yyparse do its thing.
7826 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
7827 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
7828 (Exploding the Stack Size with Alloca):
7829 (Exploding the Stack Size with Malloc):
7830 Expect exit status 2, not 1, since the parser is supposed to blow
7831 its stack. Problem reported by twlevo@xs4all.nl.
7832
7833 * data/glr.c (yyparse): Don't assume that the initial calls
7834 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
7835 Print a stack-overflow message and fail instead.
7836 Initialize the line-number information before creating the stack,
7837 so that the stack-overflow message can report line zero safely.
7838
7839 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
7840
7841 Fix problems reported by twlevo@xs4all.nl.
7842 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
7843 (yyuserMerge): Provide a default case if b4_mergers is empty.
7844 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
7845 * tests/glr-regression.at
7846 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7847 Add casts to pacify C++ compilers.
7848 * tests/glr-regression.at (Improper merging of GLR delayed action
7849 sets): Declare yylex before using it.
7850 * tests/Makefile.am (maintainer-check-g++): Fix a stray
7851 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
7852 test for valgrind; valgrind is independent of g++.
7853 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
7854 for compatibility with POSIX 1003.1-2001 (if running coreutils).
7855 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
7856 Use a destructor, so that we can expand the stack. Change
7857 YYSTYPE to char * so that we can free it. Cast result of malloc.
7858
7859 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
7860
7861 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
7862 a valgrind failure. Problem reported by twlevo@xs4all.nl.
7863
7864 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
7865
7866 * PACKAGING: New file, suggested by Bruno Haible and taken from
7867 similar wording in gettext's PACKAGING file.
7868 * NEWS: Mention PACKAGING.
7869 * Makefile.am (EXTRA_DIST): Add PACKAGING.
7870
7871 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
7872
7873 * NEWS: Document recent i18n improvements.
7874 * bootstrap: Get runtime translations into runtime-po.
7875 Create runtime-po files automatically, if possible.
7876 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
7877 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
7878 does not infringe on the user's name space.
7879 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
7880 * doc/bison.texinfo (Internationalization): Revamp the English
7881 and Texinfo syntax a bit, to try to make it clearer.
7882 (Bison Options, Option Cross Key): Mention --print-localedir.
7883 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
7884 YYENABLE_NLS. Quote a bit more.
7885 * runtime-po/.cvsignore: New file.
7886 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
7887 * runtime-po/Rules-quot: Remove; now created by bootstrap.
7888 * runtime-po/quot.sed: Likewise.
7889 * runtime-po/boldquot.sed: Likewise.
7890 * runtime-po/en@quot.header: Likewise.
7891 * runtime-po/en@boldquot.header: Likewise.
7892 * runtime-po/insert-header.sin: Likewise.
7893 * runtime-po/remove-potcdate.sin: Likewise.
7894 * runtime-po/Makevars: Likewise.
7895 * runtime-po/LINGUAS: Likewise.
7896 * runtime-po/de.po: Likewise; we will rely on the translation project
7897 to maintain this, so "bootstrap" should get it.
7898 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
7899 its value.
7900 * src/main.c (main): Bind the bison-runtime domain, too.
7901
7902 2005-07-12 Bruno Haible <bruno@clisp.org>
7903
7904 * data/yacc.c: Include <libintl.h> when NLS is enabled.
7905 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
7906 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
7907 * runtime-po: New directory.
7908 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
7909 $(DOMAIN).pot-update rule, so that old messages are never dropped.
7910 * runtime-po/Rules-quot: New file, copied from po/.
7911 * runtime-po/quot.sed: Likewise.
7912 * runtime-po/boldquot.sed: Likewise.
7913 * runtime-po/en@quot.header: Likewise.
7914 * runtime-po/en@boldquot.header: Likewise.
7915 * runtime-po/insert-header.sin: Likewise.
7916 * runtime-po/remove-potcdate.sin: Likewise.
7917 * runtime-po/Makevars: New file.
7918 * runtime-po/POTFILES.in: New file.
7919 * runtime-po/LINGUAS: New file.
7920 * runtime-po/bison-runtime.pot: New file.
7921 * runtime-po/de.po: New file.
7922 * m4/bison.m4: New file.
7923 * Makefile.am (SUBDIRS): Add runtime-po.
7924 (aclocaldir, aclocal_DATA): New variables.
7925 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
7926 Define aclocaldir.
7927 * src/getargs.c (usage): Document --print-localedir option.
7928 (PRINT_LOCALEDIR_OPTION): New enum item.
7929 (long_options): Add --print-localedir option.
7930 (getargs): Handle --print-localedir option.
7931 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
7932 (Internationalization): New section.
7933
7934 2005-07-12 Akim Demaille <akim@epita.fr>
7935
7936 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
7937 for consistency with the rest of the code.
7938 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
7939 Add separators.
7940
7941 2005-07-12 Akim Demaille <akim@epita.fr>
7942
7943 * src/parse-gram.y: Use %printer instead of YYPRINT.
7944
7945 2005-07-12 Akim Demaille <akim@epita.fr>
7946
7947 * src/symtab.h, src/symtab.c (symbol_print): New.
7948 * src/symlist.h, src/symlist.c (symbol_list_print): New.
7949 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
7950
7951 2005-07-12 Akim Demaille <akim@epita.fr>
7952
7953 * data/glr.c (b4_syncline): Fix (swap) the definitions of
7954 b4_at_dollar and b4_dollar_dollar.
7955
7956 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
7957
7958 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
7959 and Pennello's paper.
7960
7961 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
7962
7963 * data/yacc.c (yyparse): Undo previous patch. Instead,
7964 set yylsp[0] and yyvsp[0] only if the initial action
7965 sets yylloc and yylval, respectively.
7966
7967 * data/yacc.c (yyparse): In the initial action, set
7968 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
7969 This avoids the use of undefined variables if the initial
7970 action does not set yylloc and/or yylval.
7971
7972 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
7973
7974 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
7975 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
7976 Remove from CVS. These files are automatically generated.
7977 * examples/extexi: Clarify that this file is now part of Bison,
7978 not GNU M4, and that it works with any POSIX-compatible Awk.
7979 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
7980 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
7981 so that we also get calc++-parser.yy. Geneate it.
7982 Use $(AWK), not gawk, since any conforming Awk will do.
7983 Put comment before action, since older 'make' can't handle comment
7984 in action.
7985 $(BUILT_SOURCES): List all built sources, not just some of them.
7986 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
7987 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
7988 $($(calc_sources_generated)): Remove unnecessary test for existence
7989 of target. (This had a shell syntax error anyway; a stray "x".)
7990 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
7991 calc++-parser.yy.
7992 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
7993
7994 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
7995 implied by the other modules.
7996
7997 2005-07-06 Akim Demaille <akim@epita.fr>
7998
7999 Bind examples/calc++ to the package.
8000 * examples/calc++/Makefile: Remove, replaced by...
8001 * examples/calc++/Makefile.am: ... this new file.
8002 * examples/calc++/test: Remove input.
8003 * examples/calc++/compile: Remove.
8004 * examples/Makefile.am: New.
8005 * configure.ac, Makefile.am: Adjust.
8006 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
8007
8008 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
8009
8010 * data/glr.c (yyFail): Drastically simplify; since the format argument
8011 never had any % directives, we can simply pass it to yyerror.
8012 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
8013 be modified later, as that is the usual style in glr.c.
8014 Problems reported by Paul Hilfinger.
8015
8016 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
8017 and size overflow errors.
8018 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
8019 in case the user prolog sets feature-test macros like _GNU_SOURCE.
8020 (YYSIZEMAX): New macro.
8021 (yystpcpy): New function, taken from yacc.c.
8022 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
8023 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
8024 so that we don't have to maintain their signatures.
8025 (yyFail): Check for buffer overflow, by using vsnprintf rather
8026 than vsprintf. Allocate a bigger buffer if possible.
8027 Report an error if buffer allocation fails.
8028 (yyStackOverflow): New function.
8029 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
8030 the initialization was successful. It might fail if storage was
8031 exhausted.
8032 (yyexpandGLRStack): Add more checks for storage allocation failure.
8033 Use yyStackOverflow to report failures.
8034 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
8035 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
8036 Don't assume stack number fits in int.
8037 (yysplitStack): Check for storage allocation failure.
8038 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
8039 can print diagnostics on storage allocation failure. All callers
8040 changed.
8041 (yyresolveValue): Use yybool for boolean.
8042 (yyreportSyntaxError): Check for size-calculation overflow.
8043 This code is taken from yacc.c.
8044 (yyparse): Check for storage allocation errors when allocating
8045 the initial stack.
8046
8047 2005-07-05 Akim Demaille <akim@epita.fr>
8048
8049 Extract calc++ from the documentation.
8050 * doc/bison.texinfo (Calc++): Add the extraction marks.
8051 * examples/extexi: New, from the aborted GNU Programming 2E.
8052 Separate the different paragraph of a file with empty lines.
8053 * examples/Makefile: Use it to extract the whole calc++ example.
8054
8055 2005-06-24 Akim Demaille <akim@epita.fr>
8056
8057 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
8058 class typedefs.
8059
8060 2005-06-22 Akim Demaille <akim@epita.fr>
8061
8062 * doc/bison.texinfo (C++ Language Interface): First stab.
8063 (C++ Parsers): Remove.
8064
8065 2005-06-22 Akim Demaille <akim@epita.fr>
8066
8067 * data/lalr1.cc (yylex_): Honor %lex-param.
8068
8069 2005-06-22 Akim Demaille <akim@epita.fr>
8070
8071 Start a set of simple examples.
8072 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
8073 * examples/calc++/calc++-driver.hh,
8074 * examples/calc++/calc++-parser.yy,
8075 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
8076 * examples/calc++/compile, examples/calc++/test: New.
8077
8078 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
8079
8080 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
8081 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
8082 which stems from the 2005-05-27 patch.
8083
8084 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8085
8086 * data/glr.c: Modify treatment of unused parameters to permit use
8087 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
8088
8089 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
8090
8091 Fix infringement on user name space reported by Janos Zoltan Szabo.
8092 * data/yacc.c (yyparse): strlen -> yystrlen.
8093
8094 2005-05-30 Akim Demaille <akim@epita.fr>
8095
8096 * data/lalr1.cc (_): New.
8097 Translate the various messages.
8098
8099 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
8100
8101 Fix infringement on user name space reported by Bruno Haible.
8102 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
8103 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
8104 the user's name space.
8105 (alloca): Include <stdlib.h> to get it, if it's not built in.
8106 (YYMALLOC, YYFREE): Define only if needed.
8107 (malloc, free): Declare, but only if needed, as this infringes on
8108 the user name space.
8109
8110 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
8111
8112 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
8113 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
8114 with %d format.
8115 * lib/ebitset.c (min, max): Undef before defining.
8116 * lib/vbitset.c (min, max): Likewise.
8117 * lib/subpipe.c (create_subpipe): Save local variables in case
8118 vfork clobbers them.
8119
8120 2005-05-24 Bruno Haible <bruno@clisp.org>
8121
8122 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
8123 error message syntax used by gcc-4.0.
8124
8125 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
8126
8127 * README: Mention m4 1.4.3. Remove obsolete advice about
8128 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
8129
8130 * bootstrap: Remove workaround for problem I encountered with
8131 gettext 0.14.1; it seems to be fixed now.
8132
8133 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
8134
8135 * NEWS: Version 2.0a.
8136
8137 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
8138 the previous change.
8139
8140 Various maintainer cleanups.
8141 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
8142 conftest*, for benefit of CVS commands run at the same time as
8143 "configure". Add build-aux, since "bootstrap" now creates it and
8144 its subfiles.
8145 * Makefile.cfg (move_if_change): Remove.
8146 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
8147 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
8148 (po_repo, do-po-update, po-update, wget_files, get-targets):
8149 (config.guess-url_prefix, config.sub-url_prefix):
8150 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
8151 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
8152 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
8153 Remove.
8154 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
8155 this is now the recommended name.
8156 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
8157 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
8158 ylwrap. These files now go into build-aux.
8159 * config/move-if-change: Remove.
8160 * config/prev-version.txt: Bump from 1.75 to 2.0.
8161
8162 * bootstrap: Add stdio-safer, unistd-safer modules.
8163 Remove m4/glibc2.m4 (introduced by latest gnulib, but
8164 we don't need it).
8165 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
8166 fopen-safer.c, stdio-safer.h, unistd-safer.h.
8167 * lib/subpipe.c: Include "unistd-safer.h".
8168 (create_subpipe): Make sure all the newly-created
8169 file descriptors are > 2, so that diagnostics don't
8170 get sent down them (which might cause Bison to hang, in theory).
8171 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
8172 * src/files.c (xfopen): Use fopen_safer, not fopen.
8173
8174 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
8175 yesterday's yacc.c fix.
8176
8177 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
8178
8179 * data/glr.c, data/lalr1.cc: Update copyright date.
8180
8181 Fix a destructor bug reported by Wolfgang Spraul in
8182 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
8183 * data/yacc.c (yyabortlab): Don't call destructor, and
8184 don't set yychar to EMPTY.
8185 (yyoverflowlab): Don't call destructor.
8186 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
8187 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
8188 since we no longer output the message "discarding lookahead token
8189 end of input ()".
8190
8191 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8192
8193 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
8194 fix a small glitch in debugging output.
8195 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
8196 after YY_SYMBOL_PRINT where needed.
8197
8198 (struct yyGLRState): Add some comments.
8199 (struct yySemanticOption): Add some comments.
8200 (union yyGLRStackItem): Add comment.
8201
8202 (yymergeOptionSets): Correct this to properly perform the union,
8203 avoiding infinite reported by Michael Rosien.
8204 Update comment.
8205
8206 * tests/glr-regression.at: Add test for GLR merging error reported
8207 by M. Rosien.
8208
8209 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
8210
8211 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
8212 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
8213 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
8214 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
8215 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
8216 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
8217 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
8218 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
8219 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
8220 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
8221 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
8222 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
8223 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
8224 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
8225 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
8226 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
8227 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
8228 src/derives.h, src/files.c, src/files.h, src/getargs.c,
8229 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
8230 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
8231 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
8232 src/output.h, src/parse-gram.c, src/parse-gram.h,
8233 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
8234 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
8235 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
8236 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
8237 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
8238 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
8239 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
8240 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
8241 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
8242 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
8243 tests/reduce.at, tests/regression.at, tests/sets.at,
8244 tests/synclines.at, tests/testsuite.at, tests/torture.at:
8245 Update FSF postal mail address.
8246
8247 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
8248
8249 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
8250 Problem reported by Ralf Menzel.
8251
8252 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
8253
8254 * tests/actions.at: Test that stack overflow invokes destructors.
8255 From Marcus Holland-Moritz.
8256 * data/yacc.c (yyerrlab): Move the code that destroys the stack
8257 from here....
8258 (yyreturn): to here. That way, destructors are called properly
8259 even if the stack overflows, or the user calls YYACCEPT or
8260 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
8261 (yyoverflowlab): Destroy the lookahead.
8262
8263 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
8264
8265 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
8266
8267 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
8268
8269 * NEWS: Bison-generated C parsers no longer quote literal strings
8270 associated with tokens.
8271 * src/output.c (prepare_symbols): Don't escape strings,
8272 since users don't want to see C escapes.
8273 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
8274 in diagnostics.
8275 * tests/input.at (Torturing the Scanner): Likewise.
8276 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
8277
8278 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
8279
8280 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
8281 the data size is known to be too small and we can't increase it.
8282 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
8283
8284 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
8285
8286 * src/parse-gram.y: Include quotearg.h.
8287 (string_as_id): Quote $1 before using it as a key, since the
8288 lexer no longer quotes it for us.
8289 (string_content): Don't strip quotes, since lexer no longer
8290 quotes it for us.
8291 * src/scan-gram.l: Include quotearg.h.
8292 ("\""): Omit quote.
8293 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
8294 a key, since the rest of the lexer doesn't quote it.
8295 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
8296 * tests/regression.at (Token definitions): Check for backslashes
8297 in token strings.
8298
8299 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
8300 (YYSIZE_T): Define to unsigned long int when using an older compiler.
8301 (yyparse): Revamp code to generate long syntax error message, to
8302 make it easier to translate, and to avoid problems with arithmetic
8303 overflow. Change "virtual memory" to "memory" in diagnostic, since
8304 we don't know whether the memory is virtual.
8305
8306 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
8307
8308 * NEWS: Bison-generated C parsers now use the _ macro to
8309 translate strings.
8310 * data/yacc.c (_) [!defined _]: New macro.
8311 All English strings wrapped inside this macro.
8312 * doc/bison.texinfo (Bison Parser): Document _.
8313 * po/POTFILES.in: Include src/parse-gram.c, since it now
8314 includes translateable strings that parse-gram.y doesn't.
8315
8316 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
8317
8318 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
8319 reverting the 2004-10-11 change to this function.
8320 (symbol_check_alias_consistency): Don't call symbol_type_set
8321 if the type name is already correct.
8322 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
8323
8324 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
8325
8326 * tests/regression.at (Token definitions): Don't use a token named
8327 c, as that generates a "#define c ..." that runs afoul of buggy
8328 stdlib.h that uses the identifier c as a member of struct
8329 drand48_data. Problem reported by Horst Wente.
8330
8331 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
8332
8333 * bootstrap: Change translation URL from
8334 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
8335 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
8336 redirection glitches. Problem reported by twlevo@xs4all.nl.
8337
8338 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
8339
8340 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
8341 after operands; POSIX says this isn't portable for the c99 command.
8342
8343 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
8344
8345 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
8346 immediately if a data overrun has occurred; this may help us track
8347 down what may be a spurious failure on MacOS.
8348
8349 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
8350
8351 Respond to problems reported by twlevo@xs4all.nl.
8352
8353 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
8354
8355 * src/vcg.h: Comment fix.
8356 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
8357 (G_CMAX): Change to -1 instead of INT_MAX.
8358
8359 * data/yacc.c (yyparse): Omit spaces before #line.
8360
8361 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
8362
8363 * src/tables.c (state_number_to_vector_number): Put it inside an
8364 "#if 0", since it's not currently used. Problem reported by
8365 Roland McGrath.
8366
8367 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
8368
8369 * src/output.c (escaped_output): Renamed from
8370 escaped_file_name_output, since we now use it for symbol tags as
8371 well. All uses changed.
8372 (symbol_destructors_output, symbol_printers_output):
8373 Escape symbol tags too.
8374 Problem reported by Matyas Forstner in
8375 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
8376
8377 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
8378 not needed.
8379 * src/output.c (user_actions_output, token_definitions_output,
8380 symbol_destructors_output, symbol_printers_output): Likewise.
8381 * src/reader.c (prologue_augment): Likewise.
8382 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
8383
8384 * src/vcg.c (output_edge): Don't quote linestyle arg.
8385 Problem reported by twlevo@xs4all.nl.
8386
8387 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
8388
8389 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
8390 example, reported by Derek M Jones. Also, make the example even
8391 more outrageous, to better illustrate how bad the problem is.
8392
8393 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
8394
8395 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
8396 putsym. Typo reported by Sebastian Piping.
8397
8398 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
8399
8400 * doc/bison.texinfo (Language and Grammar): some -> same
8401 (Epilogue): int he -> in the
8402 Typos reported by Sebastian Piping via Justin Pence.
8403
8404 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
8405
8406 * tests/glr-regression.at (Improper handling of embedded actions
8407 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
8408 embedded actions and $-N in GLR parsers", work around an Autoconf bug
8409 with dollar signs in test names.
8410 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
8411 for a similar reason.
8412
8413 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
8414
8415 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
8416 wants to redefine G_VIEW.
8417
8418 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
8419
8420 * src/vcg.c (get_view_str): Remove case for normal_view.
8421 Problem reported by twlevo@xs4all.nl.
8422
8423 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
8424
8425 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
8426 Problem reported by twlevo@xs4all.nl.
8427
8428 * doc/bison.texinfo: Change @dircategory from "GNU programming
8429 tools" to "Software development". Requested by Richard Stallman
8430 via Karl Berry.
8431
8432 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
8433
8434 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
8435 Problem reported by twlevo@xs4all.nl.
8436
8437 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
8438
8439 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
8440 keyword; it's not needed with modern compilers, and it doesn't
8441 affect correctness with older compilers. Suggested by
8442 twlevo@xs4all.nl.
8443
8444 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
8445
8446 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
8447 gcc -Wswitch-default.
8448 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
8449 * data/yacc.c (yyparse): Likewise.
8450
8451 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
8452
8453 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
8454 already. Let config.h define any nonstandard values.
8455
8456 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
8457
8458 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
8459 for the benefit of slower hosts. Problem reported by
8460 Nelson H. F. Beebe.
8461
8462 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
8463
8464 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
8465 being defined and not used.
8466 * data/lalr1.cc (yyparse): Likewise.
8467 Use "if (false)" rather than "if (0)".
8468
8469 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
8470
8471 * TODO: Mention that we should allow NUL bytes in tokens.
8472
8473 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
8474
8475 * src/scan-skel.l (<<EOF>>): Don't close standard output.
8476 Problem reported by Hans Aberg.
8477
8478 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
8479
8480 * src/getargs.c (version): Happy new year; update overall
8481 program copyright date from 2004 to 2005.
8482
8483 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
8484 Problem reported by Hans Aberg.
8485 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
8486 (Output file names.): Add a test for the case when standard output
8487 is closed.
8488
8489 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
8490
8491 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
8492 to fix an oversight in the Bison 2.0 manual.
8493
8494 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
8495
8496 * NEWS: Version 2.0. Reformat the existing news items since
8497 1.875, so that related items are grouped together.
8498 * configure.ac (AC_INIT): Bump version to 2.0.
8499 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
8500
8501 * tests/torture.at (Exploding the Stack Size with Alloca): Set
8502 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
8503 otherwise, we're not testing alloca. Unfortunately there's no
8504 simple way to consult HAVE_ALLOCA here.
8505
8506 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
8507 for yymsg, too.
8508
8509 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
8510 hand. This avoids a warning about comparing int to size_t when
8511 GCC warnings are enabled.
8512
8513 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
8514
8515 * NEWS: Bison-generated parsers no longer default to using the
8516 alloca function (when available) to extend the parser stack, due
8517 to widespread problems in unchecked stack-overflow detection.
8518 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
8519 responsibility to set it to a positive value. This lets the user
8520 specify a value that is not a preprocessor constant.
8521 * data/yacc.c (YYMAXDEPTH): Likewise.
8522 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
8523 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
8524 to be a compile-time constant. However, explain the constraints on it.
8525 Also, explain the constraints on YYINITDEPTH.
8526 (Table of Symbols): Explain that alloca is no longer the default.
8527 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
8528 to 1.
8529
8530 * doc/bison.texinfo (Location Default Action): Mention that n must
8531 be zero when k is zero. Suggested by Frank Heckenbach.
8532
8533 2004-12-22 Akim Demaille <akim@epita.fr>
8534
8535 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
8536 (parser::state_type, parser::semantic_type, parser::location_type):
8537 Private, not public.
8538 (parser::parse): Return ints, not bool.
8539 Returning a bool introduces a problem: 0 corresponds to false, and
8540 it seems weird to return false on success. Returning true changes
8541 the conventions for yyparse.
8542 Alternatively we could return void and send an exception.
8543 There is no clear consensus (yet?).
8544 (state_stack, semantic_stack, location_stack): Rename as...
8545 (state_stack_type, semantic_stack_type, location_stack_type): these.
8546 Private, not public.
8547 * tests/c++.at: New.
8548 * tests/testsuite.at, tests/Makefile.am: Adjust.
8549
8550 2004-12-21 Akim Demaille <akim@epita.fr>
8551
8552 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
8553
8554 2004-12-21 Akim Demaille <akim@epita.fr>
8555
8556 Don't impose std::string for filenames.
8557
8558 * data/lalr1.cc (b4_filename_type): New.
8559 (position::filename): Use it.
8560 (parser.hh): Move the inclusion of stack.hh and location.hh below
8561 the user code, so that needed headers for the filename type can be
8562 included first.
8563 Forward declare them before the user code.
8564 * tests/Makefile.am (check-local, installcheck-local): Pass
8565 TESTSUITEFLAGS to the TESTSUITE.
8566
8567 2004-12-20 Akim Demaille <akim@epita.fr>
8568
8569 Use more STL like names: my_class instead of MyClass.
8570
8571 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
8572 (SemanticStack, SemanticType, StateStack, StateType)
8573 (TokenNumberType, Stack, Slice, Traits, Parser::location)
8574 (Parser::value): Rename as...
8575 (location_stack, location_type, rhs_number_type, semantic_stack)
8576 (semantic_type, state_stack, state_type, token_number_type, stack)
8577 (slice, traits, parser::yylloc, parser::yylval): these.
8578
8579 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
8580
8581 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
8582
8583 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
8584 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
8585
8586 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
8587
8588 Remove uses of 'short int' and 'unsigned short int'. This raises
8589 some arbitrary limits. It uses more memory but nowadays that's
8590 not much of an issue.
8591
8592 This change does not affect the generated parsers; that's a different
8593 task, as some users will want to conserve memory there.
8594
8595 Ideally we should use size_t to represent all object counts, and
8596 something like ptrdiff_t to represent signed differences of object
8597 counts; but that will require more code-cleanup than I have the
8598 time to do right now.
8599
8600 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
8601 Use size_t, not int or short int, to count objects.
8602 * src/closure.c (nritemset, closure): Likewise.
8603 * src/closure.h (nritemset, closure): Likewise.
8604 * src/nullable.c (nullable_compute): Likewise.
8605 * src/print.c (print_core): Likewise.
8606 * src/print_graph.c (print_core): Likewise.
8607 * src/state.c (state_compare, state_hash): Likewise.
8608 * src/state.h (struct state): Likewise.
8609 * src/tables.c (default_goto, goto_actions): Likewise.
8610
8611 * src/gram.h (rule_number, rule): Use int, not short int.
8612 * src/output.c (prepare_rules): Likewise.
8613 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
8614 errs, reductions): Likewise.
8615 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
8616 Likewise.
8617 * src/tables.c (vector_number, tally, action_number,
8618 ACTION_NUMBER_MINIMUM): Likewise.
8619 * src/output.c (muscle_insert_short_int_table): Remove.
8620
8621 2004-12-17 Akim Demaille <akim@epita.fr>
8622
8623 * data/lalr1.cc: Extensive Doxygenation.
8624 (error_): Rename as...
8625 (error): this, since it is visible to the user.
8626 Adjust callers.
8627 (Parser::message): Now an automatic variable from...
8628 (Parser::yyreport_syntax_error_): here.
8629 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
8630 Parser::error.
8631 * tests/input.at: Escape $.
8632
8633 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
8634
8635 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
8636 Parenthesize rhs to avoid obscure problems with mistakes like
8637 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
8638 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
8639 b4_rhs_location): Likewise.
8640 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
8641 b4_rhs_location): Likewise.
8642
8643 2004-12-16 Akim Demaille <akim@epita.fr>
8644
8645 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
8646 yacc.c: be sure to stay within yycheck_.
8647 * tests/actions.at: Re-enable C++ tests.
8648
8649 2004-12-16 Akim Demaille <akim@epita.fr>
8650
8651 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
8652 real.
8653
8654 2004-12-16 Akim Demaille <akim@epita.fr>
8655
8656 Use #define to handle the %name-prefix.
8657
8658 * data/glr.c, data/yacc.c: Comment changes.
8659 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
8660 so that one can refer to yylex in the parser file, and have it
8661 renamed, as is the case with other skeletons.
8662
8663 2004-12-16 Akim Demaille <akim@epita.fr>
8664
8665 Move lalr1.cc internals into yy*.
8666
8667 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
8668 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
8669 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
8670 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
8671 (empty_, final_, terror_, errcode_, ntokens_)
8672 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
8673 (looka_, ilooka_, error_range_, nerrs_):
8674 Rename as...
8675 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
8676 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
8677 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
8678 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
8679 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
8680 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
8681 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
8682 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
8683 these.
8684
8685 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
8686
8687 Fix some problems reported by twlevo at xs4all.
8688 * src/symtab.c (symbol_new): Report an error if the input grammar
8689 contains too many symbols. This is better than calling abort() later.
8690 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
8691 (struct node, struct graph):
8692 Rename member expand to stretch. All uses changed.
8693 (struct graph): Remove member layoutalgorithm. All uses removed.
8694 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
8695 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
8696 All uses changed.
8697 (N_STRETCH): Rename from N_EXPAND. All uses changed.
8698
8699 2004-12-15 Akim Demaille <akim@epita.fr>
8700
8701 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
8702 Add more Doxygen comments.
8703 (symprint_, stack_print_, reduce_print_, destruct_, pop)
8704 (report_syntax_error_, translate_): Rename as...
8705 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
8706 (yypop_, yyreport_syntax_error_, yytranslate_): this.
8707
8708 2004-12-15 Akim Demaille <akim@epita.fr>
8709
8710 * data/lalr1.cc (lex_): Rename as...
8711 (yylex_): this.
8712 Move the trace here.
8713 Take the %name-prefix into account.
8714 Reported by Alexandre Duret-Lutz.
8715
8716 2004-12-15 Akim Demaille <akim@epita.fr>
8717
8718 Simplify the C++ parser constructor.
8719
8720 * data/lalr1.cc (debug_): Rename as...
8721 (yydebug_): so that the parser's internals are always in the yy*
8722 pseudo namespace.
8723 Adjust uses.
8724 (b4_parse_param_decl): Remove the leading comma as it is now only
8725 called as unique argument list.
8726 (Parser::Parser): Remove the constructor accepting a location and
8727 an initial debugging level.
8728 Remove from the other ctor the argument for the debugging level.
8729 (debug_level_type, debug_level, set_debug_level): New.
8730
8731 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
8732 constructor calls.
8733
8734 2004-12-15 Akim Demaille <akim@epita.fr>
8735
8736 Remove b4_root related material: failure experiment
8737 (which goal was to allow to derive from a class).
8738
8739 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
8740 definitions and uses.
8741
8742 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
8743
8744 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
8745 not 2, since it's not portable to subtract 1 from the start of an
8746 array. The new item 0 is never set or used. All uses changed.
8747
8748 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
8749 the default definition of YYLLOC_DEFAULT. Problem reported
8750 by Frank Heckenbach.
8751
8752 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
8753
8754 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
8755 the normal case and one for the error case. Just use the
8756 first one uniformly. Problem reported by Frank Heckenbach.
8757 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
8758 use exactly the same macro in both places.
8759 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
8760 so that the normal-case YYRHSLOC works for the error case too.
8761 All uses changed.
8762 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
8763 (YYLLOC_DEFAULT): Use the same macro as glr.c.
8764 * doc/bison.texinfo (Location Default Action): Don't claim that
8765 we have an array of locations. Use the same macro for both glr
8766 and lalr parsers. Mention YYRHSLOC. Mention what happens when
8767 the index is 0.
8768
8769 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
8770
8771 * HACKING: Update email addresses to send announcements to.
8772
8773 * configure.ac (AC_INIT): Bump version to 1.875f.
8774
8775 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
8776
8777 * NEWS: Version 1.875e.
8778 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
8779
8780 * src/scan-skel.l: Include "complain.h", for "fatal".
8781
8782 * src/relation.h (relation_print, relation_digraph):
8783 Relation sizes are of type relation_node, not size_t (this is
8784 merely a doc fix, since the two types are equivalent).
8785 (relation_transpose): Relation sizes are of type relation_node,
8786 not int.
8787 * src/relation.c: Likewise.
8788 (top, infinity): Now of type relation_node, not int.
8789 (traverse, relation_transpose): Use relation_node, not int.
8790
8791 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
8792 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
8793 (yyparse): Remove unused local introduced in 2004-10-25 patch.
8794
8795 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
8796 specifying whether the test should be skipped. Use it tp
8797 specify that the [%defines %skeleton "lalr1.cc"] tests currently
8798 fail on some hosts, and should be skipped.
8799
8800 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
8801
8802 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
8803 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
8804 unless otherwise specified below.
8805
8806 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
8807 to allocate kernel_base, kernel_items, kernel_size, since
8808 they needn't be initialized to 0.
8809 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
8810 * src/closure.c (new_closure): Likewise, for itemset.
8811 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
8812 * src/lalr.c (set_goto_map): Likewise, for temp_map.
8813 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
8814 (build_relations): Likewise for edge, states1, includes.
8815 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
8816 * src/reader.c (packgram): Likewise, for ritem, rules.
8817 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
8818 * src/relation.c (relation_digraph): Likewise for VERTICES.
8819 (relation_transpose): Likewise for new_R, end_R.
8820 * src/symtab.c (symbols_token_translations_init): Likewise for
8821 token_translations.
8822 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
8823 (token_actions): Likewise for yydefact, actrow, conflrow,
8824 conflict_list.
8825 (save_column): Likewise for froms[symno], tos[symno].
8826 (goto_actions): Likewise for state_count.
8827 (pack_table): Likewise for base, pos, check.
8828 (tables_generate): Likewise for width.
8829
8830 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
8831 for initial core. Just have a separate core, so we needn't worry
8832 about whether kernel_size and kernel_base are initialized.
8833
8834 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
8835 kernel_size, kernel_items): Remove unnecessary initialization.
8836 * src/conflicts.c (conflicts): Likewise.
8837 * src/derives.c (derives): Likewise.
8838 * src/muscle_tablc (muscle_insert): Likewise.
8839 * src/relation.c (relation_digraph): Likewise.
8840 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
8841 conflrow, conflict_table, conflict_list, table, check):
8842 Likewise.
8843
8844 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
8845 This is because all callers pass unsigned int.
8846 * src/closure.h (new_closure): Likewise.
8847
8848 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
8849 (build_relations): Initialize includes[i] in all cases.
8850 * src/reader.c (packgram): Always initialize rules[ruleno].prec
8851 and rules[ruleno].precsym. Initialize members in order.
8852 * src/relation.c (relation_transpose): Always initialize new_R[i]
8853 and end_R[i].
8854 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
8855
8856 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
8857 conflict_list[0] was always 0, but now it isn't initialized.
8858
8859 * src/table.c (table_grow): When conflict_table grew, the grown
8860 area wasn't cleared. Fix this.
8861
8862 * lib/.cvsignore: Add strdup.c, strdup.h.
8863 * m4/.cvsignore: Add strdup.m4.
8864
8865 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
8866
8867 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
8868 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
8869 GOTO_NUMBER_MAXIMUM, since we occasionally compute
8870 ngotos + 1 without checking for overflow.
8871 (build_relations): Use END_NODE, not -1, to denote end of edges.
8872 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
8873 build_relations): Use goto_number, not int, for goto numbers.
8874 * src/tables.c (save_column, default_goto): Likewise.
8875
8876 2004-11-23 Akim Demaille <akim@epita.fr>
8877
8878 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
8879 of #defining from yystype.
8880 Don't typedef yystype, C++ does not need it.
8881 This lets it possible to forward declare it as union.
8882
8883 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
8884
8885 * bootstrap (gnulib_modules): Add extensions.
8886 Problem reported by Jim Meyering.
8887
8888 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
8889
8890 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
8891 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
8892 src/system.h, src/tables.c: XFREE -> free, to accommodate
8893 recent change to gnulib xalloc.h.
8894 Problem reported by Jim Meyering.
8895
8896 2004-11-17 Akim Demaille <akim@epita.fr>
8897
8898 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
8899
8900 2004-11-17 Akim Demaille <akim@epita.fr>,
8901 Alexandre Duret-Lutz <adl@gnu.org>
8902
8903 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
8904 changes.
8905 (YYCDEBUG): Adjust.
8906 Use it instead of cdebug_.
8907 (Parser::debug_stream, Parser::set_debug_stream): New.
8908 (Parser::symprint_): Define cdebug_ for temporary backward
8909 compatibility.
8910 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
8911 debug_stream ().
8912
8913 2004-11-17 Akim Demaille <akim@epita.fr>
8914
8915 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
8916 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
8917 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
8918 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
8919
8920 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
8921
8922 * data/glr.c (yyloc_default): Remove; not used.
8923 Problem reported by Frank Heckenbach.
8924
8925 2004-10-25 Akim Demaille <akim@epita.fr>
8926
8927 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
8928 Introduce another definition to address simple location arrays.
8929 (yyGLRStack): New member: yyerror_range.
8930 (yyrecoverSyntaxError, yyparse): Update it.
8931 (yyrecoverSyntaxError): Use it when shifting the error token to
8932 have an accurate range, equivalent to the one computed by both
8933 yacc.c and lalr1.cc.
8934 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
8935 that column numbers start at column 0, as per GNU Coding
8936 Standards, the others tests, and the doc.
8937 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
8938 Adjust to the above change (first column is 0).
8939 And adjust the location of the "<error>", now covering the whole
8940 line.
8941
8942 2004-10-22 Akim Demaille <akim@epita.fr>
8943 and Paul Eggert <eggert@cs.ucla.edu>
8944
8945 Remove some arbitrary limits on goto numbers and relations.
8946 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
8947 initial values, since they're never used.
8948 (set_goto_map): ngotos is now unsigned, so test for overflow
8949 by seeing whether it wraps around to zero.
8950 * src/lalr.h (goto_number): Now size_t, not short int.
8951 (GOTO_NUMBER_MAXIMUM): Remove.
8952 * src/relation.c (relation_print, traverse, relation_transpose):
8953 Check for END_NODE rather than looking at sign.
8954 * src/relation.h (END_NODE): New macro.
8955 (relation_node): Now size_t, not short int.
8956
8957 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
8958
8959 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
8960 keyword, not an identifier. Problem reported by Baron Schwartz in
8961 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
8962
8963 2004-10-11 Akim Demaille <akim@epita.fr>
8964
8965 * src/symtab.c (symbol_check_alias_consistency): Also check
8966 type names, destructors, and printers.
8967 Reported by Alexandre Duret-Lutz.
8968 Recode the handling of associativity and precedence in terms
8969 of symbol_precedence_set.
8970 Accept no redeclaration at all, not even equal to the previous
8971 value.
8972 (redeclaration): New.
8973 Use it to factor redeclaration complaints.
8974 (symbol_make_alias): Don't set the type of the alias, let
8975 symbol_check_alias_consistency do it as for other features.
8976 * src/symtab.h (symbol): Add new member prec_location, and
8977 type_location.
8978 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
8979 * tests/input.at (Incompatible Aliases): New.
8980
8981 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
8982
8983 .cvsignore fixes to accommodate gnulib changes,
8984 and the practice of naming build directories "_build".
8985 * .cvsignore: Add "_*". Sort.
8986 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
8987 * m4/.cvsignore: Add "*_gl.m4".
8988
8989 2004-10-06 Akim Demaille <akim@epita.fr>
8990
8991 * src/parse-gram.y (add_param): Fix the truncation of trailing
8992 spaces.
8993
8994 2004-10-05 Akim Demaille <akim@epita.fr>
8995
8996 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
8997 whether the reducion was empty or not. This leaves room to
8998 improve the use of YYLLOC_DEFAULT in such a case.
8999 lalr1.cc is still experimental, so changing this is acceptable.
9000 And finally, there are probably not many users who changed the
9001 handling of locations in GLR, so changing is admissible too.
9002
9003 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
9004 empty reduction, set @$ to an empty location ending the previously
9005 stacked symbol.
9006 Adjust uses to make sure the code is triggered on empty
9007 reductions.
9008 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
9009 expected output: empty reductions have empty locations.
9010
9011 2004-09-29 Akim Demaille <akim@epita.fr>
9012
9013 * data/lalr1.cc: Move towards a more standard C++ coding style
9014 for templates: Class < T > -> Class<T>.
9015
9016 2004-09-29 Akim Demaille <akim@epita.fr>
9017
9018 * data/lalr1.cc: Reinstall the former ctor, for sake of
9019 compatibility, but warn it will be removed.
9020 Move towards a more standard C++ coding style (i.e., type *var ->
9021 type* var).
9022
9023 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
9024
9025 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
9026 since it's less likely to work if NULs are involved in the future.
9027
9028 2004-09-27 Akim Demaille <akim@epita.fr>
9029
9030 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
9031
9032 2004-09-27 Akim Demaille <akim@epita.fr>
9033
9034 * data/lalr1.cc (b4_parse_param_decl_1): New.
9035 (b4_parse_param_decl): Use it to have different names between attribute
9036 and argument names.
9037 (b4_cc_constructor_call): Likewise.
9038
9039 2004-09-24 Akim Demaille <akim@epita.fr>
9040
9041 * src/parse-gram.y (add_param): Strip the leading and trailing
9042 blanks from a formal argument declaration.
9043 (YY_LOCATION_PRINT): New.
9044
9045 2004-09-24 Akim Demaille <akim@epita.fr>
9046
9047 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
9048 after the location.
9049
9050 2004-09-24 Akim Demaille <akim@epita.fr>
9051
9052 * doc/bison.texinfo (Table of Symbols): Sort.
9053
9054 2004-09-21 Akim Demaille <akim@epita.fr>
9055
9056 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
9057 the useless parentheses.
9058 Suggested by Paul Eggert.
9059
9060 2004-09-20 Akim Demaille <akim@epita.fr>
9061
9062 Let the initial-action act on the look-ahead, and use it for the
9063 "initial push" (corresponding to an hypothetical beginning-of-file).
9064 And let lalr1.cc honor %initial-action.
9065
9066 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
9067 example.
9068 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
9069 (Parser::Parser): Remove the ctor that used to initialize it.
9070 (Parser::parse): Like in the other skeletons, issue the "starting
9071 parse" message before any action.
9072 Honor %initial-action.
9073 Initialize the stacks with the lookahead.
9074 * data/yacc.c: Let $$ and @$ in %initial-action designate the
9075 look-ahead.
9076 Push them in the stacks.
9077 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
9078
9079 2004-09-20 Akim Demaille <akim@epita.fr>
9080
9081 * doc/bison.texinfo (Initial Action Decl): New.
9082
9083 2004-09-20 Akim Demaille <akim@epita.fr>
9084
9085 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
9086 clearer criterion to define it.
9087 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
9088 When reducing on an empty RHS, use the latest stacked location as
9089 location.
9090 yylloc is not always available.
9091 * data/glr.c: Likewise.
9092 Also, honor initial-actions.
9093
9094 2004-09-20 Akim Demaille <akim@epita.fr>
9095
9096 * data/yacc.c (YY_LOCATION_PRINT): New.
9097 Define when we know YYLTYPE's structure, i.e., when the default
9098 YYLLOC_DEFAULT is used.
9099 * data/c.m4 (b4_yysymprint_generate): Use it.
9100 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
9101 value of the result.
9102 (error_start_): Replace with...
9103 (error_range_): this location array.
9104 This allows to replace code relying on the implementation of
9105 locations by portable code.
9106 * data/yacc.c (yylerrsp): Replace with...
9107 (yyerror_range): this.
9108 Every time a token is popped, update yyerror_range[0], to have an
9109 accurate location for the error token.
9110 * data/glr.c (YY_LOCATION_PRINT): New.
9111 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
9112 deference a pointer.
9113 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
9114 report the location in %printers.
9115
9116 * src/scan-skel.l: Instead of abort, report error messages to ease
9117 understanding skeleton scanning failures.
9118
9119 2004-09-16 Akim Demaille <akim@epita.fr>
9120
9121 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
9122 (iterator, const_iterator): these, to be more in the C++ spirit.
9123 Also, return reverse iterators so that when displaying the stack
9124 we display its bottom first.
9125 (Parser::stack_print_, Parser::reduce_print_): Match the messages
9126 from yacc.c.
9127 We should probably use vector here though.
9128
9129 2004-09-16 Akim Demaille <akim@epita.fr>
9130
9131 Have more complete shift traces.
9132
9133 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
9134 to report Shifts instead of ad hoc YYDPRINTF invocations,
9135 including for the error token.
9136 * data/lalr1.cc (symprint_): Output the location.
9137 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
9138 output the location within the %printer.
9139 Activate GLR tests, at least to make sure they compile properly.
9140 They still don't pass though.
9141 * tests/calc.at: Adjust expect verbose output, since now "Entering
9142 state..." is on a different line than the "Shifting" message.
9143
9144 2004-09-08 Akim Demaille <akim@epita.fr>
9145
9146 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
9147 Bison directive from the Bison file to the invocation of this
9148 macro, so that these directives are passed to
9149 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
9150 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
9151 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
9152 the extra Bison directives instead of the whole series.
9153 Change the grammar so that there are recoverable errors, and
9154 unrecoverable errors. Now we can have the parser give up before
9155 consuming the whole input. As a result we now can observe that
9156 the lookahead is freed when needed.
9157 Change the parser source to parse argv[1] instead of a hard coded
9158 string.
9159 Simplify yylex, and give a value and location to EOF.
9160 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
9161 passed directives already coded in the file.
9162 Add some tests to check the location of "error".
9163 For some tests, the C++ parser is correct, and not yacc.c.
9164 For other tests, they provide different, but unsatisfying, values,
9165 so keep the C++ value so that at least one parser is "correct"
9166 according to the test suite.
9167 (Actions after errors): Remove, this is subsumed by the
9168 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
9169
9170 2004-09-06 Akim Demaille <akim@epita.fr>
9171
9172 * data/lalr1.cc: Adjust the indentation of the labels.
9173 (Parser::pop): New.
9174 Use it.
9175
9176 2004-09-06 Akim Demaille <akim@epita.fr>
9177
9178 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
9179 argument, an informative message.
9180 Call YY_SYMBOL_PRINT.
9181 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
9182 * data/lalr1.cc (destruct_): Likewise.
9183 In addition, no longer depend on b4_yysymprint_generate and
9184 b4_yydestruct_generate to generate these functions, do it "by
9185 hand".
9186
9187 2004-09-03 Akim Demaille <akim@epita.fr>
9188
9189 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
9190 invoked, yydestruct the lookahead.
9191 * tests/calc.at (Calculator $1): Update the expected lengths of
9192 traces: there is an added line for the discarded lookahead.
9193 * doc/bison.texinfo (Destructor Decl): Some rewording.
9194 Define "discarded" symbols.
9195
9196 2004-09-02 Akim Demaille <akim@epita.fr>
9197
9198 * data/lalr1.cc (translate_, destruct_): No reason to be static.
9199
9200 2004-09-02 Akim Demaille <akim@epita.fr>
9201
9202 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
9203 (YYDSYMPRINTF): Rename as...
9204 (YY_SYMBOL_PRINT): this.
9205 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
9206 two.
9207 Use it instead of direct symprint_ calls.
9208 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
9209 one.
9210
9211 2004-09-02 Akim Demaille <akim@epita.fr>
9212
9213 * data/lalr1.cc (b4_yysymprint_generate): New.
9214 (symprint_): New member function, defined when YYDEBUG.
9215 Use it consistently instead of token/nterm debugging output by
9216 hand.
9217 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
9218 %printer calls to use cdebug_ when using lalr1.cc.
9219
9220 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
9221
9222 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
9223 with #ifdef YYDEBUG.
9224
9225 2004-08-26 Akim Demaille <akim@epita.fr>
9226
9227 * doc/bison.texinfo (Implementing Loops): Rename as...
9228 (Implementing Gotos/Loops): this.
9229
9230 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
9231
9232 Adjust to latest gnulib.
9233 * bootstrap (gnulib_modules): Add xalloc-die.
9234 Set LC_ALL=C so that file names sort consistently.
9235 Prefer the gnulib copies of gettext.m4, glibc21.m4,
9236 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
9237 uintmax_t.m4, ulonglong.m4.
9238 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
9239 po.m4 since we are now using _gl.m4 instead.
9240
9241 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
9242
9243 * src/scan-action.l: Remove. Scanning of semantic actions is
9244 handled in scan-gram.l.
9245
9246 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
9247
9248 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
9249
9250 * src/location.h (struct): The file member is a uniqstr.
9251 (equal_boundaries): Use UNIQSTR_EQ for comparison.
9252
9253 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
9254
9255 Fix bug with non-%union parsers that have printers or destructors,
9256 which led to a Bison core dump. Reported by Peter Fales in
9257 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
9258
9259 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
9260 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
9261 not to our own type.
9262 * src/output.c (symbol_destructors_output, symbol_printers_output):
9263 Don't assume %union.
9264 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
9265 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
9266 UNION-FLAG. All callers changed.
9267 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
9268 Use type char, not unsigned int, when declaring an array of char;
9269 this lets us remove a cast.
9270 (Printers and Destructors): Add non-%union test cases.
9271
9272 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
9273
9274 * doc/bison.texinfo: Minor editorial changes, mostly to the new
9275 GLR writeups. E.g., avoid frenchspacing and the future tense,
9276 change "lookahead" to "look-ahead", and change "wrt" to "with
9277 respect to".
9278
9279 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9280
9281 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
9282 New sections, split off from the GLR Parsers section. Put the new
9283 Simple GLR Parser near the start of the GLR section, for clarity.
9284 Rewrite connective text.
9285
9286 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
9287
9288 * doc/bison.texinfo (Simple GLR Parsers): New section.
9289
9290 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
9291
9292 * NEWS, TODO, doc/bison.texinfo:
9293 Use "look-ahead" instead of "lookahead", to be consistent.
9294 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
9295 while we're fixing "look-ahead".
9296 * src/conflicts.c (shift_set): Renamed from shiftset.
9297 (look_ahead_set): Renamed from lookaheadset.
9298 * src/print.c: Likewise.
9299 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
9300 name for "lookahead".
9301 (report_types, usage): Likewise.
9302 * src/getargs.h (report_look_ahead_tokens): Renamed from
9303 report_lookaheads.
9304 * src/lalr.c (compute_look_ahead_tokens): Renamed from
9305 compute_lookaheads.
9306 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
9307 (look_ahead_tokens_print): Renamed from lookaheads_print.
9308 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
9309 state_rule_lookaheads_print.
9310 * src/state.h: Likewise.
9311 (reductions.look_ahead_tokens): Renamed from lookaheads.
9312 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
9313 AT_DATA_LOOKAHEADS_GRAMMAR.
9314
9315 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
9316
9317 * README: Update location of patched M4 distribution.
9318
9319 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
9320
9321 Don't assume the C++ compiler takes the same arguments as the C compiler
9322 (trivial change).
9323 * configure.ac (O0CXXFLAGS): New var.
9324 * tests/atlocal.in (CXXFLAGS): Use it.
9325
9326 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
9327
9328 Fix some "make check" problems with C++ reported by
9329 Albert Chin-A-Young for Tru64 C++ in this thread:
9330 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
9331
9332 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
9333 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
9334 Output to a .cc file for C++, not to a .c file.
9335 * tests/calc.at (AT_CHECK_CALC): Likewise.
9336 * tests/regression.at (AT_CHECK_DANCER): Likewise.
9337 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
9338
9339 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
9340
9341 * tests/calc.at, tests/actions.at: Workaround for SGI
9342 C++ compiler. (trivial change)
9343
9344 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
9345
9346 Spent a few hours checking out which prerequisite versions the
9347 current sources actually require. I went all the way back to
9348 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
9349 a seemingly endless set of combinations of versions more recent
9350 than that. The bottom line is that the current sources require
9351 fairly recent versions of the build tools, and it'll be some work
9352 to change this.
9353 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
9354 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
9355 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
9356 Add comments explaining why those particular versions are
9357 currently needed.
9358
9359 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
9360 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
9361 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
9362
9363 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
9364 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
9365
9366 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
9367
9368 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
9369 0.11.5. Suggested by Bruno Haible.
9370 * bootstrap: Remove gettext version checking.
9371
9372 * doc/bison.texinfo (Decl Summary): Also mention that %union
9373 can depend on prerequisite types. Problem reported by Tim
9374 Van Holder.
9375
9376 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
9377
9378 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
9379 * README-alpha: Don't tell people not to package this.
9380
9381 * bootstrap: Don't assume $(...) works; use `...` instead.
9382 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
9383 gettext better.
9384
9385 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
9386 put into the -d output file, and mention what to do if YYSTYPE is
9387 defined as a macro.
9388
9389 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
9390
9391 Undo change made earlier today: it caused autopoint to not bring
9392 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
9393 autopoint's.
9394
9395 * bootstrap: Check that gettext version matches what's in
9396 configure.ac. Warn users to ignore robots.txt ERROR 404.
9397 * bootstrap: Undo today's earlier change (logged below).
9398 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
9399
9400 The gettext version checking is causing more trouble than it's
9401 curing; remove it. Problem reported by Paul Hilfinger.
9402
9403 * bootstrap: Issue a warning that one can expect a message
9404 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
9405 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
9406
9407 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
9408
9409 Ensure that the C++ compiler used for testing actually works on a
9410 simple test program; if not, skip the C++-related tests. Problem
9411 reported by Vin Shelton in:
9412 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
9413
9414 * m4/cxx.m4: New file.
9415 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
9416 * tests/atlocal.in (BISON_CXX_WORKS): Add.
9417 * tests/local.at (AT_COMPILE_CXX): Use it.
9418
9419 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
9420
9421 * data/glr.c (yylloc): Output this macro even if locations are not
9422 being generated, as the GLR parser needs it even in that case.
9423 Problem reported by Troy A. Johnson
9424 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
9425
9426 * configure.ac (AC_INIT): Update to 1.875e.
9427
9428 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
9429
9430 * NEWS: Version 1.875d.
9431 * configure.ac (AC_INIT): Likewise.
9432 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
9433
9434 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
9435 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
9436 lalr1.cc runs afoul of the first, and the last two are no longer
9437 supported by GCC 3.4.0.
9438 * README: Mention GNU m4 1.4 or later; mention m4 patches.
9439 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
9440
9441 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
9442
9443 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
9444 unsigned int, for compatibility with latest gnulib hash module.
9445 * src/state.c (state_hash, state_hasher): Likewise.
9446 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
9447 * src/uniqstr.c (hash_uniqstr): Likewise.
9448
9449 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
9450
9451 * NEWS: Unescaped newlines are no longer allowed in char & strings.
9452
9453 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
9454 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
9455 character and string literals.
9456 (unexpected_end): New function.
9457 (unexpected_eof): Use it.
9458 (unexpected_newline): New function.
9459 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
9460 actions.
9461
9462 * NEWS: Document %expect-rr.
9463
9464 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
9465 Fix typo by replacing $1 with $option.
9466 Remove more 'intl'-related files.
9467 Don't DEFUN AM_INTL_SUBDIR twice.
9468
9469 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
9470 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
9471 strtoul.c.
9472 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
9473 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
9474 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
9475 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
9476 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
9477 * src/.cvsignore: Add *.output.
9478
9479 * src/parse-gram.y: Put copyright notice inside %{ %} so it
9480 gets copied to the output file.
9481
9482 2004-04-28 Paul Eggert <eggert@twinsun.com>
9483
9484 Get files from the gnulib and po repositories, instead of relying
9485 on them being in our CVS. Upgrade to latest versions of gnulib
9486 and Automake.
9487
9488 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
9489 * bootstrap: Bootstrap from gnulib and po repositories.
9490 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
9491 * README-cvs: Document these changes. Remove version numbers from
9492 mentions of build tools, since they change so often. Mention Flex.
9493
9494 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
9495 (gl_USE_SYSTEM_EXTENSIONS): Add.
9496 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
9497 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
9498 does this for us.
9499 (AC_ISC_POSIX): Remove; we no longer support this
9500 ancient OS, as it gets in the way of latest Autoconf & gnulib.
9501 (AC_HEADER_STDC): Remove: we now assume C89 or better.
9502 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
9503 Do not check for C89 headers, except for locale.h which is used
9504 by the Yacc library and must port to K&R hosts.
9505 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
9506 Do not check for C89 functions, except for setlocale which is
9507 used by the Yacc library.
9508 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
9509 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
9510 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
9511 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
9512 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
9513 AM_GNU_GETTEXT): Remove; now done by:
9514 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
9515 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
9516 for us.
9517
9518 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
9519 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
9520 Define to empty, as gnulib.mk will do the rest for us.
9521 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
9522 for us.
9523 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
9524 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
9525
9526 * src/files.c: Include gnulib's xstrndup.h.
9527
9528 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
9529 (REALLOC): Use xnrealloc, for likewise.
9530 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
9531 (strnlen, memrchr): Remove decls; functions no longer used.
9532 Include <stpcpy.h>.
9533
9534 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
9535 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
9536 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
9537 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
9538 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
9539 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
9540 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
9541 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
9542 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
9543 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
9544 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
9545 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
9546 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
9547 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
9548 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
9549 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
9550 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
9551 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
9552 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
9553 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
9554 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
9555 Remove, as these files are now generated automatically
9556 by bootstrap or automake.
9557
9558 * po/ChangeLog: Remove: all but one entry was a duplicate
9559 of this file, and I moved that 2000-11-02 entry here.
9560
9561 * config/.cvsignore: Add Makefile, depcomp, install-sh.
9562 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
9563 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
9564 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
9565 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
9566 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
9567 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
9568 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
9569 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
9570 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
9571 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
9572 xstrndup.h.
9573 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
9574 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
9575 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
9576 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
9577 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
9578 * src/.cvsignore: Remove *_.c.
9579
9580
9581 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
9582 support it. (The latest stable gzip doesn't.)
9583
9584 2004-04-27 Paul Eggert <eggert@twinsun.com>
9585
9586 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
9587 case, as stos_ is now used by destructors due to the 2004-02-09
9588 change.
9589
9590 Remove more K&R C support.
9591 * lib/libiberty.y (PARAMS): Remove. All uses removed.
9592 * lib/subpipe.c (errno): Remove decl.
9593 Include <stdlib.h> unconditionally.
9594 (EXIT_FAILURE): Remove macro.
9595 * src/complain.c (vfprintf, strerror): Remove.
9596 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
9597 unconditionally.
9598 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
9599 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
9600 (strchr, strspn, memchr): Remove decls.
9601 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
9602 unconditionally. Do not declare perror.
9603 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
9604 unconditionally.
9605
9606 * src/complain.c (_): Remove useless defn, as system.h defines this.
9607
9608 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
9609 with latest obstack.h.
9610 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
9611 to procedure types, as obstack.h now does that for us.
9612 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
9613
9614 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
9615 so that this include file can stand alone.
9616 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
9617 does this now. Include subpipe.h first after config.h, to
9618 test whether it can stand alone.
9619
9620 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
9621 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
9622 unused declaration.
9623
9624 * tests/synclines.at (%union synch line): Put a dummy member in
9625 the union, because empty unions aren't allowed in C. Caught
9626 by GCC 3.4.0.
9627
9628 2004-04-13 Jim Meyering <jim@meyering.net>
9629
9630 * src/conflicts.c (conflicts_print): Correct format string typo:
9631 use `%%' to produce literal `%'. (trivial change)
9632
9633 2004-03-30 Paul Eggert <eggert@twinsun.com>
9634
9635 * src/getargs.c (version): Update copyright year to 2004.
9636
9637 * data/c.m4 (b4_int_type): Use 'short int' rather than
9638 'short', and similarly for 'long', 'unsigned', etc.
9639 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
9640 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
9641 yy_yypstack, yydumpstack): Likewise.
9642 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
9643 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
9644 Likewise.
9645 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
9646 yy_stack_print, yyparse): Likewise.
9647 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
9648 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
9649 * lib/bitset.c (bitset_print): Likewise.
9650 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
9651 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
9652 * lib/bitsetv.c (bitsetv_dump): Likewise.
9653 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
9654 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
9655 Likewise.
9656 * src/LR0.c (allocate_itemsets): Likewise.
9657 * src/gram.h (rule_number, rule): Likewise.
9658 * src/lalr.h (goto_number): Likewise.
9659 * src/nullable.c (nullable_compute): Likewise.
9660 * src/output.c (prepare_rules): Likewise.
9661 * src/relation.c (relation_print, relation_digraph): Likewise.
9662 * src/relation.h (relation_node): Likewise.
9663 * src/state.h (state_number, transitions, errs, reductions,
9664 struct state): Likewise.
9665 * src/symtab.h (symbol_number, struct symbol): Likewise.
9666 * src/tables.c (vector_number, tally, action_number,
9667 default_goto, goto_actions): Likewise.
9668 * tests/existing.at (GNU Cim Grammar): Likewise.
9669 * tests/regression.at (Web2c Actions): Likewise.
9670
9671 * src/output.c (muscle_insert_short_int_table): Renamed from
9672 muscle_insert_short_table. All uses changed.
9673
9674 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9675
9676 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
9677 (declaration): Replace expected_conflicts with expected_sr_conflicts.
9678 Add %expect-rr rule.
9679
9680 * src/scan-gram.l: Recognize %expect-rr.
9681
9682 * src/conflicts.h (expected_sr_conflicts): Rename from
9683 expected_conflicts.
9684 (expected_rr_conflicts): Declare.
9685
9686 * src/conflicts.c (expected_sr_conflicts): Rename from
9687 expected_conflicts.
9688 (expected_rr_conflicts): Define.
9689 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
9690 for GLR parsers.
9691 Use expected_sr_conflicts in place of expected_conflicts.
9692 Warn if expected_rr_conflicts used in non-GLR parser.
9693
9694 * doc/bison.texinfo: Add documentation for %expect-rr.
9695
9696 2004-03-08 Paul Eggert <eggert@gnu.org>
9697
9698 Add support for hex token numbers. Suggested by Odd Arild Olsen in
9699 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
9700
9701 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
9702 in lalr1.cc.
9703 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
9704 * src/scan-gram.l (scan_integer): New function.
9705 ({int}): Use it.
9706 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
9707 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
9708 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
9709 Say "long int", not "long", for uniformity with GNU style.
9710
9711 2004-02-25 Paul Eggert <eggert@twinsun.com>
9712
9713 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
9714 compilers. This fixes a problem with Intel's C++ compiler being
9715 chatty, reported by Guido Trentalancia in
9716 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
9717
9718 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
9719
9720 Support %destructor and merge error locations in lalr1.cc.
9721
9722 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
9723 (Parser::stos_): Define unconditionally.
9724 (Parser::destruct_): New method. Generate its body with
9725 b4_yydestruct_generate.
9726 (Parser::error_start_): New attribute.
9727 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
9728 token which are discarded.
9729 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
9730 error_start_ when erroneous token are discarded.
9731 (Parser::parse) <yyerrlab1>: Compute the location of the error
9732 token so that it covers all the discarded tokens.
9733 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
9734 it can be called with `%skeleton "lalr1.cc"', and do that.
9735
9736 2004-02-02 Paul Eggert <eggert@twinsun.com>
9737
9738 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
9739 $(top_srcdir)/lib and ../lib. This fixes a bug reported
9740 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
9741 There's no need to mention top_builddir since Automake does that
9742 for us.
9743 (INCLUDES): Remove, as Automake says it's obsolescent.
9744 Contents migrated into AM_CPPFLAGS as described above.
9745 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
9746
9747 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9748
9749 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
9750 (yyreportSyntaxError): Handle case where lookahead token is
9751 YYEMPTY.
9752
9753 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9754
9755 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
9756 resulting parsers are compilable with C++.
9757
9758 2003-12-23 Paul Eggert <eggert@twinsun.com>
9759
9760 * config/depcomp, config/install-sh: Sync with Automake 1.8.
9761 * src/output.c (output_skeleton): Rename local var.
9762 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
9763 Bison tokens, as this runs afoul of the 2003-10-07 change that
9764 disallowed NUL bytes in character constants or string literals.
9765
9766 * tests/local.at: Require Autoconf 2.59's Autotest.
9767 * tests/testsuite.at: Don't include local.at, since we now assume
9768 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
9769 including it.
9770 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
9771 multiple inclusion warnings.
9772
9773 2003-12-02 Akim Demaille <akim@epita.fr>
9774
9775 * doc/bison.texinfo (How Can I Reset the Parser): More about start
9776 conditions.
9777 From Bruno Haible.
9778
9779 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
9780
9781 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
9782
9783 2003-10-07 Paul Eggert <eggert@twinsun.com>
9784
9785 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
9786 if testsuite doesn't exist.
9787
9788 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
9789 literals, unfortunately.
9790 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
9791 Complain about NUL bytes in character constants or string literals.
9792
9793 2003-10-05 Paul Eggert <eggert@twinsun.com>
9794
9795 * NEWS: Don't document %no-default-prec, as it's still
9796 too experimental.
9797 * doc/bison.texinfo: Document %no-default-prec only if
9798 the defaultprec flag is set. Normally it's not.
9799
9800 2003-10-04 Paul Eggert <eggert@twinsun.com>
9801
9802 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
9803 non-modifiable lvalue, instead of a modifiable one.
9804 * doc/bison.texinfo (Actions): Document that $$ can
9805 be assigned to. Do not claim that $$ and $N are
9806 array element references: user code should not rely on this.
9807
9808 2003-10-01 Paul Eggert <eggert@twinsun.com>
9809
9810 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
9811 (grammar_declaration): Use it.
9812 * src/scan-gram.l: New token %no-default-prec.
9813 * tests/conflicts.at: Revamp tests to use %no-default-prec.
9814 * NEWS, doc/bison.texinfo: Document the above.
9815
9816 2003-10-01 Akim Demaille <akim@epita.fr>
9817
9818 VCG no longer supports long_straight_phase.
9819
9820 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
9821 * src/print_graph.c (print_graph): Adjust.
9822
9823 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
9824 and Paul Eggert <eggert@twinsun.com>
9825
9826 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
9827 Table of Symbols): Document %default-prec.
9828 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
9829 (grammar_declaration): Set default_prec on %default-prec.
9830 * src/scan-gram.l (%default-prec): New token.
9831 * src/reader.h (default_prec): New flag.
9832 * src/reader.c: Likewise.
9833 (packgram): Handle it.
9834 * tests/conflicts.at (%default-prec without %prec,
9835 %default-prec with %prec, %default-prec 1): New tests.
9836
9837 2003-09-30 Paul Eggert <eggert@twinsun.com>
9838
9839 * tests/testsuite.at: Include local.at, not input.at, fixing
9840 a typo in the 2003-08-25 patch.
9841
9842 2003-08-27 Akim Demaille <akim@epita.fr>
9843
9844 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
9845 GCC warnings.
9846
9847 2003-08-26 Akim Demaille <akim@epita.fr>
9848
9849 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
9850 "<\#" to avoid magic from Gnus when posting parts of this script.
9851
9852 2003-08-26 Akim Demaille <akim@epita.fr>
9853
9854 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
9855 (Parser::parse): here.
9856 Adjust: nerrs and errstatus is now replaced by...
9857 (Parser::nerrs_, Parser::errstatus_): New.
9858
9859 2003-08-25 Akim Demaille <akim@epita.fr>
9860
9861 * config/announce-gen, Makefile.cfg: New.
9862 * Makefile.am: Adjust.
9863 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
9864 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
9865
9866 2003-08-25 Akim Demaille <akim@epita.fr>
9867
9868 When reducing initial empty rules, Bison parser read an initial
9869 location that is not defined. This results in garbage, and that
9870 affects Bison's own parser. Therefore we need (i) to extend Bison
9871 to support a means to initialize this location, and (ii) to use
9872 this CVS Bison to fix CVS Bison's parser.
9873
9874 * src/reader.h, reader.c (epilogue_augment): Remove, replace
9875 with...
9876 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
9877 * src/parse-gram.y: Adjust.
9878 (%initial-action): New.
9879 (%error-verbose): Since we require CVS Bison, there is no reason
9880 not to use it.
9881 * src/scan-gram.l: Adjust.
9882 * src/Makefile.am (YACC): New, to make sure we use our own parser.
9883 * data/yacc.c (yyparse): Use b4_initial_action.
9884
9885 2003-08-25 Akim Demaille <akim@epita.fr>
9886
9887 * doc/bison.texinfo: Don't promote stdout for error messages.
9888
9889 2003-08-25 Akim Demaille <akim@epita.fr>
9890
9891 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
9892 From Alexandre Duret-Lutz.
9893
9894 2003-08-25 Akim Demaille <akim@epita.fr>
9895
9896 Version 1.875c.
9897
9898 2003-08-25 Akim Demaille <akim@epita.fr>
9899
9900 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
9901 Use them.
9902
9903 2003-08-25 Akim Demaille <akim@epita.fr>
9904
9905 * data/lalr1.cc (Parser::reduce_print_): New.
9906 Use it.
9907
9908 2003-08-25 Akim Demaille <akim@epita.fr>
9909
9910 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
9911 error recovery loops. This patch is based on
9912 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
9913 Also, augment the similarity between lalr1.cc and yacc.c.
9914 Note: the locations of error recovery rules are not correct yet.
9915
9916 * data/lalr1.cc: Comment changes to augment the similarity between
9917 lalr1.cc and yacc.c.
9918 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
9919 (yyerrlab1): Remove, but where it used to be (now the bottom part of
9920 yyerrlab), when hitting EOF, pop the whole stack here instead of
9921 merely falling thru the default error handling mechanism.
9922 (yyerrorlab): New label, with the old contents of YYERROR,
9923 plus the following change: pop the stack of rhs corresponding
9924 to the production that invoked YYERROR. That is how Yacc
9925 behaves (required by POSIX).
9926 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
9927 fail.
9928
9929 2003-08-25 Akim Demaille <akim@epita.fr>
9930
9931 Tune local.at so that people can "autom4te -l autotest calc.at -o
9932 calc" for instance, to extract a sub test suite.
9933
9934 * tests/testsuite.at: Move the initialization, Autotest version
9935 requirement, and AT_TESTED invocation into...
9936 * tests/local.at: here.
9937 * tests/testsuite.at: Include it for compatibility with Autoconf
9938 2.57.
9939 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
9940 be ignore.
9941
9942 2003-08-04 Paul Eggert <eggert@twinsun.com>
9943
9944 Rework code slightly to avoid gcc -Wtraditional warnings.
9945 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
9946 The returned value is now stored in *YY0. All callers changed.
9947 * src/output.c (merge_output): Adjust to the above change.
9948
9949 2003-07-26 Paul Eggert <eggert@twinsun.com>
9950
9951 * data/glr.c (YYASSERT): New macro.
9952 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
9953 yyresolveStates, yyprocessOneStack):
9954 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
9955 Derived from a suggestion by Frank Heckenbach.
9956
9957 2003-07-25 Paul Eggert <eggert@twinsun.com>
9958
9959 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
9960 for portability to K&R C (after ansi2knr, presumably). See
9961 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
9962 by Frank Heckenbach, though I have omitted the structure-initialization
9963 part of his glr-knr.diff patch since I recall that the Portable
9964 C Compiler didn't require that change.
9965
9966 Let the user specify how to allocate and free memory.
9967 Derived from a suggestion by Frank Heckenbach in
9968 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
9969 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
9970 All uses of free, malloc, realloc changed to use these macros,
9971 and unnecessary casts removed.
9972 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
9973
9974 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
9975
9976 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
9977 use s.empty() rather than s == "" to test for empty string; see
9978 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
9979 (trivial change)
9980
9981 2003-06-25 Akim Demaille <akim@epita.fr>
9982
9983 * config/depcomp, config/install-sh: Update from masters.
9984
9985 2003-06-20 Paul Eggert <eggert@twinsun.com>
9986
9987 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
9988 and return properly parenthesized result.
9989 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
9990 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
9991 Remove unnecessary parentheses from uses.
9992 * doc/bison.texinfo (Location Default Action): Describe the
9993 conventions for parentheses.
9994
9995 2003-06-19 Paul Eggert <eggert@twinsun.com>
9996
9997 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
9998 yyreportTree): Do not assume that size_t is the same width as int,
9999 when printing sizes. Print sizes using an unsigned format.
10000 Problem reported by Frank Heckenbach in
10001 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
10002
10003 Port to Forte Developer 7 C compiler.
10004 * data/glr.c (struct YYLTYPE): If locations are not being used,
10005 declare a single dummy member, as empty structs do not conform
10006 to the C standard.
10007 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
10008 the Forte Developer 7 C compiler complains that end-of-loop
10009 code is not reached.
10010
10011 2003-06-17 Paul Eggert <eggert@twinsun.com>
10012
10013 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
10014 avoid warnings from picky compilers about redefinition of PARAMS.
10015
10016 2003-06-17 Paul Eggert <eggert@twinsun.com>
10017
10018 Version 1.875b.
10019
10020 * NEWS: Document 1.875b.
10021
10022 * lib/bbitset.h: Do not include config.h; that's the includer's job.
10023 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
10024 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
10025 Don't use 'index' in comments, as it's a builtin fn on some hosts.
10026 * lib/bitset_stats.c: Include gettext.h unconditionally, as
10027 per recent gettext manual's suggestion.
10028 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
10029 Use prototypes, not old-style definitions.
10030 * lib/lbitset.c (lbitset_unused_clear): Likewise.
10031 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
10032 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
10033 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
10034 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
10035 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
10036 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
10037 vbitset_or_and_cmp, vbitset_copy): Likewise.
10038
10039 * lib/libiberty.h: Do not include config.h; that's the includer's job.
10040 Do not include <stdlib.h>.
10041 (PARAMS): Define unconditionally for C89.
10042 (ATTRIBUTE_NORETURN): Remove.
10043 (ATTRIBUTE_UNUSED): Define unconditionally.
10044
10045 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
10046 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
10047 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
10048 * lib/vbitset.c, lib/vbitset.h: New files.
10049 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
10050 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
10051 from libbitset.
10052
10053 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
10054 `How Can I Reset @code{yyparse}', since texinfo does not allow
10055 arbitrary @ in node names.
10056
10057 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
10058 shouldn't be needed according to the gettext 0.12.1 documentation
10059 but which seem to be needed anyway: codeset.m4 glibc21.m4
10060 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
10061 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
10062 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
10063
10064 * lib/.cvsignore: Add stdbool.h.
10065 * m4/.cvsignore: Add nls.m4, po.m4.
10066
10067 Upgrade to CVS gnulib.
10068 * stdbool_.h: File renamed from stdbool.h.in.
10069 * configure.ac (AM_STDBOOL_H): Invoke this instead of
10070 AC_HEADER_STDBOOL.
10071 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
10072 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
10073 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
10074 (MOSTLYCLEANFILES): New var.
10075 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
10076 (stdbool.h): New rule.
10077 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
10078 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
10079 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
10080 m4/quote.m4: Upgrade to today's gnulib.
10081
10082 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
10083 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
10084 the tests right now.
10085 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
10086 yyerror are declared before use; C99 requires this.
10087
10088 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10089
10090 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
10091 first.
10092 (yyrecoverSyntaxError): Correct the logic for setting and testing
10093 yyerrState.
10094 Correct comment on handling EOF.
10095 Allow states with only a default reduction, rather than failing
10096 (I can't quite reconstruct why these were not allowed before).
10097
10098 Fixes to avoid problem that $-N rules in GLR parsers can cause
10099 buffer overruns, corrupting state.
10100
10101 * src/output.c (prepare_rules): Output max_left_semantic_context
10102 definition.
10103 * src/reader.h (max_left_semantic_context): New variable declaration.
10104 * src/scan-gram.l (max_left_semantic_context): Define.
10105 (handle_action_dollar): Update max_left_semantic_context.
10106 * data/glr.c (YYMAXLEFT): New definition.
10107 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
10108 (yyresolveAction): Ditto.
10109
10110 Fixes to problems with location handling in GLR parsers reported by
10111 Frank Heckenbach (2003/06/05).
10112
10113 * data/glr.c (YYLTYPE): Make trivial if locations not used.
10114 (YYRHSLOC): Add parentheses, and define only if locations used.
10115 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
10116 locations not used.
10117 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
10118 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
10119
10120 * tests/cxx-type.at: Exercise location information; update tests
10121 to differentiate output with and without locations.
10122 Remove forward declarations of yylex and yyerror---caused errors
10123 because default YYLTYPE not yet defined.
10124 Change semantic actions to compute strings, rather than printing
10125 them directly (to test proper passing of semantics values). Change
10126 output to prefix notation and update test data and expected results.
10127 (yylex): Track locations.
10128 (stmtMerge): Return value rather than printing, and include arguments
10129 in value.
10130
10131 2003-06-03 Paul Eggert <eggert@twinsun.com>
10132
10133 Avoid warnings generated by GCC 2.95.4 when Bison is
10134 configured with --enable-gcc-warnings.
10135 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
10136 yy::]b4_parser_class_name[::translate_,
10137 yy::Stack::operator[] (unsigned),
10138 yy::Stack::operator[] (unsigned) const,
10139 yy::Slice::operator[] (unsigned),
10140 yy::Slice::operator[] (unsigned) const):
10141 Rename local vars to avoid warnings.
10142 * tests/glr-regression.at (Improper handling of embedded actions
10143 and $-N in GLR parsers): Remove unused local variable from yylex.
10144 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
10145 (void) as arg when not pure, since we now assume C89 when building
10146 Bison. Pacify GCC by using parameter.
10147
10148 2003-06-02 Paul Eggert <eggert@twinsun.com>
10149
10150 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
10151 yy::Location::lines, yy::Location::columns): Rename arguments
10152 to avoid shadowing; this removes a warning generated by GCC 3.3.
10153
10154 2003-06-01 Paul Eggert <eggert@twinsun.com>
10155
10156 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
10157 to g++, as GCC 3.3 complains if you do it.
10158 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
10159 everything that WARNING_CFLAGS has, except omit warnings
10160 not suitable for C++.
10161 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
10162 * tests/atlocal.in (CXXFLAGS): New var.
10163 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
10164
10165 Fix a GLR parser bug I reported in February; see
10166 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
10167 The problem was that GLR parsers did not conform to the C standard,
10168 because actions like { $1 = $2 + $3; } expanded to expressions
10169 that invoked YYFILL in separate subexpressions, and YYFILL assigned
10170 to a local variable. The C standard says that expressions
10171 like (var = f ()) + (var = f ()) have undefined behavior.
10172 Another problem was that GCC sometimes issues warnings that
10173 yyfill and its parameters are unused.
10174
10175 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
10176 as possibly unused.
10177 (yyfill): New function.
10178 (YYFILL): Use it.
10179 (yyuserAction): Change type of yynormal to bool, so that it matches
10180 the new yyfill signature. Mark it as possibly unused.
10181
10182
10183 Follow up on a bug I reported in February, where a Bison-generated
10184 parser can loop. Provide a test case and a fix for yacc.c. I
10185 don't have a fix for lalr1.cc or for glr.c, unfortunately.
10186 The original bug report is in:
10187 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
10188
10189 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
10190 macro's size was becoming unwieldy.
10191 (yyerrlab): Do not discard an empty lookahead symbol, as this
10192 might destroy garbage.
10193 (yyerrorlab): New label, with the old contents of YYERROR,
10194 plus the following change: pop the stack of rhs corresponding
10195 to the production that invoked YYERROR. That is how Yacc
10196 behaves, and POSIX requires this behavior.
10197 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
10198 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
10199 Define 'alarm' to do nothing if unistd.h is not available.
10200 Add a new rule "exp: '-' error;" to test the above change to
10201 data/yacc.c. Use 'alarm' to abort any test taking longer than
10202 10 seconds, as it's probably looping.
10203 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
10204 Also, the new yacc.c generates two fewer diagnostics for an
10205 existing test.
10206
10207 2003-05-24 Paul Eggert <eggert@twinsun.com>
10208
10209 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
10210 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
10211 This fixes a problem reported by John Bowman when the Compaq/HP
10212 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
10213 -ansi -Wall -gall).
10214 * data/yacc.c (union yyalloc): Likewise.
10215 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
10216
10217 Switch from 'int' to 'bool' where that makes sense.
10218
10219 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
10220 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
10221 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
10222 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
10223 Return or accept bool, not int. All callers changed.
10224 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
10225 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
10226 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
10227 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
10228 bitset_or_and_cmp_): Likewise.
10229 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
10230 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
10231 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
10232 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
10233 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
10234 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
10235 bitset_stats_or_and_cmp): Likewise.
10236 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
10237 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
10238 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
10239 ebitset_xor_cmp): Likewise.
10240 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
10241 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
10242 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
10243 lbitset_xor_cmp): Likewise.
10244 * lib/bbitset.h: Include <stdbool.h>.
10245 (struct bitset_vtable): The following members now return bool, not
10246 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
10247 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
10248 or_and_cmp).
10249 * src/conflicts.c (count_rr_conflicts): Likewise.
10250 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
10251 All uses changed.
10252 * lib/ebitset.c (ebitset_obstack_init): Likewise.
10253 * lib/lbitset.c (lbitset_obstack_init): Likewise.
10254 * src/getargs.c (debug_flag, defines_flag, locations_flag,
10255 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
10256 graph_flag): Likewise.
10257 * src/getargs.h (debug_flag, defines_flag, locations_flag,
10258 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
10259 graph_flag): Likewise.
10260 * src/output.c (error_verbose): Likewise.
10261 * src/output.h (error_verbose): Likewise.
10262 * src/reader.c (start_flag, typed): Likewise.
10263 * src/reader.h (typed): Likewise.
10264 * src/getargs.c (LOCATIONS_OPTION): New constant.
10265 (long_options, getargs): Use it.
10266 * src/lalr.c (build_relations): Use bool, not int.
10267 * src/nullable.c (nullable_compute): Likewise.
10268 * src/print.c (print_reductions): Likewise.
10269 * src/tables.c (action_row, pack_vector): Likewise.
10270 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
10271 * src/output.c (prepare): Use it.
10272 * src/output.c (token_definitions_output,
10273 symbol_destructors_output, symbol_destructors_output): Use string,
10274 not boolean integer, to keep track of whether to output separator.
10275 * src/print_graph.c (print_core): Likewise.
10276 * src/state.c (state_rule_lookaheads_print): Likewise.
10277
10278 * config/install-sh: Sync from automake 1.7.5.
10279
10280 2003-05-14 Paul Eggert <eggert@twinsun.com>
10281
10282 * src/parse-gram.y (rules_or_grammar_declaration): Require a
10283 semicolon after a grammar declaration, in the interest of possible
10284 future changes to the Bison input language.
10285 Do not allow a stray semicolon at the start of the grammar.
10286 (rhses.1): Allow one or more semicolons after any rule, including
10287 just before "|" as required by POSIX.
10288 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
10289 grammar.
10290
10291 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
10292
10293 %parse-param support for lalr1.cc.
10294
10295 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
10296 b4_cc_constructor_calls, b4_cc_constructor_call,
10297 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
10298 definitions.
10299 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
10300 parse-param arguments.
10301 (yy::b4_parser_class_name): Declare instance variables to
10302 hold parse-param arguments.
10303 * tests/calc.at: s/value/semantic_value/ because value clashes
10304 with a member of yy::b4_parser_class_name. Adjust C++ code
10305 to handle %parse-param. Enable %parse-param test in C++.
10306
10307 2003-05-12 Paul Eggert <eggert@twinsun.com>
10308
10309 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
10310 English a bit. Fix fclose typo. Change "const char" to "char
10311 const", and use ANSI C rather than K&R for "main". Suggest
10312 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
10313 and suggest yy_switch_to_buffer.
10314
10315 2003-05-05 Paul Eggert <eggert@twinsun.com>
10316
10317 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
10318 C89. This avoids a diagnostic on compilers that define __STDC__
10319 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
10320 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
10321
10322 2003-05-03 Paul Eggert <eggert@twinsun.com>
10323
10324 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
10325 Do not overrun array bounds.
10326 This should fix a bug reported today by Olatunji Oluwabukunmi in
10327 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
10328
10329 2003-04-29 Akim Demaille <akim@epita.fr>
10330
10331 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
10332 * src/getargs.c, src/getargs.h: here, as bool, not int.
10333 (nondeterministic_parser): New.
10334 * src/parse-gram.y, src/scan-gram.l: Support
10335 %nondeterministic-parser.
10336 * src/output.c (prepare): Use nondeterministic_parser instead
10337 of glr_parser where appropriate.
10338 * src/tables.c (conflict_row, action_row, save_row)
10339 (token_actions, token_actions, pack_vector): Ditto.
10340
10341 2003-04-29 Akim Demaille <akim@epita.fr>
10342
10343 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
10344
10345 2003-04-29 Akim Demaille <akim@epita.fr>
10346
10347 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
10348 with %pure-parser and %locations to exercise the patch from Yakov
10349 Markovitch below.
10350
10351 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
10352
10353 * data/yacc.c: (b4_lex_param): Corrected for the case where
10354 %lex-param is provided and %pure-parser isn't.
10355
10356 2003-04-27 Paul Eggert <eggert@twinsun.com>
10357
10358 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
10359 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
10360 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
10361 if it is not defined.
10362 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
10363
10364 2003-04-26 Paul Eggert <eggert@twinsun.com>
10365
10366 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
10367 Declare to be of type suitable for the ninf value itself, not of
10368 type suitable for the corresponding table, since the latter might
10369 be unsigned but the ninf value might be negative. This fixes a
10370 bug reported by Alexandre Duret-Lutz in
10371 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
10372
10373 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
10374 invokes it. We shouldn't invoke it twice because it will attempt
10375 to put error.o in the archive twice. This fixes a glitch reported
10376 by Martin Mokrejs in
10377 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
10378
10379 2003-04-21 Paul Eggert <eggert@twinsun.com>
10380
10381 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
10382 to gnulib.
10383
10384 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
10385
10386 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
10387 Fix obvious typo that results in uncompilable GLR parsers
10388 when both %pure-parser and %locations are used. (trivial change)
10389
10390 2003-04-17 Paul Eggert <eggert@twinsun.com>
10391
10392 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
10393 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
10394 Do not insert the expected token via unput, as this runs afoul
10395 of a POSIX-compatibility bug in flex 2.5.31.
10396 All uses changed to BEGIN the parent state,
10397 since we no longer insert the expected token via unput.
10398 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
10399 that is no longer emitted after the above change.
10400
10401 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
10402 the first one. This change is from Paul Hilfinger, and it fixes
10403 regression reported by Werner Lemberg in
10404 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
10405
10406 (resolve_sr_conflict): Don't invoke state_errs_set
10407 unless one or more tokens have been explicitly made errors.
10408 Otherwise, the above change causes Bison to abort.
10409
10410 * tests/existing.at (GNU pic Grammar): New test case, taken from
10411 Lemberg's email.
10412
10413 2003-03-31 Akim Demaille <akim@epita.fr>
10414
10415 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
10416
10417 2003-03-31 Akim Demaille <akim@epita.fr>
10418
10419 * src/output.c (prepare_symbols): Avoid trailing spaces in the
10420 output.
10421
10422 2003-03-31 Akim Demaille <akim@epita.fr>
10423
10424 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
10425 From Paul Hilfinger.
10426
10427 2003-03-29 Akim Demaille <akim@epita.fr>
10428
10429 * m4/error.m4: Do not put under dynamic conditions some code which
10430 expansion is under static control.
10431
10432 2003-03-29 Akim Demaille <akim@epita.fr>
10433
10434 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
10435
10436 2003-03-29 Akim Demaille <akim@epita.fr>
10437
10438 * doc/bison.texinfo (Strings are Destroyed): New.
10439
10440 2003-03-13 Paul Eggert <eggert@twinsun.com>
10441
10442 * .cvsignore: Add configure.lineno.
10443 * src/.cvsignore: Add yacc.
10444 * tests/.cvsignore: Add testsuite.log.
10445 * doc/fdl.texi: Sync with latest FSF version.
10446
10447 2003-03-12 Paul Eggert <eggert@twinsun.com>
10448
10449 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
10450 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
10451 cursor, instead of leaving it undefined. This fixes a bug
10452 reported by Tim Van Holder in
10453 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
10454 * tests/input.at (Torturing the Scanner): Test the scanner on
10455 an empty input file, which was Tim Van Holder's test case.
10456
10457 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
10458 <sys/resource.h> can be included, include sys/time.h and
10459 sys/times.h first, if available. This works around the SunOS
10460 4.1.4 porting bug reported by Bruce Becker in
10461 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
10462
10463 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
10464 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
10465 AC_HEADER_SYS_WAIT.
10466
10467 Merge changes from gnulib. This was prompted because the CVS
10468 snapshot didn't build on Solaris 7 due to strnlen problems.
10469
10470 These changes need to be merged back into gnulib:
10471 * lib/hash.c: Include <stdbool.h> unconditionally.
10472 * m4/onceonly.m4 (m4_quote): New macro.
10473 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
10474 Quote AC_FOREACH variable-expansions properly.
10475 The 2003-01-03 obstack.h change also needs merging.
10476 {end of changes requiring merging}
10477
10478 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
10479 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
10480 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
10481 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
10482 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
10483 New files, imported from gnulib.
10484 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
10485 above.
10486
10487 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
10488 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
10489 gnulib sources.
10490
10491 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
10492 Add.
10493 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
10494 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
10495 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
10496 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
10497 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
10498 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
10499 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
10500 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
10501 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
10502 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
10503 (jm_PREREQ_ARGMATCH): Remove.
10504 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
10505 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
10506
10507 * src/system.h: Include <stdbool.h> unconditionally.
10508
10509 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
10510 assuming at least C89 in the bitset code for some time now.
10511
10512 2003-03-03 Akim Demaille <akim@epita.fr>
10513
10514 * ro.po: New.
10515
10516 2003-03-02 Akim Demaille <akim@epita.fr>
10517
10518 * doc/bison.texinfo (Table of Symbols): Reactivate the
10519 documentation for %lex-param, and %parse-param.
10520
10521 2003-03-02 Akim Demaille <akim@epita.fr>
10522
10523 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
10524 generate verbose error messages.
10525 Use the number of tokens as an upper bound in yytname, as it
10526 cannot be a non terminal.
10527
10528 2003-03-02 Akim Demaille <akim@epita.fr>
10529
10530 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
10531 message.
10532
10533 2003-03-02 Akim Demaille <akim@epita.fr>
10534
10535 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
10536 Use them to exercise yycheck overrun.
10537 Based on Andrew Suffield's grammar.
10538
10539 2003-03-02 Akim Demaille <akim@epita.fr>
10540
10541 Create tests/local.at for Bison generic testing macros.
10542
10543 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
10544 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
10545 This new file.
10546 * tests/calc.at (AT_CHECK_CALC): Adjust.
10547 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
10548 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
10549 * tests/local.at: here.
10550 (AT_COMPILE_CXX): Tags the tests using it as c++.
10551 Ignore the test if CXX is not functional.
10552
10553 2003-03-01 Paul Eggert <eggert@twinsun.com>
10554
10555 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
10556 not loc->end, since loc->end might contain garbage and this leads
10557 to undefined behavior on some platforms.
10558 (id_loc, token_start): Use (IF_LINTed) initial values that do not
10559 depend on *loc, so that the reader doesn't give the the false
10560 impression that *loc is initialized.
10561 (<INITIAL>"%%"): Do not bother setting code_start, since its value
10562 does not survive the return.
10563
10564 2003-03-01 Akim Demaille <akim@epita.fr>
10565
10566 * src/scan-gram.l (code_start): Always initialize it when entering
10567 into yylex, as SC_EPILOGUE is activated *before* the corresponding
10568 yylex invocation. An alternative would be making it static, but
10569 then it starts with the second %%'s beginning, instead of its end.
10570
10571 2003-02-28 Paul Eggert <eggert@twinsun.com>
10572
10573 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
10574 around a UnixWare 7.1.1 porting bug reported by John Hughes in
10575 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
10576
10577 2003-02-26 Paul Eggert <eggert@twinsun.com>
10578
10579 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
10580 Remove Sequent/Pyramid discussion (nobody uses them any more).
10581 Merge VMS and MS-DOS discussion; these ports may well be dead
10582 but let's keep mentioning them for now. Put <> around email
10583 addresses. Add copyright notice.
10584
10585 2003-02-24 Paul Eggert <eggert@twinsun.com>
10586
10587 * data/glr.c (yy_reduce_print): yylineno -> yylno,
10588 to avoid collision with flex use of yylineno.
10589 Problem reported by Bruce Lilly in
10590 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
10591 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
10592 * data/yacc.c (yy_reduce_print): Likewise.
10593
10594 * config/depcomp: Sync with Automake 1.7.3.
10595
10596 2003-02-21 Akim Demaille <akim@epita.fr>
10597
10598 * data/lalr1.cc: Use temporary variables instead of casts to
10599 change integer types.
10600 Suggested by Paul Eggert.
10601
10602 2003-02-21 Akim Demaille <akim@epita.fr>
10603
10604 * doc/bison.texinfo: Use "location" consistently to refer to @n,
10605 to avoid confusions with lalr1.cc's notion of Position.
10606 Suggested by Paul Eggert.
10607
10608 2003-02-20 Akim Demaille <akim@epita.fr>
10609
10610 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
10611 before initial_columns.
10612 (location.hh): Use consistent variable names when defining the
10613 operator<<.
10614 Use "last" so that we subtract from Positions, not from unsigned.
10615
10616 2003-02-20 Akim Demaille <akim@epita.fr>
10617
10618 * data/lalr1.cc (position.hh): New subfile, including the extended
10619 and Doxygen'ed documentation of class Position.
10620 (location.hh): Use it.
10621 Document a` la Doxygen.
10622 With the help of Benoit Perrot.
10623
10624 2003-02-20 Akim Demaille <akim@epita.fr>
10625
10626 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
10627 AT_YACC_IF.
10628 Redefine AT_YYERROR_SEES_LOC_IF using it.
10629 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
10630 not defined.
10631 Don't use the location in yy::Parser::error_ and
10632 yy::Parser::print_ when not %locations.
10633 Activate more lalr1.cc tests.
10634
10635 2003-02-19 Akim Demaille <akim@epita.fr>
10636
10637 * data/lalr1.cc: When displaying a line number, be sure to make it
10638 an int.
10639
10640 2003-02-19 Akim Demaille <akim@epita.fr>
10641
10642 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
10643 Remove, useless.
10644 (YYABORT, YYACCEPT, YYERROR): New.
10645 * tests/calc.at: Renable the lalr1.cc test.
10646
10647 2003-02-19 Akim Demaille <akim@epita.fr>
10648
10649 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
10650 error recovery, mixing with/without pops and discarding of the
10651 lookahead.
10652 Exercise YYERROR.
10653 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
10654
10655 2003-02-17 Paul Eggert <eggert@twinsun.com>
10656
10657 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
10658 * tests/testsuite.at (AT_COMPILE): Use them.
10659 This fixes the testsuite problem reported by Robert Lentz in
10660 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
10661
10662 2003-02-12 Paul Eggert <eggert@twinsun.com>
10663
10664 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
10665 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
10666 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
10667 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
10668 Check for malloc failure, for consistency with yacc.c.
10669 (yytname_size): Remove, for consistency with yacc.c.
10670
10671 The bug still remains in data/lalr1.cc, as I didn't have time
10672 to fix it there.
10673
10674 2003-02-06 Akim Demaille <akim@epita.fr>
10675
10676 * configure.ac (GXX): Rename as...
10677 (CXX): this, to keep the original Autoconf semantics.
10678 Require 2.57.
10679 * data/lalr1.cc: Fix b4_copyright invocations.
10680 If YYDEBUG is not defined, don't depend upon name_ being defined.
10681 (location.hh): Include string and iostream.
10682 (Position::filename): New member.
10683 (Position::Position ()): New.
10684 (operator<< (Position)): New.
10685 (operator- (Position, int)): New.
10686 (Location::first, Location::last): Rename as...
10687 (Location::begin, Location::end): these, to mock the conventional
10688 iterator names.
10689 (operator<< (Location)): New.
10690 * tests/atlocal.in (CXX): New.
10691 * tests/testsuite.at (AT_COMPILE_CXX): New.
10692 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
10693 locations in a more synthetic way.
10694 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
10695 lalr1.cc is used.
10696 Adjust the C locations to match those from Emacs: first column is
10697 column 0.
10698 Change all the expected results.
10699 Conform to the GCS: simplify the locations when applicable.
10700 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
10701 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
10702 these CPP macros with the m4 macros new defined by...
10703 (AT_CHECK_PUSHDEFS): this, i.e.:
10704 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
10705 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
10706 New macros.
10707 (AT_CHECK_POPDEFS): Undefine them.
10708 (AT_CHECK_CALC_LALR1_CC): New.
10709 Use it for the first lalr1.cc test.
10710
10711 2003-02-04 Akim Demaille <akim@epita.fr>
10712
10713 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
10714 Location as is defined.
10715
10716 2003-02-04 Akim Demaille <akim@epita.fr>
10717
10718 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
10719 name_ being defined.
10720
10721 2003-02-03 Paul Eggert <eggert@twinsun.com>
10722
10723 * src/gram.h (start_symbol): Remove unused decl.
10724
10725 Use more-consistent naming conventions for local vars.
10726
10727 * src/derives.c (derives_compute): Change type of local var from
10728 int to rule_number.
10729 * src/gram.c (grammar_rules_partial_print): Likewise.
10730 * src/print.c (print_core): Likewise.
10731 * src/reduce.c (reduce_grammar_tables): Likewise.
10732
10733 * src/gram.c (grammar_dump): Change name of item_number *
10734 local var from r to rp.
10735 * src/nullable.c (nullable_compute): Likewise.
10736
10737 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
10738
10739 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
10740 for symbol or symbol_number var.
10741 * src/reader.c (grammar_start_symbol_set): Likewise.
10742 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
10743 Likewise.
10744 * src/state.c (transitions_to): Likewise.
10745 * src/state.h: Likewise.
10746 * src/tables.c (symbol_number_to_vector_number): Likewise.
10747
10748 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
10749 char * var.
10750
10751 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
10752 var.
10753
10754 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
10755 var.
10756
10757 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
10758 Use str, not s, for char * var. Use ch, not c, for character var.
10759 Use size for size var.
10760
10761 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
10762 char * var.
10763 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
10764 uniqstr var.
10765 * src/uniqstr.h: Likewise.
10766
10767 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
10768 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
10769 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
10770 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
10771 param to have same name as that of enum, so that we don't use
10772 "s" to stand for a non-state.
10773
10774 2003-02-02 Akim Demaille <akim@epita.fr>
10775
10776 * src/scan-skel.l: Scan more than one inert character per yylex
10777 invocation.
10778
10779 2003-02-01 Paul Eggert <eggert@twinsun.com>
10780
10781 Version 1.875a.
10782
10783 * po/LINGUAS: Add ms.
10784
10785 2003-01-30 Akim Demaille <akim@epita.fr>
10786
10787 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
10788
10789 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10790
10791 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
10792 of $1.
10793
10794 Changes in response to error report by S. Eken: GLR mode does not
10795 handle negative $ indices or $ indices in embedded rules correctly.
10796 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
10797
10798 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
10799 (b4_rhs_location): Ditto.
10800 (yyfill): New function to copy from stack tree into array
10801 incrementally.
10802 (yyuserAction): Modify to allow incremental move of semantic values
10803 to rhs array when in GLR mode.
10804 Define YYFILL to use in user-defined actions to fill semantic array
10805 as needed.
10806 Remove dummy use of yystack, as there is now a guaranteed use.
10807 (yydoAction): Modify to allow incremental move of semantic values
10808 to rhs array when in GLR mode.
10809 (yyresolveAction): Ditto.
10810 (yyglrShiftDefer): Update comment.
10811 (yyresolveStates): Use X == NULL for pointers, not !X.
10812 (yyglrReduce): Ditto.
10813 (yydoAction): Ditto
10814
10815 * tests/glr-regr1.at: Rename to ...
10816 * tests/glr-regression.at: Add new regression test for the problems
10817 described above (adapted from S. Eken).
10818 Update copyright notice.
10819 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
10820 * tests/Makefile.am: Ditto.
10821
10822 2003-01-28 Paul Eggert <eggert@twinsun.com>
10823
10824 * data/lalr1.cc: Do not use @output_header_name@ unless
10825 b4_defines_flag is set. This fixes two bugs reported by
10826 Tim Van Holder in
10827 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
10828 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
10829
10830 2003-01-21 Paul Eggert <eggert@twinsun.com>
10831
10832 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
10833 we don't need to worry about yyerrlab1 being reported as an
10834 "unused label" by non-GCC C compilers. The downside is that if
10835 locations are used then a couple of statements are duplicated each
10836 time YYERROR is invoked, but the upside is that the warnings
10837 should vanish.
10838 (yyerrlab1): Move code to YERROR.
10839 (yyerrlab2): Remove. Change uses back to yyerrlab1.
10840 This reverts some of the 2002-12-27 change.
10841
10842 2003-01-17 Paul Eggert <eggert@twinsun.com>
10843
10844 * src/output.c (symbol_printers_output): Fix typo that led
10845 to core dump. Problem reported by Antonio Rus in
10846 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
10847
10848 2003-01-13 Akim Demaille <akim@epita.fr>,
10849 Quoc Peyrot <chojin@lrde.epita.fr>,
10850 Robert Anisko <anisko_r@lrde.epita.fr>
10851
10852 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
10853 when the stacks contain one element, as the loop would otherwise
10854 free the last state, and then use the top state (the one we just
10855 popped). This means that the initial elements will not be freed
10856 explicitly, as is the case in yacc.c; it is not a problem, as
10857 these elements have fake values.
10858
10859 2003-01-11 Paul Eggert <eggert@twinsun.com>
10860
10861 * NEWS: %expect-violations are now just warnings, reverting
10862 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
10863 bootstrapping problem reported by Matthias Klose; see
10864 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
10865 * src/conflicts.c (conflicts_print): Likewise.
10866 * tests/conflicts.at (%expect not enough, %expect too much,
10867 %expect with reduce conflicts): Likewise.
10868 * doc/bison.texinfo (Expect Decl): Document this. Also mention
10869 that the warning is enabled if the number of conflicts changes
10870 (not necessarily increases).
10871
10872 * src/getargs.c (version): Update copyright year.
10873
10874 2003-01-09 Akim Demaille <akim@epita.fr>
10875
10876 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
10877
10878 2003-01-08 Paul Eggert <eggert@twinsun.com>
10879
10880 * Makefile.maint (WGETFLAGS):
10881 New macro, containing "-C off" to disable proxy caches.
10882 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
10883 (rel-check): Use $(WGET) instead of wget.
10884
10885 2003-01-06 Paul Eggert <eggert@twinsun.com>
10886
10887 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
10888 the GLR paper of Scott, Johnstone and Hussain.
10889
10890 2003-01-04 Paul Eggert <eggert@twinsun.com>
10891
10892 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
10893 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
10894 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
10895 (EXTRA_LIBRARIES): New var, for liby.a.
10896 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
10897 (EXTRA_SCRIPTS): New var, for yacc.
10898
10899 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
10900 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
10901 Problem reported by Nelson H. F. Beebe.
10902
10903 2003-01-03 Paul Eggert <eggert@twinsun.com>
10904
10905 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
10906 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
10907 when compiling Bison 1.875's `bitset bset = obstack_alloc
10908 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
10909
10910 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
10911 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
10912 grow to a huge size with typical invocation.
10913
10914 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
10915 Use the pattern recommended by Autoconf 2.57, except also protect
10916 against double-definition.
10917 * src/system.h: Likewise.
10918 Portability issues reported by Nelson H. F. Beebe.
10919
10920 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
10921 All uses changed. Provide a definition in both C and C++.
10922 (yytrue, yyfalse): Define even if defined (__cplusplus).
10923
10924 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
10925 Reported by Nelson H. F. Beebe.
10926
10927 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
10928
10929 2003-01-02 Paul Eggert <eggert@twinsun.com>
10930
10931 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
10932 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
10933 Bug reported by Nelson H. F. Beebe.
10934
10935 2003-01-01 Paul Eggert <eggert@twinsun.com>
10936
10937 * Version 1.875.
10938
10939 2002-12-30 Paul Eggert <eggert@twinsun.com>
10940
10941 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
10942 Moved here from...
10943 (<INITIAL>","): Here. This causes stray "," to be treated
10944 more uniformly.
10945
10946 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
10947 last brace in braced code when not in Yacc mode, for compatibility
10948 with Bison 1.35. This resurrects the 2001-12-15 patch to
10949 src/reader.c.
10950
10951 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
10952 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
10953
10954 2002-12-28 Paul Eggert <eggert@twinsun.com>
10955
10956 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
10957 that of SYM's type. This fixes Debian bug 168069, reported by
10958 Thomas Olsson.
10959
10960 2002-12-28 Paul Eggert <eggert@twinsun.com>
10961
10962 Version 1.75f.
10963
10964 Switch back to the Yacc style of conflict reports, undoing some
10965 of the 2002-07-30 change.
10966 * doc/bison.texinfo (Understanding): Use Yacc style for
10967 conflict reports. Also, use new way of locating rules.
10968 * src/conflicts.c (conflict_report):
10969 Renamed from conflict_report_yacc, removing the old
10970 'conflict_report'. Translate the entire conflict report at once,
10971 so that we don't assume that "," has the same interpretation in
10972 all languages.
10973 (conflicts_output): Use Yacc-style conflict report for each state,
10974 instead of our more-complicated style.
10975 (conflicts_print): Use Yacc-style conflict report, except print
10976 the input file name when not emulating Yacc.
10977 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
10978 Conflicted Reduction, %expect not enough, %expect too much,
10979 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
10980 * tests/existing.at (GNU Cim Grammar): Likewise.
10981 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
10982
10983 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
10984 fatal): Don't invoke fflush; it's not needed and it might even be
10985 harmful for stdout, as stdout might not be open.
10986 * src/reduce.c (reduce_print): Likewise.
10987
10988 2002-12-27 Paul Eggert <eggert@twinsun.com>
10989
10990 Fix a bug where error locations were not being recorded correctly.
10991 This problem was originally reported by Paul Hilfinger in
10992 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
10993
10994 * data/yacc.c (yyparse): New local var yylerrsp, to record the
10995 top of the location stack's error locations.
10996 (yyerrlab): Set it. When discarding a token, push its location
10997 onto yylerrsp so that we don't lose track of the error's end.
10998 (yyerrlab1): Now is only the target of YYERROR, so that we can
10999 properly record the location of the action that failed. For GCC
11000 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
11001 GCC warning about yyerrlab1 being unused if YYERROR is unused.
11002 (yyerrlab2): New label, which yyerrlab now falls through to.
11003 Compute the error's location by applying YYLLOC_DEFAULT to
11004 the locations of all the symbols that went into the error.
11005 * doc/bison.texinfo (Location Default Action): Mention that
11006 YYLLOC_DEFAULT is also invoked for syntax errors.
11007 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11008 Error locations include the locations of all the tokens that were
11009 discarded, not just the last token.
11010
11011 2002-12-26 Paul Eggert <eggert@twinsun.com>
11012
11013 * src/files.c: Include quote.h.
11014 (compute_output_file_names): Warn if we detect conflicting
11015 outputs to the same file. This should catch the misunderstanding
11016 exemplified by Debian Bug 165349, reported by Bruce Stephens..
11017
11018 * src/conflicts.c (conflicts_print): If the user specifies
11019 "%expect N", report an error if there are any reduce/reduce
11020 conflicts. This is what the manual says should happen.
11021 This fixes Debian bug 130890, reported by Anthony DeRobertis.
11022 * tests/conflicts.at (%expect with reduce conflicts): New test.
11023
11024 Don't use m4_include on relative file names, as it doesn't work as
11025 desired if there happens to be a file with that name under ".".
11026
11027 * m4sugar/version.m4: Remove; it was included but it wasn't used.
11028 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
11029 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
11030 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
11031 * src/output.c (output_skeleton): Use full path names when
11032 specifying a file to include; don't rely on include path, as
11033 it's unreliable when the working file contains a file with
11034 that name.
11035
11036 2002-12-25 Paul Eggert <eggert@twinsun.com>
11037
11038 Remove obsolete references to bison.simple and bison.hairy.
11039 Problem mentioned by Aubin Mahe in
11040 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
11041 * data/glr.c: Comment fix.
11042 * doc/bison.1: Remove references. Also, mention "yacc".
11043
11044 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
11045 with -g option.
11046
11047 * src/parse-gram.y (declaration): Use enum "report_states" rather
11048 than its numeric value 1.
11049
11050 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
11051 opening a new one. This fixes Debian bug 165349, reported by
11052 Bruce Stephens.
11053
11054 2002-12-24 Paul Eggert <eggert@twinsun.com>
11055
11056 Version 1.75e.
11057
11058 * Makefile.maint (cvs-update): Don't assume that the shell
11059 supports $(...), as Solaris sh doesn't.
11060
11061 * src/parse-gram.y (lloc_default): Remove test for empty
11062 nonterminals at the end, since it didn't change the result.
11063
11064 2002-12-24 Paul Eggert <eggert@twinsun.com>
11065
11066 If the user does not define YYSTYPE as a macro, Bison now declares it
11067 using typedef instead of defining it as a macro. POSIX requires this.
11068 For consistency, YYLTYPE is also declared instead of defined.
11069
11070 %union directives can now have a tag before the `{', e.g., the
11071 directive `%union foo {...}' now generates the C code
11072 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
11073 The default union tag is `YYSTYPE', for compatibility with Solaris 9
11074 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
11075 instead of `yyltype'.
11076
11077 `yystype' and `yyltype' are now obsolescent macros instead of being
11078 typedefs or tags; they are no longer documented and will be
11079 withdrawn in a future release.
11080
11081 * data/glr.c (b4_location_type): Remove.
11082 (YYSTYPE): Renamed from yystype.
11083 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
11084 (struct YYLTYPE): Renamed from struct yyltype.
11085 (YYLTYPE): Renamed from yyltype.
11086 (yyltype, yystype): New (and obsolescent) macros,
11087 for backward compatibility.
11088 * data/yacc.c: Likewise.
11089
11090 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
11091 does not specify a union tag. This is for compatibility with
11092 Solaris 9 yacc.
11093
11094 * src/parse-gram.y (add_param): 2nd arg is now char * not char
11095 const *, since it is now modified by stripping surrounding { }.
11096 (current_braced_code): Remove.
11097 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
11098 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
11099 trailing " {...}". Now of type <chars>.
11100 (grammar_declaration): Adjust to bundled tokens.
11101 (code_content): Remove; stripping is now done by add_param.
11102 (print_token_value): Print contents of bundled tokens.
11103 (token_name): New function.
11104
11105 * src/reader.h (braced_code, current_braced_code): Remove.
11106 (token_name): New decl.
11107
11108 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
11109 token_type, not braced_code code_kind. All uses changed.
11110 (SC_PRE_CODE): New state, for scanning after a keyword that
11111 has (or usually has) an immediately-following braced code.
11112 (token_type): New local var, to keep track of which token type
11113 to return when scanning braced code.
11114 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
11115 <INITIAL>"%parse-param", <INITIAL>"%printer",
11116 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
11117 instead of returning a token type immediately.
11118 (<INITIAL>"{"): Set token type.
11119 (<SC_BRACED_CODE>"}"): Use it.
11120 (handle_action_dollar, handle_action_at): Now returns bool
11121 indicating success. Fail if ! current_rule; this prevents a core dump.
11122 (handle_symbol_code_dollar, handle_symbol_code_at):
11123 Remove; merge body into caller.
11124 (handle_dollar, handle_at): Complain in invalid contexts.
11125
11126 * NEWS, doc/bison.texinfo: Document the above.
11127 * NEWS: Fix years and program names in copyright notice.
11128
11129 2002-12-17 Paul Eggert <eggert@twinsun.com>
11130
11131 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
11132 Reporting, Table of Symbols): Omit mentions of %lex-param and
11133 %parse-param from the documentation for now.
11134
11135 2002-12-15 Paul Eggert <eggert@twinsun.com>
11136
11137 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
11138 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
11139 lookahead symbol, and which sets yychar in parser actions) and it
11140 disagreed with the Bison documentation. Bug
11141 reported by Andrew Walrond.
11142
11143 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
11144 as the caller now does that.
11145 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
11146 (YYEMPTY): Parenthesize right hand side, since others use it.
11147 (yyparse): Don't assume that our generated code is the only code
11148 that sets yychar.
11149
11150 2002-12-13 Paul Eggert <eggert@twinsun.com>
11151
11152 Version 1.75d.
11153
11154 POSIX requires a "yacc" command.
11155 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
11156 (MOSTLYCLEANFILES): Add yacc.
11157 (yacc): New rule.
11158 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
11159 as an alias for bison y.
11160
11161 * po/LINGUAS: Add da.
11162
11163 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
11164 problem with latest <getopt.h>.
11165 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
11166
11167 * doc/fdl.texi: Upgrade to 1.2.
11168 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
11169 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
11170 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
11171 gnulib.
11172 * config/install-sh: Sync with autotools.
11173
11174 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
11175 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
11176 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
11177 locations are requested.
11178 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
11179 locations are requested.
11180
11181 2002-12-12 Paul Eggert <eggert@twinsun.com>
11182
11183 Remove unportable casts and storage allocation tricks.
11184 While we're at it, remove almost all casts, since they
11185 usually aren't needed and are a sign of trouble.
11186
11187 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
11188
11189 * src/derives.c (derives_compute): Do not subtract NTOKENS from
11190 the pointer DSET returned by malloc; this isn't portable.
11191 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
11192 Similarly for DERIVES.
11193 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
11194 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
11195 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
11196
11197 * src/derives.c (derives_compute): Do not bother invoking
11198 int_of_rule_number, since rule numbers are integers.
11199
11200 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
11201 rather than XMALLOC (char, N).
11202
11203 * src/files.c (filename_split): Rewrite to avoid cast.
11204
11205 * src/gram.h (symbol_number_as_item_number,
11206 item_number_as_symbol_number, rule_number_as_item_number,
11207 item_number_as_rule_number):
11208 Now inline functions rather than macros, to avoid casts.
11209 * src/state.h (state_number_as_int): Likewise.
11210 * src/tables.c (state_number_to_vector_number,
11211 symbol_number_to_vector_number): Likewise.
11212
11213 * src/gram.h (int_of_rule_number): Remove; no longer used.
11214
11215 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
11216 since the resulting storage is always stored into.
11217
11218 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
11219 where it's needed.
11220
11221 * src/muscle_tab.c (muscle_m4_output):
11222 Now inline. Return bool, not int.
11223 * src/state.c (state_compare): Likewise.
11224 * src/symtab.c (symbol_check_defined,
11225 symbol_check_alias_consistency, symbol_pack, symbol_translation,
11226 hash_compare_symbol, hash_symbol):
11227 Likewise.
11228 * src/uniqstr.c (uniqstr_print): Likewise.
11229 * src/muscle_tab.c (muscle_m4_output_processor):
11230 New function, to avoid casts.
11231 * src/state.c (state_comparator, stage_hasher): Likewise.
11232 * src/symtab.c (symbol_check_defined_processor,
11233 symbol_check_alias_consistency_processor, symbol_pack_processor,
11234 symbol_translation_processor, hash_symbol_comparator,
11235 hash_symbol_hasher): Likewise.
11236 * src/uniqstr.c (uniqstr_print_processor): Likewise.
11237 * src/muscle_tab.c (muscles_m4_output):
11238 Use new functions instead of casting old functions unportably.
11239 * src/state.c (state_hash_new): Likewise.
11240 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
11241 symbols_token_translations_init):
11242 Likewise.
11243 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
11244
11245 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
11246 var instead of casting to long, to avoid casts.
11247 (prepare_states): Use MALLOC rather than alloca, so that we don't
11248 have to worry about alloca.
11249 * src/state.c (state_hash_lookup): Likewise.
11250
11251 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
11252 local var instead of casting to unsigned char, to avoid casts.
11253
11254 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
11255 STATE_ALLOC): Remove.
11256 (transitions_new, errs_new, reductions_new, state_new): Use malloc
11257 rather than calloc, and use offsetof to avoid allocating slightly
11258 too much storage.
11259 (state_new): Initialize all members.
11260
11261 * src/state.c (state_hash): Use unsigned accumulator, not signed.
11262
11263 * src/symtab.c (symbol_free): Remove; unused.
11264 (symbol_get): Remove cast in lhs of assignment.
11265 (symbols_do): Now static. Accept generic arguments, not
11266 hashing-related ones.
11267
11268 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
11269 (symbol_processor): Remove.
11270 (symbols_do): Remove decl; now static.
11271
11272 * src/system.h (alloca): Remove; decl no longer needed.
11273 (<stddef.h>): Include, for offsetof.
11274 (<inttypes.>, <stdint.h>): Include if available.
11275 (uintptr_t): New type, if system lacks it.
11276 (CALLOC, MALLOC, REALLOC): New macros.
11277 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
11278 new macros.
11279
11280 * src/tables.c (table_size): Now int, to pacify GCC.
11281 (table_grow, table_ninf_remap): Use signed table size.
11282 (save_row): Don't bother initializing locals when not needed.
11283 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
11284 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
11285
11286 * src/vcg.h: Correct misspellings.
11287
11288 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
11289
11290
11291 * src/getargs.c (getargs): Don't assume EOF == -1.
11292
11293 2002-12-09 Paul Eggert <eggert@twinsun.com>
11294
11295 Change identifier spellings to avoid collisions with names
11296 that are reserved by POSIX.
11297
11298 Don't use names ending in _t, since POSIX reserves them.
11299 For consistency, remove _e and _s endings -- they're weren't
11300 needed to remove ambiguity. All uses changed.
11301 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
11302 turn was just renamed from struniq_t.
11303 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
11304 which in turn was just renamed from struniq_processor_t.
11305 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
11306 in turn was renamed from hash_compare_struniq_t.
11307 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
11308 (state_list): Renamed from state_list_t.
11309 * src/assoc.h (assoc): Renamed from assoc_t.
11310 * src/conflicts.c (enum conflict_resolution): Renamed from
11311 enum conflict_resolution_e.
11312 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
11313 (rule_list): Renamed from rule_list_t.
11314 * src/getargs.h (enum trace): Renamed from enum trace_e.
11315 (enum report): Renamed from enum report_e.
11316 * src/gram.h (item_number): Renamed from item_number_t.
11317 (rule_number): Renamed from rule_number_t.
11318 (struct rule_s): Remove the "rule_s" part; not used.
11319 (rule): Renamed from rule_t.
11320 (rule_filter): Renamed from rule_filter_t.
11321 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
11322 (goto_list): Renamed from goto_list_t.
11323 * src/lalr.h (goto_number): Renamed from goto_number_t.
11324 * src/location.h (location): Renamed from location_t.
11325 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
11326 and moved here from:
11327 * src/muscle_tab.h (muscle_entry_t): here.
11328 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
11329 (rule_list): Renamed from rule_list_t.
11330 * src/print_graph.c (static_graph): Renamed from graph.
11331 * src/reader.h (braced_code): Renamed from braced_code_t.
11332 Remove brace_code_e tag.
11333 * src/relation.h (relation_node): Renamed from relation_node_t.
11334 (relation_nodes): Renamed from relation_nodes_t.
11335 (relation): Renamed from relation_t.
11336 * src/state.h (state_number): Renamed from state_number_t.
11337 (struct state): Renamed from struct state_s.
11338 (state): Renamed from state_t.
11339 (transitions): Renamed from transitions_t. Unused (and
11340 misspelled) transtion_s tag removed.
11341 (errs): Renamed from errs_t. Unused errs_s tag removed.
11342 (reductions): Renamed from reductions_t. Unused tag
11343 reductions_s removed.
11344 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
11345 (struct symbol_list): Renamed from struct symbol_list_s.
11346 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
11347 (struct symbol): Renamed from struct symbol_s.
11348 (symbol): Renamed from symbol_t.
11349 * src/tables.c (vector_number): Renamed from vector_number_t.
11350 (action_number): Renamed from action_t.
11351 * src/tables.h (base_number): Renamed from base_t.
11352 * src/vcg.h (enum color): Renamed from enum color_e.
11353 (enum textmode): Renamed from enum textmode_e.
11354 (enum shape): Renamed from enum shape_e.
11355 (struct colorentry): Renamed from struct colorentry_s.
11356 (struct classname): Renamed from struct classname_s.
11357 (struct infoname): Renamed from struct infoname_s.
11358 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
11359 (enum decision): Renamed from enum decision_e.
11360 (enum orientation): Renamed from enum orientation_e.
11361 (enum alignment): Renamed from enum alignment_e.
11362 (enum arrow_mode): Renamed from enum arrow_mode_e.
11363 (enum crossing_type): Renamed from enum crossing_type_e.
11364 (enum view): Renamed from enum view_e.
11365 (struct node): Renamed from struct node_s.
11366 (node): Renamed from node_t.
11367 (enum linestyle): Renamed from enum linestyle_e.
11368 (enum arrowstyle): Renamed from enum arrowstyle_e.
11369 (struct edge): Renamed from struct edge.
11370 (edge): Renamed from edge_t.
11371 (struct graph): Renamed from struct graph_s.
11372 (graph): Renamed from graph_t.
11373 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
11374 Rename value_t -> value.
11375 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
11376 value_t_as_yystype -> value_as_yystype.
11377
11378 Don't include <errno.h> in the mainstream code, since it
11379 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
11380 * lib/get-errno.c, lib/get-errno.h: New files.
11381 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
11382 get-errno.c.
11383 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
11384 * src/output.c (output_skeleton): Likewise.
11385 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
11386 instead of errno.
11387 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
11388 Likewise.
11389 (handle_action_dollar, handle_action_at): Likewise.
11390 * src/system.h: Do not include <errno.h>.
11391 (TAB_EXT): Renamed from EXT_TAB.
11392 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
11393
11394 Avoid str[a-z]*, since <string.h> reserves that name space.
11395 Change all instances of "struniq" in names to "uniqstr", and
11396 likewise for "STRUNIQ" and "UNIQSTR".
11397 * src/uniqstr.c: Renamed from src/struniq.c.
11398 * src/uniqstr.h: Renamed from src/struniq.h.
11399 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
11400 * src/files.c (strsuffix): Remove; unused.
11401 (concat2): Renamed from stringappend. Now static.
11402 * src/files.h (strsuffix, stringappend): Remove; unused.
11403 * src/parse-gram.y (<chars>): Renamed from <string>.
11404 (<uniqstr>): Renamed from <struniq>.
11405 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
11406 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
11407 (struct graph_s.expand): Renamed from struct graph_s.stretch.
11408 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
11409 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
11410 (N_EXPAND): Renamed from N_STRETCH.
11411
11412 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
11413 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
11414 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
11415 Remove; unused.
11416 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
11417 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
11418 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
11419 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
11420 (BASE_MAXIMUM): Renamed from BASE_MAX.
11421 (BASE_MINIMUM): Renamed from BASE_MIN.
11422 (ACTION_MAX): Remove; unused.
11423 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
11424 Unnecessary casts removed from above defines.
11425
11426
11427 Fix misspelling in names.
11428 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
11429 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
11430 G_NODE_ALIGNEMENT.
11431
11432
11433 * lib/timevar.c (timevar_report): Renamed from time_report,
11434 for consistency with other names.
11435 * lib/timevar.h (timevar_report): New decl.
11436 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
11437
11438
11439 Sort include-file uses.
11440
11441 Reorder all include files under src to be in the order "system.h".
11442 then the ../lib include files in angle brackets (alphabetized),
11443 then the . include files in double-quotes (alphabetized). Fix
11444 dependency breakages encountered in this process, as follows:
11445 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
11446 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
11447 * src/state.h: Include "symtab.h".
11448
11449 2002-12-08 Paul Eggert <eggert@twinsun.com>
11450
11451 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
11452 since this causes problems when __file__ contains character
11453 sequences like "@" that are treated specially by src/scan-skel.l.
11454 Instead, just use the file's basename. This fixes the bug
11455 reported by Martin Mokrejs in
11456 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
11457
11458 2002-12-06 Paul Eggert <eggert@twinsun.com>
11459
11460 Add support for rules that do not have trailing semicolons, as
11461 POSIX requires. Improve the quality of locations in Bison
11462 diagnostics.
11463
11464 * src/location.c: Include <quotearg.h>.
11465 (empty_location): Now const.
11466 (location_print): New function. Follow the recommendation of the
11467 GNU Coding Standards for locations that span file boundaries.
11468 * src/location.h: Do not include <quotearg.h>; no longer needed.
11469 (boundary): New type.
11470 (location_t): Use it. This allows locations to span file boundaries.
11471 All member uses changed: file -> start.file or end.file (as needed),
11472 first_line -> start.line, first_column -> start.column,
11473 last_line -> end.line, last_column -> end.column.
11474 (equal_boundaries): New function.
11475 (LOCATION_RESET, LOCATION_STEP): Remove.
11476 (LOCATION_PRINT): Remove. All callers changed to use location_print.
11477 (empty_location): Now const.
11478 (location_print): New decl.
11479 * src/parse-gram.y (lloc_default): New function, which handles
11480 empty locations more accurately.
11481 (YYLLOC_DEFAULT): Use it.
11482 (%token COLON): Remove.
11483 (%token ID_COLON): New token.
11484 (rules): Use it.
11485 (declarations, rules): Remove trailing semicolon.
11486 (declaration, rules_or_grammar_declaration):
11487 Allow empty (";") declaration.
11488 (symbol_def): Remove empty actions; no longer needed.
11489 (rules_or_grammar_declaration): Remove trailing semicolon.
11490 (semi_colon.opt): Remove.
11491 * src/reader.h: Include location.h.
11492 (scanner_cursor): New decl.
11493 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
11494 rolling our own.
11495 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
11496 of *loc.
11497 (STEP): Remove. No longer needed, now that adjust_location does
11498 the work. All uses removed.
11499 (scanner_cursor): New var.
11500 (adjust_location): Renamed from extend_location. It now sets
11501 *loc and adjusts the scanner cursor. All uses changed.
11502 Don't bother testing for CR.
11503 (handle_syncline): Remove location arg; now updates scanner cursor.
11504 All callers changed.
11505 (unexpected_end_of_file): Now accepts start boundary of token or
11506 comment, not location. All callers changed. Update scanner cursor,
11507 not the location.
11508 (SC_AFTER_IDENTIFIER): New state.
11509 (context_state): Renamed from c_context. All uses changed.
11510 (id_loc, code_start, token_start): New local vars.
11511 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
11512 processing of Yacc white space and equivalents here.
11513 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
11514 instead of returning ID immediately, since we need to search for
11515 a subsequent colon.
11516 (<INITIAL>"'", "\""): Save token_start.
11517 (<INITIAL>"%{", "{", "%%"): Save code_start.
11518 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
11519 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
11520 BEGIN context_state at end, not INITIAL.
11521 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
11522 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
11523 Return correct token start.
11524 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
11525 the start of a character, string or multiline comment is found.
11526 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
11527 Reduction): Adjust reported locations to match the more-precise
11528 results now expected.
11529 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
11530 * tests/reduce.at (Useless Rules, Reduced Automaton,
11531 Underivable Rules): Likewise.
11532 * tests/regression.at (Invalid inputs): No longer `expecting ";"
11533 or "|"' now that so many other tokens are allowed by the new grammar.
11534
11535 * src/complain.h (current_file): Remove duplicate decl;
11536 current_file is now owned by files.h.
11537 * src/complain.c, src/scan-gram.l: Include files.h.
11538
11539 2002-12-06 Paul Eggert <eggert@twinsun.com>
11540
11541 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
11542 promotes to int; it might be unsigned int.
11543 * data/yacc.c (yy_reduce_print): Likewise.
11544
11545 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
11546 be #defined in the prologue, not in the Bison declarations.
11547 This fixes Debian Bug 102878, reported by Shaul Karl.
11548
11549 2002-12-02 Paul Eggert <eggert@twinsun.com>
11550
11551 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
11552 * lib/strtoul.c: New file, from gnulib.
11553 This fixes a porting bug reported by Peter Klein in
11554 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
11555
11556 2002-11-30 Paul Eggert <eggert@twinsun.com>
11557
11558 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
11559 and put only a forward declaration in the prologue. This is for
11560 consistency with the other scanner helper functions.
11561
11562 Type clashes now generate warnings, not errors, since it
11563 appears that POSIX may allow some grammars with type clashes.
11564 * src/reader.c (grammar_current_rule_check): Warn about
11565 type clashes instead of complaining.
11566 * tests/input.at (Type Clashes): Expect warnings, not complaints.
11567
11568 Add Yacc library, since POSIX requires it.
11569 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
11570 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
11571 * lib/main.c, lib/yyerror.c: New files.
11572
11573 gram_error can be static; it need not be extern.
11574 * src/reader.h (gram_error): Remove decl.
11575 * src/parse-gram.y (gram_error): Now static. Add static decl.
11576 (print_token_value): Omit parameter names from forward decl,
11577 for consistency.
11578
11579 2002-11-29 Paul Eggert <eggert@twinsun.com>
11580
11581 * doc/bison.texinfo: Emphasize that yylex and yyerror must
11582 be declared before being used. E.g., one should typically
11583 declare them in the prologue. Use GNU coding style in examples.
11584 Put "const" consistently after the type it modifies. Mention
11585 that C99 supports "inline". Mention that yyerror traditionally
11586 returns "int".
11587
11588 %parse-param and %lex-param now take just one argument, the
11589 declaration; the argument name is deduced from the declaration.
11590
11591 * doc/bison.texinfo (Parser Function, Pure Calling, Error
11592 Reporting, Table of Symbols): Document this.
11593 * src/parse-gram.y (add_param): New function.
11594 (COMMA): Remove.
11595 (declaration): Implement new rule for %parse-param and %lex-param.
11596 * src/scan-gram.l: "," now elicits a warning, rather than being
11597 a token; this is more compatible with byacc.
11598 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
11599
11600 2002-11-27 Paul Eggert <eggert@twinsun.com>
11601
11602 Rename identifiers to avoid real and potential collisions.
11603
11604 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
11605 to avoid collision with lex macro described by Bruce Lilly in
11606 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
11607 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
11608 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
11609 * src/parse-gram.y (print_token_value): Renamed from yyprint.
11610 All uses changed.
11611 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
11612 The name "yycontrol" violates the name space rules, and this stuff
11613 wasn't being used anyway.
11614 (input): Remove action; this stuff wasn't being used.
11615 (gram_error): Rename local variable yylloc -> loc.
11616 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
11617 (YY_DECL): Don't use "yy" at start of local variables.
11618 All uses changed, e.g., yylloc -> loc.
11619 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
11620 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
11621 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
11622 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
11623
11624 * src/parse-gram.y (gram_error): loc is now const *.
11625 * src/reader.h (gram_error): Likewise.
11626
11627 2002-11-24 Paul Eggert <eggert@twinsun.com>
11628
11629 Version 1.75c.
11630
11631 * tests/actions.at (Actions after errors): Use an output format
11632 more similar to that of the Printers and Destructors test.
11633 Test the position of the ';' token too.
11634 (Printers and Destructors): Likewise.
11635 (Printers and Destructors: %glr-parser): Remove for now, to avoid
11636 unnecessarily alarming people when the test fails.
11637
11638 * data/yacc.c (yyerrlab1): Move this label down, so that the
11639 parser does not discard the lookahead token if the user code
11640 invokes YYERROR. This change is required for POSIX conformance.
11641
11642 * lib/error.c: Sync with gnulib.
11643
11644 2002-11-22 Paul Eggert <eggert@twinsun.com>
11645
11646 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
11647 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
11648 * lib/xmalloc.c: Likewise.
11649
11650 2002-11-20 Paul Eggert <eggert@twinsun.com>
11651
11652 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
11653
11654 2002-11-20 Paul Eggert <eggert@twinsun.com>
11655
11656 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
11657 should use `if (! x) abort ();' rather than `assert (x);', and
11658 anyway it's one less thing to worry about configuring.
11659
11660 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
11661 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
11662 and replace all instances of assert with abort.
11663 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
11664 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
11665
11666 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
11667 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
11668 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
11669 hash_find_entry, hash_rehash, hash_insert): Likewise.
11670 * src/conflicts.c (resolve_sr_conflict): Likewise.
11671 * src/lalr.c (set_goto_map, map_goto): Likewise.
11672 * src/nullable.c (nullable_compute): Likewise.
11673 * src/output.c (prepare_rules, token_definitions_output): Likewise.
11674 * src/reader.c (packgram, reader): Likewise.
11675 * src/state.c (state_new, state_free, state_transitions_set,
11676 state_reduction_find): Likewise.
11677 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
11678 symbol_pack): Likewise.
11679 * src/tables.c (conflict_row, pack_vector): Likewise.
11680 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
11681 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
11682 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
11683 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
11684
11685 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
11686 (ARGMATCH_CONSTRAINT): New macro.
11687 (ARGMATCH_ASSERT): Use it.
11688
11689 * src/system.h (verify): New macro.
11690 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
11691 rather than assert.
11692 * src/tables.c (tables_generate): Likewise.
11693
11694 * src/struniq.c (struniq_assert): Now returns void, and aborts
11695 if the assertion is false.
11696 (struniq_assert_p): Remove.
11697 * src/struniq.h: Likewise.
11698
11699 2002-11-18 Paul Eggert <eggert@twinsun.com>
11700
11701 * data/glr.c (yygetLRActions): Replace `yyindex' with
11702 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
11703 This fixes the regression with Sun ONE Studio 7 cc that I reported in
11704 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
11705
11706 2002-11-18 Akim Demaille <akim@epita.fr>
11707
11708 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
11709 space.
11710 From Tim Van Holder.
11711
11712 2002-11-17 Paul Eggert <eggert@twinsun.com>
11713
11714 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
11715 to "SyntaxError" for consistency with my 2002-11-15 change.
11716
11717 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
11718 not define to {}, since this breaks the common use of `YYDPRINTF
11719 ((...));' if a single statement is desired (e.g. before `else').
11720 Work around GCC warnings by surrounding corresponding calls with
11721 {} if needed.
11722 (yyhasResolvedValue): Remove unused function.
11723 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
11724 loop body.
11725 (yyreportSyntaxError): Renamed from yyreportParseError.
11726 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
11727 All uses changed.
11728 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
11729 extern when possible. Remove unused initializations.
11730
11731 2002-11-16 Akim Demaille <akim@epita.fr>
11732
11733 Augment the similarity between GLR and LALR traces.
11734
11735 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
11736 (YY_REDUCE_PRINT): New.
11737 (yyparse): Use them.
11738 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
11739 YYDPRINT here.
11740 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
11741 state reached after the reduction/recovery, since...
11742 (yyparse, yyprocessOneStack): Report the state we are entering in.
11743
11744 2002-11-16 Akim Demaille <akim@epita.fr>
11745
11746 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
11747 Add support for --trace=skeleton.
11748 * src/scan-skel.l: %option debug.
11749 Scan strings of non-@ or \n instead of character by character.
11750 (scan_skel): Handle trace_skeleton.
11751 (QPUTS): New.
11752 (@output_parser_name@, @output_header_name@): ``Restore'' their
11753 support (used to be M4 macros).
11754 * data/yacc.c: Quote larger chunks, a la glr.c.
11755 * data/lalr1.cc: Likewise.
11756 The header guards are no longer available, so use some other
11757 string than `YYLSP_NEEDED'.
11758
11759 2002-11-16 Akim Demaille <akim@epita.fr>
11760
11761 Make the ``Printers and Destructors'' test more verbose, taking
11762 `yacc.c''s behavior as (possibly wrong) reference.
11763
11764 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
11765 instead of fprint on stdout.
11766 Set and report the last_line of the symbols.
11767 Consistently display values and locations.
11768
11769 2002-11-16 Paul Eggert <eggert@twinsun.com>
11770
11771 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
11772
11773 2002-11-15 Paul Eggert <eggert@twinsun.com>
11774
11775 * tests/actions.at (Actions after errors): New test case.
11776
11777 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
11778 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
11779 tests/action.at, tests/calc.at, tests/conflicts.at,
11780 tests/cxx-type.at, tests/regression.at:
11781 "parse error" -> "syntax error" for POSIX compatibility.
11782 "parsing stack overflow..." -> "parser stack overflow" so
11783 that code matches Bison documentation.
11784
11785 2002-11-15 Akim Demaille <akim@epita.fr>
11786
11787 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
11788 take two BRACED_CODE, not two string_content.
11789 Free the scanner's obstack when we are done.
11790 (code_content): New.
11791 * tests/calc.at: Adjust.
11792 * doc/bison.texinfo: Adjust.
11793 Also, make sure to include the `,' for these declarations.
11794
11795 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
11796
11797 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
11798 definition; avoids potential autoreconf problems.
11799
11800 2002-11-15 Akim Demaille <akim@epita.fr>
11801
11802 Always check the value returned by yyparse.
11803
11804 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
11805 returned by yyparse.
11806 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
11807 Adjust calls.
11808 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
11809 returned by yyparse.
11810
11811 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11812
11813 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
11814 on input.at test.
11815
11816 2002-11-14 Paul Eggert <eggert@twinsun.com>
11817
11818 * src/output.c (output_skeleton): Call xfopen instead of
11819 duplicating xfopen's body.
11820
11821 Fix bugs reported by Nelson H. F. Beebe in
11822 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
11823
11824 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
11825 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
11826 Group compiler. Instead, use "$CC -E bar.c". Include the .h
11827 file twice in the grammar, as an extra check.
11828
11829 * tests/input.at (Torturing the Scanner): Surround the
11830 backslash-newline tests with "#if 0", to make it less likely that
11831 we'll run into compiler bugs. Bring back solitary \ inside
11832 comment, but add a closing comment to work around HP C bug. Don't
11833 test backslash-newline in C character constant.
11834
11835 2002-11-14 Akim Demaille <akim@epita.fr>
11836
11837 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
11838 status of the compiler.
11839 Calling `exit 1' is no longer needed.
11840 Reported by Nelson H. F. Beebe.
11841
11842 2002-11-14 Akim Demaille <akim@epita.fr>
11843
11844 * tests/atlocal.in (CPPFLAGS): We have config.h.
11845 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
11846 New.
11847 * tests/actions.at, tests/calc.at, tests/conflicts.at,
11848 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
11849 * tests/regression.at, tests/torture.at: Use them for all the
11850 grammars that are to be compiled.
11851 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
11852 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
11853 * doc/bison.texinfo (GLR Parsers): Document `inline'.
11854
11855 2002-11-14 Akim Demaille <akim@epita.fr>
11856
11857 * doc/bison.texinfo: Various formatting changes (alignments in
11858 samples, additional @group/@end group, GCS in samples.
11859 Use @deffn instead of simple @table to define the directives,
11860 macros, variables etc.
11861
11862 2002-11-13 Paul Eggert <eggert@twinsun.com>
11863
11864 Fix some bugs reported by Albert Chin-A-Young in
11865 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
11866
11867 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
11868 -o c"; the HP C compiler chatters during compilation.
11869 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
11870 * tests/headers.at (export YYLTYPE): Likewise.
11871
11872 * tests/input.at (Torturing the Scanner): Remove lines containing
11873 solitary backslashes, as they tickle a bug in the HP C compiler.
11874
11875 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
11876 comments, since they're not portable. Use GNU coding style.
11877
11878 2002-11-13 Akim Demaille <akim@epita.fr>
11879
11880 * data/yacc.c: Leave bigger chunks of quoted text.
11881 (YYDSYMPRINTF): New.
11882 Use it to report symbol activities.
11883 * data/glr.c (YYDSYMPRINTF): New.
11884 Use it.
11885
11886 2002-11-12 Paul Eggert <eggert@twinsun.com>
11887
11888 Version 1.75b.
11889
11890 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
11891 (yyglrReduce): Return yyok, not 0.
11892 This should avoid the enumerated-type warnings reported
11893 by Nelson H. F. Beebe in
11894 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
11895
11896 * lib/bbitset.h (BITSET_INLINE): Remove.
11897 * lib/bitset.h [! BITSET_INLINE]: Remove.
11898 (bitset_set, bitset_reset, bitset_test): Rename local vars
11899 to avoid shadowing warnings by GCC.
11900
11901 * data/glr.c (inline): Remove #define. It's the user's
11902 responsibility to #define it away, just like 'const'.
11903 This fixes one of the bugs reported by Nelson H. F. Beebe in
11904 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
11905
11906 * Makefile.maint (po-check): Scan .l and .y files instead of the
11907 .c and the .h files that they generate. This fixes the bug
11908 reported by Tim Van Holder in:
11909 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
11910 Look for N_ as well as for _. Try to avoid matching #define for
11911 N_ and _.
11912 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
11913 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
11914 * src/scan-gram.l: Revamp regular expressions so that " and '
11915 do not confuse xgettext.
11916
11917 * src/struniq.h (struniq_new): Do not declare the return type
11918 to be 'const'; this violates the C standard.
11919 * src/struniq.c (struniq_new): Likewise.
11920
11921 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
11922
11923 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
11924 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
11925 linker.
11926
11927 2002-11-12 Akim Demaille <akim@epita.fr>
11928
11929 * Makefile.maint: Sync with Autoconf:
11930 (local_updates): New.
11931
11932 2002-11-12 Akim Demaille <akim@epita.fr>
11933
11934 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
11935
11936 2002-11-12 Akim Demaille <akim@epita.fr>
11937
11938 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
11939 locations.
11940
11941 2002-11-12 Akim Demaille <akim@epita.fr>
11942
11943 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
11944 not yyvalue.
11945
11946 2002-11-12 Akim Demaille <akim@epita.fr>
11947
11948 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
11949 Use it to test the GLR parser.
11950
11951 2002-11-12 Akim Demaille <akim@epita.fr>
11952
11953 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
11954 defines it.
11955 * data/glr.c (yystos): New.
11956 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
11957 (YYDSYMPRINT): New.
11958 (yyval): Don't define it, it is handled via M4.
11959 (yyrecoverParseError): Free verbosely the discarded symbols.
11960 * data/yacc.c (yysymprint): Remove, rather...
11961 (b4_yysymprint_generate): invoke.
11962 * data/c.m4 (b4_yysymprint_generate): New.
11963 Accept pointers as arguments, as opposed to the version from
11964 yacc.c.
11965 (b4_yydestruct_generate): Likewise.
11966 * tests/cations.at (Printers and Destructors): Use Bison directives
11967 instead of CPP macros.
11968 Don't rely on internal details.
11969
11970 2002-11-12 Akim Demaille <akim@epita.fr>
11971
11972 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
11973 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
11974 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
11975 it against YYEMPTY and so forth), work on yytoken (i.e., set
11976 it to YYEMPTY etc.).
11977 (yydestruct): Replace with a b4_yydestruct_generate invocation.
11978 (b4_symbol_actions): Remove.
11979 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
11980 for 0, end-of-input.
11981
11982 2002-11-12 Akim Demaille <akim@epita.fr>
11983
11984 * doc/bison.texinfo (Destructor Decl): New.
11985
11986 2002-11-12 Akim Demaille <akim@epita.fr>
11987
11988 * src/tables.c (tables_generate): Use free for pointers that
11989 cannot be NULL, not XFREE.
11990 (pack_vector): Use assert, not fatal, for bound violations.
11991 * src/state.c (state_new): Likewise.
11992 * src/reader.c (reader): Likewise.
11993 * src/lalr.c (set_goto_map): Likewise.
11994 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
11995 the file name.
11996
11997 2002-11-12 Akim Demaille <akim@epita.fr>
11998
11999 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
12000 Restore.
12001 * src/scan-gram.l (last_string): Is global to the file, not to
12002 yylex.
12003 * src/parse-gram.y (input): Don't append the epilogue here,
12004 (epilogue.opt): do it here, and free the scanner's obstack.
12005 * src/reader.c (epilogue_set): Rename as...
12006 (epilogue_augment): this.
12007 * data/c.m4 (b4_epilogue): Defaults to empty.
12008
12009 2002-11-12 Akim Demaille <akim@epita.fr>
12010
12011 * src/getargs.c (long_options): Remove duplicates.
12012 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
12013 Remove.
12014 * doc/bison.rnh: Remove.
12015 * doc/bison.texinfo (VMS Invocation): Remove.
12016
12017 2002-11-12 Akim Demaille <akim@epita.fr>
12018
12019 * src/struniq.h, src/struniq.c (struniq_t): Is const.
12020 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
12021
12022 Use struniq for symbols.
12023
12024 * src/symtab.h (symbol_t): The tag member is a struniq.
12025 (symbol_type_set): Adjust.
12026 * src/symtab.c (symbol_new): Takes a struniq.
12027 (symbol_free): Don't free the tag member.
12028 (hash_compare_symbol_t, hash_symbol_t): Rename as...
12029 (hash_compare_symbol, hash_symbol): these.
12030 Use the fact that tags as struniqs.
12031 (symbol_get): Use struniq_new.
12032 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
12033 Returns a strniq.
12034 * src/reader.h (merger_list, grammar_currentmerge_set): The name
12035 and type members are struniqs.
12036 * src/reader.c (get_merge_function)
12037 (grammar_current_rule_merge_set): Adjust.
12038 (TYPE, current_type): Are struniq.
12039
12040 Use struniq for file names.
12041
12042 * src/files.h, src/files.c (infile): Split into...
12043 (grammar_file, current_file): these.
12044 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
12045 * src/reduce.c (reduce_print): Likewise.
12046 * src/getargs.c (getargs): Likewise.
12047 * src/complain.h, src/complain.c: Likewise.
12048 * src/main.c (main): Call struniqs_new early enough to use it for
12049 file names.
12050 Don't free the input file name.
12051
12052 2002-11-12 Akim Demaille <akim@epita.fr>
12053
12054 * src/symtab.c (symbol_free): Remove dead deactivated code:
12055 type_name are properly removed.
12056 Don't use XFREE to free items that cannot be NULL.
12057 * src/struniq.h, src/struniq.c: New.
12058 * src/main.c (main): Initialize/free struniqs.
12059 * src/parse-gram.y (%union): Add astruniq member.
12060 (yyprint): Adjust.
12061 * src/scan-gram.l (<{tag}>): Return a struniq.
12062 Free the obstack bit that used to store it.
12063 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
12064
12065 2002-11-11 Paul Eggert <eggert@twinsun.com>
12066
12067 Revamp to fix many (but not all) of the C- and M4-related quoting
12068 problems. Among other things, this fixes the Bison bug reported
12069 by Jan Hubicka when processing the Bash grammar; see:
12070 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
12071
12072 Use new @ escapes consistently. Represent brackets with @{ and @}
12073 rather than @<:@ and @:>@, since this works a bit better with dumb
12074 editors like vi. Represent @ with @@, since @ is now consistently
12075 an escape. Use @oline@ and @ofile@ rather than __oline__ and
12076 __ofile__, to avoid unexpected expansions. Similarly, use @output
12077 rather than #output.
12078
12079 * data/c.m4 (b4_copyright): Omit file name from comment, since
12080 the file name could contain "*/".
12081 (b4_synclines_flag): Don't quote the 2nd argument; it should already
12082 be quoted. All uses changed.
12083
12084 * data/glr.c: Use new @ escapes consistently.
12085 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
12086 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
12087 Remove, since they couldn't handle arbitrary characters in file
12088 names.
12089 * data/lalr1.cc: Likewise.
12090 * data/yacc.c: Likewise.
12091
12092 * src/files.c (output_infix): Remove; all uses removed.
12093 * src/files.h: Likewise.
12094
12095 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
12096 mishandled funny characters in file names, and anyway it isn't
12097 needed any more.
12098 * data/yacc.c: Likewise.
12099 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
12100
12101 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
12102 * data/yacc.c: Likewise.
12103
12104 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
12105 strings now.
12106 (muscle_init): Quote filename as a C string.
12107 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
12108 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
12109 * src/output.c (escaped_file_name_output): New function.
12110 (prepare_symbols): Quote tokens for M4.
12111 (prepare): Don't insert output_infix, output_prefix,
12112 output_parser_name, output_header_name; this is now down by scan-skel.
12113 Insert skeleton as a C string.
12114
12115 * src/output.c (user_actions_output, symbol_destructors_output,
12116 symbol_printers_output): Quote filenames for C and M4.
12117 * src/reader.c (prologue_augment, epilogue_set): Likewise.
12118
12119 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
12120 escapes other than \\ and \'; this simplifies the code.
12121 (<SC_STRING>): Likewise, for \\ and \".
12122 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
12123 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
12124 Use new escapes @{ and @} for [ and ].
12125
12126 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
12127 them with auto vars.
12128 Switch to new escape scheme, where @ is the escape character uniformly.
12129 Abort if a stray escape character is found. Avoid unbounded input
12130 buffer when parsing non-escaped text.
12131
12132 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
12133 __oline__, #output, $@, and @{ do not have unintended meanings.
12134
12135 2002-11-09 Paul Eggert <eggert@twinsun.com>
12136
12137 Fix the test failure due to GCC warnings described in
12138 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
12139 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
12140 evaluate to 0 if it's impossible for NINF to be in the respective
12141 table.
12142 (yygetLRActions, yyrecoverParseError): Use them.
12143
12144 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
12145 counted in the token inserted at end of file. Now takes
12146 location_t *, not location_t, so that the location can be
12147 adjusted. All uses changed.
12148
12149 * tests/regression.at (Invalid inputs): Adjust wording in
12150 diagnostic to match the new behavior.
12151
12152 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
12153 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
12154 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
12155 abort ();'. This reduces the runtime of the "Many lookaheads"
12156 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
12157 GCC 3.2.
12158
12159 2002-11-07 Paul Eggert <eggert@twinsun.com>
12160
12161 * src/parse-gram.y (CHARACTER): Remove unused token.
12162 All uses removed.
12163
12164 * src/scan-gram.l: Remove stack option. We no longer use the
12165 stack, since the stack was never deeper than 1; instead, use the
12166 new auto var c_context to record the stacked value.
12167
12168 Remove nounput option. At an unexpected end of file, we now unput
12169 the minimal input necessary to end cleanly; this simplifies the
12170 code.
12171
12172 Avoid unbounded token sizes where this is easy.
12173
12174 (unexpected_end_of_file): New function.
12175 Use it to systematize the error message on unexpected EOF.
12176 (last-string): Now auto, not static.
12177 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
12178 (scanner_last_string_free): Remove; not used.
12179 (percent_percent_count): Move decl to just before use.
12180 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
12181 not the (never otherwised-used) CHARACTER.
12182
12183 2002-11-07 Akim Demaille <akim@epita.fr>
12184
12185 Let yyerror always receive the msg as last argument, so that
12186 yyerror can be variadic.
12187
12188 * data/yacc.c (b4_yyerror_args): New.
12189 Use it when calling yyerror.
12190 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
12191 Use it when calling yyerror.
12192 * doc/bison.texinfo (Error Reporting): Adjust.
12193 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
12194 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
12195
12196 2002-11-06 Akim Demaille <akim@epita.fr>
12197
12198 #line should have quoted strings.
12199 Ideally, this should be done by m4_quotearg.
12200
12201 * src/scan-skel.l: Include quotearg.h.
12202 Quote __ofile__.
12203 * src/output.c (symbol_printers_output)
12204 (symbol_destructors_output): Quote the file name.
12205
12206 2002-11-06 Akim Demaille <akim@epita.fr>
12207
12208 * tests/regression.at (Invalid inputs): Adjust to the recent
12209 messages.
12210
12211 2002-11-06 Akim Demaille <akim@epita.fr>
12212
12213 Restore --no-lines.
12214 Reported by Jim Kent.
12215
12216 * data/c.m4 (b4_syncline): New.
12217 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
12218 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
12219 * src/output.c (user_actions_output): Likewise.
12220 (prepare): Define 'b4_synclines_flag'.
12221 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
12222
12223 2002-11-06 Akim Demaille <akim@epita.fr>
12224
12225 * src/main.c (main): Free `infile'.
12226 * src/scan-gram.l (handle_syncline): New.
12227 Recognize `#line'.
12228 * src/output.c (user_actions_output, symbol_destructors_output)
12229 (symbol_printers_output): Use the location's file name, not
12230 infile.
12231 * src/reader.c (prologue_augment, epilogue_set): Likewise.
12232
12233 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12234
12235 * src/tables.c (matching_state): Don't allow states to match if
12236 either has GLR conflict entries.
12237
12238 2002-11-05 Paul Eggert <eggert@twinsun.com>
12239
12240 * src/scan-gram.l: Use more accurate diagnostics, e.g.
12241 "integer out of range" rather than "invalid value".
12242 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
12243 accordingly.
12244
12245 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
12246 Also, remove one static variable in the scanner.
12247
12248 * src/scan-gram.l (braces_level): Now auto, not static.
12249 Initialize to zero if the compiler is being picky.
12250 (INITIAL): Clear braces_level instead of incrementing it.
12251 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
12252 as POSIX 1003.1-2001 requires.
12253 * src/system.h (IF_LINT): New macro, taken from coreutils.
12254 * configure.ac: Define "lint" if --enable-gcc-warnings.
12255
12256 2002-11-05 Akim Demaille <akim@epita.fr>
12257
12258 * src/scan-gram.l: When it starts with `%', complain about the
12259 whole directive, not just that `invalid character: %'.
12260
12261 2002-11-04 Akim Demaille <akim@epita.fr>
12262
12263 * Makefile.maint: Update from Autoconf.
12264 (update, cvs-update, po-update, do-po-update): New.
12265
12266 2002-11-04 Akim Demaille <akim@epita.fr>
12267
12268 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
12269 and yyerror.
12270 Have yyerror `use' its arguments.
12271 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
12272 returns true when location & yacc & pure & parse-param.
12273 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
12274
12275 2002-11-04 Akim Demaille <akim@epita.fr>
12276
12277 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
12278 clashes.
12279 * src/scan-gram.l: Use [\'] instead of ['] to pacify
12280 font-lock-mode.
12281 Use complain_at.
12282 Use quote, not quote_n since LOCATION_PRINT no longer uses the
12283 slot 0.
12284
12285 2002-11-03 Paul Eggert <eggert@twinsun.com>
12286
12287 * src/reader.c (get_merge_function, grammar_current_rule_check):
12288 Use consistent diagnostics for reporting type name clashes.
12289 Quote the types with <>, for consistency with Yacc.
12290 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
12291
12292 2002-11-03 Akim Demaille <akim@epita.fr>
12293
12294 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
12295 New.
12296 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
12297 (b4_parse_param): Remove.
12298 Use b4_identification.
12299 Propagate b4_pure_args where needed to pass them to yyerror.
12300 * data/glr.m4 (b4_parse_param): Remove.
12301 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
12302 (b4_lpure_formals): New.
12303 Use b4_identification.
12304 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
12305 b4_user_formals and b4_user_args.
12306 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
12307 (yyreportAmbiguity): When using a pure parser, also need
12308 the location, and the parse-params.
12309 Adjust callers.
12310 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
12311 When using a pure parser, also need the parse-params.
12312 Adjust callers.
12313 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
12314 (%pure-parser + %parse-param) LALR and GLR parsers.
12315 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
12316 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
12317 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
12318 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
12319 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
12320 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
12321 * doc/bison.texinfo: Untabify the whole file.
12322 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
12323 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
12324 (Error Reporting): Adjust to these new directives.
12325 Document %error-verbose, deprecate YYERROR_VERBOSE.
12326
12327 2002-11-03 Akim Demaille <akim@epita.fr>
12328
12329 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
12330 AT_CHECK_CALC_GLR invocations to use % directives, instead of
12331 command line options.
12332 * tests/cxx-type.at: Formatting changes.
12333
12334 2002-11-03 Paul Eggert <eggert@twinsun.com>
12335
12336 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
12337 to count columns correctly, and to check for invalid inputs.
12338
12339 Use mbsnwidth to count columns correctly. Account for tabs, too.
12340 Include mbswidth.h.
12341 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
12342 (extend_location): New function.
12343 (YY_LINES): Remove.
12344
12345 Handle CRLF in C code rather than in Lex code.
12346 (YY_INPUT): New macro.
12347 (no_cr_read): New function.
12348
12349 Scan UCNs, even though we don't fully handle them yet.
12350 (convert_ucn_to_byte): New function.
12351
12352 Handle backslash-newline correctly in C code.
12353 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
12354 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
12355 all uses changed.
12356 (tag, splice): New EREs. Do not allow NUL or newline in tags.
12357 Use {splice} wherever C allows backslash-newline.
12358 YY_STEP after space, newline, vertical-tab.
12359 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
12360
12361 (letter, id): Don't assume ASCII; e.g., spell out a-z.
12362
12363 ({int}, handle_action_dollar, handle_action_at): Check for integer
12364 overflow.
12365
12366 (YY_STEP): Omit trailing semicolon, so that it's more like C.
12367
12368 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
12369 as well as \000. Check for UCHAR_MAX, not 255.
12370 Allow \x with an arbitrary positive number of digits, as in C.
12371 Check for overflow here.
12372 Allow \? and UCNs, for compatibility with C.
12373
12374 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
12375 with quote slot used by complain_at.
12376
12377 * tests/input.at: Add tests for backslash-newline, m4 quotes
12378 in symbols, long literals, and funny escapes in strings.
12379
12380 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
12381 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
12382 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
12383 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
12384 * m4/mbswidth.m4: New file, from GNU coreutils.
12385
12386 * doc/bison.texinfo (Grammar Outline): Document // comments.
12387 (Symbols): Document that trigraphs have no special meaning in Bison,
12388 nor is backslash-newline allowed.
12389 (Actions): Document that trigraphs have no special meaning.
12390
12391 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
12392 no longer used.
12393
12394 2002-11-02 Paul Eggert <eggert@twinsun.com>
12395
12396 * src/reader.c: Don't include quote.h; not needed.
12397 (get_merge_function): Reword warning to be consistent with
12398 type clash diagnostic in grammar_current_rule_check.
12399
12400 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
12401 bug in trigraph handling.
12402
12403 * src/output.c (prepare_symbols): When printing token names,
12404 escape "[" as "@<:@" and likewise for "]".
12405
12406 * src/system.h (errno): Remove declaration, as we are now
12407 assuming C89 or better, and C89 guarantees errno.
12408
12409 2002-10-30 Paul Eggert <eggert@twinsun.com>
12410
12411 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
12412 Check for close failures.
12413 * src/files.h (xfclose): Return void, not int, since it always
12414 returned zero.
12415 * src/files.c (xfclose): Likewise. Report I/O error if ferror
12416 indicates one.
12417 * src/output.c (output_skeleton): Use xfclose rather than fclose
12418 and ferror. xfclose now checks ferror.
12419
12420 * data/glr.c (YYLEFTMOST_STATE): Remove.
12421 (yyreportTree): Use a stack-based leftmost state. This avoids
12422 our continuing battles with bogus warnings about initializers.
12423
12424 2002-10-30 Akim Demaille <akim@epita.fr>
12425
12426 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
12427 #if.
12428
12429 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12430
12431 * tests/glr-regr1.at: New test for reported regressions.
12432 * tests/testsuite.at: Add glr-regr1.at test.
12433 * tests/Makefile.am: Add glr-regr1.at test.
12434
12435 2002-10-24 Paul Eggert <eggert@twinsun.com>
12436
12437 Version 1.75a.
12438
12439 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
12440 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
12441 we use malloc. Don't assume 'A' through 'Z' are contiguous.
12442 Don't assume strdup exists; POSIX says its an XSI extension.
12443 Check for buffer overflow on input.
12444
12445 2002-10-24 Akim Demaille <akim@epita.fr>
12446
12447 * src/output.c (output_skeleton): Don't disable M4sugar comments
12448 too soon: it results in comments being expanded.
12449 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
12450 first output.
12451
12452 2002-10-24 Akim Demaille <akim@epita.fr>
12453
12454 * data/yacc.c (m4_int_type): New.
12455 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
12456 char' as only yacc.c wants K&R portability.
12457 * data/glr.c (yysigned_char): Remove.
12458 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
12459 Reported by Quoc Peyrot.
12460
12461 2002-10-23 Paul Eggert <eggert@twinsun.com>
12462
12463 * src/main.c (main): With --trace=time, report times even if a
12464 non-fatal error occurs. Formerly, the times were reported in some
12465 such cases but not in others.
12466 * src/reader.c (reader): Just return if a complaint has been issued,
12467 instead of exiting, so that 'main' can report times.
12468
12469 2002-10-22 Akim Demaille <akim@epita.fr>
12470
12471 * src/system.h: Include sys/types.
12472 Reported by Bert Deknuydt.
12473
12474 2002-10-23 Paul Eggert <eggert@twinsun.com>
12475
12476 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
12477 Suggested by Art Haas.
12478
12479 2002-10-22 Paul Eggert <eggert@twinsun.com>
12480
12481 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
12482 decl; not needed any more.
12483 * src/main.c (main): Use return to exit, undoing yesterday's change.
12484 The last OS that we could find where this wouldn't work is
12485 SunOS 3.5, and that's too old to worry about now.
12486
12487 * data/glr.c (struct yyltype): Define members even when not
12488 doing locations. This is more consistent with yacc.c, and it
12489 works around the following bug reports:
12490 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
12491 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
12492
12493 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
12494 @acronym consistently. Standardize on "Yacc" instead of "YACC",
12495 "Algol" instead of "ALGOL". Give a bit more history about BNF.
12496
12497 2002-10-22 Akim Demaille <akim@epita.fr>
12498
12499 * data/README: New.
12500
12501 2002-10-21 Paul Eggert <eggert@twinsun.com>
12502
12503 Be consistent about 'bool'; the old code used an enum in one
12504 module and an int in another, and this violates the C standard.
12505 * m4/stdbool.m4: New file, from coreutils 4.5.3.
12506 * configure.ac (AC_HEADER_STDBOOL): Add.
12507 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
12508 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
12509 * src/symtab.c (hash_compare_symbol_t): Likewise.
12510 * src/system.h (bool, false, true): Use a definition consistent
12511 with ../lib/hash.c. All uses changed.
12512
12513 * src/complain.c (warning_issued): Renamed from warn_message_count,
12514 so that we needn't worry about integer overflow (!).
12515 Now of type bool. All uses changed.
12516 (complaint_issued): Renamed from complain_message_count; likewise.
12517
12518 * src/main.c (main): Use exit to exit with failure.
12519
12520 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
12521 rather than 1 and 0.
12522 * src/main.c (main): Likewise.
12523 * src/getargs.c (getargs): Likewise.
12524 * src/reader.c (reader): Likewise.
12525
12526 * src/getarg.c (getargs): Remove duplicate code for
12527 "Try `bison --help'".
12528
12529 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
12530 What was that "2" for?
12531
12532 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
12533 * src/getargs.c (usage): Likewise.
12534
12535 * src/getargs.c (getargs): When there are too few operands, report
12536 the last one. When there are too many, report the first extra
12537 one. This is how diffutils does it.
12538
12539 2002-10-20 Paul Eggert <eggert@twinsun.com>
12540
12541 Remove K&R vestiges.
12542 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
12543 * src/complain.c (VA_START): Remove. Assume prototypes.
12544 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
12545 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
12546 fatal): Assume prototypes.
12547 * src/complain.h: Assume prototypes.
12548 * src/system.h (PARAMS): Remove.
12549 Include <limits.h> unconditionally, since it's guaranteeed even
12550 for a freestanding C89 compiler.
12551 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
12552 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
12553
12554 2002-10-20 Akim Demaille <akim@epita.fr>
12555
12556 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
12557 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
12558 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
12559 (yyresolveStates, yyresolveAction, yyresolveStack)
12560 (yyprocessOneStack): Use them.
12561 (yy_reduce_print): New.
12562 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
12563
12564 2002-10-20 Akim Demaille <akim@epita.fr>
12565
12566 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
12567 arguments and output `void'.
12568 (b4_c_function): Rename as...
12569 (b4_c_function_def): this.
12570 (b4_c_function_decl, b4_c_ansi_function_def)
12571 (b4_c_ansi_function_decl): New.
12572 Change the interpretation of the arguments: before `int, foo', now
12573 `int foo, foo'.
12574 * data/yacc.c (yyparse): Prototype and define thanks to these.
12575 Adjust b4_c_function_def uses.
12576 * data/glr.c (yyparse): Likewise, but ANSI only.
12577
12578 2002-10-20 Akim Demaille <akim@epita.fr>
12579
12580 * src/output.c (prepare): Move the definition of `tokens_number',
12581 `nterms_number', `undef_token_number', `user_token_number_max'
12582 to...
12583 (prepare_tokens): Here.
12584 (prepare_tokens): Rename as...
12585 (prepare_symbols): this.
12586 (prepare): Move the definition of `rules_number' to...
12587 (prepare_rules): here.
12588 (prepare): Move the definition of `last', `final_state_number',
12589 `states_number' to...
12590 (prepare_states): here.
12591 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
12592
12593 2002-10-20 Akim Demaille <akim@epita.fr>
12594
12595 * src/tables.h, src/tables.c, src/output.c: Comment changes.
12596
12597 2002-10-20 Akim Demaille <akim@epita.fr>
12598
12599 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
12600 * data/c.m4: here.
12601
12602 2002-10-20 Akim Demaille <akim@epita.fr>
12603
12604 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
12605 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
12606 `pair'.
12607 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
12608 `name' to...
12609 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
12610 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
12611 These.
12612
12613 2002-10-19 Paul Eggert <eggert@twinsun.com>
12614
12615 Do not create a temporary file, as that involves security and
12616 cleanup headaches. Instead, use a pair of pipes.
12617 Derived from a suggestion by Florian Krohm.
12618 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
12619 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
12620 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
12621 (BISON_PREREQ_SUBPIPE): Add.
12622 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
12623 Add subpipe.h, subpipe.c.
12624 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
12625 * po/POTFILES.in: Add lib/subpipe.c.
12626 * src/output.c: Include "subpipe.h".
12627 (m4_invoke): Remove decl.
12628 (scan_skel): New decl.
12629 (output_skeleton): Use pipe rather than temporary file for m4 input.
12630 Check that m4sugar.m4 is readable, to avoid deadlock.
12631 Check for pipe I/O error.
12632 * src/scan-skel.l (readpipe): Remove decl.
12633 (scan_skel): New function, to be used in place of m4_invoke.
12634 Read from stream rather than file.
12635
12636 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
12637 float, as this generates a warning on Solaris 8 + GCC 3.2 with
12638 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
12639 this generates a more-accurate value anyway.
12640
12641 * lib/timevar.c (timervar_accumulate): Rename locals to
12642 avoid confusion with similarly-named more-global.
12643 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
12644
12645 * src/output.c (prepare): Use xstrdup to convert char const *
12646 to char *, to avoid GCC warning.
12647
12648 2002-10-19 Akim Demaille <akim@epita.fr>
12649
12650 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
12651 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
12652 Use them to have `calc.y' ready for %pure-parser.
12653 * data/yacc.c (YYLEX): Pass a yylex return type to
12654 b4_c_function_call.
12655
12656 2002-10-19 Akim Demaille <akim@epita.fr>
12657
12658 Prototype support of %lex-param and %parse-param.
12659
12660 * src/parse-gram.y: Add the definition of the %lex-param and
12661 %parse-param tokens, plus their rules.
12662 Drop the `_' version of %glr-parser.
12663 Add the "," token.
12664 * src/scan-gram.l (INITIAL): Scan them.
12665 * src/muscle_tab.c: Comment changes.
12666 (muscle_insert, muscle_find): Rename `pair' as `probe'.
12667 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
12668 (muscle_entry_s): The `value' member is no longer const.
12669 Adjust all dependencies.
12670 * src/muscle_tab.c (muscle_init): Adjust: use
12671 MUSCLE_INSERT_STRING.
12672 Initialize the obstack earlier.
12673 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
12674 (muscle_pair_list_grow): New.
12675 * data/c.m4 (b4_c_function_call, b4_c_args): New.
12676 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
12677 * tests/calc.at: Use %locations, not --locations.
12678 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
12679
12680 2002-10-19 Akim Demaille <akim@epita.fr>
12681
12682 * src/getargs.c (usage): Take status as argument and exit
12683 accordingly.
12684 Report the traditional `Try ... --help' message when status != 0.
12685 (usage, version): Don't take a FILE * as arg, it is pointless.
12686 (getargs): When there is an incorrect number of arguments, make it
12687 an error, and report it GNUlically thanks to `usage ()'.
12688
12689 2002-10-18 Paul Eggert <eggert@twinsun.com>
12690
12691 * data/glr.c (yyreportParseError): Don't assume that sprintf
12692 yields the length of the printed string, as this is not true
12693 on SunOS 4.1.4. Reported by Peter Klein.
12694
12695 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
12696 * tests/conflicts.at (%nonassoc and eof): Likewise.
12697 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
12698
12699 2002-10-17 Akim Demaille <akim@epita.fr>
12700
12701 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
12702 * src/getargs.c (trace_types, trace_args): Adjust.
12703 * src/reader.c (grammar_current_rule_prec_set)
12704 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
12705 Standardize error messages.
12706 And s/@prec/%prec/!
12707 (reader): Use trace_flag to enable scanner/parser debugging,
12708 instead of an adhoc scheme.
12709 * src/scan-gram.l: Remove trailing debugging code.
12710
12711 2002-10-16 Paul Eggert <eggert@twinsun.com>
12712
12713 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
12714 MUSCLE_TAB_H.
12715
12716 * NEWS: Officially drop support for building Bison with K&R C,
12717 since it didn't work anyway and it's not worth worrying about.
12718 * Makefile.maint (wget_files): Remove ansi2knr.c.
12719 (ansi2knr.c-url_prefix): Remove.
12720 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
12721 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
12722 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
12723
12724 2002-10-15 Paul Eggert <eggert@twinsun.com>
12725
12726 Stop using the "enum_" trick for K&R-style function definitions;
12727 it confused me, and I was the author! Instead, assume that people
12728 who want to use K&R C compilers (when using these modules in GCC,
12729 perhaps?) will run ansi2knr.
12730
12731 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
12732 All uses of "enum_" changed to "enum ".
12733 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
12734 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
12735
12736 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
12737 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
12738 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
12739 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
12740 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
12741 abitset_not, abitset_ones, abitset_or, abitset_or_and,
12742 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
12743 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
12744 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
12745 Use function prototypes; this removes the need for declaring
12746 static functions simply to provide their prototypes.
12747 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
12748 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
12749 bitset_count_, bitset_create, bitset_dump, bitset_first,
12750 bitset_free, bitset_init, bitset_last, bitset_next,
12751 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
12752 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
12753 bitset_print, bitset_release_memory, bitset_toggle_,
12754 bitset_type_choose, bitset_type_get, bitset_type_name_get,
12755 debug_bitset): Likewise.
12756 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
12757 * lib/bitset_stats.c (bitset_log_histogram_print,
12758 bitset_percent_histogram_print, bitset_stats_and,
12759 bitset_stats_and_cmp, bitset_stats_and_or,
12760 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
12761 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
12762 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
12763 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
12764 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
12765 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
12766 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
12767 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
12768 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
12769 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
12770 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
12771 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
12772 bitset_stats_zero): Likewise.
12773 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
12774 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
12775 bitsetv_dump, debug_bitsetv): Likewise.
12776 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
12777 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
12778 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
12779 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
12780 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
12781 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
12782 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
12783 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
12784 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
12785 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
12786 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
12787 Likewise.
12788 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
12789 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
12790 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
12791 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
12792 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
12793 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
12794 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
12795 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
12796 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
12797 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
12798 lbitset_xor_cmp, lbitset_zero): Likewise.
12799
12800 2002-10-14 Akim Demaille <akim@epita.fr>
12801
12802 Version 1.75.
12803
12804 2002-10-14 Akim Demaille <akim@epita.fr>
12805
12806 * tests/Makefile.am (maintainer-check-posix): New.
12807
12808 2002-10-14 Akim Demaille <akim@epita.fr>
12809
12810 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
12811 member.
12812
12813 2002-10-14 Akim Demaille <akim@epita.fr>
12814
12815 * src/tables.c (table_ninf_remap): base -> tab.
12816 Reported by Matt Rosing.
12817
12818 2002-10-14 Paul Eggert <eggert@twinsun.com>
12819
12820 * tests/action.at, tests/calc.at, tests/conflicts.at,
12821 tests/cxx-type.at, tests/headers.at, tests/input.at,
12822 tests/regression.at, tests/synclines.at, tests/torture.at:
12823 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
12824 so that the tests still work even if POSIXLY_CORRECT is set.
12825 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
12826
12827 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
12828 for portability to K&R hosts. Fix typo: signed char is guaranteed
12829 only to 127, not to 128.
12830 * data/glr.c (yysigned_char): New type.
12831 * data/yacc.c (yysigned_char): Likewise.
12832 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
12833
12834 2002-10-13 Paul Eggert <eggert@twinsun.com>
12835
12836 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
12837 true due to limited range of data type" warning from GCC.
12838
12839 * data/c.m4 (b4_token_defines): Protect against double-inclusion
12840 by wrapping enum yytokentype's definition inside #ifndef
12841 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
12842
12843 2002-10-13 Akim Demaille <akim@epita.fr>
12844
12845 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
12846 Un yy- yyrhs to avoid the name clash with the global YYRHS.
12847
12848 2002-10-13 Akim Demaille <akim@epita.fr>
12849
12850 * Makefile.maint: Update from Autoconf 2.54.
12851 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
12852
12853 2002-10-13 Akim Demaille <akim@epita.fr>
12854
12855 * src/print.c (print_state): Separate the list of solved conflicts
12856 from the other items.
12857 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
12858
12859 2002-10-13 Akim Demaille <akim@epita.fr>
12860
12861 Let nondeterministic skeletons be usable with deterministic
12862 tables.
12863
12864 With the patch, GAWK compiled by GCC without -O2 passes its test
12865 suite using a GLR parser driven by LALR tables. It fails with -O2
12866 because `struct stat' gives two different answers on my machine:
12867 88 (definition of an auto var) and later 96 (memset on this var).
12868 Hence the stack is badly corrumpted. The headers inclusion is to
12869 blame: if I move the awk.h inclusion before GLR's system header
12870 inclusion, the two struct stat have the same size.
12871
12872 * src/tables.c (pack_table): Always create conflict_table.
12873 (token_actions): Always create conflict_list.
12874 * data/glr.c (YYFLAG): Remove, unused.
12875
12876 2002-10-13 Akim Demaille <akim@epita.fr>
12877
12878 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
12879 (O0FLAGS): New.
12880 (VALGRIND, GXX): New.
12881 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
12882 * tests/bison.in: Run $PREBISON a pre-command.
12883 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
12884 (maintainer-check-g++): New.
12885 * Makefile.am (maintainer-check): New.
12886
12887 2002-10-13 Akim Demaille <akim@epita.fr>
12888
12889 * data/glr.c: Formatting changes.
12890 Tweak some trace messages to match yacc.c's.
12891
12892 2002-10-13 Akim Demaille <akim@epita.fr>
12893
12894 GLR parsers sometimes raise parse errors instead of performing the
12895 default reduction.
12896 Reported by Charles-Henry de Boysson.
12897
12898 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
12899 check the length of the traces when %glr.
12900 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
12901 GLR's traces.
12902 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
12903 Test GLR parsers.
12904 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
12905 (yyltype): Remove the yy prefix from the member names.
12906 (yytable): Complete its comment.
12907 (yygetLRActions): Map error action number from YYTABLE from
12908 YYTABLE_NINF to 0.
12909 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
12910 (which was a bug: it should have been YYTABEL_NINF, and yet it was
12911 not satisfying as we could compare an YYACTION computed from
12912 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
12913 only value for error actions.
12914 (yyreportParseError): In verbose parse error messages, don't issue
12915 `error' in the list of expected tokens.
12916 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
12917 next action to perform to match glr.c's decoding.
12918 (yytable): Complete its comment.
12919
12920 2002-10-13 Paul Eggert <eggert@twinsun.com>
12921
12922 Fix problem reported by Henrik Grubbstroem in
12923 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
12924 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
12925 because the Bison parser reads the second action before reducing
12926 the first one.
12927 * src/scan-gram.l (rule_length): New static var.
12928 Use it to keep track of the rule length in the scanner, since
12929 we can't expect the parser to be in lock-step sync with the scanner.
12930 (handle_action_dollar, handle_action_at): Use this var.
12931 * tests/actions.at (Exotic Dollars): Test for the problem.
12932
12933 2002-10-12 Paul Eggert <eggert@twinsun.com>
12934
12935 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
12936 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
12937 Include <sys/time.h> when checking for clock_t and struct tms.
12938 Use same include order as source.
12939 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
12940 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
12941
12942 * lib/timevar.c: Update copyright date and clarify comments.
12943 (get_time) [IN_GCC]: Keep the GCC version for reference.
12944
12945 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
12946 GCC version as of today, then merge Bison's changes.
12947 Change "GCC" to "Bison" in copyright notice. timevar.def's
12948 author is Akim, so change that too.
12949
12950 * src/reader.c (grammar_current_rule_check):
12951 Don't worry about the default action if $$ is untyped.
12952 Prevents bogus warnings reported by Jim Gifford in
12953 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
12954
12955 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
12956 * data/glr.c, data/lalr1.cc, data/yacc.c:
12957 Output token definitions before the first part of user declarations.
12958 Fixes compatibility problem reported by Jim Gifford for kbd in
12959 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
12960
12961 2002-10-11 Paul Eggert <eggert@twinsun.com>
12962
12963 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
12964 (yyparse): here. This undoes some of the 2002-07-25 change.
12965 Compatibility problem reported by Ralf S. Engelschall with
12966 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
12967
12968 2002-10-11 Akim Demaille <akim@epita.fr>
12969
12970 * tests/regression.at Characters Escapes): New.
12971 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
12972 characters.
12973 Reported by Jan Nieuwenhuizen.
12974
12975 2002-10-11 Akim Demaille <akim@epita.fr>
12976
12977 * po/id.po: New.
12978
12979 2002-10-10 Paul Eggert <eggert@twinsun.com>
12980
12981 Portability fixes for bitsets; this also avoids several GCC
12982 warnings.
12983
12984 * lib/abitset.c: Include <stddef.h>, for offsetof.
12985 * lib/lbitset.c: Likewise.
12986
12987 * lib/abitset.c (abitset_bytes): Return a size that is aligned
12988 properly for vectors of objects. Do not assume that adding a
12989 header size to a multiple of a word size yields a value that is
12990 properly aligned for the whole union.
12991 * lib/bitsetv.c (bitsetv_alloc): Likewise.
12992
12993 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
12994 unique names for structures.
12995 * lib/ebitset.c (ebitset_bytes): Likewise.
12996 * lib/lbitset.c (lbitset_bytes): Likewise.
12997
12998 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
12999 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
13000 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
13001 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
13002 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
13003 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
13004 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
13005 to improve the type-checking that GCC can do.
13006 * lib/bitset.c (bitset_op4_cmp): Likewise.
13007 * lib/bitset_stats.c (bitset_stats_count,
13008 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
13009 bitset_stats_copy, bitset_stats_disjoint_p,
13010 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
13011 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
13012 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
13013 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
13014 bitset_stats_and_or_cmp, bitset_stats_andn_or,
13015 bitset_stats_andn_or_cmp, bitset_stats_or_and,
13016 bitset_stats_or_and_cmp): Likewise.
13017 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
13018 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
13019 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
13020 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
13021
13022 * lib/abitset.h: Include bitset.h, not bbitset.h.
13023 * lib/ebitset.h: Likewise.
13024 * lib/lbitset.h: Likewise.
13025
13026 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
13027 All instances of parameters of type enum bitset_opts are now of
13028 type enum_bitset_opts, to conform to the C Standard, and similarly
13029 for enum_bitset_type.
13030 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13031 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13032
13033 Do not use "struct bitset_struct" to mean different things in
13034 different modules. Not only is this confusing, it violates
13035 the C Standard, which requires that structure types in different
13036 modules must be compatible if one is to be passed to the other.
13037 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
13038 All instances of "struct bitset_struct *" replaced with "bitset".
13039 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
13040 (union bitset_union, struct abitset_struct, struct ebitset_struct,
13041 struct lbitset_struct, struct bitset_stats_struct): New types.
13042 All uses of struct bitset_struct changed to union bitset_union,
13043 etc.
13044 * lib/abitset.c (struct abitset_struct, abitset,
13045 struct bitset_struct): Remove.
13046 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
13047 struct bitset_struct): Remove.
13048 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
13049 bitset_struct): Remove.
13050 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
13051 Likewise.
13052
13053 Do not call a function of type T using a call that assumes the
13054 function is of a different type U. Standard C requires that a
13055 function must be called with a type that is compatible with its
13056 definition.
13057 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13058 New decls.
13059 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13060 New functions.
13061 * lib/ebitset.c (PFV): Remove.
13062 * lib/lbitset.c (PFV): Likewise.
13063 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
13064 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
13065 decls.
13066 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
13067 (ebitset_vtable): Use them.
13068 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
13069 lbitset_xor): New functions.
13070 (lbitset_vtable): Use them.
13071
13072 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
13073 Declare.
13074
13075 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
13076 GCC warning.
13077 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
13078 Use offsetof, for simplicity.
13079
13080 2002-10-06 Paul Eggert <eggert@twinsun.com>
13081
13082 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
13083 the same width as int. This reapplies a hunk of the 2002-08-12 patch
13084 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
13085 which was inadvertently undone by the 2002-09-30 patch.
13086 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
13087 the same width as int.
13088
13089 2002-10-04 Paul Eggert <eggert@twinsun.com>
13090
13091 Version 1.50.
13092
13093 * configure.ac (AC_INIT), NEWS: Increment version number.
13094
13095 * doc/bison.texinfo: Minor spelling, grammar, and white space
13096 fixes.
13097 (Symbols): Mention that any negative value returned from yylex
13098 signifies end-of-input. Warn about negative chars. Mention
13099 the portable Standard C character set.
13100
13101 The GNU coding standard says CFLAGS and YFLAGS are reserved
13102 for the installer to set.
13103 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
13104 * src/Makefile.am (AM_CFLAGS): Likewise.
13105 (AM_YFLAGS): Renamed from YFLAGS.
13106
13107 Fix some MAX and MIN problems.
13108 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
13109 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
13110 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
13111 * src/reader.c (reader): Use it.
13112
13113 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
13114 POSIX 1003.1-2001 has removed fgrep.
13115
13116 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
13117
13118 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
13119 interpreted as signed.
13120 * lib/ebitset.c (ebitset_list): Fix bug.
13121
13122 2002-10-01 Paul Eggert <eggert@twinsun.com>
13123
13124 More fixes for 64-bit hosts and large bitsets.
13125
13126 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
13127 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
13128 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
13129 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
13130 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
13131 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
13132 bitset_count_): Likewise.
13133 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
13134 bitset_first, bitset_last): Likewise.
13135 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
13136 bitset_stats_list_reverse, bitset_stats_size,
13137 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
13138 Likewise.
13139 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13140 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13141 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13142 bitsetv_reflexive_transitive_closure): Likewise.
13143 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
13144 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
13145 Likewise.
13146 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
13147 Likewise.
13148
13149 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
13150 Use size_t, not unsigned int, to count bytes.
13151 * lib/abitset.h (abitset_bytes): Likewise.
13152 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
13153 Likewise.
13154 * lib/bitset.h (bitset_bytes): Likewise.
13155 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
13156 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
13157 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13158 * lib/ebitset.c (ebitset_bytes): Likewise.
13159 * lib/ebitset.h (ebitset_bytes): Likewise.
13160 * lib/lbitset.c (lbitset_bytes): Likewise.
13161 * lib/lbitset.h (lbitset_bytes): Likewise.
13162
13163 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
13164 abitset_subset_p, abitset_disjoint_p, abitset_and,
13165 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
13166 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
13167 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
13168 abitset_or_and, abitset_or_and_cmp):
13169 Use bitset_windex instead of unsigned int.
13170 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
13171 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
13172 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
13173 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
13174 Likewise.
13175 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
13176
13177 * lib/bitset.c (bitset_print):
13178 Use proper printf formats for widths of integer types.
13179 * lib/bitset_stats.c (bitset_percent_histogram_print,
13180 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
13181 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13182 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
13183 * lib/lbitset.c (lbitset_bytes): Likewise.
13184
13185 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
13186 BITSET_SIZE_MAX): New macros.
13187 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
13188 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
13189 to BITSET_WINDEX_MAX.
13190
13191 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
13192 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
13193 since we now return the bitset_bindex type (not int).
13194
13195 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
13196 when computing sizes.
13197 * lib/ebitset.c (ebitset_elts_grow): Likewise.
13198
13199 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
13200 and avoid cast to unsigned.
13201
13202 2002-09-30 Akim Demaille <akim@epita.fr>
13203
13204 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
13205 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
13206 Updates from Michael Hayes.
13207
13208 2002-09-30 Art Haas <ahaas@neosoft.com>
13209
13210 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
13211 invocations.
13212 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
13213 defined.
13214
13215 2002-09-27 Akim Demaille <akim@epita.fr>
13216
13217 Version 1.49c.
13218
13219 2002-09-27 Akim Demaille <akim@epita.fr>
13220
13221 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
13222 (Because of AC_LIBSOURCE).
13223
13224 2002-09-27 Akim Demaille <akim@epita.fr>
13225
13226 Playing with Autoscan.
13227
13228 * configure.ac: Remove the old LIBOBJ tweaks.
13229 (AC_REPLACE_FUNCS): Add strrchr and strtol.
13230 * lib/strrchr.c: New.
13231 * lib/strtol.c: New, from the Coreutils 4.5.1.
13232
13233 2002-09-27 Akim Demaille <akim@epita.fr>
13234
13235 Playing with Autoscan.
13236
13237 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
13238 * lib/Makefile.am (libbison_a_SOURCES): No longer include
13239 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
13240 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
13241 Coreutils 4.5.1.
13242
13243 2002-09-24 Akim Demaille <akim@epita.fr>
13244
13245 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
13246 (Frequently Asked Questions, Parser Stack Overflow): New.
13247
13248 2002-09-13 Akim Demaille <akim@epita.fr>
13249
13250 Playing with autoscan.
13251
13252 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
13253 * src/files.c (skeleton_find): Remove, unused.
13254 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
13255 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
13256
13257 2002-09-13 Akim Demaille <akim@epita.fr>
13258
13259 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
13260 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
13261
13262 2002-09-13 Akim Demaille <akim@epita.fr>
13263
13264 * configure.ac: Require 2.54.
13265 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
13266 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
13267 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
13268 Remove, provided by Autoconf macros.
13269
13270 2002-09-12 Akim Demaille <akim@epita.fr>
13271
13272 * m4/prereq.m4: Update, from Coreutils 4.5.1.
13273
13274 2002-09-12 Akim Demaille <akim@epita.fr>
13275
13276 * m4/prereq.m4: Update, from Fileutils 4.1.5.
13277 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
13278 Reported by Martin Mokrejs.
13279
13280 2002-09-10 Akim Demaille <akim@epita.fr>
13281
13282 * src/parse-gram.y: Associate a human readable string to each
13283 token type.
13284 * tests/regression.at (Invalid inputs): Adjust.
13285
13286 2002-09-10 Gary V. Vaughan <gary@gnu.org>
13287
13288 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
13289 with an Autoconf-2.5x style configure.ac.
13290
13291 2002-09-06 Paul Eggert <eggert@twinsun.com>
13292
13293 * doc/bison.texinfo (Conditions): Make explicit that the GPL
13294 exception applies only to yacc.c. This is a modification of a
13295 patch originally suggested by Akim Demaille.
13296
13297 2002-09-06 Akim Demaille <akim@epita.fr>
13298
13299 * data/c.m4 (b4_copyright): Move the GPL exception comment from
13300 here to...
13301 * data/yacc.c: here.
13302
13303 * data/lalr1.cc (struct yyltype): Don't define it, since we use
13304 LocationType.
13305 (b4_ltype): Default to yy::Location from location.hh.
13306
13307 2002-09-04 Jim Meyering <jim@meyering.net>
13308
13309 * data/yacc.c: Guard the declaration of yytoknum also with
13310 `#ifdef YYPRINT', so it is declared only when used.
13311
13312 2002-09-04 Akim Demaille <akim@epita.fr>
13313
13314 * configure.in: Rename as...
13315 * configure.ac: this.
13316 Bump to 1.49c.
13317
13318 2002-09-04 Akim Demaille <akim@epita.fr>
13319
13320 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
13321 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
13322 translate maintainer only messages.
13323
13324 2002-08-12 Paul Eggert <eggert@twinsun.com>
13325
13326 Version 1.49b.
13327
13328 * Makefile.am (SUBDIRS): Remove intl.
13329 (DISTCLEANFILES): Remove.
13330 * NEWS: Mention that GNU M4 is now required. Clarify what is
13331 meant by "larger grammars". Mention the pt_BR translation.
13332 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
13333 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
13334 Bump version from 0.11.2 to 0.11.5.
13335 (BISON_PREREQ_STAGE): Remove.
13336 (AM_GNU_GETTEXT): Use external gettext.
13337 (AC_OUTPUT): Remove intl/Makefile.
13338
13339 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
13340
13341 * data/glr.c: Include string.h, for strlen.
13342 (yyreportParseError): Use size_t for yysize.
13343 (yy_yypstack): No longer nested inside yypstates, as nested
13344 functions are not portable. Do not assume size_t is the
13345 same width as int.
13346 (yypstates): Do not assume that ptrdiff_t is the same width
13347 as int, and similarly for yyposn and YYINDEX.
13348
13349 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
13350
13351 * lib/Makefile.am (INCLUDES): Do not include from the intl
13352 directory, which has been removed.
13353 * src/Makefile.am (INCLUDES): Likewise.
13354
13355 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
13356 (bitsets_sources, additional_bitsets_sources, timevars_sources):
13357 New vars.
13358
13359 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
13360 * tests/Makefile.am (EXTRA_DIST): Likewise.
13361
13362 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
13363 Do not assume that bitset_windex is the same width as unsigned.
13364
13365 * lib/abitset.c (abitset_unused_clear): Do not assume that
13366 bitset_word is the same width as int.
13367 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
13368 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
13369 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
13370 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
13371 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
13372
13373 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
13374 portability to one's complement hosts!).
13375 * lib/ebitset.c (ebitset_op1): Likewise.
13376 * lib/lbitset.c (lbitset_op1): Likewise.
13377
13378 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
13379 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
13380 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
13381 Sync with fileutils.
13382 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
13383 lib/gettext.h: Sync with diffutils.
13384
13385 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
13386 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
13387
13388 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
13389 PROTOTYPES to check for prototypes, and "defined __STDC__" to
13390 check for void *.
13391
13392 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
13393 size_t; the old version tried to do this but casted improperly.
13394 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
13395 (bitset_test): Now returns int, not unsigned long.
13396
13397 * lib/bitset_stats.c: Include "gettext.h".
13398 (_): New macro.
13399 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
13400 name locals "index", as it generates unnecessary warnings on some
13401 hosts that have an "index" function.
13402
13403 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
13404 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
13405 they need translation.
13406 * src/LR0.c (state_list_append, new_itemsets, get_state,
13407 append_states, generate_states): Likewise.
13408 * src/assoc.c (assoc_to_string): Likewise.
13409 * src/closure.c (print_closure, set_firsts, closure): Likewise.
13410 * src/gram.c (grammar_dump): Likewise.
13411 * src/injections.c (injections_compute): Likewise.
13412 * src/lalr.c (lookaheads_print): Likewise.
13413 * src/relation.c (relation_transpose): Likewise.
13414 * src/scan-gram.l: Likewise.
13415 * src/tables.c (table_grow, pack_vector): Likewise.
13416
13417 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
13418 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
13419 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
13420 * m4/mbstate_t.m4: Sync with fileutils.
13421 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
13422
13423 * po/LINGUAS: Add pt_BR.
13424 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
13425 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
13426 lib/timevar.c.
13427 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
13428 manual recommends.
13429 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
13430
13431 * src/complain.c (strerror_r): Remove decl; not needed.
13432 (strerror): Use same pattern as ../lib/error.c.
13433
13434 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
13435
13436 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
13437
13438 * src/main.c (main): Cast result of bindtextdomain and textdomain
13439 to void, to avoid a GCC warning when --disable-nls is in effect.
13440
13441 * src/scan-gram.l: Use strings rather than escapes when possible,
13442 to minimize the number of warnings from xgettext.
13443 (handle_action_dollar, handle_action_at): Don't use isdigit,
13444 as it mishandles negative chars and it may not work as expected
13445 outside the C locale.
13446
13447 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
13448 this is a GCC extension and is not portable to other compilers.
13449
13450 * src/system.h (alloca): Use same pattern as ../lib/error.c.
13451 Do not include <ctype.h>; no longer needed.
13452 Do not include <malloc.h>; no longer needed (and generates
13453 warnings on OpenBSD 3.0).
13454
13455 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
13456 it's not portable.
13457
13458 * tests/regression.at: Do not use 'cc -c input.c -o input';
13459 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
13460
13461 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
13462 exit status as failure, not just exit status 1. Sun C exits
13463 with status 2 sometimes.
13464
13465 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
13466 Use it for the two large tests.
13467
13468 2002-08-02 Akim Demaille <akim@epita.fr>
13469
13470 * src/conflicts.c (conflicts_output): Don't output rules never
13471 reduced here, since anyway that computation doesn't work.
13472 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
13473 (rule_useless_p, rule_never_reduced_p): New.
13474 (grammar_rules_partial_print): Use a filter instead of a range.
13475 Display the title only if needed.
13476 (grammar_rules_print): Adjust.
13477 (grammar_rules_never_reduced_report): New.
13478 * src/tables.c (action_row): Move the computation of rules never
13479 reduced to...
13480 (token_actions): here.
13481 * src/main.c (main): Make the parser before making the report, so
13482 that rules never reduced are computed.
13483 Call grammar_rules_never_reduced_report.
13484 * src/print.c (print_results): Report rules never reduced.
13485 * tests/conflicts.at, tests/reduce.at: Adjust.
13486
13487 2002-08-01 Akim Demaille <akim@epita.fr>
13488
13489 Instead of attaching lookaheads and duplicating the rules being
13490 reduced by a state, attach the lookaheads to the reductions.
13491
13492 * src/state.h (state_t): Remove the `lookaheads',
13493 `lookaheads_rule' member.
13494 (reductions_t): Add a `lookaheads' member.
13495 Use a regular array for the `rules'.
13496 * src/state.c (reductions_new): Initialize the lookaheads member
13497 to 0.
13498 (state_rule_lookaheads_print): Adjust.
13499 * src/state.h, src/state.c (state_reductions_find): New.
13500 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
13501 (count_rr_conflicts): Adjust.
13502 * src/lalr.c (LArule): Remove.
13503 (add_lookback_edge): Adjust.
13504 (state_lookaheads_count): New.
13505 (states_lookaheads_initialize): Merge into...
13506 (initialize_LA): this.
13507 (lalr_free): Adjust.
13508 * src/main.c (main): Don't free nullable and derives too early: it
13509 is used by --verbose.
13510 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
13511
13512 2002-08-01 Akim Demaille <akim@epita.fr>
13513
13514 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
13515 `rule_number_t**'.
13516 (set_derives, free_derives): Rename as...
13517 (derives_compute, derives_free): this.
13518 Adjust all dependencies.
13519 * src/nullable.c (set_nullable, free_nullable): Rename as...
13520 (nullable_compute, nullable_free): these.
13521 (rule_list_t): Store rule_t *, not rule_number_t.
13522 * src/state.c (state_rule_lookaheads_print): Directly compare rule
13523 pointers, instead of their numbers.
13524 * src/main.c (main): Call nullable_free, and derives_free earlier,
13525 as they were lo longer used.
13526
13527 2002-08-01 Akim Demaille <akim@epita.fr>
13528
13529 * lib/timevar.c (get_time): Include children time.
13530 * src/lalr.h (LA, LArule): Don't export them: used with the
13531 state_t.
13532 * src/lalr.c (LA, LArule): Static.
13533 * src/lalr.h, src/lalr.c (lalr_free): New.
13534 * src/main.c (main): Call it.
13535 * src/tables.c (pack_vector): Check whether loc is >= to the
13536 table_size, not >.
13537 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
13538 (tables_generate): do it, since that's also it which allocates
13539 them.
13540 Don't free LA and LArule, main does.
13541
13542 2002-07-31 Akim Demaille <akim@epita.fr>
13543
13544 Separate parser tables computation and output.
13545
13546 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
13547 (conflict_list, conflict_list_cnt, table, check, table_ninf)
13548 (yydefgoto, yydefact, high): Move to...
13549 * src/tables.h, src/tables.c: here.
13550 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
13551 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
13552 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
13553 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
13554 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
13555 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
13556 (action_row, save_row, token_actions, save_column, default_goto)
13557 (goto_actions, sort_actions, matching_state, pack_vector)
13558 (table_ninf_remap, pack_table, prepare_actions): Move to...
13559 * src/tables.c: here.
13560 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
13561 * src/output.c (token_actions, output_base, output_conflicts)
13562 (output_check): Merge into...
13563 (prepare_actions): this.
13564 (actions_output): Rename as...
13565 (user_actions_output): this.
13566 * src/main.c (main): Call tables_generate and tables_free.
13567
13568 2002-07-31 Akim Demaille <akim@epita.fr>
13569
13570 Steal GCC's --time-report support.
13571
13572 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
13573 stolen/adjusted from GCC.
13574 * m4/stage.m4: Remove time related checks.
13575 * m4/timevar.m4: New.
13576 * configure.in: Adjust.
13577 * src/system.h: Adjust to using timevar.h.
13578 * src/getargs.h, src/getargs.c: Support trace_time for
13579 --trace=time.
13580 * src/main.c (stage): Remove.
13581 (main): Replace `stage' invocations with timevar calls.
13582 * src/output.c: Insert pertinent timevar calls.
13583
13584 2002-07-31 Akim Demaille <akim@epita.fr>
13585
13586 Let --trace have arguments.
13587
13588 * src/getargs.h (enum trace_e): New.
13589 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
13590 (long_options, short_options): --trace/-T takes an optional
13591 argument.
13592 Change all the uses of trace_flag to reflect the new flags.
13593 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
13594
13595 Strengthen `stage' portability.
13596
13597 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
13598 * configure.in: Use it.
13599 Don't check for malloc.h and sys/times.h.
13600 * src/system.h: Include them when appropriate.
13601 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
13602 times and struct tms are available.
13603
13604 2002-07-30 Akim Demaille <akim@epita.fr>
13605
13606 In verbose parse error message, don't report `error' as an
13607 expected token.
13608 * tests/actions.at (Printers and Destructors): Adjust.
13609 * tests/calc.at (Calculator $1): Adjust.
13610 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
13611 error message, do not report the parser accepts the error token in
13612 that state.
13613
13614 2002-07-30 Akim Demaille <akim@epita.fr>
13615
13616 Normalize conflict related messages.
13617
13618 * src/complain.h, src/complain.c (warn, complain): New.
13619 * src/conflicts.c (conflicts_print): Use them.
13620 (conflict_report_yacc): New, extracted from...
13621 (conflicts_print): here.
13622 * tests/conflicts.at, tests/existing.at: Adjust.
13623
13624 2002-07-30 Akim Demaille <akim@epita.fr>
13625
13626 Report rules which are never reduced by the parser: those hidden
13627 by conflicts.
13628
13629 * src/LR0.c (save_reductions): Don't make the final state too
13630 different: save its reduction (accept) instead of having a state
13631 without any action (no shift or goto, no reduce).
13632 Note: the final state is now a ``regular'' state, i.e., the
13633 parsers now contain `reduce 0' as default reduction.
13634 Nevertheless, since they decide to `accept' when yystate =
13635 final_state, they still will not reduce rule 0.
13636 * src/print.c (print_actions, print_reduction): Adjust.
13637 * src/output.c (action_row): Track reduced rules.
13638 (token_actions): Report rules never reduced.
13639 * tests/conflicts.at, tests/regression.at: Adjust.
13640
13641 2002-07-30 Akim Demaille <akim@epita.fr>
13642
13643 `stage' was accidently included in a previous patch.
13644 Initiate its autoconfiscation.
13645
13646 * configure.in: Look for malloc.h and sys/times.h.
13647 * src/main.c (stage): Adjust.
13648 Report only when trace_flag.
13649
13650 2002-07-29 Akim Demaille <akim@epita.fr>
13651
13652 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
13653 state_number_t.
13654 (errs_t): symbol_t*, not symbol_number_t.
13655 (reductions_t): rule_t*, not rule_number_t.
13656 (FOR_EACH_SHIFT): New.
13657 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
13658 * src/print.c, src/print_graph.c: Adjust.
13659
13660 2002-07-29 Akim Demaille <akim@epita.fr>
13661
13662 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
13663
13664 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
13665 (endtoken, accept): these.
13666 * src/reader.c (reader): Set endtoken's default tag to "$end".
13667 Set undeftoken's tag to "$undefined" instead of "$undefined.".
13668 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
13669 Adjust.
13670
13671 2002-07-29 Akim Demaille <akim@epita.fr>
13672
13673 * src/reduce.c (reduce_grammar): When the language is empty,
13674 complain about the start symbol, not the axiom.
13675 Use its location.
13676 * tests/reduce.at (Empty Language): New.
13677
13678 2002-07-26 Akim Demaille <akim@epita.fr>
13679
13680 * src/reader.h, src/reader.c (gram_error): ... can't get
13681 yycontrol without making too strong assumptions on the parser
13682 itself.
13683 * src/output.c (prepare_tokens): Use the real 0th value of
13684 token_translations instead of `0'.
13685 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
13686 visible here.
13687 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
13688 for the time being: %locations ought to provide it to yyerror.
13689
13690 2002-07-25 Akim Demaille <akim@epita.fr>
13691
13692 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
13693 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
13694 * tests/regression.at (Web2c Actions): Adjust.
13695
13696 2002-07-25 Akim Demaille <akim@epita.fr>
13697
13698 Stop storing rules from 1 to nrules + 1.
13699
13700 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
13701 * src/nullable.c, src/output.c, src/print.c, src/reader.c
13702 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
13703 Iterate from 0 to nrules.
13704 Use rule_number_as_item_number and item_number_as_rule_number.
13705 Adjust to `derive' now containing possibly 0.
13706 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
13707 Handle the `- 1' part in rule numbers from/to item numbers.
13708 * src/conflicts.c (log_resolution): Fix the message which reversed
13709 shift and reduce.
13710 * src/output.c (action_row): Initialize default_rule to -1.
13711 (token_actions): Adjust.
13712 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
13713 expected output.
13714 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
13715
13716 2002-07-25 Akim Demaille <akim@epita.fr>
13717
13718 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
13719 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
13720 (b4_c_knr_arg_decl): New.
13721 * data/yacc.c: Use it to define yysymprint, yydestruct, and
13722 yyreport_parse_error.
13723
13724 2002-07-25 Akim Demaille <akim@epita.fr>
13725
13726 * data/yacc.c (yyreport_parse_error): New, extracted from...
13727 (yyparse): here.
13728 (yydestruct, yysymprint): Move above yyparse.
13729 Be K&R compliant.
13730
13731 2002-07-25 Akim Demaille <akim@epita.fr>
13732
13733 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
13734 replace...
13735 (b4_sint_type, b4_uint_type): these.
13736 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
13737 * tests/regression.at (Web2c Actions): Adjust.
13738
13739 2002-07-25 Akim Demaille <akim@epita.fr>
13740
13741 * src/gram.h (TIEM_NUMBER_MAX): New.
13742 (item_number_of_rule_number, rule_number_of_item_number): Rename
13743 as...
13744 (rule_number_as_item_number, item_number_as_rule_number): these.
13745 Adjust dependencies.
13746 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
13747 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
13748 (symbol_number_to_vector_number): New.
13749 (order): Of vector_number_t* type.
13750 (base_t, BASE_MAX, BASE_MIN): New.
13751 (froms, tos, width, pos, check): Of base_t type.
13752 (action_number_t, ACTION_MIN, ACTION_MAX): New.
13753 (actrow): Of action_number_t type.
13754 (conflrow): Of unsigned int type.
13755 (table_ninf, base_ninf): New.
13756 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
13757 (muscle_insert_int_table, muscle_insert_base_table)
13758 (muscle_insert_rule_number_table): New.
13759 (prepare_tokens): Output `toknum' as int_table.
13760 (action_row): Returns a rule_number_t.
13761 Use ACTION_MIN, not SHRT_MIN.
13762 (token_actions): yydefact is rule_number_t*.
13763 (table_ninf_remap): New.
13764 (pack_table): Use it for `base' and `table'.
13765 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
13766 replaced with...
13767 (YYPACT_NINF, YYTABLE_NINF): these.
13768 (yypact, yytable): Compute their types instead of hard-coded
13769 `short'.
13770 * tests/regression.at (Web2c Actions): Adjust.
13771
13772 2002-07-19 Akim Demaille <akim@epita.fr>
13773
13774 * src/scan-gram.l (id): Can start with an underscore.
13775
13776 2002-07-16 Akim Demaille <akim@epita.fr>
13777
13778 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
13779 Adjust all former `associativity' dependencies.
13780 * src/symtab.c (symbol_new): Default associativity is `undef', not
13781 `right'.
13782 (symbol_check_alias_consistence): Adjust.
13783
13784 2002-07-09 Akim Demaille <akim@epita.fr>
13785
13786 * doc/bison.texinfo: Properly set the ``header'' part.
13787 Use @dircategory ``GNU programming tools'' as per Texinfo's
13788 documentation.
13789 Use @copying.
13790
13791 2002-07-09 Akim Demaille <akim@epita.fr>
13792
13793 * lib/quotearg.h: Protect against multiple inclusions.
13794 * src/location.h (location_t): Add a `file' member.
13795 (LOCATION_RESET, LOCATION_PRINT): Adjust.
13796 * src/complain.c (warn_at, complain_at, fatal_at): Drop
13797 `error_one_per_line' support.
13798
13799 2002-07-09 Akim Demaille <akim@epita.fr>
13800
13801 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
13802 * src/reader.c (lineno): Remove.
13803 Adjust all dependencies.
13804 (get_merge_function): Take a location and use complain_at.
13805 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
13806 * tests/regression.at (Invalid inputs, Mixing %token styles):
13807 Adjust.
13808
13809 2002-07-09 Akim Demaille <akim@epita.fr>
13810
13811 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
13812 recovery rule, and forbid extensions when --yacc.
13813 (gram_error): Use complain_at.
13814 * src/reader.c (reader): Exit if there were parse errors.
13815
13816 2002-07-09 Akim Demaille <akim@epita.fr>
13817
13818 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
13819 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
13820 Reported by R Blake <blakers@mac.com>.
13821
13822 2002-07-09 Akim Demaille <akim@epita.fr>
13823
13824 * data/yacc.c: Output the copyright notive in the header.
13825
13826 2002-07-03 Akim Demaille <akim@epita.fr>
13827
13828 * src/output.c (froms, tos): Are state_number_t.
13829 (save_column): sp, sp1, and sp2 are state_number_t.
13830 (prepare): Rename `final' as `final_state_number', `nnts' as
13831 `nterms_number', `nrules' as `rules_number', `nstates' as
13832 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
13833 unused.
13834 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
13835 * data/lalr1.cc (nsym_): Remove, unused.
13836
13837 2002-07-03 Akim Demaille <akim@epita.fr>
13838
13839 * src/lalr.h, src/lalr.c (goto_number_t): New.
13840 * src/lalr.c (goto_list_t): New.
13841 Propagate them.
13842 * src/nullable.c (rule_list_t): New.
13843 Propagate.
13844 * src/types.h: Remove.
13845
13846 2002-07-03 Akim Demaille <akim@epita.fr>
13847
13848 * src/closure.c (print_fderives): Use rule_rhs_print.
13849 * src/derives.c (print_derives): Use rule_rhs_print.
13850 (rule_list_t): New, replaces `shorts'.
13851 (set_derives): Add comments.
13852 * tests/sets.at (Nullable, Firsts): Adjust.
13853
13854 2002-07-03 Akim Demaille <akim@epita.fr>
13855
13856 * src/output.c (prepare_actions): Free `tally' and `width'.
13857 (prepare_actions): Allocate and free `order'.
13858 * src/symtab.c (symbols_free): Free `symbols'.
13859 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
13860 * src/output.c (m4_invoke): Move to...
13861 * src/scan-skel.l: here.
13862 (<<EOF>>): Close yyout, and free its name.
13863
13864 2002-07-03 Akim Demaille <akim@epita.fr>
13865
13866 Fix some memory leaks, and fix a bug: state 0 was examined twice.
13867
13868 * src/LR0.c (new_state): Merge into...
13869 (state_list_append): this.
13870 (new_states): Merge into...
13871 (generate_states): here.
13872 (set_states): Don't ensure a proper `errs' state member here, do it...
13873 * src/conflicts.c (conflicts_solve): here.
13874 * src/state.h, src/state.c: Comment changes.
13875 (state_t): Rename member `shifts' as `transitions'.
13876 Adjust all dependencies.
13877 (errs_new): For consistency, also take the values as argument.
13878 (errs_dup): Remove.
13879 (state_errs_set): New.
13880 (state_reductions_set, state_transitions_set): Assert that no
13881 previous value was assigned.
13882 (state_free): New.
13883 (states_free): Use it.
13884 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
13885 temporary storage: use `errs' and `nerrs' as elsewhere.
13886 (set_conflicts): Allocate and free this `errs'.
13887
13888 2002-07-02 Akim Demaille <akim@epita.fr>
13889
13890 * lib/libiberty.h: New.
13891 * lib: Update the bitset implementation from upstream.
13892 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
13893 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
13894 * src/main.c: Adjust bitset stats calls.
13895
13896 2002-07-01 Paul Eggert <eggert@twinsun.com>
13897
13898 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
13899 char, so that negative chars don't collide with $.
13900
13901 2002-06-30 Akim Demaille <akim@epita.fr>
13902
13903 Have the GLR tests be `warning' checked, and fix the warnings.
13904
13905 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
13906 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
13907 (yyremoveDeletes): `yyi' and `yyj' are size_t.
13908 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
13909 (yyaddDeferredAction): static.
13910 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
13911 (yyreportParseError): yyprefix is const.
13912 yytokenp is used only when verbose.
13913 (yy__GNUC__): Replace with __GNUC__.
13914 (yypdumpstack): yyi is size_t.
13915 (yypreference): Un-yy local variables and arguments, to avoid
13916 clashes with `yyr1'. Anyway, we are not in the user name space.
13917 (yytname_size): be an int, as is compared with ints.
13918 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
13919 Use them.
13920 * tests/cxx-gram.at: Use quotation to protect $1.
13921 Use AT_COMPILE to enable warnings hunts.
13922 Prototype yylex and yyerror.
13923 `Use' argc.
13924 Include `string.h', not `strings.h'.
13925 Produce and prototype stmtMerge only when used.
13926 yylex takes a location.
13927
13928 2002-06-30 Akim Demaille <akim@epita.fr>
13929
13930 We spend a lot of time in quotearg, in particular when --verbose.
13931
13932 * src/symtab.c (symbol_get): Store a quoted version of the key.
13933 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
13934 Adjust all callers.
13935
13936 2002-06-30 Akim Demaille <akim@epita.fr>
13937
13938 * src/state.h (reductions_t): Rename member `nreds' as num.
13939 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
13940 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
13941
13942 2002-06-30 Akim Demaille <akim@epita.fr>
13943
13944 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
13945 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
13946 (shifts_to): Rename as...
13947 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
13948 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
13949 (TRANSITION_IS_DISABLED, transitions_to): these.
13950
13951 2002-06-30 Akim Demaille <akim@epita.fr>
13952
13953 * src/print.c (print_shifts, print_gotos): Merge into...
13954 (print_transitions): this.
13955 (print_transitions, print_errs, print_reductions): Align the
13956 lookaheads columns.
13957 (print_core, print_transitions, print_errs, print_state,
13958 print_grammar): Output empty lines separator before, not after.
13959 (state_default_rule_compute): Rename as...
13960 (state_default_rule): this.
13961 * tests/conflicts.at (Defaulted Conflicted Reduction),
13962 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
13963 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
13964
13965 2002-06-30 Akim Demaille <akim@epita.fr>
13966
13967 Display items as we display rules.
13968
13969 * src/gram.h, src/gram.c (rule_lhs_print): New.
13970 * src/gram.c (grammar_rules_partial_print): Use it.
13971 * src/print.c (print_core): Likewise.
13972 * tests/conflicts.at (Defaulted Conflicted Reduction),
13973 (Unresolved SR Conflicts): Adjust.
13974 (Unresolved SR Conflicts): Adjust and rename as...
13975 (Resolved SR Conflicts): this, as was meant.
13976 * tests/regression.at (Web2c Report): Adjust.
13977
13978 2002-06-30 Akim Demaille <akim@epita.fr>
13979
13980 * src/print.c (state_default_rule_compute): New, extracted from...
13981 (print_reductions): here.
13982 Pessimize, but clarify the code.
13983 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
13984
13985 2002-06-30 Akim Demaille <akim@epita.fr>
13986
13987 * src/output.c (action_row): Let default_rule be always a rule
13988 number.
13989
13990 2002-06-30 Akim Demaille <akim@epita.fr>
13991
13992 * src/closure.c (print_firsts, print_fderives, closure):
13993 Use BITSET_EXECUTE.
13994 * src/lalr.c (lookaheads_print): Likewise.
13995 * src/state.c (state_rule_lookaheads_print): Likewise.
13996 * src/print_graph.c (print_core): Likewise.
13997 * src/print.c (print_reductions): Likewise.
13998 * src/output.c (action_row): Likewise.
13999 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
14000
14001 2002-06-30 Akim Demaille <akim@epita.fr>
14002
14003 * src/print_graph.c: Use report_flag.
14004
14005 2002-06-30 Akim Demaille <akim@epita.fr>
14006
14007 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
14008 to...
14009 * src/relation.h, src/relation.c (traverse, relation_digraph)
14010 (relation_print, relation_transpose): New.
14011
14012 2002-06-30 Akim Demaille <akim@epita.fr>
14013
14014 * src/state.h, src/state.c (shifts_to): New.
14015 * src/lalr.c (build_relations): Use it.
14016
14017 2002-06-30 Akim Demaille <akim@epita.fr>
14018
14019 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
14020 (item_number_of_rule_number, rule_number_of_item_number): New.
14021 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
14022 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
14023 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
14024 Propagate their use.
14025 Much remains to be done, in particular wrt `shorts' from types.h.
14026
14027 2002-06-30 Akim Demaille <akim@epita.fr>
14028
14029 * src/symtab.c (symbol_new): Initialize the `printer' member.
14030
14031 2002-06-30 Akim Demaille <akim@epita.fr>
14032
14033 * src/LR0.c (save_reductions): Remove, replaced by...
14034 * src/state.h, src/state.c (state_reductions_set): New.
14035 (reductions, errs): Rename as...
14036 (reductions_t, errs_t): these.
14037 Adjust all dependencies.
14038
14039 2002-06-30 Akim Demaille <akim@epita.fr>
14040
14041 * src/LR0.c (state_list_t, state_list_append): New.
14042 (first_state, last_state): Now symbol_list_t.
14043 (this_state): Remove.
14044 (new_itemsets, append_states, save_reductions): Take a state_t as
14045 argument.
14046 (set_states, generate_states): Adjust.
14047 (save_shifts): Remove, replaced by...
14048 * src/state.h, src/state.c (state_shifts_set): New.
14049 (shifts): Rename as...
14050 (shifts_t): this.
14051 Adjust all dependencies.
14052 * src/state.h (state_t): Remove the `next' member.
14053
14054 2002-06-30 Akim Demaille <akim@epita.fr>
14055
14056 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
14057 escaped in slot 0.
14058
14059 2002-06-30 Akim Demaille <akim@epita.fr>
14060
14061 Use hash.h for the state hash table.
14062
14063 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
14064 (allocate_storage): Use state_hash_new.
14065 (free_storage): Use state_hash_free.
14066 (new_state, get_state): Adjust.
14067 * src/lalr.h, src/lalr.c (states): Move to...
14068 * src/states.h (state_t): Remove the `link' member, no longer
14069 used.
14070 * src/states.h, src/states.c: here.
14071 (state_hash_new, state_hash_free, state_hash_lookup)
14072 (state_hash_insert, states_free): New.
14073 * src/states.c (state_table, state_compare, state_hash): New.
14074 * src/output.c (output_actions): Do not free states now, since we
14075 still need to know the final_state number in `prepare', called
14076 afterwards. Do it...
14077 * src/main.c (main): here: call states_free after `output'.
14078
14079 2002-06-30 Akim Demaille <akim@epita.fr>
14080
14081 * src/state.h, src/state.c (state_new): New, extracted from...
14082 * src/LR0.c (new_state): here.
14083 * src/state.h (STATE_ALLOC): Move to...
14084 * src/state.c: here.
14085 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
14086 * src/state.h, src/state.c: here.
14087
14088 2002-06-30 Akim Demaille <akim@epita.fr>
14089
14090 * src/reader.c (gensym): Rename as...
14091 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
14092 (getsym): Rename as...
14093 (symbol_get): this.
14094
14095 2002-06-30 Akim Demaille <akim@epita.fr>
14096
14097 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
14098 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
14099 * src/output.c, src/print.c, src/print_graph.c: Propagate.
14100 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
14101
14102 2002-06-30 Akim Demaille <akim@epita.fr>
14103
14104 Make the test suite pass with warnings checked.
14105
14106 * tests/actions.at (Printers and Destructors): Improve.
14107 Avoid unsigned vs. signed issues.
14108 * tests/calc.at: Don't exercise the scanner here, do it...
14109 * tests/input.at (Torturing the Scanner): here.
14110
14111 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14112
14113 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
14114 reorganize first lines parallel to yacc.c.
14115
14116 2002-06-28 Akim Demaille <akim@epita.fr>
14117
14118 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
14119 (b4_token_enum, b4_token_defines): New, factored from...
14120 * data/lalr1.cc, data/yacc.c, glr.c: here.
14121
14122 2002-06-28 Akim Demaille <akim@epita.fr>
14123
14124 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
14125 unused variables.
14126 * src/output.c (merger_output): static.
14127
14128 2002-06-28 Akim Demaille <akim@epita.fr>
14129
14130 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
14131 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
14132 pacify GCC.
14133 * src/output.c (save_row): Initialize all the variables to pacify GCC.
14134
14135 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14136
14137 Accumulated changelog for new GLR parsing features.
14138
14139 * src/conflicts.c (count_total_conflicts): Change name to
14140 conflicts_total_count.
14141 * src/conflicts.h: Ditto.
14142 * src/output.c (token_actions): Use the new name.
14143 (output_conflicts): Change conflp => conflict_list_heads, and
14144 confl => conflict_list for better readability.
14145 * data/glr.c: Use the new names.
14146 * NEWS: Add self to GLR announcement.
14147
14148 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
14149
14150 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
14151 Akim Demaille.
14152
14153 * data/bison.glr: Change name to glr.c
14154 * data/glr.c: Renamed from bison.glr.
14155 * data/Makefile.am: Add glr.c
14156
14157 * src/getargs.c:
14158
14159 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
14160 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
14161
14162 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14163
14164 * data/bison.glr: Be sure to restore the
14165 current #line when returning to the skeleton contents after having
14166 exposed the input file's #line.
14167
14168 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14169
14170 * data/bison.glr: Bring up to date with changes to bison.simple.
14171
14172 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14173
14174 * data/bison.glr: Correct definitions that use b4_prefix.
14175 Various reformatting.
14176 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
14177 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
14178 yytokenp argument; now part of stack.
14179 (yychar): Define to behave as documented.
14180 (yyclearin): Ditto.
14181
14182 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14183
14184 * src/reader.h: Add declaration for free_merger_functions.
14185
14186 * src/reader.c (merge_functions): New variable.
14187 (get_merge_function): New function.
14188 (free_merger_functions): New function.
14189 (readgram): Check for %prec that is not followed by a symbol.
14190 Handle %dprec and %merge declarations.
14191 (packgram): Initialize dprec and merger fields in rules array.
14192
14193 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
14194 conflict_list_cnt, conflict_list_free): New variables.
14195 (table_grow): Also grow conflict_table.
14196 (prepare_rules): Output dprec and merger tables.
14197 (conflict_row): New function.
14198 (action_row): Output conflict lists for GLR parser. Don't use
14199 default reduction in conflicted states for GLR parser so that there
14200 are spaces for the conflict lists.
14201 (save_row): Also save conflict information.
14202 (token_actions): Allocate conflict list.
14203 (merger_output): New function.
14204 (pack_vector): Pack conflict table, too.
14205 (output_conflicts): New function to output yyconflp and yyconfl.
14206 (output_check): Allocate conflict_tos.
14207 (output_actions): Output conflict tables, also.
14208 (output_skeleton): Output b4_mergers definition.
14209 (prepare): Output b4_max_rhs_length definition.
14210 Use 'bison.glr' as default skeleton for GLR parsers.
14211
14212 * src/gram.c (glr_parser): New flag.
14213 (grammar_free): Call free_merger_functions.
14214
14215 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
14216 all pairs of conflicting reductions, rather than just all tokens
14217 causing conflicts. Needed to size conflict tables.
14218 (conflicts_output): Modify call to count_rr_conflicts for new
14219 interface.
14220 (conflicts_print): Ditto.
14221 (count_total_conflicts): New function.
14222
14223 * src/reader.h (merger_list): New type.
14224 (merge_functions): New variable.
14225
14226 * src/lex.h (tok_dprec, tok_merge): New token types.
14227
14228 * src/gram.h (rule_s): Add dprec and merger fields.
14229 (glr_parser): New flag.
14230
14231 * src/conflicts.h (count_total_conflicts): New function.
14232
14233 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
14234
14235 * doc/bison.texinfo (Generalized LR Parsing): New section.
14236 (GLR Parsers): New section.
14237 (Language and Grammar): Mention GLR parsing.
14238 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
14239 Correct typo ("tge" -> "the").
14240
14241 * data/bison.glr: New skeleton for GLR parsing.
14242
14243 * tests/cxx-gram.at: New tests for GLR parsing.
14244
14245 * tests/testsuite.at: Include cxx-gram.at.
14246
14247 * tests/Makefile.am: Add cxx-gram.at.
14248
14249 * src/parse-gram.y:
14250
14251 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
14252
14253 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
14254
14255 2002-06-27 Akim Demaille <akim@epita.fr>
14256
14257 * src/options.h, src/options.c: Remove.
14258 * src/getargs.c (short_options, long_options): New.
14259
14260 2002-06-27 Akim Demaille <akim@epita.fr>
14261
14262 * data/bison.simple, data/bison.c++: Rename as...
14263 * data/yacc.c, data/lalr1.cc: these.
14264 * doc/bison.texinfo (Environment Variables): Remove.
14265
14266 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
14267
14268 * src/getargs.c (report_argmatch): Initialize strtok().
14269
14270 2002-06-20 Akim Demaille <akim@epita.fr>
14271
14272 * data/bison.simple (b4_symbol_actions): New, replaces...
14273 (b4_symbol_destructor, b4_symbol_printer): these.
14274 (yysymprint): Be sure to call YYPRINT only for tokens, and using
14275 user token numbers.
14276
14277 2002-06-20 Akim Demaille <akim@epita.fr>
14278
14279 * data/bison.simple (yydestructor): Rename as...
14280 (yydestruct): this.
14281
14282 2002-06-20 Akim Demaille <akim@epita.fr>
14283
14284 * src/symtab.h, src/symtab.c (symbol_type_set)
14285 (symbol_destructor_set, symbol_precedence_set): The location is
14286 the last argument.
14287 Adjust all callers.
14288
14289 2002-06-20 Akim Demaille <akim@epita.fr>
14290
14291 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
14292 internals.
14293 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
14294 Takes a location.
14295 * src/symtab.h, src/symtab.c (symbol_class_set)
14296 (symbol_user_token_number_set): Likewise.
14297 Adjust all callers.
14298 Promote complain_at.
14299 * tests/input.at (Type Clashes): Adjust.
14300
14301 2002-06-20 Akim Demaille <akim@epita.fr>
14302
14303 * data/bison.simple (YYLEX): Fix the declaration when
14304 %pure-parser.
14305
14306 2002-06-20 Akim Demaille <akim@epita.fr>
14307
14308 * data/bison.simple (yysymprint): Don't print the token number,
14309 just its name.
14310 * tests/actions.at (Destructors): Rename as...
14311 (Printers and Destructors): this.
14312 Also exercise %printer.
14313
14314 2002-06-20 Akim Demaille <akim@epita.fr>
14315
14316 * data/bison.simple (YYDSYMPRINT): New.
14317 Use it to remove many of the #if YYDEBUG/if (yydebug).
14318
14319 2002-06-20 Akim Demaille <akim@epita.fr>
14320
14321 * src/symtab.h, src/symtab.c (symbol_t): printer and
14322 printer_location are new members.
14323 (symbol_printer_set): New.
14324 * src/parse-gram.y (PERCENT_PRINTER): New token.
14325 Handle its associated rule.
14326 * src/scan-gram.l: Adjust.
14327 (handle_destructor_at, handle_destructor_dollar): Rename as...
14328 (handle_symbol_code_at, handle_symbol_code_dollar): these.
14329 * src/output.c (symbol_printers_output): New.
14330 (output_skeleton): Call it.
14331 * data/bison.simple (yysymprint): New. Cannot be named yyprint
14332 since there are already many grammar files with a user `yyprint'.
14333 Replace the calls to YYPRINT to calls to yysymprint.
14334 * tests/calc.at: Adjust.
14335 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
14336 taking advantage of parser very internal details (stack size!).
14337
14338 2002-06-20 Akim Demaille <akim@epita.fr>
14339
14340 * src/scan-gram.l: Complete the scanner with the missing patterns
14341 to pacify Flex.
14342 Use `quote' and `symbol_tag_get' where appropriate.
14343
14344 2002-06-19 Akim Demaille <akim@epita.fr>
14345
14346 * tests/actions.at (Destructors): Augment to test locations.
14347 * data/bison.simple (yydestructor): Pass it the current location
14348 if locations are enabled.
14349 Prototype only when __STDC__ or C++.
14350 Change the argument names to move into the yy name space: there is
14351 user code here.
14352
14353 2002-06-19 Akim Demaille <akim@epita.fr>
14354
14355 * data/bison.simple (b4_pure_if): New.
14356 Use it instead of #ifdef YYPURE.
14357
14358 2002-06-19 Akim Demaille <akim@epita.fr>
14359
14360 * data/bison.simple (b4_location_if): New.
14361 Use it instead of #ifdef YYLSP_NEEDED.
14362
14363 2002-06-19 Akim Demaille <akim@epita.fr>
14364
14365 Prepare @$ in %destructor, but currently don't bind it in the
14366 skeleton, as %location use is not cleaned up yet.
14367
14368 * src/scan-gram.l (handle_dollar, handle_destructor_at)
14369 (handle_action_at): New.
14370 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
14371 a braced_code_t and a location as additional arguments.
14372 (handle_destructor_dollar): Instead of requiring `b4_eval', just
14373 unquote one when outputting `b4_dollar_dollar'.
14374 Adjust callers.
14375 * data/bison.simple (b4_eval): Remove.
14376 (b4_symbol_destructor): Adjust.
14377 * tests/input.at (Invalid @n): Adjust.
14378
14379 2002-06-19 Zack Weinberg <zack@codesourcery.com>
14380
14381 * doc/bison.texinfo: Document ability to have multiple
14382 prologue sections.
14383
14384 2002-06-18 Akim Demaille <akim@epita.fr>
14385
14386 * src/files.c (compute_base_names): When computing the output file
14387 names from the input file name, strip the directory part.
14388
14389 2002-06-18 Akim Demaille <akim@epita.fr>
14390
14391 * data/bison.simple.new: Comment changes.
14392 Reported by Andreas Schwab.
14393
14394 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
14395
14396 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
14397 there are no `label `yyoverflowlab' defined but not used' warnings
14398 when yyoverflow is defined.
14399
14400 2002-06-18 Akim Demaille <akim@epita.fr>
14401
14402 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
14403 new member.
14404 (symbol_destructor_set): Adjust.
14405 * src/output.c (symbol_destructors_output): Output the destructor
14406 locations.
14407 Output the symbol name.
14408 * data/bison.simple (b4_symbol_destructor): Adjust.
14409
14410 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
14411 and Akim Demaille <akim@epita.fr>
14412
14413 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
14414 what's left on the stack when the error recovery hits EOF.
14415 * tests/actions.at (Destructors): Complete to exercise this case.
14416
14417 2002-06-17 Akim Demaille <akim@epita.fr>
14418
14419 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
14420 arguments is really empty, not only equal to `[]'.
14421 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
14422 member.
14423 (symbol_destructor_set): New.
14424 * src/output.c (symbol_destructors_output): New.
14425 * src/reader.h (brace_code_t, current_braced_code): New.
14426 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
14427 (handle_dollar): Rename as...
14428 (handle_action_dollar): this.
14429 (handle_destructor_dollar): New.
14430 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
14431 (grammar_declaration): Use it.
14432 * data/bison.simple (yystos): Is always defined.
14433 (yydestructor): New.
14434 * tests/actions.at (Destructors): New.
14435 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
14436
14437 2002-06-17 Akim Demaille <akim@epita.fr>
14438
14439 * src/symlist.h, src/symlist.c (symbol_list_length): New.
14440 * src/scan-gram.l (handle_dollar, handle_at): Compute the
14441 rule_length only when needed.
14442 * src/output.c (actions_output, token_definitions_output): Output
14443 the full M4 block.
14444 * src/symtab.c: Don't access directly to the symbol tag, use
14445 symbol_tag_get.
14446 * src/parse-gram.y: Use symbol_list_free.
14447
14448 2002-06-17 Akim Demaille <akim@epita.fr>
14449
14450 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
14451 (symbol_list_prepend, get_type_name): Move to...
14452 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
14453 (symbol_list_prepend, symbol_list_n_type_name_get): here.
14454 Adjust all callers.
14455 (symbol_list_free): New.
14456 * src/scan-gram.l (handle_dollar): Takes a location.
14457 * tests/input.at (Invalid $n): Adjust.
14458
14459 2002-06-17 Akim Demaille <akim@epita.fr>
14460
14461 * src/reader.h, src/reader.c (symbol_list_new): Export it.
14462 (symbol_list_prepend): New.
14463 * src/parse-gram.y (%union): `list' is a new member.
14464 (symbols.1): New, replaces...
14465 (terms_to_prec.1, nterms_to_type.1): these.
14466 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
14467 Take a location as additional argument.
14468 Adjust all callers.
14469
14470 2002-06-15 Akim Demaille <akim@epita.fr>
14471
14472 * src/parse-gram.y: Move %token in the declaration section so that
14473 we don't depend upon CVS Bison.
14474
14475 2002-06-15 Akim Demaille <akim@epita.fr>
14476
14477 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
14478 * src/print.c (print_core): Use it.
14479
14480 2002-06-15 Akim Demaille <akim@epita.fr>
14481
14482 * src/conflicts.c (log_resolution): Accept the rule involved in
14483 the sr conflicts instead of the lookahead number that points to
14484 that rule.
14485 (flush_reduce): Accept the current lookahead vector as argument,
14486 instead of the index in LA.
14487 (resolve_sr_conflict): Accept the current number of lookahead
14488 bitset to consider for the STATE, instead of the index in LA.
14489 (set_conflicts): Adjust.
14490 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
14491
14492 2002-06-15 Akim Demaille <akim@epita.fr>
14493
14494 * src/state.h (state_t): Replace the `lookaheadsp' member, a
14495 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
14496 Adjust all dependencies.
14497 * src/lalr.c (initialize_lookaheads): Split into...
14498 (states_lookaheads_count, states_lookaheads_initialize): these.
14499 (lalr): Adjust.
14500
14501 2002-06-15 Akim Demaille <akim@epita.fr>
14502
14503 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
14504 out of...
14505 (grammar_rules_print): here.
14506 * src/reduce.c (reduce_output): Use it.
14507 * tests/reduce.at (Useless Rules, Reduced Automaton)
14508 (Underivable Rules): Adjust.
14509
14510 2002-06-15 Akim Demaille <akim@epita.fr>
14511
14512 Copy BYacc's nice way to report the grammar.
14513
14514 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
14515 New.
14516 Don't print the rules' location, it is confusing and useless.
14517 (rule_print): Use grammar_rhs_print.
14518 * src/print.c (print_grammar): Use grammar_rules_print.
14519
14520 2002-06-15 Akim Demaille <akim@epita.fr>
14521
14522 Complete and rationalize `useless thing' warnings.
14523
14524 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
14525 (symbol_tag_print): New.
14526 Use them everywhere in place of accessing directly the tag member.
14527 * src/gram.h, src/gram.c (rule_print): New.
14528 Use it where a rule used to be printed `by hand'.
14529 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
14530 (reduce_grammar_tables): Report the useless rules.
14531 (reduce_print): Useless things are a warning, not an error.
14532 Report it as such.
14533 * tests/reduce.at (Useless Nonterminals, Useless Rules):
14534 (Reduced Automaton, Underivable Rules): Adjust.
14535 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
14536 * tests/conflicts.at (Unresolved SR Conflicts)
14537 (Solved SR Conflicts): Adjust.
14538
14539 2002-06-15 Akim Demaille <akim@epita.fr>
14540
14541 Let symbols have a location.
14542
14543 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
14544 (getsym): Adjust.
14545 Adjust all callers.
14546 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
14547 Use location_t, not int.
14548 * src/symtab.c (symbol_check_defined): Take advantage of the
14549 location.
14550 * tests/regression.at (Invalid inputs): Adjust.
14551
14552 2002-06-15 Akim Demaille <akim@epita.fr>
14553
14554 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
14555 (input): Don't try to initialize yylloc here, do it in the
14556 scanner.
14557 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
14558 * src/gram.h (rule_t): Change line and action_line into location
14559 and action_location, of location_t type.
14560 Adjust all dependencies.
14561 * src/location.h, src/location.c (empty_location): New.
14562 * src/reader.h, src/reader.c (grammar_start_symbol_set)
14563 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
14564 (grammar_current_rule_symbol_append)
14565 (grammar_current_rule_action_append): Expect a location as argument.
14566 * src/reader.c (grammar_midrule_action): Adjust to attach an
14567 action's location as dummy symbol location.
14568 * src/symtab.h, src/symtab.c (startsymbol_location): New.
14569 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
14570 the line numbers.
14571
14572 2002-06-14 Akim Demaille <akim@epita.fr>
14573
14574 Grammar declarations may be found in the grammar section.
14575
14576 * src/parse-gram.y (rules_or_grammar_declaration): New.
14577 (declarations): Each declaration may end with a semicolon, not
14578 just...
14579 (grammar_declaration): `"%union"'.
14580 (grammar): Branch to rules_or_grammar_declaration.
14581
14582 2002-06-14 Akim Demaille <akim@epita.fr>
14583
14584 * src/main.c (main): Invoke scanner_free.
14585
14586 2002-06-14 Akim Demaille <akim@epita.fr>
14587
14588 * src/output.c (m4_invoke): Extracted from...
14589 (output_skeleton): here.
14590 Free tempfile.
14591
14592 2002-06-14 Akim Demaille <akim@epita.fr>
14593
14594 * src/parse-gram.y (directives, directive, gram)
14595 (grammar_directives, precedence_directives, precedence_directive):
14596 Rename as...
14597 (declarations, declaration, grammar, grammar_declaration)
14598 (precedence_declaration, precedence_declarator): these.
14599 (symbol_declaration): New.
14600
14601 2002-06-14 Akim Demaille <akim@epita.fr>
14602
14603 * src/files.c (action_obstack): Remove, unused.
14604 (output_obstack): Remove it, and all its dependencies, as it is no
14605 longer needed.
14606 * src/reader.c (epilogue_set): Build the epilogue in the
14607 muscle_obstack.
14608 * src/output.h, src/output.c (muscle_obstack): Move to...
14609 * src/muscle_tab.h, src/muscle_tab.h: here.
14610 (muscle_init): Initialize muscle_obstack.
14611 (muscle_free): New.
14612 * src/main.c (main): Call it.
14613
14614 2002-06-14 Akim Demaille <akim@epita.fr>
14615
14616 * src/location.h: New, extracted from...
14617 * src/reader.h: here.
14618 * src/Makefile.am (noinst_HEADERS): Merge into
14619 (bison_SOURCES): this.
14620 Add location.h.
14621 * src/parse-gram.y: Use location_t instead of Bison's.
14622 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
14623 Use location_t instead of ints.
14624
14625 2002-06-14 Akim Demaille <akim@epita.fr>
14626
14627 * data/bison.simple, data/bison.c++: Be sure to restore the
14628 current #line when returning to the skeleton contents after having
14629 exposed the input file's #line.
14630
14631 2002-06-12 Akim Demaille <akim@epita.fr>
14632
14633 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
14634 eager.
14635 * tests/actions.at (Exotic Dollars): New.
14636
14637 2002-06-12 Akim Demaille <akim@epita.fr>
14638
14639 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
14640 ['"/] too eagerly.
14641 * tests/input.at (Torturing the Scanner): New.
14642
14643 2002-06-11 Akim Demaille <akim@epita.fr>
14644
14645 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
14646 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
14647 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
14648 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
14649 * src/reader.c (reader): Use it.
14650
14651 2002-06-11 Akim Demaille <akim@epita.fr>
14652
14653 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
14654 Adjust all callers.
14655 (scanner_last_string_free): New.
14656
14657 2002-06-11 Akim Demaille <akim@epita.fr>
14658
14659 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
14660 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
14661 (last_string, YY_OBS_FREE): New.
14662 Use them when returning an ID.
14663
14664 2002-06-11 Akim Demaille <akim@epita.fr>
14665
14666 Have Bison grammars parsed by a Bison grammar.
14667
14668 * src/reader.c, src/reader.h (prologue_augment): New.
14669 * src/reader.c (copy_definition): Remove.
14670
14671 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
14672 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
14673 (grammar_current_rule_prec_set, grammar_current_rule_check)
14674 (grammar_current_rule_symbol_append)
14675 (grammar_current_rule_action_append): Export.
14676 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
14677 (symbol_list_action_append): Remove.
14678 Hook the routines from reader.
14679 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
14680 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
14681
14682 * src/reader.c (read_declarations): Remove, unused.
14683
14684 * src/parse-gram.y: Handle the epilogue.
14685 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
14686 (grammar_start_symbol_set): this.
14687 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
14688 * src/reader.c (readgram): Remove, unused.
14689 (reader): Adjust to insert eoftoken and axiom where appropriate.
14690
14691 * src/reader.c (copy_dollar): Replace with...
14692 * src/scan-gram.h (handle_dollar): this.
14693 * src/parse-gram.y: Remove `%thong'.
14694
14695 * src/reader.c (copy_at): Replace with...
14696 * src/scan-gram.h (handle_at): this.
14697
14698 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
14699 New.
14700
14701 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
14702 time being.
14703
14704 * src/reader.h, src/reader.c (grammar_rule_end): New.
14705
14706 * src/parse.y (current_type, current_class): New.
14707 Implement `%nterm', `%token' support.
14708 Merge `%term' into `%token'.
14709 (string_as_id): New.
14710 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
14711 type name.
14712
14713 * src/parse-gram.y: Be sure to handle properly the beginning of
14714 rules.
14715
14716 * src/parse-gram.y: Handle %type.
14717 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
14718
14719 * src/parse-gram.y: More directives support.
14720 * src/options.c: No longer handle source directives.
14721
14722 * src/parse-gram.y: Fix %output.
14723
14724 * src/parse-gram.y: Handle %union.
14725 Use the prologue locations.
14726 * src/reader.c (parse_union_decl): Remove.
14727
14728 * src/reader.h, src/reader.c (epilogue_set): New.
14729 * src/parse-gram.y: Use it.
14730
14731 * data/bison.simple, data/bison.c++: b4_stype is now either not
14732 defined, then default to int, or to the contents of %union,
14733 without `union' itself.
14734 Adjust.
14735 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
14736
14737 * src/output.c (actions_output): Don't output braces, as they are
14738 already handled by the scanner.
14739
14740 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
14741 characters to themselves.
14742
14743 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
14744 that the epilogue has a proper #line.
14745
14746 * src/parse-gram.y: Handle precedence/associativity.
14747
14748 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
14749 a terminal.
14750 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
14751 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
14752 at all to define terminals that cannot be emitted.
14753
14754 * src/scan-gram.l: Escape M4 characters.
14755
14756 * src/scan-gram.l: Working properly with escapes in user
14757 strings/characters.
14758
14759 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
14760 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
14761 grammar.
14762 Use more modest sizes, as for the time being the parser does not
14763 release memory, and therefore the process swallows a huge amount
14764 of memory.
14765
14766 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
14767 stricter %token grammar.
14768
14769 * src/symtab.h (associativity): Add `undef_assoc'.
14770 (symbol_precedence_set): Do nothing when passed an undef_assoc.
14771 * src/symtab.c (symbol_check_alias_consistence): Adjust.
14772
14773 * tests/regression.at (Invalid %directive): Remove, as it is now
14774 meaningless.
14775 (Invalid inputs): Adjust to the new error messages.
14776 (Token definitions): The new grammar doesn't allow too many
14777 eccentricities.
14778
14779 * src/lex.h, src/lex.c: Remove.
14780 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
14781 (copy_character, copy_string2, copy_string, copy_identifier)
14782 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
14783 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
14784 (parse_action): Remove.
14785 * po/POTFILES.in: Adjust.
14786
14787 2002-06-11 Akim Demaille <akim@epita.fr>
14788
14789 * src/reader.c (parse_action): Don't store directly into the
14790 rule's action member: return the action as a string.
14791 Don't require `rule_length' as an argument: compute it.
14792 (grammar_current_rule_symbol_append)
14793 (grammar_current_rule_action_append): New, eved out from
14794 (readgram): here.
14795 Remove `action_flag', `rulelength', unused now.
14796
14797 2002-06-11 Akim Demaille <akim@epita.fr>
14798
14799 * src/reader.c (grammar_current_rule_prec_set).
14800 (grammar_current_rule_check): New, eved out from...
14801 (readgram): here.
14802 Remove `xaction', `first_rhs': useless.
14803 * tests/input.at (Type clashes): New.
14804 * tests/existing.at (GNU Cim Grammar): Adjust.
14805
14806 2002-06-11 Akim Demaille <akim@epita.fr>
14807
14808 * src/reader.c (grammar_midrule_action): New, Eved out from
14809 (readgram): here.
14810
14811 2002-06-11 Akim Demaille <akim@epita.fr>
14812
14813 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
14814 New.
14815 (readgram): Use them as replacement of inlined code, crule and
14816 crule1.
14817
14818 2002-06-11 Akim Demaille <akim@epita.fr>
14819
14820 * src/reader.c (grammar_end, grammar_symbol_append): New.
14821 (readgram): Use them.
14822 Make the use of `p' as local as possible.
14823
14824 2002-06-10 Akim Demaille <akim@epita.fr>
14825
14826 GCJ's parser requires the tokens to be defined before the prologue.
14827
14828 * data/bison.simple: Output the token definition before the user's
14829 prologue.
14830 * tests/regression.at (Braces parsing, Duplicate string)
14831 (Mixing %token styles): Check the output from bison.
14832 (Early token definitions): New.
14833
14834 2002-06-10 Akim Demaille <akim@epita.fr>
14835
14836 * src/symtab.c (symbol_user_token_number_set): Don't complain when
14837 assigning twice the same user number to a token, so that we can
14838 use it in...
14839 * src/lex.c (lex): here.
14840 Also use `symbol_class_set' instead of hand written code.
14841 * src/reader.c (parse_assoc_decl): Likewise.
14842
14843 2002-06-10 Akim Demaille <akim@epita.fr>
14844
14845 * src/symtab.c, src/symtab.c (symbol_class_set)
14846 (symbol_user_token_number_set): New.
14847 * src/reader.c (parse_token_decl): Use them.
14848 Use a switch instead of ifs.
14849 Use a single argument.
14850
14851 2002-06-10 Akim Demaille <akim@epita.fr>
14852
14853 Remove `%thong' support as it is undocumented, unused, duplicates
14854 `%token's job, and creates useless e-mail traffic with people who
14855 want to know what it is, why it is undocumented, unused, and
14856 duplicates `%token's job.
14857
14858 * src/reader.c (parse_thong_decl): Remove.
14859 * src/options.c (option_table): Remove "thong".
14860 * src/lex.h (tok_thong): Remove.
14861
14862 2002-06-10 Akim Demaille <akim@epita.fr>
14863
14864 * src/symtab.c, src/symtab.c (symbol_type_set)
14865 (symbol_precedence_set): New.
14866 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
14867 (value_components_used): Remove, unused.
14868
14869 2002-06-09 Akim Demaille <akim@epita.fr>
14870
14871 Move symbols handling code out of the reader.
14872
14873 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
14874 (axiom): Move to...
14875 * src/symtab.h, src/symtab.c: here.
14876
14877 * src/gram.c (start_symbol): Remove: use startsymbol->number.
14878 * src/reader.c (startval): Rename as...
14879 * src/symtab.h, src/symtab.c (startsymbol): this.
14880 * src/reader.c: Adjust.
14881
14882 * src/reader.c (symbol_check_defined, symbol_make_alias)
14883 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
14884 (token_translations_init)
14885 Move to...
14886 * src/symtab.c: here.
14887 * src/reader.c (packsymbols): Move to...
14888 * src/symtab.h, src/symtab.c (symbols_pack): here.
14889 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
14890 argument.
14891
14892 2002-06-03 Akim Demaille <akim@epita.fr>
14893
14894 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
14895 then statements.
14896
14897 2002-06-03 Akim Demaille <akim@epita.fr>
14898
14899 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
14900 structs with non literals.
14901 * src/scan-skel.l: never-interactive.
14902 * src/conflicts.c (enum conflict_resolution_e): No trailing
14903 comma.
14904 * src/getargs.c (usage): Split long literal strings.
14905 Reported by Hans Aberg.
14906
14907 2002-05-28 Akim Demaille <akim@epita.fr>
14908
14909 * data/bison.c++: Use C++ ostreams.
14910 (cdebug_): New member.
14911
14912 2002-05-28 Akim Demaille <akim@epita.fr>
14913
14914 * src/output.c (output_skeleton): Be sure to allocate enough room
14915 for `/' _and_ for `\0' in full_skeleton.
14916
14917 2002-05-28 Akim Demaille <akim@epita.fr>
14918
14919 * data/bison.c++: Catch up with bison.simple:
14920 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14921 and Paul Eggert <eggert@twinsun.com>: `error' handing.
14922 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
14923 and popping traces.
14924
14925 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14926
14927 * src/output.c (output_skeleton): Put an explicit path in front of
14928 the skeleton file name, rather than relying on the -I directory,
14929 to partially alleviate effects of having a skeleton file lying around
14930 in the current directory.
14931
14932 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14933
14934 * src/conflicts.c (log_resolution): Correct typo:
14935 obstack_printf should be obstack_fgrow1.
14936
14937 2002-05-26 Akim Demaille <akim@epita.fr>
14938
14939 * src/state.h (state_t): `solved_conflicts' is a new member.
14940 * src/LR0.c (new_state): Set it to 0.
14941 * src/conflicts.h, src/conflicts.c (print_conflicts)
14942 (free_conflicts, solve_conflicts): Rename as...
14943 (conflicts_print, conflicts_free, conflicts_solve): these.
14944 Adjust callers.
14945 * src/conflicts.c (enum conflict_resolution_e)
14946 (solved_conflicts_obstack): New, used by...
14947 (log_resolution): this.
14948 Adjust to attach the conflict resolution to each state.
14949 Complete the description with the precedence/associativity
14950 information.
14951 (resolve_sr_conflict): Adjust.
14952 * src/print.c (print_state): Output its solved_conflicts.
14953 * tests/conflicts.at (Unresolved SR Conflicts)
14954 (Solved SR Conflicts): Exercise --report=all.
14955
14956 2002-05-26 Akim Demaille <akim@epita.fr>
14957
14958 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
14959 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
14960 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
14961 (token_number_t, item_number_as_token_number)
14962 (token_number_as_item_number, muscle_insert_token_number_table):
14963 Rename as...
14964 (symbol_number_t, item_number_as_symbol_number)
14965 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
14966 these, since it is more appropriate.
14967
14968 2002-05-26 Akim Demaille <akim@epita.fr>
14969
14970 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
14971 `Error:' lines.
14972 * data/bison.simple (yystos) [YYDEBUG]: New.
14973 (yyparse) [YYDEBUG]: Display the symbols which are popped during
14974 error recovery.
14975 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
14976
14977 2002-05-25 Akim Demaille <akim@epita.fr>
14978
14979 * doc/bison.texinfo (Debugging): Split into...
14980 (Tracing): this new section, its former contents, and...
14981 (Understanding): this new section.
14982 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
14983 by...
14984 (report_flag): this.
14985 Adjust all dependencies.
14986 (report_args, report_types, report_argmatch): New.
14987 (usage, getargs): Report/support -r, --report.
14988 * src/options.h
14989 (struct option_table_struct): Rename as..,
14990 (struct option_table_s): this.
14991 Rename the `set_flag' member to `flag' to match with getopt_long's
14992 struct.
14993 * src/options.c (option_table): Split verbose into an entry for
14994 %verbose, and another for --verbose.
14995 Support --report/-r, so remove -r from the obsolete --raw.
14996 * src/print.c: Attach full item sets and lookaheads reports to
14997 report_flag instead of trace_flag.
14998 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
14999
15000 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15001 and Paul Eggert <eggert@twinsun.com>
15002
15003 * data/bison.simple (yyparse): Correct error handling to conform to
15004 POSIX and yacc. Specifically, after syntax error is discovered,
15005 do not reduce further before shifting the error token.
15006 Clean up the code a bit by removing the labels yyerrdefault,
15007 yyerrhandle, yyerrpop.
15008 * NEWS: Document the above.
15009
15010 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15011
15012 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
15013 type; it isn't always big enough, since it doesn't necessarily
15014 include non-terminals.
15015 (yytranslate): Expand definition of yy_token_number_type, so that
15016 the latter can be removed.
15017 (yy_token_number_type): Remove, only one use.
15018 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
15019 don't use TokenNumberType as element type.
15020
15021 * tests/regression.at: Modify expected output to agree with change
15022 to yyr1 and yytranslate.
15023
15024 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
15025
15026 * src/reader.c (parse_action): Use copy_character instead of
15027 obstack_1grow.
15028
15029 2002-05-13 Akim Demaille <akim@epita.fr>
15030
15031 * tests/regression.at (Token definitions): Prototype yylex and
15032 yyerror.
15033
15034 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15035
15036 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
15037 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
15038 32-bit arithmetic.
15039 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
15040
15041 2002-05-07 Akim Demaille <akim@epita.fr>
15042
15043 * tests/synclines.at: Be sure to prototype yylex and yyerror to
15044 avoid GCC warnings.
15045
15046 2002-05-07 Akim Demaille <akim@epita.fr>
15047
15048 Kill GCC warnings.
15049
15050 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
15051 over the RHS of each rule.
15052 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
15053 * src/state.h (state_t): Member `nitems' is unsigned short.
15054 * src/LR0.c (get_state): Adjust.
15055 * src/reader.c (packgram): Likewise.
15056 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
15057 `Type'.
15058 (muscle_insert_int_table): Remove, unused.
15059 (prepare_rules): Remove `max'.
15060
15061 2002-05-06 Akim Demaille <akim@epita.fr>
15062
15063 * src/closure.c (print_firsts): Display of the symbol tags.
15064 (bitmatrix_print): Move to...
15065 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
15066 here.
15067 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
15068
15069 2002-05-06 Akim Demaille <akim@epita.fr>
15070
15071 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
15072 hash_do_for_each.
15073
15074 2002-05-06 Akim Demaille <akim@epita.fr>
15075
15076 * src/LR0.c (new_state, get_state): Instead of using the global
15077 `kernel_size' and `kernel_base', have two new arguments:
15078 `core_size' and `core'.
15079 Adjust callers.
15080
15081 2002-05-06 Akim Demaille <akim@epita.fr>
15082
15083 * src/reader.c (packgram): No longer end `ritem' with a 0
15084 sentinel: it is not used.
15085
15086 2002-05-05 Akim Demaille <akim@epita.fr>
15087
15088 New experimental feature: display the lookaheads in the report and
15089 graph.
15090
15091 * src/print (print_core): When --trace-flag, display the rules
15092 lookaheads.
15093 * src/print_graph.c (print_core): Likewise.
15094 Swap the arguments.
15095 Adjust caller.
15096
15097 2002-05-05 Akim Demaille <akim@epita.fr>
15098
15099 * tests/torture.at (Many lookaheads): New test.
15100
15101 2002-05-05 Akim Demaille <akim@epita.fr>
15102
15103 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
15104 (GENERATE_MUSCLE_INSERT_TABLE): this.
15105 (output_int_table, output_unsigned_int_table, output_short_table)
15106 (output_token_number_table, output_item_number_table): Replace with...
15107 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
15108 (muscle_insert_short_table, muscle_insert_token_number_table)
15109 (muscle_insert_item_number_table): these.
15110 Adjust all callers.
15111 (prepare_tokens): Don't free `translations', since...
15112 * src/reader.h, src/reader.c (grammar_free): do it.
15113 Move to...
15114 * src/gram.h, src/gram.c (grammar_free): here.
15115 * data/bison.simple, data/bison.c++: b4_token_number_max is now
15116 b4_translate_max.
15117
15118 2002-05-05 Akim Demaille <akim@epita.fr>
15119
15120 * src/output.c (output_unsigned_int_table): New.
15121 (prepare_rules): `i' is unsigned.
15122 `prhs', `rline', `r2' are unsigned int.
15123 Rename muscle `rhs_number_max' as `rhs_max'.
15124 Output muscles `prhs_max', `rline_max', and `r2_max'.
15125 Free rline and r1.
15126 * data/bison.simple, data/bison.c++: Adjust to use these muscles
15127 to compute types instead of constant types.
15128 * tests/regression.at (Web2c Actions): Adjust.
15129
15130 2002-05-04 Akim Demaille <akim@epita.fr>
15131
15132 * src/symtab.h (SALIAS, SUNDEF): Rename as...
15133 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
15134 Adjust dependencies.
15135 * src/output.c (token_definitions_output): Be sure not to output a
15136 `#define 'a'' when fed with `%token 'a' "a"'.
15137 * tests/regression.at (Token definitions): New.
15138
15139 2002-05-03 Paul Eggert <eggert@twinsun.com>
15140
15141 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
15142 for K&R C.
15143
15144 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
15145
15146 * Makefile.am (SUBDIRS): Remove intl.
15147 (EXTRA_DIST): Add config/config.rpath.
15148
15149 2002-05-03 Akim Demaille <akim@epita.fr>
15150
15151 * data/bison.simple (m4_if): Don't output empty enums.
15152 And actually, output valid enum definitions :(.
15153
15154 2002-05-03 Akim Demaille <akim@epita.fr>
15155
15156 * configure.bat: Remove, completely obsolete.
15157 * Makefile.am (EXTRA_DIST): Adjust.
15158 Don't distribute config.rpath...
15159 * config/Makefile.am (EXTRA_DIST): Do it.
15160
15161 2002-05-03 Akim Demaille <akim@epita.fr>
15162
15163 * configure.in (GETTEXT_VERSION): New.
15164 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
15165
15166 2002-05-03 Akim Demaille <akim@epita.fr>
15167
15168 * data/bison.simple (b4_token_enum): New.
15169 (b4_token_defines): Use it to output tokens both as #define and
15170 enums.
15171 Suggested by Paul Eggert.
15172 * src/output.c (token_definitions_output): Don't output spurious
15173 white spaces.
15174
15175 2002-05-03 Akim Demaille <akim@epita.fr>
15176
15177 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
15178
15179 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
15180
15181 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
15182 Update the stack class, give a try to deque as the default container.
15183
15184 2002-05-02 Akim Demaille <akim@epita.fr>
15185
15186 * data/bison.simple (yyparse): Do not implement @$ = @1.
15187 (YYLLOC_DEFAULT): Adjust to do it.
15188 * doc/bison.texinfo (Location Default Action): Fix.
15189
15190 2002-05-02 Akim Demaille <akim@epita.fr>
15191
15192 * src/reader.c (parse_braces): Merge into...
15193 (parse_action): this.
15194
15195 2002-05-02 Akim Demaille <akim@epita.fr>
15196
15197 * configure.in (ALL_LINGUAS): Remove.
15198 * po/LINGUAS, hr.po: New.
15199
15200 2002-05-02 Akim Demaille <akim@epita.fr>
15201
15202 Remove the so called hairy (semantic) parsers.
15203
15204 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
15205 * src/gram.h, src/gram.c (semantic_parser): Remove.
15206 (rule_t): Remove the guard and guard_line members.
15207 * src/lex.h (token_t): remove tok_guard.
15208 * src/options.c (option_table): Remove %guard and %semantic_parser
15209 support.
15210 * src/output.c, src/output.h (guards_output): Remove.
15211 (prepare): Adjust.
15212 (token_definitions_output): Don't output the `T'
15213 tokens (???).
15214 (output_skeleton): Don't output the guards.
15215 * src/files.c, src/files.c (attrsfile): Remove.
15216 * src/reader.c (symbol_list): Remove the guard and guard_line
15217 members.
15218 Adjust dependencies.
15219 (parse_guard): Remove.
15220 * data/bison.hairy: Remove.
15221 * doc/bison.texinfo (Environment Variables): Remove occurrences of
15222 BISON_HAIRY.
15223
15224 2002-05-02 Akim Demaille <akim@epita.fr>
15225
15226 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
15227 (parse_guard): Rename the formal argument `stack_offset' as
15228 `rule_length', which is more readable.
15229 Adjust callers.
15230 (copy_at, copy_dollar): Instead of outputting the hard coded
15231 values of $$, $n and so forth, output invocation to b4_lhs_value,
15232 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
15233 Note: this patch partially drops `semantic-parser' support: it
15234 always does `rule_length - n', where semantic parsers ought to
15235 always use `-n'.
15236 * data/bison.simple, data/bison.c++ (b4_lhs_value)
15237 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
15238
15239 2002-05-02 Akim Demaille <akim@epita.fr>
15240
15241 * configure.in (AC_INIT): Bump to 1.49b.
15242 (AM_INIT_AUTOMAKE): Short invocation.
15243
15244 2002-05-02 Akim Demaille <akim@epita.fr>
15245
15246 Version 1.49a.
15247
15248 2002-05-01 Akim Demaille <akim@epita.fr>
15249
15250 * src/skeleton.h: Remove.
15251
15252 2002-05-01 Akim Demaille <akim@epita.fr>
15253
15254 * src/skeleton.h: Fix the #endif.
15255 Reported by Magnus Fromreide.
15256
15257 2002-04-26 Paul Eggert <eggert@twinsun.com>
15258
15259 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
15260 Define if we define YYSTYPE and YYLTYPE, respectively.
15261 (YYCOPY): Fix [] quoting problem in the non-GCC case.
15262
15263 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
15264
15265 * src/scan-skel.l: Postprocess quadrigraphs.
15266
15267 * src/reader.c (copy_character): New function, used to output
15268 single characters while replacing `[' and `]' with quadrigraphs, to
15269 avoid troubles with M4 quotes.
15270 (copy_comment): Output characters with copy_character.
15271 (read_additionnal_code): Likewise.
15272 (copy_string2): Likewise.
15273 (copy_definition): Likewise.
15274
15275 * tests/calc.at: Exercise M4 quoting.
15276
15277 2002-04-25 Akim Demaille <akim@epita.fr>
15278
15279 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
15280 between `!' and the command.
15281 Reported by Paul Eggert.
15282
15283 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
15284
15285 * tests/calc.at: Exercise prologue splitting.
15286
15287 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
15288 `b4_post_prologue' instead of `b4_prologue'.
15289
15290 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
15291 muscles.
15292 (output): Free pre_prologue_obstack and post_prologue_obstack.
15293 * src/files.h, src/files.c (attrs_obstack): Remove.
15294 (pre_prologue_obstack, post_prologue_obstack): New.
15295 * src/reader.c (copy_definition): Add a parameter to specify the
15296 obstack to fill, instead of using attrs_obstack unconditionally.
15297 (read_declarations): Pass pre_prologue_obstack to copy_definition if
15298 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
15299
15300 2002-04-23 Paul Eggert <eggert@twinsun.com>
15301
15302 * data/bison.simple: Remove unnecessary commentary and white
15303 space differences from 1_29-branch.
15304 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
15305
15306 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
15307 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
15308 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
15309 constructors or destructors.
15310
15311 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
15312
15313 2002-04-23 Akim Demaille <akim@epita.fr>
15314
15315 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
15316 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
15317 location with columns.
15318 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
15319 All reported by Paul Eggert.
15320
15321 2002-04-22 Akim Demaille <akim@epita.fr>
15322
15323 * src/reduce.c (dump_grammar): Move to...
15324 * src/gram.h, src/gram.c (grammar_dump): here.
15325 Be sure to separate long item numbers.
15326 Don't read the members of a rule's prec if its nil.
15327
15328 2002-04-22 Akim Demaille <akim@epita.fr>
15329
15330 * src/output.c (table_size, table_grow): New.
15331 (MAXTABLE): Remove, replace uses with table_size.
15332 (pack_vector): Instead of dying when the table is too big, grow it.
15333
15334 2002-04-22 Akim Demaille <akim@epita.fr>
15335
15336 * data/bison.simple (yyr1): Its type is that of a token number.
15337 * data/bison.c++ (r1_): Likewise.
15338 * tests/regression.at (Web2c Actions): Adjust.
15339
15340 2002-04-22 Akim Demaille <akim@epita.fr>
15341
15342 * src/reader.c (token_translations_init): 256 is now the default
15343 value for the error token, i.e., it will be assigned another
15344 number if the user assigned 256 to one of her tokens.
15345 (reader): Don't force 256 to error.
15346 * doc/bison.texinfo (Symbols): Adjust.
15347 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
15348 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
15349 etc. instead of 10, 20, 30 (which was used to `jump' over error
15350 (256) and undefined (2)).
15351
15352 2002-04-22 Akim Demaille <akim@epita.fr>
15353
15354 Propagate more token_number_t.
15355
15356 * src/gram.h (token_number_as_item_number)
15357 (item_number_as_token_number): New.
15358 * src/output.c (GENERATE_OUTPUT_TABLE): New.
15359 Use it to create output_item_number_table and
15360 output_token_number_table.
15361 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
15362 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
15363 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
15364 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
15365
15366 2002-04-22 Akim Demaille <akim@epita.fr>
15367
15368 * src/output.h, src/output.c (get_lines_number): Remove.
15369
15370 2002-04-19 Akim Demaille <akim@epita.fr>
15371
15372 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
15373 as Lex/Flex'.
15374 (Debugging): More details about enabling the debugging features.
15375 (Table of Symbols): Describe $$, $n, @$, and @n.
15376 Suggested by Tim Josling.
15377
15378 2002-04-19 Akim Demaille <akim@epita.fr>
15379
15380 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
15381
15382 2002-04-10 Akim Demaille <akim@epita.fr>
15383
15384 * src/system.h: Rely on HAVE_LIMITS_H.
15385 Suggested by Paul Eggert.
15386
15387 2002-04-09 Akim Demaille <akim@epita.fr>
15388
15389 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
15390 full stderr, and strip it according to the bison options, instead
15391 of composing the error message from different bits.
15392 This makes it easier to check for several error messages.
15393 Adjust all the invocations.
15394 Add an invocation exercising the error token.
15395 Add an invocation demonstrating a stupid error message.
15396 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
15397 Adjust the tests.
15398 Error message are for stderr, not stdout.
15399
15400 2002-04-09 Akim Demaille <akim@epita.fr>
15401
15402 * src/gram.h, src/gram.c (error_token_number): Remove, use
15403 errtoken->number.
15404 * src/reader.c (reader): Don't specify the user token number (2)
15405 for $undefined, as it uselessly prevents using it.
15406 * src/gram.h (token_number_t): Move to...
15407 * src/symtab.h: here.
15408 (state_t.number): Is a token_number_t.
15409 * src/print.c, src/reader.c: Use undeftoken->number instead of
15410 hard coded 2.
15411 (Even though this 2 is not the same as above: the number of the
15412 undeftoken remains being 2, it is its user token number which
15413 might not be 2).
15414 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
15415 `user_token_number_max'.
15416 Output `undef_token_number'.
15417 * data/bison.simple, data/bison.c++: Use them.
15418 Be sure to map invalid yylex return values to
15419 `undef_token_number'. This saves us from gratuitous SEGV.
15420
15421 * tests/conflicts.at (Solved SR Conflicts)
15422 (Unresolved SR Conflicts): Adjust.
15423 * tests/regression.at (Web2c Actions): Adjust.
15424
15425 2002-04-08 Akim Demaille <akim@epita.fr>
15426
15427 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
15428 Adding #line.
15429 Remove the duplicate `typedefs'.
15430 (RhsNumberType): Fix the declaration and various other typos.
15431 Use __ofile__.
15432 * data/bison.simple: Use __ofile__.
15433 * src/scan-skel.l: Handle __ofile__.
15434
15435 2002-04-08 Akim Demaille <akim@epita.fr>
15436
15437 * src/gram.h (item_number_t): New, the type of item numbers in
15438 RITEM. Note that it must be able to code symbol numbers as
15439 positive number, and the negation of rule numbers as negative
15440 numbers.
15441 Adjust all dependencies (pretty many).
15442 * src/reduce.c (rule): Remove this `short *' pointer: use
15443 item_number_t.
15444 * src/system.h (MINSHORT, MAXSHORT): Remove.
15445 Include `limits.h'.
15446 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
15447 (shortcpy): Remove.
15448 (MAXTABLE): Move to...
15449 * src/output.c (MAXTABLE): here.
15450 (prepare_rules): Use output_int_table to output rhs.
15451 * data/bison.simple, data/bison.c++: Adjust.
15452 * tests/torture.at (Big triangle): Move the limit from 254 to
15453 500.
15454 * tests/regression.at (Web2c Actions): Ajust.
15455
15456 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
15457 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
15458 passes, but produces negative #line number, once fixed, GCC is
15459 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
15460 C), it passes.
15461 * src/state.h (state_h): Code input lines on ints, not shorts.
15462
15463 2002-04-08 Akim Demaille <akim@epita.fr>
15464
15465 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
15466 and then the grammar.
15467
15468 2002-04-08 Akim Demaille <akim@epita.fr>
15469
15470 * src/system.h: No longer using strndup.
15471
15472 2002-04-07 Akim Demaille <akim@epita.fr>
15473
15474 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
15475 * src/output.c (output_table_data): Return the longest number.
15476 (prepare_tokens): Output `token_number_max').
15477 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
15478 New.
15479 Use them to define yy_token_number_type/TokenNumberType.
15480 Use this type for yytranslate.
15481 * tests/torture.at (Big triangle): Push the limit from 124 to
15482 253.
15483 * tests/regression.at (Web2c Actions): Adjust.
15484
15485 2002-04-07 Akim Demaille <akim@epita.fr>
15486
15487 * tests/torture.at (Big triangle): New.
15488 (GNU AWK Grammar, GNU Cim Grammar): Move to...
15489 * tests/existing.at: here.
15490
15491 2002-04-07 Akim Demaille <akim@epita.fr>
15492
15493 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
15494 nritems.
15495 Adjust dependencies.
15496
15497 2002-04-07 Akim Demaille <akim@epita.fr>
15498
15499 * src/reader.c: Normalize increments to prefix form.
15500
15501 2002-04-07 Akim Demaille <akim@epita.fr>
15502
15503 * src/reader.c, symtab.c: Remove debugging code.
15504
15505 2002-04-07 Akim Demaille <akim@epita.fr>
15506
15507 Rename all the `bucket's as `symbol_t'.
15508
15509 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
15510 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
15511 * src/symtab.c, src/symtab.h (bucket): Rename as...
15512 (symbol_t): this.
15513 (symbol_list_new, bucket_check_defined, bucket_make_alias)
15514 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
15515 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
15516 (buckets_new, buckets_free, buckets_do): Rename as...
15517 (symbol_list_new, symbol_check_defined, symbol_make_alias)
15518 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
15519 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
15520 (symbols_new, symbols_free, symbols_do): these.
15521
15522 2002-04-07 Akim Demaille <akim@epita.fr>
15523
15524 Use lib/hash for the symbol table.
15525
15526 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
15527 EOF.
15528 * src/lex.c (lex): Set the `number' member of new terminals.
15529 * src/reader.c (bucket_check_defined, bucket_make_alias)
15530 (bucket_check_alias_consistence, bucket_translation): New.
15531 (reader, grammar_free, readgram, token_translations_init)
15532 (packsymbols): Adjust.
15533 (reader): Number the predefined tokens.
15534 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
15535 for predefined tokens.
15536 * src/symtab.h (bucket): Remove all the hash table related
15537 members.
15538 * src/symtab.c (symtab): Replace by...
15539 (bucket_table): this.
15540 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
15541 (buckets_new, buckets_do): New.
15542
15543 2002-04-07 Akim Demaille <akim@epita.fr>
15544
15545 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
15546 (start_symbol, max_user_token_number, semantic_parser)
15547 (error_token_number): Initialize.
15548 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
15549 Initialize.
15550 (reader): Don't.
15551 (errtoken, eoftoken, undeftoken, axiom): Extern.
15552
15553 2002-04-07 Akim Demaille <akim@epita.fr>
15554
15555 * src/gram.h (rule_s): prec and precsym are now pointers
15556 to the bucket giving the priority/associativity.
15557 Member `associativity' removed: useless.
15558 * src/reduce.c, src/conflicts.c: Adjust.
15559
15560 2002-04-07 Akim Demaille <akim@epita.fr>
15561
15562 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
15563 Properly escape the symbols' TAG when outputting them.
15564
15565 2002-04-07 Akim Demaille <akim@epita.fr>
15566
15567 * src/lalr.h (LA): Is a bitsetv, not bitset*.
15568
15569 2002-04-07 Akim Demaille <akim@epita.fr>
15570
15571 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
15572 (LArule): this, which is an array to rule_t*.
15573 * src/print.c, src/conflicts.c: Adjust.
15574
15575 2002-04-07 Akim Demaille <akim@epita.fr>
15576
15577 * src/gram.h (rule_t): Rename `number' as `user_number'.
15578 `number' is a new member.
15579 Adjust dependencies.
15580 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
15581
15582 2002-04-07 Akim Demaille <akim@epita.fr>
15583
15584 As a result of the previous patch, it is no longer needed
15585 to reorder ritem itself.
15586
15587 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
15588
15589 2002-04-07 Akim Demaille <akim@epita.fr>
15590
15591 Be sure never to walk through RITEMS, but use only data related to
15592 the rules themselves. RITEMS should be banished.
15593
15594 * src/output.c (output_token_translations): Rename as...
15595 (prepare_tokens): this.
15596 In addition to `translate', prepare the muscles `tname' and
15597 `toknum', which were handled by...
15598 (output_rule_data): this.
15599 Remove, and move the remainder of its outputs into...
15600 (prepare_rules): this new routines, which also merges content from
15601 (output_gram): this.
15602 (prepare_rules): Be sure never to walk through RITEMS.
15603 (output_stos): Rename as...
15604 (prepare_stos): this.
15605 (output): Always invoke prepare_states, after all, just don't use it
15606 in the output if you don't need it.
15607
15608 2002-04-07 Akim Demaille <akim@epita.fr>
15609
15610 * src/LR0.c (new_state): Display `nstates' as the name of the
15611 newly created state.
15612 Adjust to initialize first_state and last_state if needed.
15613 Be sure to distinguish the initial from the final state.
15614 (new_states): Create the itemset of the initial state, and use
15615 new_state.
15616 * src/closure.c (closure): Now that the initial state has its
15617 items properly set, there is no need for a special case when
15618 creating `ruleset'.
15619
15620 As a result, now the rule 0, reducing to $axiom, is visible in the
15621 outputs. Adjust the test suite.
15622
15623 * tests/conflicts.at (Solved SR Conflicts)
15624 (Unresolved SR Conflicts): Adjust.
15625 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
15626 * tests/conflicts.at (S/R in initial): New.
15627
15628 2002-04-07 Akim Demaille <akim@epita.fr>
15629
15630 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
15631 the RHS of the rules.
15632 * src/output.c (output_gram): Likewise.
15633
15634 2002-04-07 Akim Demaille <akim@epita.fr>
15635
15636 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
15637 bucket.
15638 Adjust all dependencies.
15639 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
15640 `number' of the buckets too.
15641 * src/gram.h: Include `symtab.h'.
15642 (associativity): Move to...
15643 * src/symtab.h: here.
15644 No longer include `gram.h'.
15645
15646 2002-04-07 Akim Demaille <akim@epita.fr>
15647
15648 * src/gram.h, src/gram.c (rules_rhs_length): New.
15649 (ritem_longest_rhs): Use it.
15650 * src/gram.h (rule_t): `number' is a new member.
15651 * src/reader.c (packgram): Set it.
15652 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
15653 the end of `rules', and count them out of `nrules'.
15654 (reduce_output, dump_grammar): Adjust.
15655 * src/print.c (print_grammar): It is no longer needed to check for
15656 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
15657 * tests/reduce.at (Reduced Automaton): New test.
15658
15659 2002-04-07 Akim Demaille <akim@epita.fr>
15660
15661 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
15662 lacking `+ 1' to nrules, Bison reported as useless a token if it
15663 was used solely to set the precedence of the last rule...
15664
15665 2002-04-07 Akim Demaille <akim@epita.fr>
15666
15667 * data/bison.c++, data/bison.simple: Don't output the current file
15668 name in #line, to avoid useless diffs between two identical
15669 outputs under different names.
15670
15671 2002-04-07 Akim Demaille <akim@epita.fr>
15672
15673 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
15674 Normalize loops to using `< nrules + 1', not `<= nrules'.
15675
15676 2002-04-07 Akim Demaille <akim@epita.fr>
15677
15678 * TODO: Update.
15679
15680 2002-04-07 Akim Demaille <akim@epita.fr>
15681
15682 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
15683 bucket.value as bucket.number.
15684
15685 2002-04-07 Akim Demaille <akim@epita.fr>
15686
15687 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
15688 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
15689 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
15690 RHS, instead of being an index in RITEMS.
15691
15692 2002-04-04 Paul Eggert <eggert@twinsun.com>
15693
15694 * doc/bison.texinfo: Update copyright date.
15695 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
15696 (Symbols): Warn about running Bison in one character set,
15697 but compiling and/or running in an incompatible one.
15698 Warn about character code 256, too.
15699
15700 2002-04-03 Paul Eggert <eggert@twinsun.com>
15701
15702 * src/bison.data (YYSTACK_ALLOC): Depend on whether
15703 YYERROR_VERBOSE is nonzero, not whether it is defined.
15704
15705 Merge changes from bison-1_29-branch.
15706
15707 2002-03-20 Paul Eggert <eggert@twinsun.com>
15708
15709 Merge fixes from Debian bison_1.34-1.diff.
15710
15711 * configure.in (AC_PREREQ): 2.53.
15712
15713 2002-03-20 Akim Demaille <akim@epita.fr>
15714
15715 * src/conflicts.c (log_resolution): Argument `resolution' is const.
15716
15717 2002-03-19 Paul Eggert <eggert@twinsun.com>
15718
15719 * src/bison.simple (YYCOPY): New macro.
15720 (YYSTACK_RELOCATE): Use it.
15721 Remove Type arg; no longer needed. All callers changed.
15722 (yymemcpy): Remove; no longer needed.
15723
15724 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
15725 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
15726
15727 2002-03-19 Akim Demaille <akim@epita.fr>
15728
15729 Test and fix the #line outputs.
15730
15731 * tests/atlocal.at (GCC): New.
15732 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
15733 (Prologue synch line, %union synch line, Postprologue synch line)
15734 (Action synch line, Epilogue synch line): New tests.
15735 * src/reader.c (parse_union_decl): Define the muscle stype_line.
15736 * data/bison.simple, data/bison.c++: Use it.
15737
15738 2002-03-19 Akim Demaille <akim@epita.fr>
15739
15740 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
15741 (Solved SR Conflicts, %expect not enough, %expect right)
15742 (%expect too much): Move to...
15743 * tests/conflicts.at: this new file.
15744
15745 2002-03-19 Akim Demaille <akim@epita.fr>
15746
15747 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
15748 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
15749 that we can move to enums for instance.
15750 * src/output.c (token_definitions_output): Output a list of
15751 `token-name, token-number' instead of the #define.
15752 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
15753
15754 2002-03-14 Akim Demaille <akim@epita.fr>
15755
15756 Use Gettext 0.11.1.
15757
15758 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
15759
15760 * data/bison.c++: Make the user able to add members to the generated
15761 parser by subclassing.
15762
15763 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
15764
15765 * src/reader.c (read_additionnal_code): `c' should be an integer, not
15766 a character.
15767 Reported by Nicolas Tisserand and Nicolas Burrus.
15768
15769 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
15770
15771 * src/reader.c: Warn about lacking semi-colons, do not complain.
15772
15773 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
15774
15775 * data/bison.c++: Remove a debug line.
15776
15777 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
15778
15779 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
15780 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
15781 provide a default implementation.
15782
15783 2002-03-04 Akim Demaille <akim@epita.fr>
15784
15785 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
15786 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
15787 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
15788 * tests/semantic.at (Parsing Guards): Similarly.
15789 * src/reader.at (readgram): Complain if the last rule is not ended
15790 with a semi-colon.
15791
15792 2002-03-04 Akim Demaille <akim@epita.fr>
15793
15794 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
15795 * src/closure.c: here.
15796 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
15797 RTC.
15798 * src/warshall.h, src/warshall.c: Remove.
15799 * tests/sets.at (Broken Closure): Adjust.
15800
15801 2002-03-04 Akim Demaille <akim@epita.fr>
15802
15803 * src/output.c (output_skeleton): tempdir is const.
15804 bytes_read is unused.
15805
15806 2002-03-04 Akim Demaille <akim@epita.fr>
15807
15808 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
15809 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
15810 Update.
15811 From Michael Hayes.
15812
15813 2002-03-04 Akim Demaille <akim@epita.fr>
15814
15815 * src/closure.c (closure): `r' is unused.
15816
15817 2002-03-04 Akim Demaille <akim@epita.fr>
15818
15819 * tests/sets.at (Broken Closure): Add the ending `;'.
15820 * src/reader.at (readgram): Complain if a rule is not ended with a
15821 semi-colon.
15822
15823 2002-03-04 Akim Demaille <akim@epita.fr>
15824
15825 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
15826 (count_sr_conflicts): Use bitset_count.
15827 * src/reduce.c (inaccessable_symbols): Ditto.
15828 (bits_size): Remove.
15829 * src/warshall.h, src/warshall.c: Convert to bitsetv.
15830
15831 2002-03-04 Akim Demaille <akim@epita.fr>
15832
15833 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
15834 * src/reduce.c: Remove the `bitset_zero's following the
15835 `bitset_create's, as now it is performed by the latter.
15836
15837 2002-03-04 Akim Demaille <akim@epita.fr>
15838
15839 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
15840 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
15841 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
15842 latest sources from Michael.
15843
15844 2002-03-04 Akim Demaille <akim@epita.fr>
15845
15846 * src/output.c (output): Don't free the grammar.
15847 * src/reader.c (grammar_free): New.
15848 * src/main.c (main): Call it and don't free symtab here.
15849
15850 2002-03-04 Akim Demaille <akim@epita.fr>
15851
15852 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
15853 before returning.
15854 Reported by Benoit Perrot.
15855
15856 2002-03-04 Akim Demaille <akim@epita.fr>
15857
15858 Use bitset operations when possible, not loops over bits.
15859
15860 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
15861 bitset_or.
15862 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
15863 * src/reduce.c (useless_nonterminals): Formatting changes.
15864 * src/warshall.c (TC): Use bitset_or.
15865
15866 2002-03-04 Akim Demaille <akim@epita.fr>
15867
15868 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
15869 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
15870 Ditto.
15871
15872 2002-03-04 Akim Demaille <akim@epita.fr>
15873
15874 * src/lalr.c (F): Now a bitset*.
15875 Adjust all dependencies.
15876
15877 2002-03-04 Akim Demaille <akim@epita.fr>
15878
15879 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
15880 Adjust all dependencies.
15881
15882 2002-03-04 Akim Demaille <akim@epita.fr>
15883
15884 * src/L0.c, src/LR0.h (nstates): Be size_t.
15885 Adjust comparisons (signed vs unsigned).
15886 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
15887 bitset*.
15888 Adjust all dependencies.
15889
15890 2002-03-04 Akim Demaille <akim@epita.fr>
15891
15892 * src/closure.c (firsts): Now, also a bitset.
15893 Adjust all dependencies.
15894 (varsetsize): Remove, now unused.
15895 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
15896
15897 2002-03-04 Akim Demaille <akim@epita.fr>
15898
15899 * src/print.c: Convert to use bitset.h, not hand coded iterations
15900 over ints.
15901
15902 2002-03-04 Akim Demaille <akim@epita.fr>
15903
15904 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
15905
15906 2002-03-04 Akim Demaille <akim@epita.fr>
15907
15908 * src/closure.c (ruleset): Be a bitset.
15909 (rulesetsize): Remove.
15910
15911 2002-03-04 Akim Demaille <akim@epita.fr>
15912
15913 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
15914 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
15915 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
15916 * src/closure.c (fderives): Be an array of bitsets.
15917
15918 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
15919
15920 * data/bison.c++: Merge the two generated headers. Insert a copyright
15921 notice in each output file.
15922
15923 2002-02-28 Akim Demaille <akim@epita.fr>
15924
15925 * data/bison.c++: Copy the prologue of bison.simple to fetch
15926 useful M4 definitions, such as b4_header_guard.
15927
15928 2002-02-25 Akim Demaille <akim@epita.fr>
15929
15930 * src/getargs.c (version): Give the name of the authors, and use a
15931 translator friendly scheme for the bgr
15932 copyright notice.
15933
15934 2002-02-25 Akim Demaille <akim@epita.fr>
15935
15936 * src/output.c (header_output): Remove, now handled completely via
15937 M4.
15938
15939 2002-02-25 Akim Demaille <akim@epita.fr>
15940
15941 * m4/m4.m4: New, from CVS Autoconf.
15942 * configure.in: Invoke it.
15943 * src/output.c (output_skeleton): Use its result instead of the
15944 hard coded name.
15945
15946 2002-02-25 Akim Demaille <akim@epita.fr>
15947
15948 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
15949 Fileutils 4.1.5.
15950 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
15951 * src/output.c (output_skeleton): Use mkstemp to create a real
15952 temporary file.
15953 Move the filling of `skeleton' and its muscle to...
15954 (prepare): here.
15955 (output): Move the definition of the prologue muscle to...
15956 (prepare): here.
15957 * src/system.h (DEFAULT_TMPDIR): New.
15958
15959 2002-02-14 Paul Eggert <eggert@twinsun.com>
15960
15961 Remove the support for C++ namespace cleanliness; it was
15962 causing more problems than it was curing, since it didn't work
15963 properly on some nonstandard C++ compilers. This can wait
15964 for a proper C++ parser.
15965
15966 * NEWS: Document this.
15967 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
15968 of C++, as it's treated like C now.
15969 * src/bison.simple (YYSTD): Remove.
15970 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
15971 Treat C++ just like Standard C instead of trying to support
15972 namespace cleanliness.
15973
15974 2002-02-14 Akim Demaille <akim@epita.fr>
15975
15976 * tests/regression.at (else): Adjust to Andreas' change.
15977
15978 2002-02-14 Akim Demaille <akim@epita.fr>
15979
15980 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
15981
15982 2002-02-13 Andreas Schwab <schwab@suse.de>
15983
15984 * src/output.c (output_rule_data): Don't output NULL, it might
15985 not be defined yet.
15986
15987 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
15988
15989 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
15990 (Copyright notice): Update.
15991
15992 2002-02-11 Akim Demaille <akim@epita.fr>
15993
15994 * tests/regression.at (%nonassoc and eof): Don't include
15995 nonportable headers.
15996
15997 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
15998
15999 * data/bison.c++: Correct error recovery. Make the user able to
16000 initialize the starting location.
16001
16002 2002-02-07 Akim Demaille <akim@epita.fr>
16003
16004 * tests/input.at: New.
16005
16006 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16007
16008 * data/bison.c++: Replace some direct m4 expansions by constants. Be
16009 more consistent when naming methods and variables. Put preprocessor
16010 directives around tables only needed for debugging.
16011
16012 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16013
16014 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
16015 C++ parsers.
16016 (yy::b4_name::parse): Use print_.
16017
16018 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16019
16020 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
16021
16022 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16023
16024 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
16025 C++ parsers.
16026 (yy::b4_name::parse): Build verbose error messages, and use error_.
16027
16028 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16029
16030 * data/bison.c++: Fix m4 quoting in comments.
16031
16032 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16033
16034 * data/bison.c++: Adjust the parser code. Fix some muscles that were
16035 not expanded by m4.
16036
16037 2002-02-05 Akim Demaille <akim@epita.fr>
16038
16039 * data/bison.c++: Adjust to the M4 back end.
16040 More is certainly needed.
16041
16042 2002-02-05 Akim Demaille <akim@epita.fr>
16043
16044 Give a try to M4 as a back end.
16045
16046 * lib/readpipe.c: New, from wdiff.
16047 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
16048 BISON_HAIRY.
16049 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
16050 specific values. Now it is m4 that performs the lookup.
16051 * src/parse-skel.y: Remove.
16052 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
16053 * src/output.c (actions_output, guards_output)
16054 (token_definitions_output): No longer keeps track of the output
16055 line number, hence remove the second argument.
16056 (guards_output): Check against the guard member of a rule, not the
16057 action member.
16058 Adjust callers.
16059 (output_skeleton): Don't look for the skeleton location, let m4 do
16060 that.
16061 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
16062 file will be used.
16063 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
16064 (prepare): Given that for the time being changesyntax is not
16065 usable in M4, rename the muscles using `-' to `_'.
16066 Define `defines_flag', `output_parser_name' and `output_header_name'.
16067 * src/output.h (actions_output, guards_output)
16068 (token_definitions_output): Adjust prototypes.
16069 * src/scan-skel.l: Instead of scanning the skeletons, it now
16070 processes the output of m4: `__oline__' and `#output'.
16071 * data/bison.simple: Adjust to be used by M4(sugar).
16072 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
16073 to date.
16074 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
16075 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
16076 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
16077 shamelessly stolen from CVS Autoconf.
16078
16079 2002-02-05 Akim Demaille <akim@epita.fr>
16080
16081 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
16082 * configure.in: Check for the declarations of free and malloc.
16083 * src/muscle_tab.c: Adjust.
16084
16085 2002-02-05 Akim Demaille <akim@epita.fr>
16086
16087 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
16088 which have no values.
16089
16090 2002-02-05 Akim Demaille <akim@epita.fr>
16091
16092 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
16093 * data/: here.
16094
16095 2002-01-29 Paul Eggert <eggert@twinsun.com>
16096
16097 * src/bison.simple (YYSIZE_T): Do not define merely because
16098 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
16099 On some platforms, <alloca.h> does not declare YYSTD (size_t).
16100
16101 2002-01-27 Akim Demaille <akim@epita.fr>
16102
16103 Fix `%nonassoc and eof'.
16104
16105 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
16106 which were not properly copied! Replace
16107 memcpy (res->errs, src->errs, src->nerrs);
16108 with
16109 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
16110 !!!
16111 * tests/regression.at (%nonassoc and eof): Adjust to newest
16112 Autotest: `.' is not in the PATH.
16113
16114 2002-01-27 Akim Demaille <akim@epita.fr>
16115
16116 * tests/sets.at (AT_EXTRACT_SETS): New.
16117 (Nullable): Use it.
16118 (Firsts): New.
16119
16120 2002-01-26 Akim Demaille <akim@epita.fr>
16121
16122 * tests/actions.at, tests/calc.at, tests/headers.at,
16123 * tests/torture.at: Adjust to the newest Autotest which no longer
16124 forces `.' in the PATH.
16125
16126 2002-01-25 Akim Demaille <akim@epita.fr>
16127
16128 * tests/regression.at (%nonassoc and eof): New.
16129 Suggested by Robert Anisko.
16130
16131 2002-01-24 Akim Demaille <akim@epita.fr>
16132
16133 Bison dumps core when trying to complain about broken input files.
16134 Reported by Cris van Pelt.
16135
16136 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
16137 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
16138 into...
16139 (Invalid inputs): Strengthen: exercise parse_percent_token.
16140
16141 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
16142
16143 * src/Makefile.am: Add bison.c++.
16144 * src/bison.c++: New skeleton.
16145
16146 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
16147
16148 * po/it.po: New.
16149
16150 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
16151
16152 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
16153
16154 2002-01-20 Marc Autret <marc@gnu.org>
16155
16156 * src/files.c (compute_output_file_names): Fix
16157
16158 2002-01-20 Marc Autret <marc@gnu.org>
16159
16160 * tests/output.at: New test.
16161 * src/files.c (compute_base_names): Don't map extensions when
16162 the YACC flag is set, use defaults.
16163 Reported by Evgeny Stambulchik.
16164
16165 2002-01-20 Marc Autret <marc@gnu.org>
16166
16167 * src/system.h: Need to define __attribute__ away for non-GCC
16168 compilers as well (i.e., the vendor C compiler).
16169 Suggested by Albert Chin-A-Young.
16170
16171 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
16172
16173 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
16174 canonical definition.
16175 * src/system.h: Use the canonical definition for PARAMS (avoids
16176 a conflict with the macro from lib/hash.h).
16177
16178 2002-01-11 Akim Demaille <akim@epita.fr>
16179
16180 * configure.in: Use AC_FUNC_STRNLEN.
16181 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
16182
16183 2002-01-09 Akim Demaille <akim@epita.fr>
16184
16185 * src/files.c, src/files.h (output_infix): New.
16186 (tab_extension): Remove.
16187 (compute_base_names): Compute the former, drop the latter.
16188 * src/output.c (prepare): Insert the muscles `output-infix', and
16189 `output-suffix'.
16190 * src/parse-skel.y (string, string.1): New.
16191 (section.header): Use it.
16192 (section.yacc): Remove.
16193 (prefix): Remove too.
16194 * src/scan-skel.l: Adjust.
16195 * src/bison.simple, src/bison.hairy: Adjust.
16196
16197 2002-01-09 Akim Demaille <akim@epita.fr>
16198
16199 * configure.in (WERROR_CFLAGS): Compute it.
16200 * src/Makefile.am (CFLAGS): Pass it.
16201 * tests/atlocal.in (CFLAGS): Idem.
16202 * src/files.c: Fix a few warnings.
16203 (get_extension_index): Remove, unused.
16204
16205 2002-01-08 Akim Demaille <akim@epita.fr>
16206
16207 * src/getargs.c (AS_FILE_NAME): New.
16208 (getargs): Use it to convert DOSish file names.
16209 * src/files.c (base_name): Rename as full_base_name to avoid
16210 clashes with `base_name ()'.
16211 (filename_split): New.
16212 (compute_base_names): N-th rewrite, using filename_split.
16213
16214 2002-01-08 Akim Demaille <akim@epita.fr>
16215
16216 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
16217 New, stolen from the Fileutils 4.1.
16218 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
16219 * configure.in: Check for the presence of memrchr, and of its
16220 prototype.
16221
16222 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
16223
16224 * lib/hash.h (__P): Added definition for this macro.
16225 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
16226 BUILT_SOURCES, to ensure they are generated first.
16227 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
16228 %error-verbose to allow bootstrapping with bison 1.30x.
16229
16230 2002-01-06 Akim Demaille <akim@epita.fr>
16231
16232 * src/reader.c (parse_braces): Don't fetch the next char, the
16233 convention is to fetch on entry.
16234 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
16235 'switch' without a following semicolon.
16236 * tests/regression.at (braces parsing): New.
16237
16238 2002-01-06 Akim Demaille <akim@epita.fr>
16239
16240 Bison is dead wrong in its RR conflict reports.
16241
16242 * tests/torture.at (GNU Cim Grammar): New.
16243 * src/conflicts.c (count_rr_conflicts): Fix.
16244
16245 2002-01-06 Akim Demaille <akim@epita.fr>
16246
16247 Creating package.m4 from configure.ac causes too many problems.
16248
16249 * tests/Makefile.am (package.m4): Create it by hand,
16250 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
16251
16252 2002-01-06 Akim Demaille <akim@epita.fr>
16253
16254 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
16255 skeleton.h.
16256
16257 2002-01-04 Paul Eggert <eggert@twinsun.com>
16258
16259 * doc/bison.texinfo (Debugging):
16260 Remove YYSTDERR; it's no longer defined or used.
16261 Also, s/cstdio.h/cstdio/.
16262
16263 2002-01-03 Akim Demaille <akim@epita.fr>
16264
16265 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
16266
16267 2002-01-03 Akim Demaille <akim@epita.fr>
16268
16269 * src/parse-skel.y (process_skeleton): Don't bind the parser's
16270 tracing code to --trace, wait for a better --trace option, with
16271 args.
16272
16273 2002-01-03 Akim Demaille <akim@epita.fr>
16274
16275 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
16276 The ISO C++ standard is extremely clear about it: stderr is
16277 considered a macro, not a regular symbol (see table 94 `Header
16278 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
16279 Therefore std:: does not apply to it. It still does with fprintf.
16280 Also, s/cstdio.h/cstdio/.
16281
16282 2002-01-03 Akim Demaille <akim@epita.fr>
16283
16284 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
16285 for non system headers.
16286
16287 2002-01-02 Akim Demaille <akim@epita.fr>
16288
16289 Equip the skeleton chain with location tracking, runtime trace,
16290 pure parser and scanner.
16291
16292 * src/parse-skel.y: Request a pure parser, locations, and prefix
16293 renaming.
16294 (%union): Having several members with the same type does not help
16295 type mismatches, simplify.
16296 (YYPRINT, yyprint): New.
16297 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
16298 (skel_error): this.
16299 Handle locations.
16300 * src/scan-skel.l: Adjust to these changes.
16301 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
16302 (LOCATION_PRINT, skel_control_t): New.
16303
16304 2001-12-30 Akim Demaille <akim@epita.fr>
16305
16306 * src/parse-skel.y: Get rid of the shift/reduce conflict:
16307 replace `gb' with BLANKS.
16308 * src/scan-skel.l: Adjust.
16309
16310 2001-12-30 Akim Demaille <akim@epita.fr>
16311
16312 * src/system.h: We don't need nor want bcopy.
16313 Throw away MS-DOS crap: we don't need getpid.
16314 * configure.in: We don't need strndup. It was even causing
16315 problems: because Flex includes the headers *before* us,
16316 _GNU_SOURCE is not defined by config.h, and therefore strndup was
16317 not visible.
16318 * lib/xstrndup.c: New.
16319 * src/scan-skel.l: Use it.
16320 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
16321 * src/parse-skel.y: Use %directives instead of #defines.
16322
16323 2001-12-30 Akim Demaille <akim@epita.fr>
16324
16325 * src/skeleton.h: New.
16326 * src/output.c (output_parser, output_master_parser): Remove, dead
16327 code.
16328 * src/output.h (get_lines_number, actions_output, guards_output)
16329 (token_definitions_output): Prototype them.
16330 * src/parse-skel.y: Add the license notice.
16331 Include output.h and skeleton.h.
16332 (process_skeleton): Returns void, and takes a single parameter.
16333 * src/scan-skel.l: Add the license notice.
16334 Include skeleton.h.
16335 Don't use %option yylineno: it seems that then Flex imagines
16336 REJECT has been used, and therefore it won't reallocate its
16337 buffers (which makes no other sense to me than a bug). It results
16338 in warnings for `unused: yy_flex_realloc'.
16339
16340 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
16341
16342 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
16343 (MUSCLE_INSERT_PREFIX): ...to there.
16344 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
16345 (MUSCLE_INSERT_PREFIX): Move from here...
16346
16347 * src/bison.hairy: Add a section directive. Put braces around muscle
16348 names. This parser skeleton is still broken, but Bison should not
16349 choke on a bad muscle 'syntax'.
16350 * src/bison.simple: Add a section directive. Put braces around muscle
16351 names.
16352
16353 * src/files.h (strsuffix, stringappend): Add declarations.
16354 (tab_extension): Add declaration.
16355 (short_base_name): Add declaration.
16356
16357 * src/files.c (strsuffix, stringappend): No longer static. These
16358 functions are used in the skeleton parser.
16359 (tab_extension): New.
16360 (compute_base_names): Use the computations done in this function
16361 to guess if the generated parsers should have '.tab' in their
16362 names.
16363 (short_base_name): No longer static.
16364
16365 * src/output.c (output_skeleton): New.
16366 (output): Disable call to output_master_parser, and give a try to
16367 a new skeleton handling system.
16368 (guards_output, actions_output): No longer static.
16369 (token_definitions_output, get_lines_number): No longer static.
16370
16371 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
16372
16373 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
16374 parse-skel.y.
16375
16376 * src/parse-skel.y: New file.
16377 * src/scan-skel.l: New file.
16378
16379 2001-12-29 Akim Demaille <akim@epita.fr>
16380
16381 %name-prefix is broken.
16382
16383 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
16384 Adjust all dependencies.
16385 * tests/headers.at (export YYLTYPE): Strengthen this test: use
16386 %name-prefix.
16387
16388 Renaming yylval but not yylloc is not consistent. Now we do.
16389
16390 * src/bison.simple: Prefix yylloc if used.
16391 * doc/bison.texinfo (Decl Summary): Document that.
16392
16393 2001-12-29 Akim Demaille <akim@epita.fr>
16394
16395 * doc/bison.texinfo: Promote `%long-directive' over
16396 `%long_directive'.
16397 Remove all references to fixed-output-files, yacc is enough.
16398
16399 2001-12-29 Akim Demaille <akim@epita.fr>
16400
16401 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
16402 user prologue. These are defaults.
16403 * tests/actions.at (Mid-rule actions): Make sure the user can
16404 define YYDEBUG and YYERROR_VERBOSE.
16405
16406 2001-12-29 Akim Demaille <akim@epita.fr>
16407
16408 * src/output.c (header_output): Don't forget to export YYLTYPE and
16409 yylloc.
16410 * tests/headers.at (export YYLTYPE): New, make sure it does.
16411 * tests/regression.at (%union and --defines, Invalid CPP headers):
16412 Move to...
16413 * tests/headers.at: here.
16414
16415 2001-12-29 Akim Demaille <akim@epita.fr>
16416
16417 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
16418
16419 2001-12-29 Akim Demaille <akim@epita.fr>
16420
16421 * tests/actions.at (Mid-rule actions): Output on a single line
16422 instead of several.
16423
16424 2001-12-29 Akim Demaille <akim@epita.fr>
16425
16426 * doc/bison.texinfo: Formatting changes.
16427
16428 2001-12-29 Akim Demaille <akim@epita.fr>
16429
16430 Don't store the token defs in a muscle, just be ready to output it
16431 on command. Now possible via `symbols'. Fixes a memory leak.
16432
16433 * src/output.c (token_definitions_output): New.
16434 (output_parser, header_output): Use it.
16435 * src/reader.c (symbols_save): Remove.
16436
16437 2001-12-29 Akim Demaille <akim@epita.fr>
16438
16439 * src/bison.simple: Do not provide a default for YYSTYPE and
16440 YYLTYPE before the user's prologue. Otherwise it's hardly... a
16441 default.
16442
16443 2001-12-29 Akim Demaille <akim@epita.fr>
16444
16445 Mid-rule actions are simply... ignored!
16446
16447 * src/reader.c (readgram): Be sure to attach mid-rule actions to
16448 the empty-rule associated to the dummy symbol, not to the host
16449 rule.
16450 * tests/actions.at (Mid-rule actions): New.
16451
16452 2001-12-29 Akim Demaille <akim@epita.fr>
16453
16454 Memory leak.
16455
16456 * src/reader.c (reader): Free grammar.
16457
16458 2001-12-29 Akim Demaille <akim@epita.fr>
16459
16460 Memory leak.
16461
16462 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
16463 since it allocates it for each state, although only one is needed.
16464 (allocate_storage): Do it here.
16465
16466 2001-12-29 Akim Demaille <akim@epita.fr>
16467
16468 * src/options.h, src/options.c (create_long_option_table): Rename
16469 as...
16470 (long_option_table_new): this, with a clearer prototype.
16471 (percent_table): Remove, unused,
16472 * src/getargs.c (getargs): Adjust.
16473
16474 2001-12-29 Akim Demaille <akim@epita.fr>
16475
16476 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
16477 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
16478 as states.
16479
16480 2001-12-29 Akim Demaille <akim@epita.fr>
16481
16482 * src/lalr.c (build_relations): Rename `states' as `states1'.
16483 Sorry, I don't understand exactly what it is, no better name...
16484
16485 2001-12-29 Akim Demaille <akim@epita.fr>
16486
16487 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
16488 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
16489 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
16490 as rules.
16491
16492 2001-12-29 Akim Demaille <akim@epita.fr>
16493
16494 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
16495 ago.
16496
16497 2001-12-29 Akim Demaille <akim@epita.fr>
16498
16499 * src/reader.c, src/reader.h (user_toknums): Remove.
16500 Adjust all users to use symbols[i]->user_token_number.
16501
16502 2001-12-29 Akim Demaille <akim@epita.fr>
16503
16504 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
16505 Adjust all users to use symbols[i]->prec or ->assoc.
16506
16507 2001-12-29 Akim Demaille <akim@epita.fr>
16508
16509 * src/reader.c, src/reader.h (tags): Remove.
16510 Adjust all users to use symbols[i]->tag.
16511
16512 2001-12-29 Akim Demaille <akim@epita.fr>
16513
16514 * src/gram.h, src/gram.c (symbols): New, similar to state_table
16515 and rule_table.
16516 * src/reader.c (packsymbols): Fill this table.
16517 Drop sprec.
16518 * src/conflicts.c (resolve_sr_conflict): Adjust.
16519 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
16520 single table.
16521 Use symbols[i]->tag instead of tags[i].
16522
16523 2001-12-29 Akim Demaille <akim@epita.fr>
16524
16525 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
16526 In addition, put a comment in there, to replace...
16527 * tests/regression.at (%union and C comments): Remove.
16528
16529 2001-12-29 Akim Demaille <akim@epita.fr>
16530
16531 * tests/regression.at (Web2c Actions): Blindly move the actual
16532 output as expected output. The contents *seem* right to me, but I
16533 can't pretend reading perfectly parser tables... Nonetheless, all
16534 the other tests pass correctly, the table look OK, even though the
16535 presence of `$axiom' is to be noted: AFAICS it is useless (but
16536 harmless).
16537
16538 2001-12-29 Akim Demaille <akim@epita.fr>
16539
16540 * src/reader.c (readgram): Don't add the rule 0 if there were no
16541 rules read. In other words, add it _after_ having performed
16542 grammar sanity checks.
16543 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
16544
16545 2001-12-29 Akim Demaille <akim@epita.fr>
16546
16547 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
16548 visible, and some states have now a different number.
16549
16550 2001-12-29 Akim Demaille <akim@epita.fr>
16551
16552 * src/reader.c (readgram): Bind the initial rule's lineno to that
16553 of the first rule.
16554 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
16555 (Solved SR Conflicts): Adjust rule 0's line number.
16556
16557 2001-12-29 Akim Demaille <akim@epita.fr>
16558
16559 Fix the `GAWK Grammar' failure.
16560
16561 * src/LR0.c (final_state): Initialize to -1 so that we do compute
16562 the reductions of the first state which was mistakenly confused
16563 with the final state because precisely final_state was initialized
16564 to 0.
16565 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
16566 now noticed by Bison.
16567 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
16568 have a reduction on $default.
16569
16570 2001-12-29 Akim Demaille <akim@epita.fr>
16571
16572 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
16573 rule line numbers.
16574 * src/closure.c (print_closure): Likewise.
16575 * src/derives.c (print_derives): Likewise.
16576 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
16577 now.
16578
16579 2001-12-29 Akim Demaille <akim@epita.fr>
16580
16581 * src/lalr.c (lookaheads_print): New.
16582 (lalr): Call it when --trace-flag.
16583 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
16584 are dumped.
16585
16586 2001-12-29 Akim Demaille <akim@epita.fr>
16587
16588 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
16589 when walking through ritem, even via rule->rhs.
16590 * src/reduce.c (dump_grammar, useful_production, reduce_output)
16591 (useful_production, useless_nonterminals): Likewise.
16592 (reduce_grammar_tables): Likewise, plus update nritems.
16593 * src/nullable.c (set_nullable): Likewise.
16594 * src/lalr.c (build_relations): Likewise.
16595 * tests/sets.at (Nullable): Adjust.
16596 Fortunately, now, the $axiom is no longer nullable.
16597
16598 2001-12-29 Akim Demaille <akim@epita.fr>
16599
16600 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
16601 the 0-sentinel.
16602 * src/gram.c (ritem_longest_rhs): Likewise.
16603 * src/reduce.c (nonterminals_reduce): Likewise.
16604 * src/print_graph.c (print_graph): Likewise.
16605 * src/output.c (output_rule_data): Likewise.
16606 * src/nullable.c (set_nullable): Likewise.
16607
16608 2001-12-29 Akim Demaille <akim@epita.fr>
16609
16610 * src/output.c: Comment changes.
16611
16612 2001-12-27 Paul Eggert <eggert@twinsun.com>
16613
16614 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
16615 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
16616 Sparc, as they were causing more porting problems than the
16617 (minor) performance improvement was worth.
16618
16619 Also, catch up with 1.31's YYSTD.
16620
16621 2001-12-27 Akim Demaille <akim@epita.fr>
16622
16623 * src/output.c (output_gram): Rely on nritems, not the
16624 0-sentinel. See below.
16625 Use -1 as separator, not 0.
16626 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
16627 Rely on -1 as separator in yyrhs, instead of 0.
16628 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
16629 twice `Now at end of input', therefore there are two lines less to
16630 expect.
16631
16632 2001-12-27 Akim Demaille <akim@epita.fr>
16633
16634 * tests/regression.at (Unresolved SR Conflicts):
16635 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
16636 below.
16637
16638 2001-12-27 Akim Demaille <akim@epita.fr>
16639
16640 * src/LR0.c (new_state): Recognize the final state by the fact it
16641 is reached by eoftoken.
16642 (insert_start_shifting_state, insert_eof_shifting_state)
16643 (insert_accepting_state, augment_automaton): Remove, since now
16644 these states are automatically computed from the initial state.
16645 (generate_states): Adjust.
16646 * src/print.c: When reporting a rule number to the user, substract
16647 1, so that the axiom rule is rule 0, and the first user rule is 1.
16648 * src/reduce.c: Likewise.
16649 * src/print_graph.c (print_core): For the time being, just as for
16650 the report, depend upon --trace-flags to dump the full set of
16651 items.
16652 * src/reader.c (readgram): Once the grammar read, insert the rule
16653 0: `$axiom: START-SYMBOL $'.
16654 * tests/set.at: Adjust: rule 0 is now displayed, and since the
16655 number of the states has changed (the final state is no longer
16656 necessarily the last), catch up.
16657
16658 2001-12-27 Akim Demaille <akim@epita.fr>
16659
16660 Try to make the use of the eoftoken valid. Given that its value
16661 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
16662 is used instead of > 0 where appropriate, (ii), depend upon nritems
16663 instead of the 0-sentinel.
16664
16665 * src/gram.h, src/gram.c (nritems): New.
16666 Expected to be duplication of nitems, but for the time being...
16667 * src/reader.c (packgram): Assert nritems and nitems are equal.
16668 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
16669 * src/closure.c (print_closure, print_fderives): Likewise.
16670 * src/gram.c (ritem_print): Likewise.
16671 * src/print.c (print_core, print_grammar): Likewise.
16672 * src/print_graph.c: Likewise.
16673
16674 2001-12-27 Akim Demaille <akim@epita.fr>
16675
16676 * src/main.c (main): If there are complains after grammar
16677 reductions, then output the report anyway if requested, then die.
16678 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
16679 * src/reader.c (eoftoken): New.
16680 (parse_token_decl): If the token being defined has value `0', it
16681 is the eoftoken.
16682 (packsymbols): No longer hack `tags' to insert `$' by hand.
16683 Be sure to preserve the value of the eoftoken.
16684 (reader): Make sure eoftoken is defined.
16685 Initialize nsyms to 0: now eoftoken is created just like the others.
16686 * src/print.c (print_grammar): Don't special case the eof token.
16687 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
16688 lie anyway, albeit pleasant.
16689 * tests/calc.at: Exercise error messages with eoftoken.
16690 Change the grammar so that empty input is invalid.
16691 Adjust expectations.
16692 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
16693
16694 2001-12-27 Akim Demaille <akim@epita.fr>
16695
16696 * configure.in: Check the protos of strchr ans strspn.
16697 Replace strchr if needed.
16698 * src/system.h: Provide the protos of strchr, strspn and memchr if
16699 missing.
16700 * lib/strchr.c: New.
16701 * src/reader.c (symbols_save): Use strchr.
16702
16703 2001-12-27 Akim Demaille <akim@epita.fr>
16704
16705 * src/print.c, src/print_graph.c (escape): New.
16706 Use it to quote the TAGS outputs.
16707 * src/print_graph.c (print_state): Now errors are in red, and
16708 reductions in green.
16709 Prefer high to wide: output the state number on a line of its own.
16710
16711 2001-12-27 Akim Demaille <akim@epita.fr>
16712
16713 * src/state.h, src/state.c (reductions_new): New.
16714 * src/LR0.c (set_state_table): Let all the states have a
16715 `reductions', even if reduced to 0.
16716 (save_reductions): Adjust.
16717 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
16718 * src/print.c (print_reductions, print_actions): Adjust.
16719 * src/output.c (action_row): Adjust.
16720
16721 2001-12-27 Akim Demaille <akim@epita.fr>
16722
16723 * src/state.h, src/state.c (errs_new, errs_dup): New.
16724 * src/LR0.c (set_state_table): Let all the states have an errs,
16725 even if reduced to 0.
16726 * src/print.c (print_errs, print_reductions): Adjust.
16727 * src/output.c (output_actions, action_row): Adjust.
16728 * src/conflicts.c (resolve_sr_conflict): Adjust.
16729
16730 2001-12-27 Akim Demaille <akim@epita.fr>
16731
16732 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
16733
16734 2001-12-27 Akim Demaille <akim@epita.fr>
16735
16736 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
16737 * src/print.c: here.
16738 (lookaheadset, shiftset): New, used as additional storage by
16739 print_reductions.
16740 (print_results): Adjust.
16741 (print_shifts, print_gotos, print_errs): New, extracted from...
16742 (print_actions): here.
16743 * src/print_graph.c (print_actions): Remove dead code.
16744
16745 2001-12-27 Akim Demaille <akim@epita.fr>
16746
16747 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
16748 `$n' and `@n'.
16749
16750 2001-12-27 Akim Demaille <akim@epita.fr>
16751
16752 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
16753 (build_relations): Adjust.
16754
16755 2001-12-27 Akim Demaille <akim@epita.fr>
16756
16757 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
16758 duplication.
16759
16760 2001-12-27 Akim Demaille <akim@epita.fr>
16761
16762 * src/reader.c (packgram): Catch nitems overflows.
16763
16764 2001-12-27 Akim Demaille <akim@epita.fr>
16765
16766 * src/files.c, src/files.h (guard_obstack): Remove.
16767 * src/output.c (output): Adjust.
16768 * src/reader.c (parse_braces): New, factoring...
16769 (copy_action, copy_guard): these two which are renamed as...
16770 (parse_action, parse_guard): these.
16771 As a voluntary consequence, using braces around guards is now
16772 mandatory.
16773
16774 2001-12-27 Akim Demaille <akim@epita.fr>
16775
16776 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
16777 * src/reader.c (symbol_list): `guard' and `guard_line' are new
16778 members.
16779 (symbol_list_new): Adjust.
16780 (copy_action): action_line is the first line, not the last.
16781 (copy_guard): Just as for actions, store the `action' only, not
16782 the switch/case/break flesh.
16783 Don't parse the user action that might follow the guard, let...
16784 (readgram): do it, i.e., now, there can be an action after a
16785 guard.
16786 In other words the guard is just explicitly optional.
16787 (packgram): Adjust.
16788 * src/output.c (guards_output): New.
16789 (output_parser): Call it when needed.
16790 (output): Also free the guard and attrs obstacks.
16791 * src/files.c, src/files.h (obstack_save): Remove.
16792 (output_files): Remove.
16793 As a result, if one needs the former `.act' file, using an
16794 appropriate skeleton which requires actions and guards is now
16795 required.
16796 * src/main.c (main): Adjust.
16797 * tests/semantic.at: New.
16798 * tests/regression.at: Use `input.y' as input file name.
16799 Avoid 8+3 problems by requiring input.c when the test needs the
16800 parser.
16801
16802 2001-12-27 Akim Demaille <akim@epita.fr>
16803
16804 * src/reader.c (symbol_list_new): Be sure to initialize all the
16805 fields.
16806
16807 2001-12-27 Akim Demaille <akim@epita.fr>
16808
16809 All the hacks using a final pseudo state are now useless.
16810
16811 * src/LR0.c (set_state_table): state_table holds exactly nstates.
16812 * src/lalr.c (nLA): New.
16813 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
16814 instead of lookaheadsp from the pseudo state (nstate + 1).
16815
16816 2001-12-27 Akim Demaille <akim@epita.fr>
16817
16818 * src/output.c (action_row, token_actions): Use a state_t instead
16819 of a integer, and nlookaheads instead of the following state's
16820 lookaheadsp.
16821
16822 2001-12-27 Akim Demaille <akim@epita.fr>
16823
16824 * src/conflicts.c (log_resolution, flush_shift)
16825 (resolve_sr_conflict, set_conflicts, solve_conflicts)
16826 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
16827 (conflicts_print, print_reductions): Use a state_t instead of an
16828 integer when referring to a state.
16829 As much as possible, depend upon nlookaheads, instead of the
16830 `lookaheadsp' member of the following state (since lookaheads of
16831 successive states are successive, the difference between state n + 1
16832 and n served as the number of lookaheads for state n).
16833 * src/lalr.c (add_lookback_edge): Likewise.
16834 * src/print.c (print_core, print_actions, print_state)
16835 (print_results): Likewise.
16836 * src/print_graph.c (print_core, print_actions, print_state)
16837 (print_graph): Likewise.
16838 * src/conflicts.h: Adjust.
16839
16840 2001-12-27 Akim Demaille <akim@epita.fr>
16841
16842 * src/bison.hairy: Formatting/comment changes.
16843 ANSIfy.
16844 Remove `register' indications.
16845 Add plenty of `static'.
16846
16847 2001-12-27 Akim Demaille <akim@epita.fr>
16848
16849 * src/output.c (prepare): Drop the muscle `ntbase' which
16850 duplicates ntokens.
16851 * src/bison.simple: Formatting/comment changes.
16852 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
16853 is an undocumented synonym.
16854
16855 2001-12-22 Akim Demaille <akim@epita.fr>
16856
16857 * src/output.c (output_table_data): Change the prototype to use
16858 `int' for array ranges: some invocations do pass an int, not a
16859 short.
16860 Reported by Wayne Green.
16861
16862 2001-12-22 Akim Demaille <akim@epita.fr>
16863
16864 Some actions of web2c.y are improperly triggered.
16865 Reported by Mike Castle.
16866
16867 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
16868 * tests/regression.at (Web2c): Rename as...
16869 (Web2c Report): this.
16870 (Web2c Actions): New.
16871
16872 2001-12-22 Akim Demaille <akim@epita.fr>
16873
16874 Reductions in web2c.y are improperly reported.
16875 Reported by Mike Castle.
16876
16877 * src/conflicts.c (print_reductions): Fix.
16878 * tests/regression.at (Web2c): New.
16879
16880 2001-12-18 Akim Demaille <akim@epita.fr>
16881
16882 Some host fail on `assert (!"foo")', which expands to
16883 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
16884 Reported by Nelson Beebee.
16885
16886 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
16887 `#define it_succeeded 0' and `assert (it_succeeded)'.
16888
16889 2001-12-17 Marc Autret <autret_m@epita.fr>
16890
16891 * src/bison.simple: Don't hard code the skeleton line and filename.
16892 * src/output.c (output_parser): Rename 'line' as 'output_line'.
16893 New line counter 'skeleton_line' (skeleton-line muscle).
16894
16895 2001-12-17 Paul Eggert <eggert@twinsun.com>
16896
16897 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
16898 YYDEBUG must be defined to a nonzero value.
16899
16900 * src/bison.simple (yytname): Do not assume that the user defines
16901 YYDEBUG to a properly parenthesized expression.
16902
16903 2001-12-17 Akim Demaille <akim@epita.fr>
16904
16905 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
16906 nlookaheads is a new member.
16907 Adjust all users.
16908 * src/lalr.h (nlookaheads): Remove this orphan declaration.
16909 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
16910 state.
16911
16912 2001-12-17 Akim Demaille <akim@epita.fr>
16913
16914 * src/files.h, src/files.c (open_files, close_files): Remove.
16915 * src/main.c (main): Don't open/close files, nor invoke lex_free,
16916 let...
16917 * src/reader.c (reader): Do it.
16918
16919 2001-12-17 Akim Demaille <akim@epita.fr>
16920
16921 * src/conflicts.c (print_reductions): Formatting changes.
16922
16923 2001-12-17 Akim Demaille <akim@epita.fr>
16924
16925 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
16926 (flush_reduce): New.
16927 (resolve_sr_conflict): Adjust.
16928
16929 2001-12-17 Akim Demaille <akim@epita.fr>
16930
16931 * src/output.c (output_obstack): Be static and rename as...
16932 (format_obstack): this, to avoid any confusion with files.c's
16933 output_obstack.
16934 * src/reader.h (muscle_obstack): Move to...
16935 * src/output.h: here, since it's defined in output.c.
16936
16937 2001-12-17 Akim Demaille <akim@epita.fr>
16938
16939 * src/output.c (action_row, save_column, default_goto)
16940 (sort_actions, matching_state, pack_vector): Better variable
16941 locality.
16942
16943 2001-12-17 Akim Demaille <akim@epita.fr>
16944
16945 * src/output.c: Various formatting changes.
16946
16947 2001-12-17 Akim Demaille <akim@epita.fr>
16948
16949 * src/files.c (output_files): Free the output_obstack.
16950 * src/main.c (main): Call print and print_graph conditionally.
16951 * src/print.c (print): Work unconditionally.
16952 * src/print_graph.c (print_graph): Work unconditionally.
16953 * src/conflicts.c (log_resolution): Output only if verbose_flag.
16954
16955 2001-12-16 Marc Autret <autret_m@epita.fr>
16956
16957 * src/output.c (actions_output): Fix. When we use %no-lines,
16958 there is one less line per action.
16959
16960 2001-12-16 Marc Autret <autret_m@epita.fr>
16961
16962 * src/bison.simple: Remove a useless #line directive.
16963 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
16964 * src/output.c (get_lines_number): New.
16965 (output_parser): Adjust, now takes care about the lines of a
16966 output muscles.
16967 Fix line numbering.
16968 (actions_output): Computes the number of lines taken by actions.
16969 (output_master_parser): Insert new skeleton which is the name of
16970 the output parser file name.
16971
16972 2001-12-15 Marc Autret <autret_m@epita.fr>
16973
16974 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
16975
16976 2001-12-15 Marc Autret <autret_m@epita.fr>
16977
16978 * src/output.c (output_gram): Keep track of the hairy one.
16979
16980 2001-12-15 Akim Demaille <akim@epita.fr>
16981
16982 Make `make distcheck' work.
16983
16984 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
16985 system.h which uses libgettext.h.
16986
16987 2001-12-15 Akim Demaille <akim@epita.fr>
16988
16989 * src/nullable.c (set_nullable): Useless rules must be skipped,
16990 otherwise, since we range over their symbols, we might look at a
16991 nonterminal which no longer ``exists'', i.e., it is not counted in
16992 `nvars', hence we overflow our arrays.
16993
16994 2001-12-15 Akim Demaille <akim@epita.fr>
16995
16996 The header can also be produced directly, without any obstack!
16997 Yahoo!
16998
16999 * src/files.c, src/files.h (defines_obstack): Remove.
17000 (compute_header_macro): Global.
17001 (defines_obstack_save): Remove.
17002 * src/reader.c (parse_union_decl): No longer output to
17003 defines_obstack: its content can be found in the `stype' muscle
17004 anyway.
17005 (output_token_translations): Merge into...
17006 (symbols_output): this.
17007 Rename as...
17008 (symbols_save): this.
17009 (reader): Adjust.
17010 * src/output.c (header_output): New.
17011 (output): Call it.
17012
17013 2001-12-15 Akim Demaille <akim@epita.fr>
17014
17015 * src/reader.c (parse_union_decl): Instead of handling two obstack
17016 simultaneously, use one to define the `stype' muscle, and use the
17017 value of the latter to fill defines_obstack.
17018 (copy_comment): Remove.
17019 (copy_comment2): Work for a single obstack.
17020 Rename as...
17021 (copy_comment): this.
17022
17023 2001-12-15 Akim Demaille <akim@epita.fr>
17024
17025 * src/lex.c, src/lex.h (xgetc): No longer static.
17026 * src/reader.c (parse_union_decl): Revamp.
17027
17028 2001-12-15 Akim Demaille <akim@epita.fr>
17029
17030 Still making progress in separating Bison into (i) input, (ii)
17031 process, (iii) output: now we can directly output the parser file
17032 without using table_obstack at all.
17033
17034 * src/files.c, src/files.h (table_obstack): Bye bye.
17035 (parser_file_name): New.
17036 * src/files.c (compute_output_file_names): Compute it.
17037 * src/output.c (actions_output, output_parser)
17038 (output_master_parser): To a file instead of an obstack.
17039
17040 2001-12-15 Akim Demaille <akim@epita.fr>
17041
17042 Attach actions to rules, instead of pre-outputting them to
17043 actions_obstack.
17044
17045 * src/gram.h (rule_t): action and action_line are new members.
17046 * src/reader.c (symbol_list): Likewise.
17047 (copy_action): Save the actions within the rule.
17048 (packgram): Save them in rule_table.
17049 * src/output.c (actions_output): New.
17050 (output_parser): Use it on `%%actions'.
17051 (output_rule_data): Don't free rule_table.
17052 (output): Do it.
17053 (prepare): Don't save the `action' muscle.
17054 * src/bison.simple: s/%%action/%%actions/.
17055
17056 2001-12-15 Akim Demaille <akim@epita.fr>
17057
17058 * src/reader.c (copy_action): When --yacc, don't append a `;'
17059 to the user action: let it fail if lacking.
17060 Suggested by Arnold Robbins and Tom Tromey.
17061
17062 2001-12-14 Akim Demaille <akim@epita.fr>
17063
17064 * src/lex.c (literalchar): Simply return the char you decoded, non
17065 longer mess around with obstacks and int pointers.
17066 Adjust all callers.
17067
17068 2001-12-14 Akim Demaille <akim@epita.fr>
17069
17070 * src/lex.c (literalchar): Don't escape the special characters,
17071 just decode them, and keep them as char (before, eol was output as
17072 the 2 char string `\n' etc.).
17073 * src/output.c (output_rule_data): Use quotearg to output the
17074 token strings.
17075
17076 2001-12-13 Paul Eggert <eggert@twinsun.com>
17077
17078 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
17079 Do not infringe on the global user namespace when using C++.
17080 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
17081 All uses of `fprintf' and `stderr' changed.
17082
17083 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
17084
17085 2001-12-13 Akim Demaille <akim@epita.fr>
17086
17087 The computation of nullable is broken: it doesn't handle empty
17088 RHS's properly.
17089
17090 * tests/torture.at (GNU AWK Grammar): New.
17091 * tests/sets.at (Nullable): New.
17092 * src/nullable.c (set_nullable): Instead of blindly looping over
17093 `ritems', loop over the rules, and then over their rhs's.
17094
17095 Work around Autotest bugs.
17096
17097 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
17098 frame, because Autotest understand lines starting with a `+' as
17099 traces from the shell. Then, they are not processed properly.
17100 Admittedly an Autotest bug, but we don't have time to wait for
17101 Autotest to catch up.
17102 * tests/regression.at (Broken Closure): Adjust to the new table
17103 frames.
17104 Move to...
17105 * tests/sets.at: here.
17106
17107 2001-12-13 Akim Demaille <akim@epita.fr>
17108
17109 * src/closure.c (closure): Use nrules instead of playing tricks
17110 with BITS_PER_WORD.
17111
17112 2001-12-13 Akim Demaille <akim@epita.fr>
17113
17114 * src/print.c (print_actions): Output the handling of `$' as the
17115 traces do: shifting the token EOF. Before EOF was treated as a
17116 nonterminal.
17117 * tests/regression.at: Adjust some tests.
17118 * src/print_graph.c (print_core): Complete the set of items via
17119 closure. The next-to-final and final states are still unsatisfying,
17120 but that's to be addressed elsewhere.
17121 No longer output the rule numbers, but do output the state number.
17122 A single loop for the shifts + gotos is enough, but picked a
17123 distinct color for each.
17124 (print_graph): Initialize and finalize closure.
17125
17126 2001-12-13 Akim Demaille <akim@epita.fr>
17127
17128 * src/reader.c (readgram): Remove dead code, an strip useless
17129 braces.
17130 (get_type): Remove, unused.
17131
17132 2001-12-12 Akim Demaille <akim@epita.fr>
17133
17134 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
17135 on that of lib/error.c.
17136
17137 2001-12-12 Akim Demaille <akim@epita.fr>
17138
17139 Some hosts don't like `/' in includes.
17140
17141 * src/system.h: Include libgettext.h without qualifying the path.
17142 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
17143 $(top_srcdir).
17144
17145 2001-12-11 Marc Autret <autret_m@epita.fr>
17146
17147 * src/output.c (output_parser): Remove useless muscle.
17148
17149 2001-12-11 Marc Autret <autret_m@epita.fr>
17150
17151 * src/bison.simple: Remove #line just before %%epilogue. It
17152 is now handled in ...
17153 * src/reader.c (read_additionnal_code): Add the output of a
17154 #line for the epilogue.
17155
17156 2001-12-10 Marc Autret <autret_m@epita.fr>
17157
17158 * src/reader.c (copy_definition): Re-use CPP-outed code which
17159 replace precedent remove.
17160 * src/bison.simple: Remove #line before %%prologue because
17161 %%input-line is wrong at this time.
17162
17163 2001-12-10 Marc Autret <autret_m@epita.fr>
17164
17165 * src/reader.c (symbols_output): Clean up.
17166 * src/output.c (output_gram, output): Clean up.
17167
17168 2001-12-10 Akim Demaille <akim@epita.fr>
17169
17170 * src/lalr.c (initialize_lookaheads): New. Extracted from...
17171 * src/LR0.c (set_state_table): here.
17172 * src/lalr.c (lalr): Call it.
17173
17174 2001-12-10 Akim Demaille <akim@epita.fr>
17175
17176 * src/state.h (shifts): Remove the `number' member: shifts are
17177 attached to state, hence no longer need to be labelled with a
17178 state number.
17179
17180 2001-12-10 Akim Demaille <akim@epita.fr>
17181
17182 Now that states have a complete set of members, the linked list of
17183 shifts is useless: just fill directly the state's shifts member.
17184
17185 * src/state.h (shifts): Remove the `next' member.
17186 * src/LR0.c (first_state, last_state): Remove.
17187 Adjust the callers.
17188 (augment_automaton): Don't look for the shifts that must be added
17189 a shift on EOF: it is those of the state we looked for! But now,
17190 since shifts are attached, it is no longer needed to looking
17191 merely by its id: its number.
17192
17193 2001-12-10 Akim Demaille <akim@epita.fr>
17194
17195 * src/LR0.c (augment_automaton): Better variable locality.
17196 Remove an impossible branch: if there is a state corresponding to
17197 the start symbol being shifted, then there is shift for the start
17198 symbol from the initial state.
17199
17200 2001-12-10 Akim Demaille <akim@epita.fr>
17201
17202 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
17203 only when appropriate: when insert_start_shifting_state' is not
17204 invoked.
17205 * tests/regression.at (Rule Line Numbers): Adjust.
17206
17207 2001-12-10 Akim Demaille <akim@epita.fr>
17208
17209 * src/LR0.c (augment_automaton): Now that all states have shifts,
17210 merge the two cases addition shifts to the initial state.
17211
17212 2001-12-10 Akim Demaille <akim@epita.fr>
17213
17214 * src/lalr.c (set_state_table): Move to...
17215 * src/LR0.c: here.
17216 * src/lalr.c (lalr): Don't call it...
17217 * src/LR0.c (generate_states): do it.
17218 * src/LR0.h (first_state): Remove, only the table is used.
17219
17220 2001-12-10 Akim Demaille <akim@epita.fr>
17221
17222 * src/LR0.h (first_shift, first_reduction): Remove.
17223 * src/lalr.c: Don't use first_shift: find shifts through the
17224 states.
17225
17226 2001-12-10 Akim Demaille <akim@epita.fr>
17227
17228 * src/LR0.c: Attach shifts to states as soon as they are
17229 computed.
17230 * src/lalr.c (set_state_table): Instead of assigning shifts to
17231 state, just assert that the mapping was properly done.
17232
17233 2001-12-10 Akim Demaille <akim@epita.fr>
17234
17235 * src/LR0.c (insert_start_shift): Rename as...
17236 (insert_start_shifting_state): this.
17237 (insert_eof_shifting_state, insert_accepting_state): New.
17238 (augment_automaton): Adjust.
17239 Better locality of the variables.
17240 When looking if the start_symbol is shifted from the initial
17241 state, using `while (... symbol != start_symbol ...)' sounds
17242 better than `while (... symbol < start_symbol ...)': If fail
17243 to see how the order between symbols could be relevant!
17244
17245 2001-12-10 Akim Demaille <akim@epita.fr>
17246
17247 * src/getargs.h: Don't declare `spec_name_prefix' and
17248 `spec_file_prefix', declared by src/files.h.
17249 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
17250 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
17251 * src/output.c (prepare): Adjust.
17252 * src/reader.c (symbols_output): Likewise.
17253 * src/vmsgetargs.c: Vaguely adjust, but who cares?
17254
17255 2001-12-10 Akim Demaille <akim@epita.fr>
17256
17257 * src/muscle_tab.c (muscle_init): NULL is a better default than
17258 `"0"'.
17259
17260 2001-12-10 Akim Demaille <akim@epita.fr>
17261
17262 * src/reader.c (reader): Calling symbols_output once is enough.
17263
17264 2001-12-10 Akim Demaille <akim@epita.fr>
17265
17266 Now that states have a complete set of members, the linked list of
17267 reductions is useless: just fill directly the state's reductions
17268 member.
17269
17270 * src/state.h (struct reductions): Remove member `number' and
17271 `next'.
17272 * src/LR0.c (first_reduction, last_reduction): Remove.
17273 (save_reductions): Don't link the new reductions, store them in
17274 this_state.
17275 * src/lalr.c (set_state_table): No need to attach reductions to
17276 states, it's already done.
17277 * src/output.c (output_actions): No longer free the shifts, then
17278 the reductions, then the states: free all the states and their
17279 members.
17280
17281 2001-12-10 Akim Demaille <akim@epita.fr>
17282
17283 * src/options.c (OPTN, DRTV, BOTH): New.
17284 (option_table): Use them.
17285
17286 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
17287 the job of system.h.
17288 * src/options.c: Don't include stdio.h and xalloc.h for the same
17289 reasons.
17290
17291 2001-12-10 Akim Demaille <akim@epita.fr>
17292
17293 * src/output.c (output, prepare): Make sure the values of the
17294 muscles `action' and `prologue' are 0-terminated.
17295
17296 2001-12-10 Akim Demaille <akim@epita.fr>
17297
17298 Clean up GCC warnings.
17299
17300 * src/reader.c (copy_action): `buf' is not used.
17301 (parse_skel_decl): Be static.
17302 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
17303 * src/options.h (create_long_option_table): Have a real prototype.
17304 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
17305 (hash_delete_at): Return const void *.
17306 Adjust casts to preserve the const.
17307
17308 2001-12-10 Akim Demaille <akim@epita.fr>
17309
17310 * configure.in: Require 2.52g.
17311 M4 is not needed, but AUTOM4TE is.
17312 * m4/m4.m4: Remove.
17313 * tests/Makefile.am: Adjust.
17314
17315 2001-12-10 Akim Demaille <akim@epita.fr>
17316
17317 One structure for states is enough, even though theoretically
17318 there are LR(0) states and LALR(1) states.
17319
17320 * src/lalr.h (state_t): Remove.
17321 (state_table): Be state_t **, not state_t *.
17322 * src/state.h (core, CORE_ALLOC): Rename as...
17323 (state_t, STATE_ALLOC): this.
17324 Add the LALR(1) members: shifts, reductions, errs.
17325 * src/LR0.c (state_table): Rename as...
17326 (state_hash): this, to avoid name clashes with the global
17327 `state_table'.
17328 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
17329 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
17330
17331 2001-12-10 Akim Demaille <akim@epita.fr>
17332
17333 Bison dumps core on bash.y.
17334 Reported by Pascal Bart.
17335
17336 * src/warshall.c (bitmatrix_print): New.
17337 (TC): Use it.
17338 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
17339 j must be the outer loop.
17340 * tests/regression.at (Broken Closure): New.
17341
17342 2001-12-05 Akim Demaille <akim@epita.fr>
17343
17344 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
17345 its argument.
17346 Reported by Peter Hamorsky.
17347
17348 2001-12-05 Akim Demaille <akim@epita.fr>
17349
17350 * src/conflicts.c (err_table): Remove.
17351 (resolve_sr_conflict): Adjust.
17352 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
17353 Rename as...
17354 (state_t.reductions, state_t.shifts): this.
17355
17356 2001-12-05 Akim Demaille <akim@epita.fr>
17357
17358 * src/reduce.c (reduce_grammar_tables): No longer disable the
17359 removal of useless rules via CPP but via `if (0)', so that the
17360 compiler still check the code is valid.
17361 For instance, it should have noticed `rline' no longer exists: use
17362 the `line' member of rule_t.
17363 * src/gram.c (dummy, rline): Remove, unused.
17364
17365 2001-12-05 Akim Demaille <akim@epita.fr>
17366
17367 * src/output.c (pack_vector): Use assert, not berror.
17368 * src/main.c (berror): Remove, unused.
17369
17370 2001-12-05 Akim Demaille <akim@epita.fr>
17371
17372 New experimental feature: if --verbose --trace output all the
17373 items of a state, not only its kernel.
17374
17375 * src/print.c (print_core): If `trace_flag', then invoke closure
17376 before outputting the items of the state (print_core is no longer
17377 a correct name them).
17378 (print_results): Invoke new_closure/free_closure if needed.
17379
17380 2001-12-05 Akim Demaille <akim@epita.fr>
17381
17382 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
17383 * src/closure.c, src/closure.h (itemsetsize): Rename as...
17384 (nitemset): for consistency with the rest of the project.
17385
17386 2001-12-05 Akim Demaille <akim@epita.fr>
17387
17388 * src/closure.c (print_closure): Improve.
17389 (closure): Use it for printing input and output.
17390
17391 2001-12-05 Akim Demaille <akim@epita.fr>
17392
17393 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
17394 indexed by nonterminals.
17395
17396 2001-12-05 Akim Demaille <akim@epita.fr>
17397
17398 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
17399 what it was!).
17400 * src/warshall.h: Remove accidental duplication of the content.
17401
17402 2001-12-05 Akim Demaille <akim@epita.fr>
17403
17404 * src/closure.c (set_fderives): De-obfuscate.
17405
17406 2001-12-05 Akim Demaille <akim@epita.fr>
17407
17408 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
17409
17410 2001-12-05 Akim Demaille <akim@epita.fr>
17411
17412 * src/closure.c (set_firsts): De-obfuscate.
17413
17414 2001-12-05 Akim Demaille <akim@epita.fr>
17415
17416 * src/output.c (action_row): De-obfuscate
17417 using the good o' techniques: arrays not pointers, variable
17418 locality, BITISSET, RESETBIT etc.
17419
17420 2001-12-05 Akim Demaille <akim@epita.fr>
17421
17422 Pessimize the code to simplify it: from now on, all the states
17423 have a valid SHIFTS, which NSHIFTS is possibly 0.
17424
17425 * src/LR0.c (shifts_new): Be global and move to..
17426 * src/state.c, src/state.h: here.
17427 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
17428 * src/print_graph: Adjust.
17429
17430 2001-12-05 Akim Demaille <akim@epita.fr>
17431
17432 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
17433 * src/conflicts.c: Use it.
17434 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
17435 incorrectly ``simplified''.
17436
17437 2001-12-05 Akim Demaille <akim@epita.fr>
17438
17439 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
17440 using the good o' techniques: arrays not pointers, variable
17441 locality, BITISSET, RESETBIT etc.
17442
17443 2001-12-05 Akim Demaille <akim@epita.fr>
17444
17445 * src/state.h (SHIFT_SYMBOL): New.
17446 * src/conflicts.c: Use it to deobfuscate.
17447
17448 2001-12-05 Akim Demaille <akim@epita.fr>
17449
17450 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
17451 (print_reductions): De-obfuscate using the good o' techniques:
17452 arrays not pointers, variable locality, BITISSET.
17453
17454 2001-12-05 Akim Demaille <akim@epita.fr>
17455
17456 * src/conflicts.c (print_reductions): Arrays, not pointers.
17457 Use BITISSET.
17458
17459 2001-12-05 Akim Demaille <akim@epita.fr>
17460
17461 * src/conflicts.c (print_reductions): Pessimize, but clarify.
17462
17463 2001-12-05 Akim Demaille <akim@epita.fr>
17464
17465 * src/conflicts.c (print_reductions): Improve variable locality.
17466
17467 2001-12-05 Akim Demaille <akim@epita.fr>
17468
17469 * src/conflicts.c (print_reductions): Pessimize, but clarify.
17470
17471 2001-12-05 Akim Demaille <akim@epita.fr>
17472
17473 * src/conflicts.c (print_reductions): Improve variable locality.
17474
17475 2001-12-05 Akim Demaille <akim@epita.fr>
17476
17477 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
17478 * src/lalr.c: Use them.
17479
17480 2001-12-05 Akim Demaille <akim@epita.fr>
17481
17482 * src/LR0.c (augment_automaton): Formatting changes.
17483 Better variable locality.
17484
17485 2001-12-05 Akim Demaille <akim@epita.fr>
17486
17487 * src/lalr.c (matrix_print): New.
17488 (transpose): Use it.
17489 Use arrays instead of pointers.
17490
17491 2001-12-05 Akim Demaille <akim@epita.fr>
17492
17493 * src/lalr.c (maxrhs): Move to...
17494 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
17495 * src/lalr.c (build_relations): Adjust.
17496
17497 2001-12-05 Akim Demaille <akim@epita.fr>
17498
17499 * src/lalr.c (transpose): Free the memory allocated to the
17500 argument, as it is replaced by the results by the unique caller.
17501 (build_relations): Merely invoke transpose: it handles the memory
17502 deallocation.
17503 Improve variable locality.
17504 Avoid variables used as mere abbreviations.
17505 (compute_lookaheads): Use arrays instead of pointers.
17506
17507 2001-12-05 Akim Demaille <akim@epita.fr>
17508
17509 * src/lalr.c (initialize_F): Improve variable locality.
17510 Avoid variables used as mere abbreviations.
17511
17512 2001-12-05 Akim Demaille <akim@epita.fr>
17513
17514 * src/derives.c (print_derives): Display the ruleno.
17515 * src/lalr.c (initialize_F, transpose): Better variable locality
17516 to improve readability.
17517 Avoid variables used as mere abbreviations.
17518
17519 2001-12-05 Akim Demaille <akim@epita.fr>
17520
17521 * src/lalr.c (traverse): Use arrays instead of pointers.
17522
17523 2001-12-05 Akim Demaille <akim@epita.fr>
17524
17525 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
17526 the handling of squeue.
17527 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
17528
17529 2001-12-05 Akim Demaille <akim@epita.fr>
17530
17531 Because useless nonterminals are now kept alive (instead of being
17532 `destroyed'), we now sometimes examine them, and store information
17533 related to them. Hence we need to know their number, and adjust
17534 memory allocations.
17535
17536 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
17537 static.
17538 * src/LR0.c (allocate_itemsets): The memory allocated to
17539 `symbol_count' was used for two different purpose: once to count
17540 the number of occurrences of each symbol, and later reassigned to
17541 `shift_symbol', containing the symbol that can be shifted from a
17542 given state.
17543 Deobfuscate, i.e., allocate, use and free `symbol_count' here
17544 only, and...
17545 (new_itemsets): Allocate `shift_symbol' here.
17546 (allocate_itemsets): symbol_count includes useless nonterminals.
17547 Make room for them.
17548 (free_storage): Use `free', not `XFREE', for pointers that cannot
17549 be null.
17550
17551 2001-12-05 Akim Demaille <akim@epita.fr>
17552
17553 * src/nullable.c (set_nullable): Deobfuscate the handling of
17554 ritem.
17555 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
17556
17557 2001-12-05 Akim Demaille <akim@epita.fr>
17558
17559 * src/gram.c, src/gram.h (ritem_print): New.
17560 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
17561 (This useless function was defined only to work around VMS linkers
17562 that can't handle compilation units with variables only).
17563 * src/reduce.c (dump_grammar): Use it to trace the construction of
17564 ritem.
17565
17566 2001-12-04 Paul Eggert <eggert@twinsun.com>
17567
17568 * src/bison.simple (union yyalloc): Change member names
17569 to be the same as the stack names.
17570 (yyparse): yyptr is now union yyalloc *, not char *.
17571 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
17572 and may generate better code on some machines.
17573 (yystpcpy): Use prototype if __STDC__ is defined, not just
17574 if __cplusplus is defined.
17575
17576 2001-11-30 Akim Demaille <akim@epita.fr>
17577
17578 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
17579 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
17580 Gettext doesn't compile cleanly, and dies with -Werror.
17581 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
17582 Include WARNING_CFLAGS here.
17583 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
17584 before being defined.
17585
17586 2001-11-27 Paul Eggert <eggert@twinsun.com>
17587
17588 * lib/quotearg.h (quotearg_n, quotearg_n_style):
17589 First arg is int, not unsigned.
17590 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
17591 (SIZE_MAX, UINT_MAX): New macros.
17592 (quotearg_n_options): Abort if N is negative.
17593 Avoid overflow check on hosts where size_t is 64 bits and int
17594 is 32 bits, as overflow is impossible there.
17595 Fix off-by-one typo that caused unnecessary reallocation.
17596
17597 2001-11-29 Paul Eggert <eggert@twinsun.com>
17598
17599 Name space cleanup in generated parser.
17600
17601 * doc/bison.texinfo (Bison Parser): Discuss system headers
17602 and their effect on the user name space.
17603
17604 * src/bison.simple:
17605 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
17606 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
17607 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
17608
17609 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
17610 on user names when possible.
17611
17612 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
17613 Simplify test for whather <alloca.h> exists.
17614
17615 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
17616
17617 (<stdio.h>): Include if YYDEBUG.
17618
17619 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
17620 ! defined (yyoverflow) && ! defined (yymemcpy).
17621
17622 (yymemcpy, yyparse): Rename local variables as needed so that
17623 they all begin with 'yy'.
17624
17625 (yystrlen, yystpcpy): New functions.
17626
17627 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
17628 All uses changed.
17629
17630 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
17631 instead of relying on string.h functions. Use YYSTACK_ALLOC
17632 and YYSTACK_FREE instead of malloc and free.
17633
17634 2001-11-30 Akim Demaille <akim@epita.fr>
17635
17636 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
17637 before their first uses.
17638 (YYBISON, YYPURE): Move to the top of the output.
17639
17640 2001-11-30 Akim Demaille <akim@epita.fr>
17641
17642 * tests/reduce.at (Useless Nonterminals): Fix.
17643
17644 2001-11-30 Akim Demaille <akim@epita.fr>
17645
17646 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
17647 if body instead of `;' to pacify GCC's warnings.
17648
17649 2001-11-30 Akim Demaille <akim@epita.fr>
17650
17651 Instead of mapping the LHS of unused rules to -1, keep the LHS
17652 valid, but flag the rules as invalid.
17653
17654 * src/gram.h (rule_t): `useful' is a new member.
17655 * src/print.c (print_grammar): Adjust.
17656 * src/derives.c (set_derives): Likewise.
17657 * src/reader.c (packgram, reduce_output): Likewise.
17658 * src/reduce.c (reduce_grammar_tables): Likewise.
17659 * tests/reduce.at (Underivable Rules, Useless Rules): New.
17660
17661 2001-11-30 Akim Demaille <akim@epita.fr>
17662
17663 * src/reduce.c (reduce_output): Formatting changes.
17664 * src/print.c (print_results, print_grammar): Likewise.
17665 * tests/regression.at (Rule Line Numbers)
17666 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
17667
17668 2001-11-30 Akim Demaille <akim@epita.fr>
17669
17670 * src/reduce.c (nonterminals_reduce): Instead of throwing away
17671 useless nonterminals, move them at the end of the symbol arrays.
17672 (reduce_output): Adjust.
17673 * tests/reduce.at (Useless Nonterminals): Adjust.
17674
17675 2001-11-30 Akim Demaille <akim@epita.fr>
17676
17677 * src/reduce.c: Various comment/formatting changes.
17678 (nonterminals_reduce): New, extracted from...
17679 (reduce_grammar_tables): here.
17680 (reduce_grammar): Call nonterminals_reduce.
17681
17682 2001-11-29 Paul Eggert <eggert@twinsun.com>
17683
17684 * src/bison.simple (YYSTACK_REALLOC): Remove.
17685 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
17686 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
17687 New macros.
17688 (union yyalloc): New type.
17689 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
17690 an arbitrary restriction on hosts where size_t is wider than int.
17691
17692 (yyparse): Don't dump core if alloca or malloc fails; instead, report
17693 a parser stack overflow. Allocate just one block of memory for all
17694 three stacks, instead of allocating three blocks; this typically is
17695 faster and reduces fragmentation.
17696
17697 Do not limit the number of items in the stack to a value that fits
17698 in 'int', as this is an arbitrary limit on hosts with 64-bit
17699 size_t and 32-bit int.
17700
17701 2001-11-29 Marc Autret <autret_m@epita.fr>
17702
17703 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
17704 of defining YYERROR_VERBOSE.
17705 [AT_DATA]: $4 is now out of C declarations in the prologue.
17706
17707 2001-11-28 Marc Autret <autret_m@epita.fr>
17708
17709 * src/reader.c (parse_dquoted_param): New.
17710 (parse_skel_decl): Use it.
17711 * src/lex.h: Add its prototype.
17712 * src/lex.c (literalchar): Become not static.
17713
17714 2001-11-28 Marc Autret <autret_m@epita.fr>
17715
17716 * src/output.h: And put its extern declaration here.
17717 * src/output.c (error_verbose): Define here.
17718 (prepare): Echo name modification.
17719 * src/getargs.h: Clean its extern declaration.
17720 * src/getargs.c (error_verbose_flag): Remove.
17721 (getargs): Remove case 'e'.
17722 * src/options.c (option_table): 'error-verbose' is now seen as simple
17723 percent option.
17724 Include output.h.
17725
17726 * src/reader.c (read_declarations): Remove case tok_include.
17727 (parse_include_decl): Remove.
17728 * src/lex.h (token_t): Remove tok_include.
17729 * src/options.c (option_table): 'include' is now a simple command line
17730 option.
17731
17732 2001-11-28 Marc Autret <autret_m@epita.fr>
17733
17734 * src/bison.simple: Adjust muscle names.
17735 * src/muscle_tab.c (muscle_init): Also rename the muscles.
17736 * src/output.c (prepare): s/_/-/ for the muscles names.
17737 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
17738
17739 2001-11-28 Marc Autret <autret_m@epita.fr>
17740
17741 * src/bison.simple: Fix debug.
17742 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
17743
17744 2001-11-28 Akim Demaille <akim@epita.fr>
17745
17746 * src/LR0.c (shifts_new): New.
17747 (save_shifts, insert_start_shift, augment_automaton): Use it.
17748
17749 2001-11-28 Akim Demaille <akim@epita.fr>
17750
17751 * src/closure.c (closure): `b' and `ruleno' denote the same value:
17752 keep ruleno only.
17753
17754 2001-11-28 Akim Demaille <akim@epita.fr>
17755
17756 * src/closure.c (closure): Instead of looping over word in array
17757 then bits in words, loop over bits in array.
17758
17759 2001-11-28 Akim Demaille <akim@epita.fr>
17760
17761 * src/closure.c (closure): No longer optimize the special case
17762 where all the bits of `ruleset[r]' are set to 0, to make the code
17763 clearer.
17764
17765 2001-11-28 Akim Demaille <akim@epita.fr>
17766
17767 * src/closure.c (closure): `r' and `c' are new variables, used to
17768 de-obfuscate accesses to RULESET and CORE.
17769
17770 2001-11-28 Akim Demaille <akim@epita.fr>
17771
17772 * src/reduce.c (reduce_print): Use ngettext.
17773 (dump_grammar): Improve the trace accuracy.
17774
17775 2001-11-28 Akim Demaille <akim@epita.fr>
17776
17777 * src/reduce.c (dump_grammar): Don't translate trace messages.
17778
17779 2001-11-28 Akim Demaille <akim@epita.fr>
17780
17781 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
17782 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
17783 as all tags are free'ed afterwards.
17784 From Enrico Scholz.
17785
17786 2001-11-27 Paul Eggert <eggert@twinsun.com>
17787
17788 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
17789 use alloca when we didn't want to, and vice versa.
17790
17791 2001-11-27 Marc Autret <autret_m@epita.fr>
17792
17793 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
17794 initialization.
17795 * src/output.c (prepare): Remove its update.
17796
17797 2001-11-27 Marc Autret <autret_m@epita.fr>
17798
17799 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
17800 Use %error-verbose.
17801
17802 2001-11-27 Marc Autret <autret_m@epita.fr>
17803
17804 * src/bison.simple: Remove YYERROR_VERBOSE using.
17805 Use %%error_verbose.
17806 (yyparse): Likewise.
17807 * src/output.c (prepare): Give its final value.
17808 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
17809 * src/getargs.h: Add its extern declaration.
17810 * src/getargs.c (error_verbose_flag): New int.
17811 (getargs): Update to catch new case.
17812 * src/options.c (option_table): 'error-verbose' is a new option.
17813 (shortopts): Update.
17814
17815 2001-11-27 Akim Demaille <akim@epita.fr>
17816
17817 * src/system.h: Use intl/libgettext.h.
17818 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
17819
17820 2001-11-27 Akim Demaille <akim@epita.fr>
17821
17822 * tests/torture.at (Exploding the Stack Size with Malloc):
17823 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
17824
17825 2001-11-27 Akim Demaille <akim@epita.fr>
17826
17827 * src/files.c: Include error.h.
17828 Reported by Hans Aberg.
17829
17830 2001-11-26 Marc Autret <autret_m@epita.fr>
17831
17832 * src/reader.c (parse_include_decl): New, not yet implemented.
17833 (read_declarations): Add case tok_include.
17834 * src/getargs.h (include): Add its extern definition.
17835 * src/getargs.c (include): New const char *.
17836 (getargs): Add case '-I'.
17837 * src/options.c (option_table): Add include as command line and
17838 percent option.
17839 * src/lex.h (token_t): Add tok_include.
17840
17841 2001-11-26 Akim Demaille <akim@epita.fr>
17842
17843 * src/reader.c (readgram): Make sure rules for mid-rule actions
17844 have a lineno equal to that of their host rule.
17845 Reported by Hans Aberg.
17846 * tests/regression.at (Rule Line Numbers): New.
17847
17848 2001-11-26 Akim Demaille <akim@epita.fr>
17849
17850 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
17851 size_ts.
17852
17853 2001-11-26 Akim Demaille <akim@epita.fr>
17854
17855 * src/complain.c, src/complain.h (error): Remove, provided by
17856 lib/error.[ch].
17857
17858 2001-11-26 Akim Demaille <akim@epita.fr>
17859
17860 * src/reader.c (read_declarations): Don't abort on tok_illegal,
17861 issue an error message.
17862 * tests/regression.at (Invalid %directive): New.
17863 Reported by Hans Aberg.
17864
17865 2001-11-26 Akim Demaille <akim@epita.fr>
17866
17867 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
17868 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
17869
17870 2001-11-26 Akim Demaille <akim@epita.fr>
17871
17872 * src/conflicts.c (conflicts_print): Don't complain at all when
17873 there are no reduce/reduce conflicts, and as many shift/reduce
17874 conflicts as expected.
17875 * tests/regression.at (%expect right): Adjust.
17876
17877 2001-11-23 Akim Demaille <akim@epita.fr>
17878
17879 * lib/alloca.c: Update, from fileutils.
17880
17881 2001-11-23 Akim Demaille <akim@epita.fr>
17882
17883 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
17884
17885 2001-11-23 Akim Demaille <akim@epita.fr>
17886
17887 * src/system.h: Include alloca.h.
17888 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
17889
17890 2001-11-23 Akim Demaille <akim@epita.fr>
17891
17892 * src/print_graph.c (print_actions): Remove `rule', unused.
17893 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
17894 pacify GCC's signed < unsigned warnings.
17895 * src/closure.c (itemsetsize): Likewise.
17896 * src/reader.c (symbol_list_new): Static.
17897
17898 2001-11-23 Akim Demaille <akim@epita.fr>
17899
17900 Attaching lineno to buckets is stupid, since only one copy of each
17901 symbol is kept, only the line of the first occurrence is kept too.
17902
17903 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
17904 * src/reader.c (rline_allocated): Remove, unused.
17905 (symbol_list): Have a `line' member.
17906 (symbol_list_new): New.
17907 (readgram): Use it.
17908 * src/print.c (print_grammar): Output the rule line numbers.
17909 * tests/regression.at (Solved SR Conflicts)
17910 (Unresolved SR Conflicts): Adjust.
17911 Reported by Hans Aberg.
17912
17913 2001-11-22 Marc Autret <autret_m@epita.fr>
17914
17915 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
17916
17917 2001-11-22 Marc Autret <autret_m@epita.fr>
17918
17919 * src/muscle_tab.c (muscle_init): Remove initialization of
17920 skeleton muscle.
17921 * src/output.c (output_master_parser): Do it here.
17922
17923 2001-11-20 Akim Demaille <akim@epita.fr>
17924
17925 * po/sv.po: New.
17926 * configure.in (ALL_LINGUAS): Adjust.
17927 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
17928 longer contains strings to translate.
17929
17930 2001-11-19 Akim Demaille <akim@epita.fr>
17931
17932 * src/conflicts.c (conflicts_print): Add a missing \n.
17933
17934 2001-11-19 Akim Demaille <akim@epita.fr>
17935
17936 * src/nullable.c (nullable_print): New.
17937 (set_nullable): Call it when tracing.
17938 Better locality of variables.
17939
17940 2001-11-19 Akim Demaille <akim@epita.fr>
17941
17942 * src/print.c (print_actions): Better locality of variables.
17943
17944 2001-11-19 Akim Demaille <akim@epita.fr>
17945
17946 * src/derives.c (print_derives): Fix and enrich.
17947 * src/closure.c (print_fderives): Likewise.
17948
17949 2001-11-19 Akim Demaille <akim@epita.fr>
17950
17951 * src/closure.c (itemsetend): Remove, replaced with...
17952 (itemsetsize): new.
17953
17954 2001-11-19 Akim Demaille <akim@epita.fr>
17955
17956 * src/LR0.c (kernel_end): Remove, replaced with...
17957 (kernel_size): new.
17958
17959 2001-11-19 Akim Demaille <akim@epita.fr>
17960
17961 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
17962 to clarify.
17963
17964 2001-11-19 Akim Demaille <akim@epita.fr>
17965
17966 * src/closure.c (closure): Use arrays instead of pointers to clarify.
17967
17968 2001-11-19 Akim Demaille <akim@epita.fr>
17969
17970 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
17971 trace messages.
17972 * src/LR0.c: Likewise.
17973 (allocate_itemsets): Use arrays instead of pointers to clarify.
17974
17975 2001-11-19 Akim Demaille <akim@epita.fr>
17976
17977 * src/getargs.c (statistics_flag): Replace with...
17978 (trace_flag): New.
17979 (longopts): Accept --trace instead of --statistics.
17980 * src/getargs.h, src/options.c: Adjust.
17981 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
17982 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
17983
17984 2001-11-19 Akim Demaille <akim@epita.fr>
17985
17986 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
17987 pointers to clarify the code.
17988 (save_reductions, save_shifts): Factor common parts of alternatives.
17989
17990 2001-11-19 Akim Demaille <akim@epita.fr>
17991
17992 * src/LR0.c (new_state, get_state): Complete TRACE code.
17993 * src/closure.c: Include `reader.h' to get `tags', needed by the
17994 trace code.
17995 Rename the conditional DEBUG as TRACE.
17996 Output consistently TRACEs to stderr, not stdout.
17997 * src/derives.c: Likewise.
17998 * src/reduce.c: (inaccessable_symbols): Using if is better style
17999 than goto.
18000 Use `#if TRACE' instead of `#if 0' for tracing code.
18001
18002 2001-11-19 Akim Demaille <akim@epita.fr>
18003
18004 * src/system.h (LIST_FREE, shortcpy): New.
18005 * src/LR0.c: Use them.
18006 * src/output.c (free_itemsets, free_reductions, free_shifts):
18007 Remove, replaced by LIST_FREE.
18008
18009 2001-11-19 Akim Demaille <akim@epita.fr>
18010
18011 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
18012 (REDUCTIONS_ALLOC): New.
18013 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
18014 allocation.
18015
18016 2001-11-19 Akim Demaille <akim@epita.fr>
18017
18018 * src/LR0.c (new_state): Complete trace code.
18019 * src/nullable.c (set_nullable): Don't translate traces.
18020
18021 2001-11-19 Akim Demaille <akim@epita.fr>
18022
18023 * src/print_graph.c (print_core): Better locality of variables.
18024 * src/print.c (print_core): Likewise.
18025
18026 2001-11-19 Akim Demaille <akim@epita.fr>
18027
18028 * src/vcg.c: You do the output, so you are responsible of the
18029 handling of VCG syntax, in particular: use quotearg.
18030 * src/print_graph.c: Don't.
18031 (print_actions): Don't output the actions as part of the nodes,
18032 since that's the job of the edges.
18033 (print_state): Don't output by hand: fill the node description,
18034 and ask for its output.
18035
18036 2001-11-19 Akim Demaille <akim@epita.fr>
18037
18038 * src/bison.simple (yyparse): When verbosely reporting an error,
18039 no longer put additional quotes around token names.
18040 * tests/calc.at: Adjust.
18041
18042 2001-11-19 Akim Demaille <akim@epita.fr>
18043
18044 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
18045 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
18046 * src/output.c: Adjust.
18047
18048 2001-11-19 Akim Demaille <akim@epita.fr>
18049
18050 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
18051 (rule_t): this.
18052 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
18053
18054 2001-11-19 Akim Demaille <akim@epita.fr>
18055
18056 * src/gram.h (rule_t): New.
18057 (rule_table): New.
18058 (rrhs, rlhs): Remove, part of state_t.
18059 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
18060 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
18061 * src/reader.c, src/reduce.c: Adjust.
18062
18063 2001-11-19 Akim Demaille <akim@epita.fr>
18064
18065 * src/reader.c (symbols_output): New, extracted from...
18066 (packsymbols): Here.
18067 (reader): Call it.
18068
18069 2001-11-19 Akim Demaille <akim@epita.fr>
18070
18071 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
18072 (maxrhs): this new function.
18073
18074 2001-11-19 Akim Demaille <akim@epita.fr>
18075
18076 * src/lalr.c (F): New macro to access the variable F.
18077 Adjust.
18078
18079 2001-11-19 Akim Demaille <akim@epita.fr>
18080
18081 * src/lalr.h (LA): New macro to access the variable LA.
18082 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18083 * src/lalr.c: Adjust.
18084
18085 2001-11-19 Akim Demaille <akim@epita.fr>
18086
18087 * src/lalr.c (initialize_LA): Only initialize LA. Let...
18088 (set_state_table): handle the `lookaheads' members.
18089
18090 2001-11-19 Akim Demaille <akim@epita.fr>
18091
18092 * src/lalr.h (lookaheads): Removed array, whose contents is now
18093 a member of...
18094 (state_t): this structure.
18095 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18096 Adjust.
18097
18098 2001-11-19 Akim Demaille <akim@epita.fr>
18099
18100 * src/lalr.h (consistent): Removed array, whose contents is now
18101 a member of...
18102 (state_t): this structure.
18103 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18104 Adjust.
18105
18106 2001-11-19 Akim Demaille <akim@epita.fr>
18107
18108 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
18109 contents are now members of...
18110 (state_t): this structure.
18111 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18112 Adjust.
18113
18114 2001-11-19 Akim Demaille <akim@epita.fr>
18115
18116 * src/lalr.h (state_t): New.
18117 (state_table): Be a state_t * instead of a core **.
18118 (accessing_symbol): Remove, part of state_t.
18119 * src/lalr.c: Adjust.
18120 (set_accessing_symbol): Merge into...
18121 (set_state_table): this.
18122 * src/print_graph.c, src/conflicts.c: Adjust.
18123
18124 2001-11-14 Akim Demaille <akim@epita.fr>
18125
18126 * tests/calc.at, tests/output.at, tests/regression.at,
18127 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
18128 now the tests are run in private dirs, therefore AC_CLEANUP and
18129 family can be simplified to 0-ary.
18130 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
18131 use abs. path to find config.h.
18132 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
18133 stderr, there can be way too much random noise.
18134 Instead pass -Werror to GCC and rely on the exit status.
18135 Reported by Wolfram Wagner.
18136
18137 2001-11-14 Akim Demaille <akim@epita.fr>
18138
18139 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
18140 defined only if yyoverflow is defined, to avoid `warning: unused
18141 variable `yyvs1''.
18142 Reported by The Test Suite.
18143
18144 2001-11-14 Akim Demaille <akim@epita.fr>
18145
18146 * src/print.c: Include reduce.h.
18147 Reported by Hans Aberg.
18148
18149 2001-11-14 Akim Demaille <akim@epita.fr>
18150
18151 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
18152 Revert a previous patch: these are really const.
18153 * src/conflicts.c (conflict_report): Additional useless pair of
18154 braces to pacify GCC's warnings for `if () if () {} else {}'.
18155 * src/lex.c (parse_percent_token): Replace equal_offset with
18156 arg_offset.
18157 arg is const.
18158 Be sure to strdup `arg' when used, since there is no reason for
18159 token_buffer not to change.
18160
18161 2001-11-14 Akim Demaille <akim@epita.fr>
18162
18163 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
18164 definition.
18165 * src/main.c (main): Use them.
18166 Suggested by Hans Aberg.
18167
18168 2001-11-12 Akim Demaille <akim@epita.fr>
18169
18170 * src/system.h (ngettext): Now that we use ngettext, be sure to
18171 provide a default definition when NLS are not used.
18172
18173 2001-11-12 Akim Demaille <akim@epita.fr>
18174
18175 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
18176 Use @kbd to denote user input.
18177 (Language and Grammar): ANSIfy the example.
18178 Adjust its layout for info/notinfo.
18179 (Location Tracking Calc): Output error messages to stderr.
18180 Output locations in a more GNUtically correct way.
18181 Fix a couple of Englishos.
18182 Adjust @group/@end group pairs.
18183
18184 2001-11-12 Akim Demaille <akim@epita.fr>
18185
18186 %expect was not functioning at all.
18187
18188 * src/conflicts.c (expected_conflicts): Set to -1.
18189 (conflict_report): Use ngettext.
18190 (conflicts_print): Check %expect and make its violation an error.
18191 * doc/bison.texinfo (Expect Decl): Adjust.
18192 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
18193 * tests/regression.at (%expect not enough, %expect right)
18194 (%expect too much): New.
18195
18196 2001-11-12 Akim Demaille <akim@epita.fr>
18197
18198 * tests/regression.at (Conflicts): Rename as...
18199 (Unresolved SR Conflicts): this.
18200 (Solved SR Conflicts): New.
18201
18202 2001-11-12 Akim Demaille <akim@epita.fr>
18203
18204 * src/reduce.c (print_results): Rename as...
18205 (reduce_output): This.
18206 Output to OUT, passed as argument, instead of output_obstack.
18207 (dump_grammar): Likewise.
18208 (reduce_free): New.
18209 Also free V1.
18210 (reduce_grammar): No longer call reduce_output, since...
18211 * src/print.c (print_results): do it.
18212 * src/main.c (main): Call reduce_free;
18213
18214 2001-11-12 Akim Demaille <akim@epita.fr>
18215
18216 * src/conflicts.c (print_reductions): Accept OUT as argument.
18217 Output to it, not to output_obstack.
18218 * src/print.c (print_actions): Adjust.
18219
18220 2001-11-12 Akim Demaille <akim@epita.fr>
18221
18222 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
18223 the result instead of using...
18224 (src_total, rrc_total, src_count, rrc_count): Remove.
18225 (any_conflicts): Remove.
18226 (print_conflicts): Split into...
18227 (conflicts_print, conflicts_output): New.
18228 * src/conflicts.h: Adjust.
18229 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
18230 * src/print.c (print_grammar): Issue `\n' between two rules.
18231 * tests/regression.at (Conflicts): New.
18232 Reported by Tom Lane.
18233
18234 2001-11-12 Akim Demaille <akim@epita.fr>
18235
18236 * tests/regression.at (Invalid input): Remove, duplicate with
18237 ``Invalid input: 1''.
18238
18239 2001-11-12 Akim Demaille <akim@epita.fr>
18240
18241 * tests/torture.at (AT_DATA_STACK_TORTURE)
18242 (Exploding the Stack Size with Alloca)
18243 (Exploding the Stack Size with Malloc): New.
18244
18245 2001-11-12 Akim Demaille <akim@epita.fr>
18246
18247 * src/bison.simple (YYSTACK_REALLOC): New.
18248 (yyparse) [!yyoverflow]: Use it and free the old stack.
18249 Reported by Per Allansson.
18250
18251 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
18252
18253 * src/bison.simple: Define type yystype instead of YYSTYPE, and
18254 define CPP macro, which substitute YYSTYPE by yystype.
18255 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
18256 with yyltype/YYLTYPE. This allows inclusion of the generated
18257 header within the parser if the compiler, such as GGC, accepts
18258 multiple equivalent #defines.
18259 From Akim.
18260
18261 2001-11-05 Akim Demaille <akim@epita.fr>
18262
18263 * src/reader.c (symbols_output): New, extracted from...
18264 (packsymbols): here.
18265 (reader): Adjust.
18266
18267 2001-11-05 Akim Demaille <akim@epita.fr>
18268
18269 * src/lex.c (parse_percent_token): s/quotearg/quote/.
18270
18271 2001-11-05 Akim Demaille <akim@epita.fr>
18272
18273 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
18274 pattern.
18275
18276 2001-11-05 Akim Demaille <akim@epita.fr>
18277
18278 * src/options.h (struct option_table_struct): set_flags is void*.
18279 * src/options.c (longopts): Support `--output' and `%output'.
18280 (usage): Adjust.
18281 * src/lex.h (tok_setopt): Remove, replaced with...
18282 (tok_intopt, tok_stropt): these new guys.
18283 * src/lex.c (getopt.h): Not needed.
18284 (token_buffer, unlexed_token_buffer): Not const.
18285 (percent_table): Promote `-' over `_' in directive names.
18286 Active `%name-prefix', `file-prefix', and `output'.
18287 (parse_percent_token): Accept possible arguments to directives.
18288 Promote `-' over `_' in directive names.
18289
18290 2001-11-04 Akim Demaille <akim@epita.fr>
18291
18292 * doc/bison.texinfo (Decl Summary): Split the list into
18293 `directives for grammars' and `directives for bison'.
18294 Sort'em.
18295 Add description of `%name-prefix', `file-prefix', and `output'.
18296 Promote `-' over `_' in directive names.
18297 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
18298 Simplify the description of `--name-prefix'.
18299 Promote `-' over `_' in directive names.
18300 Promote `--output' over `--output-file'.
18301 Fix the description of `--defines'.
18302 * tests/output.at: Exercise %file-prefix and %output.
18303
18304 2001-11-02 Akim Demaille <akim@epita.fr>
18305
18306 * doc/refcard.tex: Update.
18307
18308 2001-11-02 Akim Demaille <akim@epita.fr>
18309
18310 * src/symtab.h (SUNDEF): New.
18311 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
18312 stand for `uninitialized', instead of 0.
18313 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
18314 * src/lex.c (lex): Adjust.
18315
18316 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
18317 Number it 0.
18318 Let yylex return it instead of a plain 0.
18319 Reported by Dick Streefland.
18320
18321 2001-11-02 Akim Demaille <akim@epita.fr>
18322
18323 * tests/regression.at (Mixing %token styles): New test.
18324
18325 2001-11-02 Akim Demaille <akim@epita.fr>
18326
18327 * src/reader.c (parse_thong_decl): Formatting changes.
18328 (token_translations_init): New, extracted from...
18329 (packsymbols): Here.
18330 Adjust.
18331
18332 2001-11-01 Akim Demaille <akim@epita.fr>
18333
18334 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
18335 Check that `9foo.y' produces correct cpp guards.
18336 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
18337 guards.
18338 Reported by Wwp.
18339
18340 2001-11-01 Akim Demaille <akim@epita.fr>
18341
18342 * tests/regression.at (Invalid input: 2): New.
18343 * src/lex.c (unlexed_token_buffer): New.
18344 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
18345 too.
18346 Reported by Wwp.
18347
18348 2001-11-01 Akim Demaille <akim@epita.fr>
18349
18350 * tests/calc.at: Catch up with 1.30.
18351 * configure.in: Bump to 1.49a.
18352 Adjust to newer Autotest.
18353
18354 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
18355
18356 * src/conflicts.c: Move global variables rrc_total and src_total ...
18357 (print_conflicts): here.
18358 * src/output.c (output): Free global variable user_toknums.
18359 * src/lex.c (token_obstack): Become static.
18360
18361 2001-10-18 Akim Demaille <akim@epita.fr>
18362
18363 * tests/atlocal.in (GCC): Add.
18364 * tests/calc.at: s/m4_match/m4_bmatch/.
18365 s/m4_patsubst/m4_bpatsubst/.
18366 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
18367 * configure.in: AC_SUBST(GCC).
18368
18369 2001-10-14 Marc Autret <autret_m@epita.fr>
18370
18371 * src/options.c (create_long_option_table): Fix.
18372
18373 2001-10-10 Akim Demaille <akim@epita.fr>
18374
18375 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
18376
18377 2001-10-04 Akim Demaille <akim@epita.fr>
18378
18379 * src/reader.c (parse_union_decl): Push the caracters in
18380 union_obstack, not attrs_obstack.
18381
18382 2001-10-04 Akim Demaille <akim@epita.fr>
18383
18384 Merge in the branch 1.29.
18385
18386 * src/reader.c (packsymbols): Use a temporary obstack for
18387 `%%tokendef', since output_stack is already used elsewhere.
18388
18389 2001-10-02 Akim Demaille <akim@epita.fr>
18390
18391 Bump 1.29d.
18392
18393 2001-10-02 Akim Demaille <akim@epita.fr>
18394
18395 Version 1.29c.
18396
18397 2001-10-02 Akim Demaille <akim@epita.fr>
18398
18399 * tests/regression.at (Invalid CPP headers): New.
18400 From Alexander Belopolsky.
18401 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
18402
18403 2001-10-02 Akim Demaille <akim@epita.fr>
18404
18405 * tests/regression.at (Invalid input): New.
18406 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
18407 Reported by Shura.
18408
18409 2001-10-02 Akim Demaille <akim@epita.fr>
18410
18411 * tests/calc.at: Now that --debug works, the tests must be adjusted.
18412
18413 2001-10-02 Akim Demaille <akim@epita.fr>
18414
18415 * src/output.c (output_parser): Assert `skeleton'.
18416 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
18417 systems.
18418 From Shura.
18419
18420 2001-10-01 Marc Autret <autret_m@epita.fr>
18421
18422 * src/lex.h: Echo modifications.
18423 * src/lex.c (unlex): Parameter is now token_t.
18424 From Hans Aberg.
18425
18426 2001-10-01 Marc Autret <autret_m@epita.fr>
18427
18428 * src/main.c: Include lex.h.
18429 From Hans Aberg.
18430
18431 2001-09-29 Akim Demaille <akim@epita.fr>
18432
18433 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
18434
18435 2001-09-28 Akim Demaille <akim@epita.fr>
18436
18437 * tests/testsuite.at: Update to newer Autotest.
18438 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
18439
18440 2001-09-27 Akim Demaille <akim@epita.fr>
18441
18442 Position independent wrapper.
18443
18444 * tests/bison: Remove.
18445 * tests/bison.in: New.
18446 * configure.in: Adjust.
18447
18448 2001-09-27 Paul Eggert <eggert@twinsun.com>
18449
18450 Port quotearg fixes from tar 1.13.24.
18451
18452 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
18453 tm to be declared.
18454 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
18455 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
18456
18457 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
18458 * m4/mbrtowc.m4: New file.
18459 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
18460 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
18461
18462 2001-09-27 Akim Demaille <akim@epita.fr>
18463
18464 Bump to 1.29c.
18465
18466 2001-09-27 Akim Demaille <akim@epita.fr>
18467
18468 Version 1.29b.
18469
18470 2001-09-25 Akim Demaille <akim@epita.fr>
18471
18472 * src/system.h: Include `xalloc.h'.
18473 Remove it from the C files.
18474 * src/files.c (output_files): Free the obstacks.
18475 * src/lex.c (init_lex): Rename as...
18476 (lex_init): this.
18477 (lex_free): New.
18478 * src/main.c (main): Use it.
18479
18480 2001-09-24 Marc Autret <autret_m@epita.fr>
18481
18482 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
18483 to output informations in fout (FILE*).
18484 (open_graph, close_graph): Likewise.
18485 (output_graph, output_edge, output_node): Likewise.
18486 * src/vcg.h: Update function prototypes.
18487 * src/print_graph.c (print_graph): Open output graph file.
18488 (print_actions): Adjust.
18489 * src/files.h: Remove extern declaration.
18490 * src/files.c: Remove graph_obstack declaration.
18491 (open_files): Remove graph_obstack initialization.
18492 (output_files): Remove graph_obstack saving.
18493
18494 2001-09-24 Marc Autret <autret_m@epita.fr>
18495
18496 * src/files.c (compute_output_file_names): Fix.
18497
18498 2001-09-24 Marc Autret <autret_m@epita.fr>,
18499 Akim Demaille <akim@epita.fr>
18500
18501 * src/reader.c (reader): Remove call to free_symtab ().
18502 * src/main.c (main): Call it here.
18503 Include symtab.h.
18504 * src/conflicts.c (initialize_conflicts): Rename as...
18505 (solve_conflicts): this.
18506 * src/print.c (print_core, print_actions, print_state)
18507 (print_grammar): Dump to a file instead a `output_obstack'.
18508 (print_results): Dump `output_obstack', and then proceed with the
18509 FILE *.
18510 * src/files.c (compute_output_file_names, close_files): New.
18511 (output_files): Adjust.
18512 * src/main.c (main): Adjust.
18513
18514 2001-09-23 Marc Autret <autret_m@epita.fr>
18515
18516 * src/files.c (compute_header_macro): Computes header macro name
18517 from spec_defines_file when given.
18518
18519 2001-09-23 Marc Autret <autret_m@epita.fr>
18520
18521 * src/files.c (output_files): Add default extensions.
18522
18523 2001-09-22 Akim Demaille <akim@epita.fr>
18524
18525 * src/conflicts.c (finalize_conflicts): Rename as...
18526 (free_conflicts): this.
18527
18528 2001-09-22 Akim Demaille <akim@epita.fr>
18529
18530 * src/gram.c (gram_free): Rename back as...
18531 (dummy): this.
18532 (output_token_translations): Free `token_translations'.
18533 * src/symtab.c (free_symtab): Free the tag field.
18534
18535 2001-09-22 Akim Demaille <akim@epita.fr>
18536
18537 Remove `translations' as it is always set to true.
18538
18539 * src/gram.h: Adjust.
18540 * src/reader.c (packsymbols, parse_token_decl): Adjust
18541 * src/print.c (print_grammar): Adjust.
18542 * src/output.c (output_token_translations): Adjust.
18543 * src/lex.c (lex): Adjust.
18544 * src/gram.c: Be sure the set pointers to NULL.
18545 (dummy): Rename as...
18546 (gram_free): this.
18547
18548 2001-09-22 Akim Demaille <akim@epita.fr>
18549
18550 * configure.in: Invoke AM_LIB_DMALLOC.
18551 * src/system.h: Use dmalloc.
18552 * src/LR0.c: Be sure to have pointers initialized to NULL.
18553 (allocate_itemsets): Allocate kernel_items only if needed.
18554
18555 2001-09-22 Akim Demaille <akim@epita.fr>
18556
18557 * configure.in: Bump to 1.29b.
18558 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
18559 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
18560 need xmalloc.c in calc.y.
18561 From Pascal Bart.
18562
18563 2001-09-21 Akim Demaille <akim@epita.fr>
18564
18565 Version 1.29a.
18566 * Makefile.maint, config/config.guess, config/config.sub,
18567 * config/missing: Update from masters.
18568 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
18569 upon package.m4.
18570 * configure.in (ALL_LINGUAS): Add `tr'.
18571
18572 2001-09-21 Akim Demaille <akim@epita.fr>
18573
18574 * tests/Makefile.am (package.m4): Move to...
18575 ($(srcdir)/$(TESTSUITE)): here.
18576
18577 2001-09-20 Akim Demaille <akim@epita.fr>
18578
18579 * src/complain.c: No longer try to be standalone: use system.h.
18580 Don't assume __STDC__ is defined to 1. Just test if it is defined.
18581 * src/complain.h: Likewise.
18582 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
18583 Remove the unused variable `n'.
18584 From Albert Chin-A-Young.
18585
18586 2001-09-18 Marc Autret <autret_m@epita.fr>
18587
18588 * doc/bison.1: Update.
18589 * doc/bison.texinfo (Bison Options): Update --defines and --graph
18590 descriptions.
18591 (Option Cross Key): Update.
18592 Add --graph.
18593
18594 2001-09-18 Marc Autret <autret_m@epita.fr>
18595
18596 * tests/regression.at: New test (comment in %union).
18597
18598 2001-09-18 Marc Autret <autret_m@epita.fr>
18599
18600 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
18601 do that.
18602 Reported by Keith Browne.
18603
18604 2001-09-18 Marc Autret <autret_m@epita.fr>
18605
18606 * tests/output.at: Add tests for --defines and --graph.
18607
18608 2001-09-18 Marc Autret <autret_m@epita.fr>
18609
18610 * tests/output.at: Removes tests of %{header,src}_extension features.
18611
18612 2001-09-18 Akim Demaille <akim@epita.fr>
18613
18614 * tests/Makefile.am (package.m4): New.
18615 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
18616 (_AT_CHECK_CALC_ERROR): Likewise.
18617 Factor the `, ' part of verbose error messages.
18618
18619 2001-09-18 Marc Autret <autret_m@epita.fr>
18620
18621 * src/getargs.c (longopts): Declare --defines and --graph as options
18622 with optional arguments.
18623 * src/files.h: Add extern declarations.
18624 * src/files.c (spec_graph_file, spec_defines_file): New.
18625 (output_files): Update.
18626 Remove CPP-outed code.
18627
18628 2001-09-18 Marc Autret <autret_m@epita.fr>
18629
18630 Turn off %{source,header}_extension feature.
18631
18632 * src/files.c (compute_exts_from_gf): Update.
18633 (compute_exts_from_src): Update.
18634 (output_files): CPP-out useless code.
18635 * src/files.h: Remove {header,source}_extension extern declarations.
18636 * src/reader.c (parse_dquoted_param): CPP-out.
18637 (parse_header_extension_decl): Remove.
18638 (parse_source_extension_decl): Remove.
18639 (read_declarations): Remove cases tok_{hdrext,srcext}.
18640 * src/lex.c (percent_table): Remove {header,source}_extension entries.
18641 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
18642
18643 2001-09-10 Akim Demaille <akim@epita.fr>
18644
18645 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
18646 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
18647 (AT_CHECK_OUTPUT): this.
18648 Merely check ls' exit status, its output is useless.
18649
18650 2001-09-10 Akim Demaille <akim@epita.fr>
18651
18652 * tests/calc.at: Use m4_match.
18653 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
18654
18655 2001-09-10 Marc Autret <autret_m@epita.fr>,
18656 Akim Demaille <akim@epita.fr>
18657
18658 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
18659 enum color_e.
18660 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
18661 to `normal'.
18662 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
18663 * src/lex.h: Adjust prototype.
18664 (token_t): Add `tok_undef'.
18665 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
18666 (parse_percent_token): Now returns token_t.
18667 Add default statement in switch.
18668 (lex): Separate `c' as an input variable, from the token_t result
18669 part.
18670 (unlexed): Is a token_t.
18671
18672 2001-09-10 Akim Demaille <akim@epita.fr>
18673
18674 * configure.in: Bump to 1.29a.
18675
18676 2001-09-07 Akim Demaille <akim@epita.fr>
18677
18678 Version 1.29.
18679
18680 2001-08-30 Akim Demaille <akim@epita.fr>
18681
18682 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
18683 * m4/atconfig.m4: Remove.
18684 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
18685 * tests/bison: New.
18686 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
18687 m4_if, m4_patsubst, and m4_regexp.
18688 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
18689 `input' file instead of echo.
18690
18691 2001-08-29 Akim Demaille <akim@epita.fr>
18692
18693 Bump to 1.28e.
18694
18695 2001-08-29 Akim Demaille <akim@epita.fr>
18696
18697 Version 1.28d.
18698
18699 2001-08-29 Paul Eggert <eggert@twinsun.com>
18700
18701 * src/bison.simple (yyparse): Don't take the address of an
18702 item before the start of an array, as that doesn't conform to
18703 the C Standard.
18704
18705 2001-08-29 Robert Anisko <anisko_r@epita.fr>
18706
18707 * doc/bison.texinfo (Location Tracking Calc): New node.
18708
18709 2001-08-29 Paul Eggert <eggert@twinsun.com>
18710
18711 * src/output.c (output): Do not define const, as this now
18712 causes more problems than it cures.
18713
18714 2001-08-29 Akim Demaille <akim@epita.fr>
18715
18716 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
18717 the nodes.
18718 Be sure to tag the `detailmenu'.
18719
18720 2001-08-29 Akim Demaille <akim@epita.fr>
18721
18722 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
18723 download in a tmp dir.
18724
18725 2001-08-28 Marc Autret <autret_m@epita.fr>
18726
18727 * config/depcomp: New file.
18728
18729 2001-08-28 Marc Autret <autret_m@epita.fr>
18730
18731 * doc/bison.1 (mandoc): Adjust.
18732 From Juan Manuel Guerrero.
18733
18734 2001-08-28 Marc Autret <autret_m@epita.fr>
18735
18736 * src/print_graph.c (print_state): Fix.
18737
18738 2001-08-27 Marc Autret <autret_m@epita.fr>
18739
18740 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
18741 char * members.
18742 Echo modifications to the functions prototypes.
18743 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
18744
18745 2001-08-27 Marc Autret <autret_m@epita.fr>
18746
18747 * src/vcg.c: Include `xalloc.h'.
18748 (add_colorentry): New.
18749 (add_classname): New.
18750 (add_infoname): New.
18751 * src/vcg.h: Add new prototypes.
18752
18753 2001-08-27 Akim Demaille <akim@epita.fr>
18754
18755 * Makefile.maint: Sync. again with CVS Autoconf.
18756
18757 2001-08-27 Akim Demaille <akim@epita.fr>
18758
18759 * Makefile.maint: Formatting changes.
18760 (po-update, cvs-update, update): New targets.
18761 (AMTAR): Remove.
18762
18763 2001-08-27 Akim Demaille <akim@epita.fr>
18764
18765 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
18766 * Makefile.maint: Sync. with CVS Autoconf.
18767
18768 2001-08-27 Marc Autret <autret_m@epita.fr>
18769
18770 * src/vcg.h (struct infoname_s): New.
18771 (struct colorentry_s): New.
18772 (graph_s): New fields {vertical,horizontal}_order in structure.
18773 Add `infoname' field.
18774 Add `colorentry' field;
18775 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
18776 (G_HORIZONTAL_ORDER): New.
18777 (G_INFONAME): New.
18778 (G_COLORENTRY): New.
18779 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
18780 Add output of `infoname'.
18781 Add output of `colorentry'.
18782
18783 2001-08-27 Marc Autret <autret_m@epita.fr>
18784
18785 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
18786 This one shadowed a global parameter.
18787
18788 2001-08-24 Marc Autret <autret_m@epita.fr>
18789
18790 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
18791 instead of `unsigned'.
18792 (print_state): Do not call obstack_object_size () in obstack_grow ()
18793 to avoid macro variables shadowing.
18794
18795 2001-08-23 Marc Autret <autret_m@epita.fr>
18796
18797 * src/lex.c (percent_table): Typo: s/naem/name/.
18798 Add graph option.
18799 Normalize new options declarations.
18800
18801 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
18802
18803 * tests/suite.at: Exercise %header_extension and %source_extension.
18804
18805 2001-08-16 Marc Autret <autret_m@epita.fr>
18806
18807 * src/reader.c (parse_dquoted_param): New.
18808 (parse_header_extension_decl): Use it.
18809 (parse_source_extension_decl): Likewise.
18810
18811 2001-08-16 Marc Autret <autret_m@epita.fr>
18812
18813 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
18814 (get_xxxx_str): Use assert () instead of complain ().
18815 Remove return invokations in default cases.
18816 (get_decision_str): Modify default behaviour. Remove second argument.
18817 Echo modifications on calls.
18818 (output_graph): Fix.
18819
18820 2001-08-16 Marc Autret <autret_m@epita.fr>
18821
18822 * src/getargs.c (usage): Update with ``-g, --graph''.
18823
18824 2001-08-16 Marc Autret <autret_m@epita.fr>
18825
18826 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
18827 (Option Cross Key): Likewise.
18828 * doc/bison.1: Update.
18829
18830 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
18831
18832 * src/output.c (output_master_parser): Don't finish action_obstack.
18833 (output_parser): Don't care about the muscle action, here.
18834 (prepare): Copy the action_obstack in the action muscle.
18835 (output): Free action_obstack.
18836
18837 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
18838
18839 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
18840 will contain `%union' declaration.
18841 (parse_union_decl): Delete #line directive output.
18842 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
18843 informations about %union.
18844 (parse_union_decl): Copy the union_obstack in the muscle stype.
18845 * src/bison.simple: Add new #line directive.
18846 Add typdef %%stype YYSTYPE.
18847
18848 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
18849
18850 * src/bison.simple: Add new `#line' directive.
18851
18852 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
18853
18854 * src/bison.simple: New `#line' directive.
18855 * src/output.c (output_parser): Support new dynamic muscle input_line.
18856
18857 2001-09-22 Marc Autret <autret_m@epita.fr>
18858
18859 * src/output.c (output_master_parser): New.
18860 (output_parser): Be more re-entrant.
18861
18862 2001-09-21 Marc Autret <autret_m@epita.fr>
18863
18864 * src/reader.c (copy_definition, parse_union_decl): Update and use
18865 `linef' muscle.
18866 (copy_action): Likewise.
18867 Use obstack_1grow ().
18868 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
18869
18870 2001-09-21 Marc Autret <autret_m@epita.fr>
18871
18872 * src/options.c (option_table): Adjust.
18873 * src/lex.c (parse_percent_token): Fix.
18874
18875 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
18876
18877 * src/options.c (symtab.h): Include it, need by lex.h.
18878
18879 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
18880
18881 * src/lex.c (parse_percent_token): Change type of variable `tx', which
18882 is now an option_table_struct*.
18883 (option_strcmp): New function option_strcmp.
18884 (parse_percent_token): Call option_strcmp.
18885 * src/getargs.c (xalloc.h, options.h): Include it.
18886 (getargs): Call create_long_option_table.
18887 (getargs): Free longopts at the end of the function.
18888 (shortopts): Move in options.c.
18889 * src/options.c (create_long_option_table): New function. Convert
18890 information from option_table to option structure.
18891 * src/reader.c (options.h): Include it.
18892
18893 * src/Makefile.am: Adjust.
18894 * src/options.c (option_table): Create from longopts and percent_table.
18895 * src/getargs.c (longopts): Delete.
18896 * src/lex.c (struct percent_table_struct): Delete.
18897 (percent_table): Delete.
18898 (options.h): Include it.
18899 * src/options.c: Create.
18900 * src/options.h: Create.
18901 Declare enum opt_access_e.
18902 Define struct option_table_struct.
18903
18904 2001-09-20 Marc Autret <autret_m@epita.fr>
18905
18906 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
18907 sections of Bison.
18908
18909 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
18910
18911 * src/bison.simple: s/%%filename/%%skeleton.
18912 * src/muscle_tab.c (getargs.h): Include it.
18913 (muscle_init): Insert new muscle skeleton.
18914
18915 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
18916
18917 * src/output.c (output_parser): Delete unused variable actions_dumped.
18918
18919 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
18920
18921 * src/output.c (output): Delete call to reader_output_yylsp.
18922 * src/reader.c (reader): Likewise.
18923 * src/reader.h: Delete declaration of reader_output_yylsp.
18924
18925 2001-09-02 Marc Autret <autret_m@epita.fr>
18926
18927 * src/reader.c: Include muscle_tab.h.
18928 (parse_union_decl): Update.
18929 (parse_macro_decl): Rename parse_muscle_decl.
18930 Update to use renamed functions and variable.
18931 (read_declarations, copy_action, read_additionnal_code, : Updated
18932 with correct variables and functions names.
18933 (packsymbols, reader): Likewise.
18934
18935 * src/reader.h (muscle_obstack): Extern declaration update.
18936
18937 * src/output.c: Include muscle_tab.h
18938 In all functions using macro_insert, change by using muscle_insert ().
18939 (macro_obstack): Rename muscle_obstack.
18940 Echo modifications in the whole file.
18941 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
18942 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
18943 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
18944
18945 * src/muscle_tab.h: Update double inclusion macros.
18946 (macro_entry_s): Rename muscle_entry_s.
18947 Update prototypes.
18948
18949 * src/muscle_tab.c: Include muscle_tab.h.
18950 Rename macro_tabble to muscle_table.
18951 (mhash1, mhash2, mcmp): Use muscle_entry.
18952 (macro_init): Rename muscle_init. Update.
18953 (macro_insert): Rename muscle_insert. Update.
18954 (macro_find): Rename muscle_find. Update.
18955
18956 * src/main.c: Include muscle_tab.h.
18957 (main): Call muscle_init ().
18958 * src/Makefile.am (bison_SOURCES): Echo modifications.
18959
18960 2001-09-02 Marc Autret <autret_m@epita.fr>
18961
18962 Now the files macro_tab.[ch] are named muscle_tab.[ch].
18963
18964 * src/muscle_tab.c, src/muscle_tab.h: Add files.
18965
18966 2001-09-02 Marc Autret <autret_m@epita.fr>
18967
18968 * src/macrotab.c, src/macrotab.h: Remove.
18969
18970 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
18971
18972 * src/reader.c (copy_guard): Use muscle to specify the `#line'
18973 filename.
18974
18975 2001-09-01 Marc Autret <autret_m@epita.fr>
18976
18977 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
18978 to an explicit value to activate the feature. We do it here.
18979
18980 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
18981
18982 * src/output.c (prepare): Delete the `filename' muscule insertion.
18983 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
18984 (parse_union_decl): Likewise.
18985 * src/macrotab.c (macro_init): Initialize filename by infile.
18986
18987 2001-08-31 Marc Autret <autret_m@epita.fr>
18988
18989 * src/bison.simple (YYLSP_NEEDED): New definition.
18990 * src/output.c (prepare): Add macro insertion of `locations_flag'
18991
18992 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
18993
18994 * src/output.c (prepare): Delete insertion of previous muscles,
18995 and insert the `prefix' muscles.
18996 * src/macrotab.c (macro_init): Likewise.
18997 (macro_init): Initialization prefix directive by `yy'.
18998 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
18999 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
19000 yylval, yydebug, yyerror, yynerrs and yyparse.
19001 New directive `#define' to substitute yydebug, ... with option
19002 name_prefix.
19003
19004 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19005
19006 * src/main.c (main): Standardize.
19007 * src/output.c (output_table_data, output_parser): Likewise.
19008 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
19009
19010 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
19011
19012 * src/reader.c (read_additionnal_code): Rename %%user_code to
19013 %%epilogue.
19014 * src/output.c (output): Rename %%declarations to %%prologue.
19015 * src/bison.simple: Echo modifications.
19016
19017 2001-08-31 Marc Autret <autret_m@epita.fr>
19018
19019 * src/reader.c (readgram): CleanUp.
19020 (output_token_defines): Likewise.
19021 (packsymbols): Likewise.
19022 (reader): Likewise.
19023 * src/output.c (output): CPP-out useless code.
19024
19025 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19026
19027 * src/reader.c (reader): Delete obsolete call to function
19028 output_trailers and output_headers.
19029 * src/output.h: Remove obsolete functions prototypes of output_headers
19030 and output_trailers.
19031
19032 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
19033
19034 * src/main.c: Include macrotab.h.
19035 * src/macrotab.h (macro_entry_s): Constify fields.
19036 Adjust functions prototypes.
19037 * src/macrotab.c (macro_insert): Constify key and value.
19038 (macro_find): Constify key.
19039 (macro_insert): Include 'xalloc.h'
19040 (macro_insert): Use XMALLOC.
19041 (macro_find): Constify return value.
19042 * src/output.c (output_table_data): Rename table to table_data.
19043 (output_parser): Constify macro_key, macro_value.
19044
19045 2001-08-30 Marc Autret <autret_m@epita.fr>
19046
19047 * src/reader.c (parse_skel_decl): New.
19048 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
19049 * src/lex.h (token_t): New token `tok_skel'.
19050 * src/lex.c (percent_table): Add skeleton option entry.
19051 Standardize.
19052
19053 2001-08-29 Marc Autret <autret_m@epita.fr>
19054
19055 * src/bison.simple: Add %%user_code directive at the end.
19056 * src/reader.c (read_additionnal_code): New.
19057 (reader): Use it.
19058 * src/output.c (output_program): Remove.
19059 (output): Update.
19060
19061 2001-08-28 Marc Autret <autret_m@epita.fr>
19062
19063 * src/output.c (output_actions): Clean up.
19064 (output_gram): CPP-out useless code.
19065 * src/reader.c (reader): Clean up, CPP-out useless code.
19066
19067 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
19068
19069 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
19070 directive.
19071 * src/bison.simple: Add `%%definitions'.
19072
19073 2001-08-28 Marc Autret <autret_m@epita.fr>
19074
19075 * config/depcomp: New file.
19076
19077 2001-08-27 Paul Eggert <eggert@twinsun.com>
19078
19079 * src/bison.simple (yyparse): Don't take the address of an
19080 item before the start of an array, as that doesn't conform to
19081 the C Standard.
19082
19083 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19084
19085 * src/output.c (output): Remove the initialization of the macro
19086 obstack. It was done too late here.
19087
19088 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
19089 completely wrong.
19090 (reader): Initialize the macro obstack here, since we need it to grow
19091 '%define' directives.
19092
19093 * src/reader.h: Declare the macro obstack as extern.
19094
19095 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19096
19097 * src/output.c (output_parser): Fix. Store single '%' characters in
19098 the output obstack instead of throwing them away.
19099
19100 2001-08-27 Akim Demaille <akim@epita.fr>
19101
19102 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19103
19104 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19105
19106 * lib/Makefile.am: Adjust.
19107
19108 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19109
19110 * src/bison.simple: Update and add '%%' directives.
19111
19112 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19113
19114 * src/reader.c (reader): Remove calls to 'output_headers' and
19115 'output_trailers'. Remove some C output.
19116 (readgram): Disable a piece of code that was writing a default
19117 definition for 'YYSTYPE'.
19118 (reader_output_yylsp): Remove.
19119 (packsymbols): Output token defintions to a macro.
19120 (copy_definition): Disable C output.
19121
19122 * src/reader.c (parse_macro_decl): New function used to parse macro
19123 declarations.
19124 (copy_string2): Put the body of copy_string into this new function.
19125 Add a parameter to let the caller choose whether he wants to copy the
19126 string delimiters or not.
19127 (copy_string): Be a simple call to copy_string2 with the last argument
19128 bound to true.
19129 (read_declarations): Add case for macro definition.
19130 (copy_identifier): New.
19131 (parse_macro_decl): Read macro identifiers using copy_identifier
19132 rather than lex.
19133
19134 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19135
19136 * src/output.c (prepare): Add prefixed names.
19137 (output_parser): Output semantic actions.
19138 (output_parser): Fix bug on '%%line' directives.
19139
19140 * src/output.c (output_headers): Remove. The C code printed by this
19141 function should now be in the skeletons.
19142 (output_trailers): Remove.
19143 (output): Disable call to 'reader_output_yylsp'.
19144 (output_rule_data): Do not output tables to the table obstack.
19145
19146 * src/output.c: Remove some C dedicated output.
19147 Improve the use of macro and output obstacks.
19148 (output_defines): Remove.
19149
19150 * src/output.c (output_token_translations): Associate 'translate'
19151 table with a macro. No output to the table obstack.
19152 (output_gram): Same for 'rhs' and 'prhs'.
19153 (output_stos): Same for 'stos'.
19154 (output_rule_data): Same for 'r1' and 'r2'.
19155 (token_actions): Same for 'defact'.
19156 (goto_actions): Same for 'defgoto'.
19157 (output_base): Same for 'pact' and 'pgoto'.
19158 (output_table): Same for 'table'.
19159 (output_check): Same for 'check'.
19160
19161 * src/output.c (output_table_data): New function.
19162 (output_short_table): Remove.
19163 (output_short_or_char_table): Remove.
19164
19165 * src/output.c (output_parser): Replace most of the skeleton copy code
19166 with something new. Skeletons are now processed character by character
19167 rather than line by line, and Bison looks for '%%' macros. This is the
19168 first step in making Bison's output process (a lot) more flexible.
19169 (output_parser): Use the macro table.
19170
19171 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19172
19173 * src/main.c (main): Initialize the macro table.
19174
19175 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19176
19177 * src/lex.c (percent_table): Add tok_define.
19178 * src/lex.h: Add tok_define.
19179
19180 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19181
19182 * src/macrotab.c: New file.
19183 * src/macrotab.h: New file.
19184 * src/Makefile.am: Update.
19185
19186 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19187
19188 * lib/hash.c: New file.
19189 * lib/hash.h: New file.
19190 * lib/Makefile.am: Update.
19191
19192 2001-08-15 Akim Demaille <akim@epita.fr>
19193
19194 Version 1.28c.
19195
19196 2001-08-15 Marc Autret <autret_m@epita.fr>
19197
19198 * src/reader.c (readgram): Indent output macro YYSTYPE.
19199 (packsymbols): Likewise.
19200 (output_token_defines): Likewise.
19201 * src/files.c: Standardize.
19202 (compute_header_macro): New.
19203 (defines_obstack_save): New. Use compute_header_macro.
19204 (output_files): Update. Use defines_obstack_save.
19205
19206 2001-08-15 Akim Demaille <akim@epita.fr>
19207
19208 * doc/bison.texinfo (Table of Symbols): Document
19209 YYSTACK_USE_ALLOCA.
19210
19211 2001-08-15 Akim Demaille <akim@epita.fr>
19212
19213 * missing: Update from CVS Automake.
19214 * config/config.guess, config/config.sub, config/texinfo.tex:
19215 Update from gnu.org.
19216
19217 2001-08-15 Akim Demaille <akim@epita.fr>
19218
19219 * Makefile.maint: Sync with CVS Autoconf.
19220
19221 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
19222
19223 * doc/bison.texinfo: Include GNU Free Documentation License from
19224 `fdl.texi'.
19225 * doc/fdl.texi: Add to package.
19226
19227 2001-08-14 Marc Autret <autret_m@epita.fr>
19228
19229 Turn on %{source,header}_extension features.
19230
19231 * src/lex.c (percent_table): Un-CPP out header_extension and
19232 source_extension.
19233 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
19234 (compute_exts_from_src): Remove conditions. It restores priorities
19235 between options.
19236
19237 2001-08-14 Marc Autret <autret_m@epita.fr>
19238
19239 * src/files.c (compute_base_names): Add extensions computing when
19240 `--file-prefix' used.
19241 Standardize function calls.
19242
19243 2001-08-13 Marc Autret <autret_m@epita.fr>
19244
19245 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
19246 defining it (defined but null disables alloca).
19247
19248 2001-08-13 Marc Autret <autret_m@epita.fr>
19249
19250 * src/bison.simple (_yy_memcpy): CPP reformat.
19251
19252 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
19253
19254 * tests/atconfig.in (CPPFLAGS): Fix.
19255
19256 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
19257
19258 * doc/bison.texinfo: Include GNU General Public License from
19259 `gpl.texi'.
19260 * doc/gpl.texi: Add to package.
19261
19262 2001-08-10 Marc Autret <autret_m@epita.fr>
19263
19264 * src/print_graph.h: Fix.
19265 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
19266
19267 2001-08-10 Akim Demaille <akim@epita.fr>
19268
19269 * src/system.h: Provide default declarations for stpcpy, strndup,
19270 and strnlen.
19271
19272 2001-08-10 Robert Anisko <anisko_r@epita.fr>
19273
19274 * doc/bison.texinfo (Locations): Update @$ stuff.
19275
19276 2001-08-09 Robert Anisko <anisko_r@epita.fr>
19277
19278 * src/bison.simple (YYLLOC_DEFAULT): Update.
19279 (yyparse): Adjust.
19280
19281 2001-08-08 Marc Autret <autret_m@epita.fr>
19282
19283 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
19284 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
19285 Reported by Fabrice Bauzac.
19286
19287 2001-08-08 Marc Autret <autret_m@epita.fr>
19288
19289 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
19290 * src/vcg.c (output_node): Fix.
19291 * src/vcg.h: Cleanup.
19292 * src/print_graph.c: Add comments.
19293 (node_output_size): New global variable. Simplify the formatting of
19294 the VCG graph output.
19295 (print_actions): Unused code is now used. It notifies the final state
19296 and no action states in the VCG graph. It also give the reduce actions.
19297 The `shift and goto' edges are red and the `go to state' edges are
19298 blue.
19299 Get the current node name and node_obstack by argument.
19300 (node_obstack): New variable.
19301 (print_state): Manage node_obstack.
19302 (print_core): Use node_obstack given by argument.
19303 A node is not only computed here but in print_actions also.
19304 (print_graph): CPP out useless code instead of commenting it.
19305
19306 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
19307
19308 * tests/atconfig.in (CPPFLAGS): Fix.
19309
19310 2001-08-07 Akim Demaille <akim@epita.fr>
19311
19312 * src/print_graph.c (quote): New.
19313 (print_core): Use it.
19314
19315 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
19316
19317 * src/vcg.c (complain.h): Include it.
19318 Unepitaize `return' invocations.
19319 [NDEBUG] (main): Remove.
19320 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
19321 * src/files.c (open_files): Initialize graph_obstack.
19322 * src/print_graph.c (print_actions): CPP out useless code.
19323 (print_core): Don't output the last `\n' in labels.
19324 Use `quote'.
19325 * src/files.c (output_files): Output the VCG file.
19326 * src/main.c (main): Invoke print_graph ();
19327
19328 2001-08-06 Marc Autret <autret_m@epita.fr>
19329
19330 Automaton VCG graph output.
19331 Using option ``-g'' or long option ``--graph'', you can generate
19332 a gram_filename.vcg file containing a VCG description of the LALR (1)
19333 automaton of your grammar.
19334
19335 * src/main.c: Call to print_graph() function.
19336 * src/getargs.h: Update.
19337 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
19338 (graph_flag): New flag.
19339 (longopts): Update.
19340 (getargs): Add case `g'.
19341 * src/files.c (graph_obstack): New obstack struct.
19342 (open_files): Initialize new obstack.
19343 (output_files): Saves graph_obstack if required.
19344 * src/files.h (graph_obstack): New extern declaration.
19345 * src/Makefile.am: Add new source files.
19346
19347 2001-08-06 Marc Autret <autret_m@epita.fr>
19348
19349 * src/print_graph.c, src/print_graph.h (graph): New.
19350 * src/vcg.h: New file.
19351 * src/vcg.c: New file, VCG graph handling.
19352
19353 2001-08-06 Marc Autret <autret_m@epita.fr>
19354
19355 Add of %source_extension and %header_extension which specify
19356 the source or/and the header output file extension.
19357
19358 * src/files.c (compute_base_names): Remove initialisation of
19359 src_extension and header_extension.
19360 (compute_exts_from_gf): Update.
19361 (compute_exts_from_src): Update.
19362 (output_files): Update.
19363 * src/reader.c (parse_header_extension_decl): New.
19364 (parse_source_extension_decl): New.
19365 (read_declarations): New case statements for the new tokens.
19366 * src/lex.c (percent_table): Add entries for %source_extension
19367 and %header_extension.
19368 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
19369
19370 2001-08-06 Marc Autret <autret_m@epita.fr>
19371
19372 * configure.in: Bump to 1.28c.
19373 * doc/bison.texinfo: Texinfo thingies.
19374
19375 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
19376
19377 * tests/atconfig.in (CPPFLAGS): Add.
19378 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
19379
19380 2001-08-03 Akim Demaille <akim@epita.fr>
19381
19382 Version 1.28b.
19383
19384 2001-08-03 Akim Demaille <akim@epita.fr>
19385
19386 * tests/Makefile.am (check-local): Ship testsuite.
19387 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
19388 Include `string.h'.
19389
19390 2001-08-03 Akim Demaille <akim@epita.fr>
19391
19392 * configure.in: Try using -Wformat when compiling.
19393
19394 2001-08-03 Akim Demaille <akim@epita.fr>
19395
19396 * configure.in: Bump to 1.28b.
19397
19398 2001-08-03 Akim Demaille <akim@epita.fr>
19399
19400 * src/complain.c: Adjust strerror_r portability issues.
19401
19402 2001-08-03 Akim Demaille <akim@epita.fr>
19403
19404 Version 1.28a.
19405
19406 2001-08-03 Akim Demaille <akim@epita.fr>
19407
19408 * src/getargs.c, src/getarg.h (skeleton)): Constify.
19409 * src/lex.c (literalchar): Avoid name clashes on `buf'.
19410 * src/getargs.c: Include complain.h.
19411 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
19412 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
19413
19414 2001-08-03 Akim Demaille <akim@epita.fr>
19415
19416 * src/reader.c (readgram): Display hidden chars in error messages.
19417
19418 2001-08-03 Akim Demaille <akim@epita.fr>
19419
19420 Update to gettext 0.10.39.
19421
19422 2001-08-03 Akim Demaille <akim@epita.fr>
19423
19424 * lib/strspn.c: New.
19425
19426 2001-08-01 Marc Autret <autret_m@epita.fr>
19427
19428 * doc/bison.texinfo: Update.
19429 * doc/bison.1 (mandoc): Update.
19430 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
19431 * src/files.c: Support output files extensions computing.
19432 (src_extension): New static variable.
19433 (header_extension): New static variable.
19434 (tr): New function.
19435 (get_extension_index): New function, gets the index of an extension
19436 filename in a string.
19437 (compute_exts_from_gf): New function, computes extensions from the
19438 grammar file extension.
19439 (compute_exts_from_src): New functions, computes extensions from the
19440 C source file extension, file given by ``-o'' option.
19441 (compute_base_names): Update.
19442 (output_files): Update.
19443
19444 2001-08-01 Robert Anisko <anisko_r@epita.fr>
19445
19446 * doc/bison.texi: Document @$.
19447 (Locations): New section.
19448
19449 2001-07-18 Akim Demaille <akim@epita.fr>
19450
19451 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
19452 * config/prev-version.txt, config/move-if-change: New.
19453 * Makefile.am: Adjust.
19454
19455 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
19456
19457 * src/bison.simple (yyparse): Suppress warning `comparaison
19458 between signed and unsigned'.
19459
19460 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
19461
19462 * src/getargs.h (raw_flag): Remove.
19463 * src/getargs.c: Die on `-r'/`--raw'.
19464 * src/lex.c (parse_percent_token): Die on `%raw'.
19465 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
19466 * tests/calc.at: Suppress test with option `--raw'.
19467
19468 2001-07-14 Akim Demaille <akim@epita.fr>
19469
19470 * config/: New.
19471 * configure.in: Require Autoconf 2.50.
19472 Update to gettext 0.10.38.
19473
19474 2001-03-16 Akim Demaille <akim@epita.fr>
19475
19476 * doc/bison.texinfo: ANSIfy the examples.
19477
19478 2001-03-16 Akim Demaille <akim@epita.fr>
19479
19480 * getargs.c (skeleton): New variable.
19481 (longopts): --skeleton is a new option.
19482 (shortopts, getargs): -S is a new option.
19483 * getargs.h: Declare skeleton.
19484 * output.c (output_parser): Use it.
19485
19486 2001-03-16 Akim Demaille <akim@epita.fr>
19487
19488 * m4/strerror_r.m4: New.
19489 * m4/error.m4: Run AC_FUNC_STRERROR_R.
19490 * lib/error.h, lib/error.c: Update.
19491
19492 2001-03-16 Akim Demaille <akim@epita.fr>
19493
19494 * src/getargs.c (longopts): Clean up.
19495
19496 2001-02-21 Akim Demaille <akim@epita.fr>
19497
19498 * src/reader.c (gensym): `gensym_count' is your own.
19499 Use a static buf to create the symbol name, as token_buffer is no
19500 longer a buffer.
19501
19502 2001-02-08 Akim Demaille <akim@epita.fr>
19503
19504 * src/conflicts.c (conflict_report): Be sure not to append to res
19505 between two calls, which could happen if both first sprintf were
19506 skipped, but not the first cp += strlen.
19507
19508 2001-02-08 Akim Demaille <akim@epita.fr>
19509
19510 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
19511 New, from fileutils 4.0.37.
19512 * configure.in: Require Autoconf 2.49c. I took some time before
19513 making this decision. This is the only way out for portability
19514 issues in Bison, it would mean way too much duplicate effort to
19515 import in Bison features implemented in 2.49c since 2.13.
19516 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
19517
19518 2001-02-02 Akim Demaille <akim@epita.fr>
19519
19520 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
19521 * lib/xalloc.h, lib/xmalloc.c: Update.
19522
19523 2001-01-19 Akim Demaille <akim@epita.fr>
19524
19525 Get rid of the ad hoc handling of token_buffer in the scanner: use
19526 the obstacks.
19527
19528 * src/lex.c (token_obstack): New.
19529 (init_lex): Initialize it. No longer call...
19530 (grow_token_buffer): this. Remove it.
19531 Adjust all the places which used it to use the obstack.
19532
19533 2001-01-19 Akim Demaille <akim@epita.fr>
19534
19535 * src/lex.h: Rename all the tokens:
19536 s/\bENDFILE\b/tok_eof/g;
19537 s/\bIDENTIFIER\b/tok_identifier/g;
19538 etc.
19539 Let them be enums, not #define, to ease debugging.
19540 Adjust all the code.
19541
19542 2001-01-18 Akim Demaille <akim@epita.fr>
19543
19544 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
19545 * src/lex.c (maxtoken, grow_token_buffer): Static.
19546
19547 2001-01-18 Akim Demaille <akim@epita.fr>
19548
19549 Since we now use obstacks, more % directives can be enabled.
19550
19551 * src/lex.c (percent_table): Also accept `%yacc',
19552 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
19553 `%debug'.
19554 Handle the actions for `%semantic_parser' and `%pure_parser' here,
19555 instead of returning a token.
19556 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
19557 * src/reader.c (read_declarations): Adjust.
19558 * src/files.c (open_files): Don't call `compute_base_names', don't
19559 compute `attrsfile' since they depend upon data which might be
19560 *in* the input file now.
19561 (output_files): Do it here.
19562 * src/output.c (output_headers): Document the fact that this patch
19563 introduces a guaranteed SEGV for semantic parsers.
19564 * doc/bison.texinfo: Document them.
19565 * tests/suite.at: Exercise these %options.
19566
19567 2000-12-20 Akim Demaille <akim@epita.fr>
19568
19569 Also handle the output file (--verbose) with obstacks.
19570
19571 * files.c (foutput): Remove.
19572 (output_obstack): New.
19573 Adjust all dependencies.
19574 * src/conflicts.c: Return a string.
19575 * src/system.h (obstack_grow_string): Rename as...
19576 (obstack_sgrow): this. Be ready to work with non literals.
19577 (obstack_fgrow4): New.
19578
19579 2000-12-20 Akim Demaille <akim@epita.fr>
19580
19581 * src/files.c (open_files): Fix the computation of short_base_name
19582 in the case of `-o foo.tab.c'.
19583
19584 2000-12-20 Akim Demaille <akim@epita.fr>
19585
19586 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
19587 (copy_dollar): Now that everything uses obstacks, get rid of the
19588 FILE * parameters.
19589
19590 2000-12-20 Akim Demaille <akim@epita.fr>
19591
19592 * src/files.c (open_files): Actually the `.output' file is based
19593 on the short_base_name, not base_name.
19594 * tests/suite.at (Checking output file names): Adjust.
19595
19596 2000-12-20 Akim Demaille <akim@epita.fr>
19597
19598 * src/bison.s1: Remove, we now use directly...
19599 * src/bison.simple: this.
19600 * src/Makefile.am: Use pkgdata instead of data.
19601
19602 2000-12-20 Akim Demaille <akim@epita.fr>
19603
19604 * src/files.c (guard_obstack): New.
19605 (open_files): Initialize it.
19606 (output_files): Dump it...
19607 * src/files.h: Export it.
19608 * src/reader.c (copy_guard): Use it.
19609
19610 2000-12-19 Akim Demaille <akim@epita.fr>
19611
19612 * src/files.c (outfile, defsfile, actfile): Removed as global
19613 vars.
19614 (open_files): Don't compute them.
19615 (output_files): Adjust.
19616 (base_name, short_base_name): Be global.
19617 Adjust dependencies.
19618
19619 2000-12-19 Akim Demaille <akim@epita.fr>
19620
19621 * src/files.c (strsuffix): New.
19622 (stringappend): Be just like strcat but allocate.
19623 (base_names): Eve out from open_files.
19624 Try to simplify the rather hairy computation of base_name and
19625 short_base_name.
19626 (open_files): Use it.
19627 * tests/suite.at (Checking output file names): New test.
19628
19629 2000-12-19 Akim Demaille <akim@epita.fr>
19630
19631 * src/system.h (obstack_grow_literal_string): Rename as...
19632 (obstack_grow_string): this.
19633 * src/output.c (output_parser): Recognize `%% actions' instead of
19634 `$'.
19635 * src/bison.s1: s/$/%% actions/.
19636 * src/bison.hairy: Likewise.
19637
19638 2000-12-19 Akim Demaille <akim@epita.fr>
19639
19640 * src/output.c (output_parser): Compute the `#line' lines when
19641 there are.
19642 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
19643 Suggested by Hans Aberg.
19644
19645 2000-12-19 Akim Demaille <akim@epita.fr>
19646
19647 Let the handling of the skeleton files be local to the procedures
19648 that use it.
19649
19650 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
19651 longer static.
19652 (fparser, open_extra_files): Remove.
19653 (open_files, output_files): Don't take care of fparser.
19654 * src/files.h: Adjust.
19655 * src/output.c (output_parser): Open and close the file to the
19656 skeleton.
19657 * src/reader.c (read_declarations): When %semantic_parser, open
19658 fguard.
19659
19660 2000-12-19 Akim Demaille <akim@epita.fr>
19661
19662 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
19663 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
19664
19665 2000-12-19 Akim Demaille <akim@epita.fr>
19666
19667 * src/files.c (open_files): Yipee! We no longer need all the code
19668 looking for `/tmp' since we have no tmp file.
19669
19670 2000-12-19 Akim Demaille <akim@epita.fr>
19671
19672 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
19673 New macros.
19674 * src/files.c (open_files): Less dependency on MSDOS etc.
19675
19676 2000-12-14 Akim Demaille <akim@epita.fr>
19677
19678 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
19679 Provide a default definition.
19680 Use it when executing the default @ action.
19681 * src/reader.c (reader_output_yylsp): No longer include
19682 `timestamp' and `text' in the default YYLTYPE.
19683
19684 2000-12-12 Akim Demaille <akim@epita.fr>
19685
19686 * src/reader.c (copy_definition, parse_union_decl, copy_action)
19687 (copy_guard): Quote the file names.
19688 Reported by Laurent Mascherpa.
19689
19690 2000-12-12 Akim Demaille <akim@epita.fr>
19691
19692 * src/output.c (output_headers, output_program, output): Be sure
19693 to escape special characters when outputting filenames.
19694 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
19695 (output_headers): Don't depend on them, Use ACTSTR.
19696
19697 2000-11-17 Akim Demaille <akim@epita.fr>
19698
19699 * lib/obstack.h: Formatting changes.
19700 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
19701 prevents type checking.
19702 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
19703 cast the value to (void *): assigning a `foo *' to a `void *'
19704 variable is valid.
19705 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
19706 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
19707 append characters.
19708
19709 2000-11-17 Akim Demaille <akim@epita.fr>
19710
19711 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
19712 as...
19713 (suite.m4, regression.m4, calc.m4): these.
19714 * tests/atgeneral.m4: Update from CVS Autoconf.
19715
19716 2000-11-17 Akim Demaille <akim@epita.fr>
19717
19718 * tests/regression.m4 (%union and --defines): New test,
19719 demonstrating a current bug in the obstack implementation.
19720
19721 2000-11-17 Akim Demaille <akim@epita.fr>
19722
19723 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
19724 macros.
19725 Use them to declare the variables which are global or local to
19726 `yyparse'.
19727
19728 2000-11-17 Akim Demaille <akim@epita.fr>
19729
19730 * acconfig.h: Remove, no longer used.
19731
19732 2000-11-07 Akim Demaille <akim@epita.fr>
19733
19734 * src: s/Copyright (C)/Copyright/g.
19735
19736 2000-11-07 Akim Demaille <akim@epita.fr>
19737
19738 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
19739 defining.
19740 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
19741
19742 2000-11-07 Akim Demaille <akim@epita.fr>
19743
19744 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
19745 Merge in a single CPP if/else.
19746
19747 2000-11-07 Akim Demaille <akim@epita.fr>
19748
19749 * src/output.c (output): Remove useless variables.
19750 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
19751 argument `data' for consistency with the prototypes.
19752 Qualify it `const'.
19753 (obstack_copy, obstack_copy0): Rename the second argument as
19754 `address' for consistency. Qualify it `const'.
19755 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
19756 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
19757 `const' their input argument (`data' or `address').
19758 Adjust the corresponding macros to include `const' in casts.
19759
19760 2000-11-03 Akim Demaille <akim@epita.fr>
19761
19762 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
19763 s/PFILE1/BISON_HAIRY/.
19764 Adjust dependencies.
19765
19766 2000-11-03 Akim Demaille <akim@epita.fr>
19767
19768 For some reason, this was not applied.
19769
19770 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
19771 `unlink': it's no longer used.
19772
19773 2000-11-03 Akim Demaille <akim@epita.fr>
19774
19775 * src/files.c (skeleton_find): New function, eved out of...
19776 (open_files, open_extra_files): here.
19777
19778 2000-11-03 Akim Demaille <akim@epita.fr>
19779
19780 Don't use `atexit'.
19781
19782 * src/files.c (obstack_save): New function.
19783 (done): Rename as...
19784 (output_files): this.
19785 Use `obstack_save'.
19786 * src/main.c (main): Don't use `atexit' to register `done', since
19787 it no longer has to remove tmp files, just call `output_files'
19788 when there are no errors.
19789
19790 2000-11-02 Akim Demaille <akim@epita.fr>
19791
19792 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
19793 `unlink': it's no longer used.
19794 * src/files.h: Formatting changes.
19795
19796 2000-11-02 Akim Demaille <akim@epita.fr>
19797
19798 Remove the last uses of mktemp and unlink/delete.
19799
19800 * src/files.c (fdefines, ftable): Removed.
19801 (defines_ostack, table_obstack): New.
19802 Adjust dependencies of the former into uses of the latter.
19803 * src/output.c (output_short_or_char_table, output_short_table):
19804 Convert to using obstacks.
19805 * src/reader.c (copy_comment2): Accept one FILE * and two
19806 obstacks.
19807 (output_token_defines, reader_output_yylsp): Use obstacks.
19808 * src/system.h (obstack_fgrow3): New.
19809 * po/POTFILES.in: Adjust.
19810
19811 2000-11-01 Akim Demaille <akim@epita.fr>
19812
19813 Change each use of `fattrs' into a use of `attrs_obstack'.
19814
19815 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
19816 * src/files.c (fattrs): Remove.
19817 (attrs_obstack): New.
19818 Adjust all dependencies.
19819 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
19820
19821 2000-11-01 Akim Demaille <akim@epita.fr>
19822
19823 Introduce obstacks.
19824 Change each use of `faction' into a use of `action_obstack'.
19825
19826 * lib/obstack.h, lib/obstack.c: New files.
19827 * src/files.c (faction): Remove.
19828 (action_obstack): New.
19829 Adjust all dependencies.
19830
19831 2000-10-20 Akim Demaille <akim@epita.fr>
19832
19833 * lib/quote.h (PARAMS): New macro. Use it.
19834
19835 2000-10-16 Akim Demaille <akim@epita.fr>
19836
19837 * src/output.c (output_short_or_char_table): New function.
19838 (output_short_table, output_token_translations): Use it.
19839 (goto_actions): Use output_short_table.
19840
19841 2000-10-16 Akim Demaille <akim@epita.fr>
19842
19843 * src/symtab.c (bucket_new): New function.
19844 (getsym): Use it.
19845
19846 * src/output.c (output_short_table): New argument to display the
19847 comment associated with the table.
19848 Adjust dependencies.
19849 (output_gram): Use it.
19850 (output_rule_data): Nicer output layout for YYTNAME.
19851
19852 2000-10-16 Akim Demaille <akim@epita.fr>
19853
19854 * src/lex.c (read_typename): New function.
19855 (lex): Use it.
19856 * src/reader.c (copy_dollar): Likewise.
19857
19858 2000-10-16 Akim Demaille <akim@epita.fr>
19859
19860 * src/reader.c (copy_comment2): Expect the input stream to be on
19861 the `/' which is suspected to open a comment, instead of being
19862 called after `//' or `/*' was read.
19863 (copy_comment, copy_definition, parse_union_decl, copy_action)
19864 (copy_guard): Adjust.
19865
19866 2000-10-16 Akim Demaille <akim@epita.fr>
19867
19868 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
19869 `read_signed_integer'.
19870
19871 2000-10-16 Akim Demaille <akim@epita.fr>
19872
19873 * src/reader.c (copy_dollar): New function.
19874 (copy_guard, copy_action): Use it.
19875
19876 2000-10-16 Akim Demaille <akim@epita.fr>
19877
19878 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
19879 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
19880 New files, from Fileutils 4.0.27.
19881 * src/main.c (printable_version): Remove.
19882 * src/lex.c, src/reader.c: Use `quote'.
19883
19884 2000-10-04 Akim Demaille <akim@epita.fr>
19885
19886 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
19887
19888 2000-10-04 Akim Demaille <akim@epita.fr>
19889
19890 * doc/bison.texinfo: Various typos spotted by Neil Booth.
19891
19892 2000-10-04 Akim Demaille <akim@epita.fr>
19893
19894 When a literal string is used to define two different tokens,
19895 `bison -v' segfaults.
19896 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
19897
19898 * tests/regression.m4: New file.
19899 Include the core of the sample provided by Piotr Gackiewicz.
19900 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
19901 properly.
19902
19903 2000-10-04 Akim Demaille <akim@epita.fr>
19904
19905 * src/reader.c (parse_expect_decl): Keep `count' within the size
19906 of `buffer'.
19907 From Neil Booth.
19908
19909 2000-10-02 Paul Eggert <eggert@twinsun.com>
19910
19911 * bison.s1 (yyparse): Assign the default value
19912 unconditionally, to avoid a GCC warning and make the parser a
19913 tad smaller.
19914
19915 2000-10-02 Akim Demaille <akim@epita.fr>
19916
19917 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
19918 options.
19919
19920 2000-10-02 Akim Demaille <akim@epita.fr>
19921
19922 * src/derives.c, src/print.c, src/reduce.c: To ease the
19923 translation, move some `\n' out of the translated strings.
19924
19925 2000-10-02 Akim Demaille <akim@epita.fr>
19926
19927 The location tracking mechanism is precious for parse error
19928 messages. Nevertheless, it is enabled only when `@n' is used in
19929 the grammar, which is a different issue (you can use it in error
19930 message, but not in the grammar per se). Therefore, there should
19931 be another means to enable it.
19932
19933 * src/getargs.c (getargs): Support `--locations'.
19934 (usage): Report it.
19935 * src/getargs.h (locationsflag): Export it.
19936 * src/lex.c (percent_table): Support `%locations'.
19937 * src/reader.c (yylsp_needed): Remove this variable, now replaced
19938 with `locationsflag'.
19939 * doc/bison.texinfo: Document `--locations' and `%locations'.
19940 Sort the options.
19941 * tests/calc.m4: Test it.
19942
19943 For regularity of the names, replace each
19944 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
19945 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
19946 In addition replace each `flag' with `_flag'.
19947
19948 2000-10-02 Akim Demaille <akim@epita.fr>
19949
19950 Also test parse error messages, including with YYERROR_VERBOSE.
19951
19952 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
19953 associative).
19954 Use it to check the computations.
19955 Use it to check `nonassoc' is honored.
19956 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
19957 `--yyerror-verbose'.
19958 (_AT_CHECK_CALC): Adjust to this option.
19959 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
19960
19961 2000-10-02 Akim Demaille <akim@epita.fr>
19962
19963 Test also `--verbose', `--defines' and `--name-prefix'. Testing
19964 the latter demonstrates a flaw in the handling of non debugging
19965 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
19966 was used in order to simplify:
19967
19968 #if YYDEBUG
19969 if (yydebug)
19970 {
19971 ...
19972 }
19973 #endif
19974
19975 into
19976
19977 if (yydebug)
19978 {
19979 ...
19980 }
19981
19982 unfortunately this leads to a CPP conflict when
19983 `--name-prefix=foo' is used since it produces `#define yydebug
19984 foodebug'.
19985
19986 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
19987 (YYDPRINTF): New macro.
19988 Spread its use.
19989 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
19990 the bison options.
19991 Also test `--verbose', `--defines' and `--name-prefix'.
19992
19993 2000-10-02 Akim Demaille <akim@epita.fr>
19994
19995 Improve the readability of the produced parsers.
19996
19997 * src/bison.s1: Formatting changes.
19998 Improve the comment related to the `$' mark.
19999 (yydefault): Don't fall through to `yyresume': `goto' there.
20000 * src/output.c (output_parser): When the `$' is met, skip the end
20001 of its line.
20002 New variable, `number_of_dollar_signs', to check there's exactly
20003 one `$' in the parser skeleton.
20004
20005 2000-10-02 Akim Demaille <akim@epita.fr>
20006
20007 * lib/xstrdup.c: New file, from the fileutils.
20008 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
20009 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
20010 instead of strlen + xmalloc + strcpy.
20011 * src/symtab.c (copys): Remove, use xstrdup instead.
20012
20013 2000-10-02 Akim Demaille <akim@epita.fr>
20014
20015 * src/gram.h (associativity): New enum type which replaces the
20016 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
20017 `right_assoc', `left_assoc' and `non_assoc'.
20018 Adjust all dependencies.
20019 * src/reader.c: Formatting changes.
20020 (LTYPESTR): Don't define it, use it as a literal in
20021 `reader_output_yylsp'.
20022 * src/symtab.h (symbol_class): New enum type which replaces the
20023 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
20024 `sunknown', `stoken and `snterm'.
20025
20026 2000-10-02 Akim Demaille <akim@epita.fr>
20027
20028 * src/getargs.c (fixed_outfiles): Rename as...
20029 (yaccflag): for consistency and accuracy.
20030 Adjust dependencies.
20031
20032 2000-10-02 Akim Demaille <akim@epita.fr>
20033
20034 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
20035 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
20036 difficult and introduced a lot of core dump. It turns out that
20037 Bison used an implementation of `xmalloc' based on `calloc', and
20038 at various places it does depend upon the initialization to 0. I
20039 have not tried to isolate the pertinent places, and all the former
20040 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
20041 someone should address this issue.
20042
20043 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
20044 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
20045 files.
20046 Adjust dependencies.
20047 * src/warshall.h: New file.
20048 Propagate.
20049
20050 2000-10-02 Akim Demaille <akim@epita.fr>
20051
20052 Various anti-`extern in *.c' changes.
20053
20054 * src/system.h: Include `assert.h'.
20055
20056 2000-10-02 Akim Demaille <akim@epita.fr>
20057
20058 * src/state.h (nstates, final_state, first_state, first_shift)
20059 (first_reduction): Move their exportation from here...
20060 * src/LR0.h: to here.
20061 Adjust dependencies.
20062 * src/getargs.c (statisticsflag): New variable.
20063 Add support for `--statistics'.
20064 Adjust dependencies.
20065
20066 Remove a lot of now useless `extern' statements in most files.
20067
20068 2000-10-02 Akim Demaille <akim@epita.fr>
20069
20070 * src/LR0.h: New file.
20071 Propagate its use.
20072
20073 2000-10-02 Akim Demaille <akim@epita.fr>
20074
20075 * src/print.h: New file.
20076 Propagate its use.
20077 * src/print.c: Formatting and ordering changes.
20078 (verbose, terse): Replace with...
20079 (print_results): this new function.
20080 Adjust dependencies.
20081
20082 2000-10-02 Akim Demaille <akim@epita.fr>
20083
20084 * src/conflicts.c (conflict_report): New function.
20085 (conflict_log, verbose_conflict_log): Replace with...
20086 (print_conflicts): this function.
20087 Adjust dependencies.
20088 * src/conflicts.h: New file.
20089 Propagate its inclusion.
20090
20091 2000-10-02 Akim Demaille <akim@epita.fr>
20092
20093 * src/nullable.h: New file.
20094 Propagate its inclusion.
20095 * src/nullable.c: Formatting changes.
20096
20097 2000-10-02 Akim Demaille <akim@epita.fr>
20098
20099 * src/reduce.h: New file.
20100 Propagate its inclusion.
20101 * src/reduce.c: Topological sort and other formatting changes.
20102 (bool, TRUE, FALSE): Move their definition to...
20103 * src/system.h: here.
20104
20105 2000-10-02 Akim Demaille <akim@epita.fr>
20106
20107 * src/files.c: Formatting changes.
20108 (tryopen, tryclose, openfiles): Rename as...
20109 (xfopen, xfclose, open_files): this.
20110 (stringappend): static.
20111 * src/files.h: Complete the list of exported symbols.
20112 Propagate its use.
20113
20114 2000-10-02 Akim Demaille <akim@epita.fr>
20115
20116 * src/reader.h: New file.
20117 Propagate its use instead of tedious list of `extern' and
20118 prototypes.
20119 * src/reader.c: Formatting changes, topological sort,
20120 s/register//.
20121
20122 2000-10-02 Akim Demaille <akim@epita.fr>
20123
20124 * src/lex.h: Prototype `lex.c' exported functions.
20125 * src/reader.c: Adjust.
20126 * src/lex.c: Formatting changes.
20127 (safegetc): Rename as...
20128 (xgetc): this.
20129
20130 2000-10-02 Akim Demaille <akim@epita.fr>
20131
20132 * src/lalr.h: New file.
20133 Propagate its inclusion instead of prototypes and `extern'.
20134 * src/lalr.c: Formatting changes, topological sorting etc.
20135
20136 2000-10-02 Akim Demaille <akim@epita.fr>
20137
20138 * src/output.c (token_actions): Introduce a temporary array,
20139 YYDEFACT, that makes it possible for this function to use
20140 output_short_table.
20141
20142 2000-10-02 Akim Demaille <akim@epita.fr>
20143
20144 `user_toknums' is output as a `short[]' in `output.c', while it is
20145 defined as a `int[]' in `reader.c'. For consistency with the
20146 other output tables, `user_toknums' is now defined as a table of
20147 shorts.
20148
20149 * src/reader.c (user_toknums): Be a short table instead of an int
20150 table.
20151 Adjust dependencies.
20152
20153 Factor the short table outputs.
20154
20155 * src/output.c (output_short_table): New function.
20156 * src/output.c (output_gram, output_stos, output_rule_data)
20157 (output_base, output_table, output_check): Use it.
20158
20159 2000-10-02 Akim Demaille <akim@epita.fr>
20160
20161 * src/output.c (output): Topological sort of the functions, in
20162 order to get rid of the `static' prototypes.
20163 No longer use `register'.
20164 * src/output.h: New file.
20165 Propagate its inclusion in files explicitly prototyping functions
20166 from output.c.
20167
20168 2000-09-21 Akim Demaille <akim@epita.fr>
20169
20170 * src/atgeneral.m4: Update from Autoconf.
20171
20172 2000-09-21 Akim Demaille <akim@epita.fr>
20173
20174 * src/closure.h: New file.
20175 * src/closure.c: Formatting changes, topological sort over the
20176 functions, use of closure.h.
20177 (initialize_closure, finalize_closure): Rename as...
20178 (new_closure, free_closure): these. Adjust dependencies.
20179 * src/LR0.c: Formatting changes, topological sort, use of
20180 cloture.h.
20181 (initialize_states): Rename as...
20182 (new_states): this.
20183 * src/Makefile.am (noinst_HEADERS): Adjust.
20184
20185 2000-09-20 Akim Demaille <akim@epita.fr>
20186
20187 * src/acconfig.h: Don't protect config.h against multiple
20188 inclusion.
20189 Don't define PARAMS.
20190 * src/system.h: Define PARAMS.
20191 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
20192 purpose of config.h. system.h must not try to fix wrong
20193 definitions in config.h.
20194
20195 2000-09-20 Akim Demaille <akim@epita.fr>
20196
20197 * src/derives.h: New file.
20198 * src/main.c, src/derives.h: Use it.
20199 Formatting changes.
20200 * src/Makefile.am (noinst_HEADERS): Adjust.
20201
20202 2000-09-20 Akim Demaille <akim@epita.fr>
20203
20204 * tests/atgeneral.m4: Update from Autoconf.
20205 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
20206 (AT_CHECK_CALC): New macros.
20207 Use these macros to test bison with options `', `--raw',
20208 `--debug', `--yacc', `--yacc --debug'.
20209
20210 2000-09-19 Akim Demaille <akim@epita.fr>
20211
20212 * src/output.c: Formatting changes.
20213 * src/machine.h: Remove, leaving its contents in...
20214 * src/system.h: here.
20215 Include stdio.h.
20216 Adjust all dependencies on stdio.h and machine.h.
20217 * src/getargs.h: New file.
20218 Let all `extern' declarations about getargs.c be replaced with
20219 inclusion of `getargs.h'.
20220 * src/Makefile.am (noinst_HEADERS): Adjust.
20221
20222 * tests/calc.m4 (yyin): Be initialized in main, not on the global
20223 scope.
20224 (yyerror): Returns void, not int.
20225 * doc/bison.texinfo: Formatting changes.
20226
20227 2000-09-19 Akim Demaille <akim@epita.fr>
20228
20229 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
20230 portable.
20231
20232 2000-09-18 Akim Demaille <akim@epita.fr>
20233
20234 * configure.in: Append WARNING_CFLAGS to CFLAGS.
20235 * src/Makefile.am (INCLUDES): Don't.
20236 Be ready to fetch headers in lib/.
20237
20238 2000-09-18 Akim Demaille <akim@epita.fr>
20239
20240 * doc/bison.texinfo: Update the copyright.
20241 ANSIfy and GNUify the examples.
20242 Remove the old menu.
20243
20244 2000-09-18 Akim Demaille <akim@epita.fr>
20245
20246 First set of tests: use the `calc' example from the documentation.
20247
20248 * src/bison.s1 (yyparse): Condition the code using `yytname' which
20249 is defined only when YYDEBUG is.
20250 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
20251 * src/files.c (tryopen, tryclose): Formatting changes.
20252 Move to the top and be static.
20253 * src/reader.c (read_signed_integer): Likewise.
20254 * tests/calc.m4: New file.
20255 * Makefile.am, suite.m4: Adjust.
20256 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
20257
20258 2000-09-18 Akim Demaille <akim@epita.fr>
20259
20260 Add support for an Autotest test suite for Bison.
20261
20262 * m4/m4.m4, m4/atconfig.m4: New files.
20263 * m4/Makefile.am (EXTRA_DIST): Adjust.
20264 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
20265 files.
20266 * src/getargs.c: Display a more standard --version message.
20267 * src/reader.c (reader): Formatting changes.
20268 No longer depend upon VERSION_STRING.
20269 * configure.in: No longer use `dnl'.
20270 Set up the test suite and the new directory `tests/.
20271 (VERSION_STRING): Remove.
20272
20273 2000-04-14 Akim Demaille <akim@epita.fr>
20274
20275 * src/reader.c (copy_comment2): New function, same as former
20276 `copy_comment', but outputs into two FILE *.
20277 (copy_comment): Use it.
20278 (parse_union_decl): Use it.
20279 (get_type, parse_start_decl): Use the same `invalid' message.
20280 (parse_start_decl, parse_union_decl): Use the same `multiple'
20281 message.
20282 (parse_union_decl, copy_guard, copy_action): Use the same
20283 `unmatched' message.
20284 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
20285
20286 2000-03-31 Akim Demaille <akim@epita.fr>
20287
20288 * src/files.c (tryopen, tryclose): Move to the top.
20289 Be static.
20290
20291 2000-03-31 Akim Demaille <akim@epita.fr>
20292
20293 * src/main.c (main): Don't call `done', exit does it.
20294
20295 2000-03-31 Akim Demaille <akim@epita.fr>
20296
20297 * allocate.c: s/return (foo)/return foo/.
20298 * lalr.c: Likewise.
20299 * LR0.c: Likewise.
20300 * output.c: Likewise.
20301 * reader.c: Likewise.
20302 * symtab.c: Likewise.
20303 * vmsgetargs.c: Likewise.
20304
20305 2000-03-31 Akim Demaille <akim@epita.fr>
20306
20307 Clean up the error reporting functions.
20308
20309 * src/report.c: New file.
20310 * src/report.h: Likewise.
20311 * src/Makefile.am: Adjust.
20312 * m4/error.m4: New file.
20313 * m4/Makefile.am: Adjust.
20314 * configure.in (jm_PREREQ_ERROR): Call it.
20315 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
20316 Remove.
20317 (fatal, fatals): Remove. All callers use complain.c::fatal.
20318 (warn, warni, warns, warnss, warnss): Remove. All callers use
20319 complain.c::complain.
20320 (toomany): Remove, use fatal instead.
20321 * src/files.c (done): No argument, use complain_message_count.
20322 * src/main.c (main): Register `done' to `atexit'.
20323
20324 * src/getargs.c (usage): More `fputs', less `fprintf'.
20325
20326 2000-03-28 Akim Demaille <akim@epita.fr>
20327
20328 * lib/: New directory.
20329 * Makefile.am (SUBDIRS): Adjust.
20330 * configure.in: Adjust.
20331 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
20332 useless.
20333 * src/alloca.c: Moved to lib/.
20334 * src/getopt.c: Likewise.
20335 * src/getopt1.c: Likewise.
20336 * src/getopt.h: Likewise.
20337 * src/ansi2knr.c: Likewise.
20338 * src/ansi2knr.1: Likewise.
20339 * src/Makefile.am: Adjust.
20340 * lib/Makefile.am: New file.
20341
20342 2000-03-28 Akim Demaille <akim@epita.fr>
20343
20344 * src/getargs.c (usage): Refresh the help message.
20345
20346 2000-03-17 Akim Demaille <akim@epita.fr>
20347
20348 * src/getopt1.c: Updated from textutils 2.0e
20349 * src/getopt.c: Likewise.
20350 * src/getopt.h: Likewise.
20351
20352 2000-03-17 Akim Demaille <akim@epita.fr>
20353
20354 * src/Makefile.am (bison.simple): Fix the awk program: quote only
20355 the file name, not the whole `#line LINE FILE'.
20356
20357 2000-03-17 Akim Demaille <akim@epita.fr>
20358
20359 On syntax errors, report the token on which we choked.
20360
20361 * src/bison.s1 (yyparse): In the label yyerrlab, when
20362 YYERROR_VERBOSE, add yychar in msg.
20363
20364 2000-03-17 Akim Demaille <akim@epita.fr>
20365
20366 * src/reader.c (copy_at): New function.
20367 (copy_guard): Use it.
20368 (copy_action): Use it.
20369
20370 2000-03-17 Akim Demaille <akim@epita.fr>
20371
20372 Be kind to translators, save some useless translations.
20373
20374 * src/main.c (banner): New function.
20375 (fatal_banner): Use it.
20376 (warn_banner): Use it.
20377
20378 2000-03-17 Akim Demaille <akim@epita.fr>
20379
20380 * src/reader.c (copy_definition): Use copy_string and
20381 copy_comment. Removed now unused `match', `ended',
20382 `cplus_comment'.
20383 (copy_comment, copy_string): Moved, to be visible from
20384 copy_definition.
20385
20386 2000-03-17 Akim Demaille <akim@epita.fr>
20387
20388 * src/reader.c (copy_string): Declare `static inline'. No
20389 problems with inline, since it is checked by configure.
20390 (copy_comment): Likewise.
20391
20392 2000-03-17 Akim Demaille <akim@epita.fr>
20393
20394 * src/reader.c (packsymbols): Formatting changes.
20395
20396 2000-03-17 Akim Demaille <akim@epita.fr>
20397
20398 * src/reader.c (copy_comment): New function, factored out from:
20399 (copy_action): Use it. Removed now unused `match', `ended',
20400 `cplus_comment'.
20401 (copy_guard): Likewise.
20402
20403 2000-03-17 Akim Demaille <akim@epita.fr>
20404
20405 * src/reader.c (copy_string): New function, factored out from:
20406 (copy_action): Use it.
20407 (copy_guard): Likewise.
20408
20409 2000-03-17 Akim Demaille <akim@epita.fr>
20410
20411 Change the handling of @s so that they behave exactly like $s.
20412 There is now a pseudo variable @$ (readble and writable), location
20413 of the lhs of the rule (by default ranging from the location of
20414 the first symbol of the rhs, to the location of the last symbol,
20415 or, if the rhs is empty, YYLLOC).
20416
20417 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
20418 yyval.
20419 (yyparse): When providing a default semantic action, provide a
20420 default location action.
20421 (after the $): No longer change `*YYLSP', just stack YYLOC the
20422 same way you stack YYVAL.
20423 * src/reader.c (read_declarations): Use warns.
20424 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
20425 (copy_action, case '@'): Likewise.
20426 Use a standard error message, to save useless work from
20427 translators.
20428
20429 2000-03-17 Akim Demaille <akim@epita.fr>
20430
20431 * src/bison.s1: Formatting and cosmetics changes.
20432 * src/reader.c: Likewise.
20433 Update the Copyright notice.
20434
20435 2000-03-17 Akim Demaille <akim@epita.fr>
20436
20437 * src/bison.s1 (#line): All set to `#line' only, since the
20438 Makefile now handles them.
20439
20440 2000-03-16 Akim Demaille <akim@epita.fr>
20441
20442 * src/output.c (output_rule_data): Output the documentation of
20443 some of the tables.
20444 (Copyright notice): Update.
20445 Formatting changes.
20446
20447 2000-03-16 Akim Demaille <akim@epita.fr>
20448
20449 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
20450 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
20451 One `#if YYDEBUG' remains, since it uses variables which are
20452 defined only if `YYDEBUG != 0'.
20453
20454 2000-03-16 Akim Demaille <akim@epita.fr>
20455
20456 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
20457 and related variables so that the similarities are highlighted.
20458
20459 2000-03-16 Akim Demaille <akim@epita.fr>
20460
20461 * src/bison.s1: Properly indent CPP directives.
20462
20463 2000-03-16 Akim Demaille <akim@epita.fr>
20464
20465 * src/bison.s1: Properly indent the `alloca' CPP section.
20466
20467 2000-03-16 Akim Demaille <akim@epita.fr>
20468
20469 Do not hard code values of directories in `configure.in'.
20470 Update the `configure' tool chain.
20471
20472 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
20473 src/makefile.am.
20474 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
20475 (AC_OUTPUT): Add m4/Makefile.
20476 Bump to bison 1.28a, 1.29 has never been released.
20477 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
20478 handled via src/Makefile.am.
20479 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
20480 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
20481 autoheader.
20482 * Makefile.am (SUBDIRS): Add m4.
20483 (ACLOCAL_AM_FLAGS): New variable.
20484 (AUTOMAKE_OPTIONS): Add check-news.
20485 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
20486 the proper line number and file name.
20487 (DEFS): Propagate the location of bison library files and of the
20488 locale files.
20489 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
20490 builddir.
20491 * acinclude.m4: Remove, replaced by the directory m4.
20492 * m4/Makefile.am (EXTRA_DIST): New variable.
20493 * m4/gettext.m4: New file, from the fileutils.
20494 * m4/lcmessage.m4: Likewise
20495 * m4/progtest.m4: Likewise.
20496 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
20497
20498 2000-03-10 Akim Demaille <akim@epita.fr>
20499
20500 * src/closure.c:
20501 Formatting changes of various comments.
20502 Respect the GNU coding standards at various places.
20503 Don't use `_()' when no translation is needed.
20504
20505 1999-12-13 Jesse Thilo <jthilo@gnu.org>
20506
20507 * src/files.c:
20508 OS/2 honors TMPDIR environment variable.
20509
20510 1999-12-13 Jesse Thilo <jthilo@gnu.org>
20511
20512 * doc/bison.texinfo: Tweaked spelling and grammar.
20513 Updated ISBN.
20514 Removed reference to price of printed copy.
20515 Mention BISON_SIMPLE and BISON_HAIRY.
20516
20517 1999-12-13 Jesse Thilo <jthilo@gnu.org>
20518
20519 * configure.in, NEWS:
20520 Bison 1.29 released.
20521
20522 1999-10-27 Jesse Thilo <jthilo@gnu.org>
20523
20524 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
20525 Added reference card.
20526
20527 1999-07-26 Jesse Thilo <jthilo@gnu.org>
20528
20529 * po/ru.po: Added Russian translation.
20530
20531 1999-07-26 Jesse Thilo <jthilo@gnu.org>
20532
20533 * configure.in: Added Russian translation.
20534
20535 1999-07-06 Jesse Thilo <jthilo@gnu.org>
20536
20537 * configure.in, NEWS, README:
20538 Released version 1.28.
20539
20540 1999-06-14 Jesse Thilo <jthilo@gnu.org>
20541
20542 * src/system.h:
20543 Squashed redefinition warning on some systems.
20544
20545 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
20546 Have configure build version string instead of relying on ANSI string
20547 concatentation.
20548
20549 1999-06-14 Jesse Thilo <jthilo@gnu.org>
20550
20551 * po/POTFILES.in: Got rid of version.c.
20552
20553 1999-06-14 Jesse Thilo <jthilo@gnu.org>
20554
20555 * acconfig.h, configure.in:
20556 Have configure build version string instead of relying on ANSI string
20557 concatentation.
20558
20559 1999-06-08 Jesse Thilo <jthilo@gnu.org>
20560
20561 * doc/bison.1:
20562 Dropped mention of `+' for long-named options.
20563
20564 1999-05-30 Jesse Thilo <jthilo@gnu.org>
20565
20566 * src/files.c: Added <unistd.h> for unlink().
20567
20568 * src/Makefile.am, src/system.h:
20569 I18n fixes.
20570
20571 1999-05-30 Jesse Thilo <jthilo@gnu.org>
20572
20573 * README: Added a FAQ list.
20574
20575 * configure.in, acconfig.h:
20576 I18n fixes.
20577
20578 1999-05-30 Jesse Thilo <jthilo@gnu.org>
20579
20580 * doc/FAQ, doc/Makefile.am:
20581 Added a FAQ list.
20582
20583 1999-05-19 Jesse Thilo <jthilo@gnu.org>
20584
20585 * src/alloc.h, src/symtab.h, src/version.c:
20586 Protected inclusion of "config.h" with HAVE_CONFIG_H.
20587
20588 1999-04-18 Jesse Thilo <jthilo@gnu.org>
20589
20590 * src/.cvsignore, src/Makefile.am:
20591 Reorganized: sources in `src', documentation in `doc'.
20592
20593 * src/lex.c (literalchar):
20594 fixed the code for escaping double quotes (thanks
20595 Jonathan Czisny.)
20596
20597 1999-04-18 Jesse Thilo <jthilo@gnu.org>
20598
20599 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
20600 Adjusted paths to reflect directory reorganization.
20601
20602 1999-04-18 Jesse Thilo <jthilo@gnu.org>
20603
20604 * doc/.cvsignore, doc/Makefile.am:
20605 Reorganized: sources in `src', documentation in `doc'.
20606
20607 1999-04-18 Jesse Thilo <jthilo@gnu.org>
20608
20609 * configure.in:
20610 Updated AC_INIT file to reflect directory reorganization.
20611
20612 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
20613 Reorganized: sources in `src', documentation in `doc'.
20614
20615 1999-04-13 Jesse Thilo <jthilo@gnu.org>
20616
20617 * src/allocate.c:
20618 Don't declare calloc() and realloc() if not necessary.
20619
20620 1999-04-13 Jesse Thilo <jthilo@gnu.org>
20621
20622 * configure.in, acconfig.h, acinclude.m4:
20623 Don't declare calloc() and realloc() if not necessary.
20624
20625 1999-03-23 Jesse Thilo <jthilo@gnu.org>
20626
20627 * po/.cvsignore: Added i18n support.
20628
20629 1999-03-23 Jesse Thilo <jthilo@gnu.org>
20630
20631 * acconfig.h, configure.in, Makefile.am:
20632 Added i18n support.
20633
20634 1999-03-22 Jesse Thilo <jthilo@gnu.org>
20635
20636 * src/bison.s1: Fixed #line numbers.
20637
20638 1999-03-15 Jesse Thilo <jthilo@gnu.org>
20639
20640 * po/es.po, po/fr.po, po/nl.po, po/de.po:
20641 Added PO files from Translation Project.
20642
20643 1999-03-03 Jesse Thilo <jthilo@gnu.org>
20644
20645 * Makefile.am:
20646 Added support for non-ANSI compilers (ansi2knr).
20647
20648 1999-02-16 Jesse Thilo <jthilo@gnu.org>
20649
20650 * configure.in: Bumped version number to 1.27.
20651
20652 * Makefile.am:
20653 Added `bison.simple' to list of files removed by `make distclean'.
20654
20655 1999-02-12 Jesse Thilo <jthilo@gnu.org>
20656
20657 * src/files.c, src/files.h:
20658 Defined locations of parser files in config.h instead of Makefile.
20659
20660 1999-02-12 Jesse Thilo <jthilo@gnu.org>
20661
20662 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
20663 Defined locations of parser files in config.h instead of Makefile.
20664
20665 1999-02-09 Jesse Thilo <jthilo@gnu.org>
20666
20667 * Makefile.am:
20668 Removed inappropriate use of $< macro.
20669
20670 1999-02-05 Jesse Thilo <jthilo@gnu.org>
20671
20672 * po/Makefile.in.in, po/POTFILES.in:
20673 Add `po' directory skeleton.
20674
20675 1999-01-27 Jesse Thilo <jthilo@gnu.org>
20676
20677 * README: Document help-bison list.
20678
20679 * configure.in: Add check for mkstemp().
20680
20681 1999-01-20 Jesse Thilo <jthilo@gnu.org>
20682
20683 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
20684 Hush a few compiler warnings.
20685
20686 * src/files.c:
20687 Add tryclose(), which verifies that fclose was successful.
20688 Hush a couple of compiler warnings.
20689
20690 1999-01-20 Jesse Thilo <jthilo@gnu.org>
20691
20692 * Makefile.am, OChangeLog:
20693 ChangeLog is now automatically generated. Include the old version as
20694 OChangeLog.
20695
20696 1999-01-14 Jesse Thilo <jthilo@gnu.org>
20697
20698 * 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:
20699 Update FSF address.
20700
20701 1999-01-14 Jesse Thilo <jthilo@gnu.org>
20702
20703 * doc/bison.texinfo: Fix formatting glitch.
20704
20705 * doc/bison.texinfo: Update FSF address.
20706
20707 1999-01-14 Jesse Thilo <jthilo@gnu.org>
20708
20709 * acconfig.h: Update FSF address.
20710
20711 1999-01-08 Jesse Thilo <jthilo@gnu.org>
20712
20713 * src/system.h:
20714 Don't define PACKAGE here, since config.h defines it.
20715
20716 1998-12-30 Jesse Thilo <jthilo@gnu.org>
20717
20718 * src/reader.c: Update copyright date.
20719
20720 * src/main.c:
20721 Ditch sprintf to statically-sized buffers in fatal/warn functions in
20722 favor of output directly to stderr (avoids buffer overruns).
20723
20724 * src/reader.c: Some checks for premature EOF.
20725
20726 * 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:
20727 Use prototypes if the compiler understands them.
20728
20729 * src/files.c: Honor TMPDIR on Unix hosts.
20730 Use prototypes if the compiler understands them.
20731
20732 * src/reader.c:
20733 Fix a couple of buffer overrun bugs.
20734 Use prototypes if the compiler understands them.
20735
20736 * src/system.h: Include unistd.h and ctype.h.
20737 Use #ifdef instead of #if for NLS symbols.
20738
20739 1998-12-30 Jesse Thilo <jthilo@gnu.org>
20740
20741 * doc/bison.texinfo:
20742 Delete comment "consider using @set for edition number, etc..." since
20743 we now are doing so.
20744
20745 1998-12-30 Jesse Thilo <jthilo@gnu.org>
20746
20747 * configure.in:
20748 Use prototypes if the compiler understands them.
20749
20750 * NEWS: Document 1.26 highlights.
20751
20752 * Makefile.am: Require Automake 1.3 or later.
20753
20754 * acconfig.h:
20755 Use prototypes if the compiler understands them.
20756
20757 1998-12-29 Jesse Thilo <jthilo@gnu.org>
20758
20759 * src/version.c:
20760 Use VERSION symbol from automake for version number.
20761
20762 1998-12-29 Jesse Thilo <jthilo@gnu.org>
20763
20764 * acconfig.h, configure.in, version.cin:
20765 Use VERSION symbol from automake for version number.
20766
20767 1998-11-28 Jesse Thilo <jthilo@gnu.org>
20768
20769 * Makefile.am:
20770 Distribute original version of simple parser (bison.s1), not built
20771 version (bison.simple).
20772
20773 1998-11-28 Jesse Thilo <jthilo@gnu.org>
20774
20775 * doc/bison.texinfo: Add info dir entry.
20776
20777 * doc/bison.texinfo:
20778 Let automake put version number into documentation.
20779
20780 1998-11-26 Jesse Thilo <jthilo@gnu.org>
20781
20782 * src/bison.cld, src/build.com, src/vmshlp.mar:
20783 Add non-RCS files from /gd/gnu/bison.
20784
20785 1998-11-26 Jesse Thilo <jthilo@gnu.org>
20786
20787 * doc/bison.1:
20788 Document the BISON_HAIRY and BISON_SIMPLE variables.
20789
20790 1998-11-25 Jesse Thilo <jthilo@gnu.org>
20791
20792 * src/version.c: Build version.c automatically.
20793
20794 * src/reader.c:
20795 Fix token numbering (used to start at 258, not 257).
20796
20797 * src/system.h: Include config.h.
20798
20799 * src/getargs.c: Update bug report address.
20800
20801 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
20802 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
20803
20804 1998-11-25 Jesse Thilo <jthilo@gnu.org>
20805
20806 * Makefile.am:
20807 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
20808
20809 * configure.in, version.cin:
20810 Build version.c automatically.
20811
20812 * AUTHORS: Add AUTHORS file.
20813
20814 * README: Update bug report address.
20815
20816 * bison.simple:
20817 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
20818
20819 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
20820 Add automake stuff.
20821
20822 1998-11-25 Jesse Thilo <jthilo@gnu.org>
20823
20824 * doc/bison.texinfo: Clean up some formatting.
20825
20826 1998-05-05 Richard Stallman <rms@gnu.org>
20827
20828 * doc/bison.texinfo:
20829 Explain better why to make a pure parser.
20830
20831 1998-01-05 Richard Stallman <rms@gnu.org>
20832
20833 * src/files.c (openfiles):
20834 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
20835 find a temporary directory, if possible. Do not unlink files while
20836 they are open.
20837
20838 1997-08-25 Richard Stallman <rms@gnu.org>
20839
20840 * src/reader.c (stack_offset;):
20841 Change some warni to warns.
20842
20843 * src/lex.c (literalchar): Use warns, not warni.
20844
20845 1997-06-28 Richard Stallman <rms@gnu.org>
20846
20847 * src/bison.s1: Add a Bison version comment.
20848
20849 * src/main.c (fatal, warn, berror):
20850 Use program_name.
20851
20852 1997-06-28 Richard Stallman <rms@gnu.org>
20853
20854 * Makefile.in (bison_version): New variable.
20855 (dist): Use that variable.
20856 (bison.s1): Substitute the Bison version into bison.simple.
20857
20858 * bison.simple: Add a Bison version comment.
20859
20860 1997-06-18 Richard Stallman <rms@gnu.org>
20861
20862 * src/main.c (fatal, warn, berror):
20863 Make error messages standard.
20864 (toomany): Improve error message text.
20865
20866 * 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:
20867 new.h renamed to alloc.h.
20868
20869 1997-06-18 Richard Stallman <rms@gnu.org>
20870
20871 * Makefile.in: new.h renamed to alloc.h.
20872
20873 1997-05-24 Richard Stallman <rms@gnu.org>
20874
20875 * src/lex.c (literalchar):
20876 Fix the code for escaping \, " and '.
20877
20878 (lex): Avoid trouble when there are many chars
20879 to discard in a char literal with just several chars in it.
20880
20881 1997-05-17 Richard Stallman <rms@gnu.org>
20882
20883 * src/bison.s1:
20884 Use malloc, if using alloca is troublesome.
20885 (YYSTACK_USE_ALLOCA): New flag macro.
20886 Define it for some systems and compilers.
20887 (YYSTACK_ALLOC): New macro.
20888 (yyparse): Use YYSTACK_ALLOC to allocate stack.
20889 If it was malloc'd, free it.
20890
20891 1997-05-17 Richard Stallman <rms@gnu.org>
20892
20893 * bison.simple:
20894 Use malloc, if using alloca is troublesome.
20895 (YYSTACK_USE_ALLOCA): New flag macro.
20896 Define it for some systems and compilers.
20897 (YYSTACK_ALLOC): New macro.
20898 (yyparse): Use YYSTACK_ALLOC to allocate stack.
20899 If it was malloc'd, free it.
20900
20901 1997-04-23 Richard Stallman <rms@gnu.org>
20902
20903 * src/bison.s1:
20904 (alloca) [__hpux]: Always define as __builtin_alloca.
20905
20906 1997-04-23 Richard Stallman <rms@gnu.org>
20907
20908 * bison.simple:
20909 (alloca) [__hpux]: Always define as __builtin_alloca.
20910
20911 1997-04-22 Richard Stallman <rms@gnu.org>
20912
20913 * src/bison.s1:
20914 [__hpux]: Include alloca.h (right for HPUX 10)
20915 instead of declaring alloca (right for HPUX 9).
20916
20917 * src/bison.s1 (__yy_memcpy):
20918 Declare arg `count' as unsigned int.
20919 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
20920
20921 1997-04-22 Richard Stallman <rms@gnu.org>
20922
20923 * bison.simple:
20924 [__hpux]: Include alloca.h (right for HPUX 10)
20925 instead of declaring alloca (right for HPUX 9).
20926
20927 * bison.simple (__yy_memcpy):
20928 Declare arg `count' as unsigned int.
20929 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
20930
20931 1997-01-03 Richard Stallman <rms@gnu.org>
20932
20933 * src/allocate.c: [__STDC__ or _MSC_VER]:
20934 Declare calloc and realloc to return void *.
20935
20936 1997-01-02 Richard Stallman <rms@gnu.org>
20937
20938 * src/system.h:
20939 [_MSC_VER]: Include stdlib.h and process.h.
20940 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
20941
20942 * src/main.c (main): Return FAILURE as a value.
20943 (printable_version): Declare arg as int, not char.
20944
20945 1997-01-02 Richard Stallman <rms@gnu.org>
20946
20947 * Makefile.in (dist):
20948 Explicitly check for symlinks, and copy them.
20949
20950 1996-12-19 Richard Stallman <rms@gnu.org>
20951
20952 * src/files.c:
20953 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
20954
20955 1996-12-18 Paul Eggert <eggert@gnu.org>
20956
20957 * src/bison.s1 (yyparse):
20958 If __GNUC__ and YYPARSE_PARAM are both defined,
20959 declare yyparse to have a void * argument.
20960
20961 1996-12-18 Paul Eggert <eggert@gnu.org>
20962
20963 * bison.simple (yyparse):
20964 If __GNUC__ and YYPARSE_PARAM are both defined,
20965 declare yyparse to have a void * argument.
20966
20967 1996-12-17 Richard Stallman <rms@gnu.org>
20968
20969 * src/reduce.c (nbits): Add some casts.
20970
20971 1996-08-12 Richard Stallman <rms@gnu.org>
20972
20973 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
20974
20975 1996-08-12 Richard Stallman <rms@gnu.org>
20976
20977 * bison.simple: Test _MSDOS as well as _MSDOS_.
20978
20979 1996-07-31 Richard Stallman <rms@gnu.org>
20980
20981 * src/bison.s1:
20982 [__sun && __i386]: Include alloca.h.
20983
20984 1996-07-31 Richard Stallman <rms@gnu.org>
20985
20986 * bison.simple:
20987 [__sun && __i386]: Include alloca.h.
20988
20989 1996-07-30 Richard Stallman <rms@gnu.org>
20990
20991 * src/bison.s1: Comment change.
20992
20993 * src/bison.s1: Test _MSDOS_, not MSDOS.
20994
20995 1996-07-30 Richard Stallman <rms@gnu.org>
20996
20997 * bison.simple: Comment change.
20998
20999 * bison.simple: Test _MSDOS_, not MSDOS.
21000
21001 1996-06-01 Richard Stallman <rms@gnu.org>
21002
21003 * 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:
21004 Insert `_' macro around many string constants.
21005
21006 * src/main.c:
21007 Insert `_' macro around many string constants.
21008
21009 (main): Call setlocale, bindtextdomain and textdomain.
21010
21011 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
21012 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
21013 [ENABLE_NLS]: Include libintl.h.
21014 [ENABLE_NLS] (gettext): Define.
21015 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
21016 (N_, PACKAGE, LOCALEDIR): New macros.
21017
21018 1996-06-01 Richard Stallman <rms@gnu.org>
21019
21020 * POTFILES.in: New file.
21021
21022 * Makefile.in (allocate.o):
21023 Define target explicitly.
21024
21025 * Makefile.in (CFLAGS): Set to @CFLAGS@.
21026 (LDFLAGS): Set to @LDFLAGS@.
21027 (configure): Run autoconf only if preceding `cd' succeeds.
21028 (bison.s1): Redirect output to temporary file then move the
21029 temporary to the target, rather than redirecting directly to bison.s1.
21030 (clean): Remove config.status and config.log.
21031 (distclean): Don't remove config.status here.
21032
21033 1996-05-12 Richard Stallman <rms@gnu.org>
21034
21035 * src/bison.s1:
21036 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21037
21038 1996-05-12 Richard Stallman <rms@gnu.org>
21039
21040 * bison.simple:
21041 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21042
21043 1996-05-11 Richard Stallman <rms@gnu.org>
21044
21045 * src/bison.s1 (__yy_memcpy):
21046 Really reorder the args, as was supposedly done on Feb 14 1995.
21047 (yyparse): Calls changed accordingly.
21048
21049 1996-05-11 Richard Stallman <rms@gnu.org>
21050
21051 * Makefile.in (dist): Don't use $(srcdir).
21052
21053 * bison.simple (__yy_memcpy):
21054 Really reorder the args, as was supposedly done on Feb 14 1995.
21055 (yyparse): Calls changed accordingly.
21056
21057 1996-01-27 Richard Stallman <rms@gnu.org>
21058
21059 * src/output.c (output_rule_data):
21060 Test YYERROR_VERBOSE in the conditional
21061 around the definition of ttyname.
21062
21063 1995-12-29 Richard Stallman <rms@gnu.org>
21064
21065 * src/bison.s1:
21066 Fix line numbers in #line commands.
21067
21068 1995-12-29 Richard Stallman <rms@gnu.org>
21069
21070 * bison.simple:
21071 Fix line numbers in #line commands.
21072
21073 1995-12-27 Richard Stallman <rms@gnu.org>
21074
21075 * src/bison.s1 (YYPARSE_PARAM_DECL):
21076 In C++, make it always null.
21077 (YYPARSE_PARAM_ARG): New macro.
21078 (yyparse): Use YYPARSE_PARAM_ARG.
21079
21080 1995-12-27 Richard Stallman <rms@gnu.org>
21081
21082 * bison.simple (YYPARSE_PARAM_DECL):
21083 In C++, make it always null.
21084 (YYPARSE_PARAM_ARG): New macro.
21085 (yyparse): Use YYPARSE_PARAM_ARG.
21086
21087 1995-11-29 Richard Stallman <rms@gnu.org>
21088
21089 * doc/bison.texinfo:
21090 Describe literal string tokens, %raw, %no_lines, %token_table.
21091
21092 1995-11-29 Daniel Hagerty <hag@gnu.org>
21093
21094 * doc/bison.texinfo: Fixed update date
21095
21096 1995-10-16 Richard Stallman <rms@gnu.org>
21097
21098 * src/version.c: Version 1.25.
21099
21100 1995-10-16 Richard Stallman <rms@gnu.org>
21101
21102 * NEWS: *** empty log message ***
21103
21104 1995-10-16 Richard Stallman <rms@gnu.org>
21105
21106 * doc/bison.1, doc/bison.rnh:
21107 Add new options.
21108
21109 1995-10-15 Richard Stallman <rms@gnu.org>
21110
21111 * src/vmsgetargs.c, src/getargs.c:
21112 Added -n, -k, and -raw switches.
21113 (noparserflag, toknumflag, rawtoknumflag): New variables.
21114
21115 * src/symtab.h (SALIAS):
21116 New #define for adding aliases to %token.
21117 (struct bucket): Added `alias' field.
21118
21119 * src/reduce.c (reduce_grammar):
21120 Revise error message.
21121 (print_notices): Remove final `.' from error message.
21122
21123 * src/reader.c (reader_output_yylsp):
21124 New function.
21125 (readgram): Use `#if 0' around code that accepted %command
21126 inside grammar rules: The documentation doesn't allow it,
21127 and it will fail since the %command processors scan for the next %.
21128 (parse_token_decl): Extended the %token
21129 declaration to allow a multi-character symbol as an alias.
21130 (parse_thong_decl): New function.
21131 (read_declarations): Added %thong declarations.
21132 (read_declarations): Handle NOOP to deal with allowing
21133 % declarations as another means to specify the flags.
21134 (readgram): Allow %prec prior to semantics embedded in a rule.
21135 (skip_to_char, read_declarations, copy_definition)
21136 (parse_token_decl, parse_start_decl, parse_type_decl)
21137 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
21138 (get_type_name, copy_guard, copy_action, readgram)
21139 (get_type, packsymbols): Revised most error messages.
21140 Changed `fatal' to `warnxxx' to avoid aborting for error.
21141 Revised and use multiple warnxxx functions to avoid using VARARGS1.
21142 (read_declarations): Improve the error message for
21143 an invalid character. Do not abort.
21144 (read_declarations, copy_guard, copy_action): Use
21145 printable_version to avoid unprintable characters in printed output.
21146 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
21147 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
21148 Allow the type of a non-terminal can be given
21149 more than once, as long as all specifications give the same type.
21150
21151 * src/output.c:
21152 (output_headers, output_trailers, output, output_gram)
21153 (output_rule_data): Implement noparserflag variable.
21154 Implement toknumflag variable.
21155 (output): Call reader_output_yylsp to output LTYPESTR.
21156
21157 * src/main.c (main):
21158 If reader sees an error, don't process the grammar.
21159 (fatals): Updated to not use VARARGS1.
21160 (printable_version, int_to_string, warn, warni, warns, warnss)
21161 (warnsss): New error reporting functions. Avoid abort for error.
21162
21163 * src/lex.h:
21164 Added THONG and NOOP for alias processing.
21165 Added SETOPT for the new code that allows setting options with %flags.
21166
21167 * src/lex.c:
21168 Include getopt.h. Add some extern decls.
21169 (safegetc): New function to deal with EOF gracefully.
21170 (literalchar); new function to deal with reading \ escapes.
21171 (lex): Use literalchar.
21172 (lex): Implemented "..." tokens.
21173 (literalchar, lex, parse_percent_token): Made tokenbuffer
21174 always contain the token. This includes growing the token
21175 buffer while reading an integer.
21176 (parse_percent_token): Replaced if-else statement with percent_table.
21177 (parse_percent_token): Added % declarations as another
21178 way to specify the flags -n, -l, and -r. Also added hooks for
21179 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
21180 major changes to files.c.
21181 (lex) Retain in the incoming stream a character following
21182 an incorrect '/'.
21183 (skip_white_space, lex): Revised most error messages
21184 and changed fatal to warn to avoid aborting.
21185 (percent_table): Added %thong declarations.
21186
21187 * src/gram.h: Comment changes.
21188
21189 * src/files.c (openfiles, open_extra_files, done):
21190 Add faction flag
21191 and actfile file. Handle noparserflag. Both for -n switch.
21192
21193 * src/conflicts.c (resolve_sr_conflict):
21194 Remove use of alloca.
21195
21196 1995-06-01 Jim Meyering <meyering@gnu.org>
21197
21198 * doc/bison.texinfo: *** empty log message ***
21199
21200 1995-05-06 Richard Stallman <rms@gnu.org>
21201
21202 * src/bison.s1: Comment change.
21203
21204 1995-05-06 Richard Stallman <rms@gnu.org>
21205
21206 * bison.simple: Comment change.
21207
21208 1995-05-03 Richard Stallman <rms@gnu.org>
21209
21210 * src/version.c: Version now 1.24.
21211
21212 * src/bison.s1: Change distribution terms.
21213
21214 * src/version.c: Version now 1.23.
21215
21216 1995-05-03 Richard Stallman <rms@gnu.org>
21217
21218 * doc/bison.texinfo:
21219 Rewrite "Conditions for Using Bison".
21220 Update version to 1.24.
21221
21222 1995-05-03 Richard Stallman <rms@gnu.org>
21223
21224 * bison.simple: Change distribution terms.
21225
21226 1995-02-23 Richard Stallman <rms@gnu.org>
21227
21228 * src/files.c: Test __VMS_POSIX as well as VMS.
21229
21230 1995-02-14 Jim Meyering <meyering@gnu.org>
21231
21232 * src/bison.s1 (__yy_memcpy):
21233 Renamed from __yy_bcopy to avoid
21234 confusion. Reverse FROM and TO arguments to be consistent with
21235 those of memcpy.
21236
21237 1995-02-14 Jim Meyering <meyering@gnu.org>
21238
21239 * bison.simple (__yy_memcpy):
21240 Renamed from __yy_bcopy to avoid
21241 confusion. Reverse FROM and TO arguments to be consistent with
21242 those of memcpy.
21243
21244 1994-11-10 David J. MacKenzie <djm@gnu.org>
21245
21246 * NEWS: reformat
21247
21248 * NEWS: New file.
21249
21250 * Makefile.in (DISTFILES): Include NEWS.
21251
21252 * Makefile.in (DISTFILES):
21253 Include install-sh, not install.sh.
21254
21255 * configure.in: Update to Autoconf v2 macro names.
21256
21257 1994-10-05 David J. MacKenzie <djm@gnu.org>
21258
21259 * Makefile.in: fix typo
21260
21261 * Makefile.in (prefix, exec_prefix):
21262 Let configure set them.
21263
21264 1994-09-28 David J. MacKenzie <djm@gnu.org>
21265
21266 * Makefile.in: Set datadir to $(prefix)/share.
21267
21268 1994-09-15 Richard Stallman <rms@gnu.org>
21269
21270 * src/bison.s1:
21271 Update copyright notice and GPL version.
21272
21273 1994-09-15 Richard Stallman <rms@gnu.org>
21274
21275 * bison.simple:
21276 Update copyright notice and GPL version.
21277
21278 1994-07-12 Richard Stallman <rms@gnu.org>
21279
21280 * src/reduce.c, src/reader.c:
21281 entered into RCS
21282
21283 1994-05-05 David J. MacKenzie <djm@gnu.org>
21284
21285 * Makefile.in: entered into RCS
21286
21287 1994-03-26 Richard Stallman <rms@gnu.org>
21288
21289 * src/bison.s1: entered into RCS
21290
21291 1994-03-26 Richard Stallman <rms@gnu.org>
21292
21293 * bison.simple: entered into RCS
21294
21295 1994-03-25 Richard Stallman <rms@gnu.org>
21296
21297 * src/main.c: entered into RCS
21298
21299 1994-03-24 Richard Stallman <rms@gnu.org>
21300
21301 * src/conflicts.c: entered into RCS
21302
21303 1994-01-02 Richard Stallman <rms@gnu.org>
21304
21305 * Makefile.in: *** empty log message ***
21306
21307 1993-11-21 Richard Stallman <rms@gnu.org>
21308
21309 * src/bison.s1: *** empty log message ***
21310
21311 1993-11-21 Richard Stallman <rms@gnu.org>
21312
21313 * doc/bison.texinfo: entered into RCS
21314
21315 * doc/bison.texinfo: *** empty log message ***
21316
21317 1993-11-21 Richard Stallman <rms@gnu.org>
21318
21319 * bison.simple: *** empty log message ***
21320
21321 1993-10-25 David J. MacKenzie <djm@gnu.org>
21322
21323 * doc/bison.texinfo: *** empty log message ***
21324
21325 1993-10-19 Richard Stallman <rms@gnu.org>
21326
21327 * src/bison.s1: *** empty log message ***
21328
21329 1993-10-19 Richard Stallman <rms@gnu.org>
21330
21331 * bison.simple: *** empty log message ***
21332
21333 1993-10-14 Richard Stallman <rms@gnu.org>
21334
21335 * src/bison.s1: *** empty log message ***
21336
21337 1993-10-14 Richard Stallman <rms@gnu.org>
21338
21339 * bison.simple: *** empty log message ***
21340
21341 1993-09-14 David J. MacKenzie <djm@gnu.org>
21342
21343 * doc/bison.texinfo: *** empty log message ***
21344
21345 1993-09-13 Noah Friedman <friedman@gnu.org>
21346
21347 * Makefile.in: *** empty log message ***
21348
21349 1993-09-10 Richard Stallman <rms@gnu.org>
21350
21351 * src/conflicts.c: *** empty log message ***
21352
21353 * src/system.h: entered into RCS
21354
21355 1993-09-10 Richard Stallman <rms@gnu.org>
21356
21357 * doc/bison.1: entered into RCS
21358
21359 1993-09-06 Noah Friedman <friedman@gnu.org>
21360
21361 * src/version.c: entered into RCS
21362
21363 1993-09-06 Noah Friedman <friedman@gnu.org>
21364
21365 * Makefile.in: *** empty log message ***
21366
21367 1993-07-30 David J. MacKenzie <djm@gnu.org>
21368
21369 * Makefile.in: *** empty log message ***
21370
21371 1993-07-24 Richard Stallman <rms@gnu.org>
21372
21373 * src/bison.s1: *** empty log message ***
21374
21375 1993-07-24 Richard Stallman <rms@gnu.org>
21376
21377 * bison.simple: *** empty log message ***
21378
21379 1993-07-08 David J. MacKenzie <djm@gnu.org>
21380
21381 * Makefile.in: *** empty log message ***
21382
21383 1993-07-04 Richard Stallman <rms@gnu.org>
21384
21385 * src/bison.s1: *** empty log message ***
21386
21387 1993-07-04 Richard Stallman <rms@gnu.org>
21388
21389 * bison.simple: *** empty log message ***
21390
21391 1993-06-26 David J. MacKenzie <djm@gnu.org>
21392
21393 * src/getargs.c: entered into RCS
21394
21395 1993-06-26 David J. MacKenzie <djm@gnu.org>
21396
21397 * doc/bison.texinfo: *** empty log message ***
21398
21399 * doc/bison.1: New file.
21400
21401 1993-06-25 Richard Stallman <rms@gnu.org>
21402
21403 * src/getargs.c: New file.
21404
21405 1993-06-16 Richard Stallman <rms@gnu.org>
21406
21407 * src/bison.s1: *** empty log message ***
21408
21409 1993-06-16 Richard Stallman <rms@gnu.org>
21410
21411 * bison.simple: *** empty log message ***
21412
21413 1993-06-03 Richard Stallman <rms@gnu.org>
21414
21415 * src/bison.s1: New file.
21416
21417 1993-06-03 Richard Stallman <rms@gnu.org>
21418
21419 * doc/bison.texinfo: *** empty log message ***
21420
21421 1993-06-03 Richard Stallman <rms@gnu.org>
21422
21423 * bison.simple: New file.
21424
21425 1993-05-19 Richard Stallman <rms@gnu.org>
21426
21427 * doc/bison.texinfo: New file.
21428
21429 1993-05-07 Noah Friedman <friedman@gnu.org>
21430
21431 * Makefile.in: *** empty log message ***
21432
21433 1993-04-28 Noah Friedman <friedman@gnu.org>
21434
21435 * src/reader.c: *** empty log message ***
21436
21437 1993-04-23 Noah Friedman <friedman@gnu.org>
21438
21439 * src/alloc.h: entered into RCS
21440
21441 1993-04-20 David J. MacKenzie <djm@gnu.org>
21442
21443 * src/version.c: *** empty log message ***
21444
21445 * src/files.c, src/allocate.c:
21446 entered into RCS
21447
21448 * src/reader.c: *** empty log message ***
21449
21450 * src/lex.c: entered into RCS
21451
21452 * src/conflicts.c: New file.
21453
21454 * src/symtab.c: entered into RCS
21455
21456 * src/alloc.h: New file.
21457
21458 * src/LR0.c: entered into RCS
21459
21460 1993-04-18 Noah Friedman <friedman@gnu.org>
21461
21462 * src/reader.c: New file.
21463
21464 * src/version.c: *** empty log message ***
21465
21466 1993-04-18 Noah Friedman <friedman@gnu.org>
21467
21468 * Makefile.in: *** empty log message ***
21469
21470 1993-04-17 Noah Friedman <friedman@gnu.org>
21471
21472 * Makefile.in: *** empty log message ***
21473
21474 1993-04-15 Richard Stallman <rms@gnu.org>
21475
21476 * src/main.c, src/files.c:
21477 New file.
21478
21479 1993-04-15 Noah Friedman <friedman@gnu.org>
21480
21481 * configure.in: entered into RCS
21482
21483 * configure.in: *** empty log message ***
21484
21485 * configure.in: New file.
21486
21487 1993-04-14 Richard Stallman <rms@gnu.org>
21488
21489 * Makefile.in: New file.
21490
21491 1993-04-13 Richard Stallman <rms@gnu.org>
21492
21493 * src/version.c: New file.
21494
21495 1993-03-25 Richard Stallman <rms@gnu.org>
21496
21497 * src/output.c: entered into RCS
21498
21499 1992-09-25 Richard Stallman <rms@gnu.org>
21500
21501 * configure.bat: entered into RCS
21502
21503 1992-06-22 Richard Stallman <rms@gnu.org>
21504
21505 * src/vmsgetargs.c: entered into RCS
21506
21507 1992-06-22 Richard Stallman <rms@gnu.org>
21508
21509 * doc/bison.rnh: entered into RCS
21510
21511 1992-04-20 David J. MacKenzie <djm@gnu.org>
21512
21513 * README: entered into RCS
21514
21515 1992-01-22 Richard Stallman <rms@gnu.org>
21516
21517 * src/machine.h: entered into RCS
21518
21519 1991-12-21 Richard Stallman <rms@gnu.org>
21520
21521 * src/lalr.c, src/closure.c:
21522 entered into RCS
21523
21524 1991-12-20 Richard Stallman <rms@gnu.org>
21525
21526 * src/state.h: entered into RCS
21527
21528 1991-12-18 Richard Stallman <rms@gnu.org>
21529
21530 * src/print.c, src/nullable.c, src/derives.c:
21531 entered into RCS
21532
21533 1991-11-03 David J. MacKenzie <djm@gnu.org>
21534
21535 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
21536 entered into RCS
21537
21538 1988-09-09 Richard Stallman <rms@gnu.org>
21539
21540 * src/bison.hairy: entered into RCS
21541
21542 1987-12-16 Richard Stallman <rms@gnu.org>
21543
21544 * REFERENCES: entered into RCS
21545
21546
21547 -----
21548
21549 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
21550 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
21551 2007, 2008, 2009 Free Software Foundation, Inc.
21552
21553 Copying and distribution of this file, with or without
21554 modification, are permitted provided the copyright notice and this
21555 notice are preserved.