]> git.saurik.com Git - bison.git/blame - ChangeLog
* cfg.mk (gnulib_dir): Assume gnulib is a subdirectory.
[bison.git] / ChangeLog
CommitLineData
97d52063
JD
12010-01-21 Joel E. Denny <jdenny@clemson.edu>
2
3 * cfg.mk (gnulib_dir): Assume gnulib is a subdirectory.
4
af8a609a
JD
52010-01-21 Joel E. Denny <jdenny@clemson.edu>
6
7 maint: automate PACKAGE_COPYRIGHT_YEAR update, and update it.
8 * HACKING (Release Procedure): Update notes on copyright years.
9 * Makefile.am (update-package-copyright-year): New target rule.
10 * build-aux/update-package-copyright-year: New file.
11 * cfg.mk (update-copyright): Add update-package-copyright-year
12 as a dependency.
13
73edad9a
JD
142010-01-19 Joel E. Denny <jdenny@clemson.edu>
15
16 * bootstrap: Import improvements from latest gnulib.
17
9736697d
JD
182010-01-19 Joel E. Denny <jdenny@clemson.edu>
19
20 build: require Automake 1.11.1 to avoid a security flaw.
21 * HACKING (Release Procedure): Don't document Automake security
22 flaw here.
23 * configure.ac (AM_INIT_AUTOMAKE): Require 1.11.1, and explain
24 why here.
25
e2f3fda1
JD
262010-01-19 Joel E. Denny <jdenny@clemson.edu>
27
28 gnulib: update to latest.
29
3c0be434
JD
302010-01-19 Joel E. Denny <jdenny@clemson.edu>
31
32 ChangeLog (2006-09-15): add Odd Arild Olsen's role for push.c.
33
d45708d4
JD
342010-01-15 Joel E. Denny <jdenny@clemson.edu>
35
36 Thank the developer of the initial push parser implementation.
37 This unfortunate oversight is several years old.
38 * THANKS (Odd Arild Olsen): Add.
39
219c26ea
JD
402010-01-04 Joel E. Denny <jdenny@clemson.edu>
41
42 maint: run "make update-copyright"
43
f1ceed07
JD
442009-12-30 Joel E. Denny <jdenny@clemson.edu>
45
46 POSIX: warn if %prec's token was not defined.
47 Reported by Florian Krohm at
48 <http://lists.gnu.org/archive/html/bug-bison/2009-12/msg00005.html>.
49 * NEWS (2.4.2): Document.
50 * src/reader.c (grammar_rule_check): Implement.
51 (grammar_current_rule_prec_set): Add comments explaining that we
52 here assume a %prec identifier is a token, but we still manage
53 to support POSIX.
54 * tests/input.at (%prec's token must be defined): New test
55 group.
56
d2829fdc
JD
572009-12-31 Joel E. Denny <jdenny@clemson.edu>
58
59 * HACKING (Release Procedure): Recommend a secure automake.
60
43dc3c8b
JD
612009-12-21 Joel E. Denny <jdenny@clemson.edu>
62
63 YYFAIL: deprecate.
64 * NEWS (2.4.2): Document deprecation and the phase-out plan.
65 * data/lalr1.java (parser::YYStack::YYFAIL): Add comment about
66 deprecation.
67 * data/yacc.c (YYFAIL): Likewise, and suppress warnings about
68 YYFAIL from GCC cpp's -Wunused-macros.
69 * doc/bison.texinfo (Java Action Features): Remove YYFAIL
70 documentation.
71
3d04b567
JD
722009-12-16 Joel E. Denny <jdenny@clemson.edu>
73
74 Add gcc's -Wundef to test suite and fix another warning from it.
75 * NEWS (2.4.2): Update description of -Wundef fix.
76 * configure.ac (WARN_CXXFLAGS_TEST): New substitution.
77 (WARN_CFLAGS_TEST): New substitution.
78 * data/glr.c: Avoid warning about __STRICT_ANSI__.
79 * tests/atlocal.in (CFLAGS): Use WARN_CFLAGS_TEST instead of
80 WARN_CFLAGS.
81 (CXXFLAGS): Use WARN_CXXFLAGS_TEST instead of WARN_CXXFLAGS.
82
39c25669
JD
832009-12-16 Joel E. Denny <jdenny@clemson.edu>
84
85 Document gcc -Wundef fix.
86 * NEWS (2.4.2): Here.
87 * THANKS (Jonathan Nieder): Add.
88
1694ac5c
JN
892009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
90
91 Avoid warnings from gcc -Wundef y.tab.c.
92 * data/glr.c: Check if YYENABLE_NLS and YYLTYPE_IS_TRIVIAL are
93 defined before using them.
94 * data/lalr1.cc: Likewise.
95 * data/yacc.c: Likewise.
96
dfff6628
JD
972009-12-15 Joel E. Denny <jdenny@clemson.edu>
98
99 Import M4 detection fix from Autoconf.
100 Reported by Eric Blake.
101 * m4/m4.m4: Copy serial 10.
102
adf1725f
JD
1032009-12-14 Joel E. Denny <jdenny@clemson.edu>
104
105 Enable assertion output and --disable-assert for configure.
106 * bootstrap.conf (gnulib_modules): Add assert module.
107 * src/system.h (aver): Define as assert, and summarize the
108 discussion on this issue.
109
7aaf9ce7
JD
1102009-10-11 Joel E. Denny <jdenny@clemson.edu>
111
112 portability: use va_start and va_end in the same function.
113 * src/complain.c (error_message): Move va_end from here...
114 (ERROR_MESSAGE): ... to here.
115
2ceb8c61
JD
1162009-10-04 Joel E. Denny <jdenny@clemson.edu>
117
118 tests: skip tests of file names that platform does not support.
119 Reported by Michael Raskin at
120 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
121 * THANKS (Michael Raskin): Add.
122 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
123 to fail at least for file names containing ":" or "\".
124
87b9c9bc
AD
1252009-09-16 Akim Demaille <demaille@gostai.com>
126
127 doc: spell checking.
128 * doc/bison.texinfo: here.
129
dc25ce6b
JD
1302009-09-13 Joel E. Denny <jdenny@clemson.edu>
131
132 tests: clean up push.at test group titles.
133 * tests/push.at: Remove "Push Parsing: " from test group titles
134 because these are already under the banner "Push Parsing Tests".
135
ace92a26
AD
1362009-09-03 Akim Demaille <demaille@gostai.com>
137
138 * NEWS (2.4.2): Add "Internationalization" item.
139
397bb393
AD
1402009-09-03 Akim Demaille <demaille@gostai.com>
141
142 bootstrap: fix/improve find_tool.
143 * bootstrap (find_tool): Improve error messages.
144 Fix typo about find_tool_names.
145
bbbbe221
EB
1462009-08-27 Eric Blake <ebb9@byu.net>
147
148 scan-gram: avoid portability trap with ctype usage.
149 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
150 Avoid compiler warning.
151
4d7b57b5
JD
1522009-08-27 Joel E. Denny <jdenny@clemson.edu>
153
154 tests: use perl for printing special sequences to files.
155 And skip tests if perl is not available. This is better than
156 playing tricks with shell portability. Suggested by Akim
157 Demaille.
158 * tests/input.at (Bad character literals): Use it here for
159 omitting final newlines.
160 (Bad escapes in literals): Use it here for special characters.
161
321fe707
JD
1622009-08-21 Joel E. Denny <jdenny@clemson.edu>
163
164 Use locale when quoting.
165 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
166 quote rather than implementing quoting here.
167
b9ad39c1
EB
1682009-08-20 Eric Blake <ebb9@byu.net>
169
1266b636
EB
170 Make previous patch more robust.
171 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
172 argmatch.h.
173 (output_skeleton): Use it.
174 Suggested by Akim Demaille.
175
b9ad39c1
EB
176 Import latest m4/m4.m4.
177 * m4/m4.m4: Copy from autoconf 2.64.
178 * configure.ac (M4_GNU_OPTION): New define.
179 * src/output.c (output_skeleton): Use it to resolve FIXME.
180 * NEWS: Mention this.
181
b1a4261e
JD
1822009-08-19 Joel E. Denny <jdenny@clemson.edu>
183
184 Fix complaints about escape sequences.
185 Discussed starting at
186 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
187 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
188 For a \0 and similar escape sequences meaning the null
189 character, report an invalid escape sequence instead of an
190 invalid null character because the latter does not actually
191 appear in the user's input.
192 In all escape sequence complaints, don't escape the initial
193 backslash, and don't quote when the sequence appears at the end
194 of the complaint line unless there's whitespace that quotearg
195 won't escape.
196 Consistently say "invalid" not "unrecognized".
197 * tests/input.at (Bad escapes in literals): New.
198
a022ff41
AD
1992009-08-19 Akim Demaille <demaille@gostai.com>
200
201 doc: %initial-action to initialize yylloc.
202 Reported by Bill Allombert.
203 * doc/bison.texinfo: Set fill-column to 76.
204 (Location Type): Document the use of %initial-action to initialize
205 yylloc.
206
b5b94bd5
JD
2072009-08-18 Joel E. Denny <jdenny@clemson.edu>
208
209 maint: update for gnulib's recent update-copyright changes
210 * gnulib: Update.
211 * .x-update-copyright (COPYING): Add as it's no longer implied
212 when .x-update-copyright is present.
213 * cfg.mk (update-copyright-local): Remove, now ignored.
214 (update-copyright): Declare update-b4-copyright as a dependency.
215
b9e42bb4
AD
2162009-08-17 Akim Demaille <demaille@gostai.com>
217
218 build: lower gettext requirements.
219
220 Bison was uselessly requiring the formatstring macros from
221 gettext, which resulted in mo files not being installed on systems
222 that perfectly supported Bison mo files. Lower the requirement.
223 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
224
1266b636
EB
225 * configure.ac: Require need-ngettext instead of
226 need-formatstring-macros.
227 Reported by Martin Jabocs.
228 Suggested by Bruno Haible.
229 * INSTALL: Restructure.
230 (Internationalization): New.
b9e42bb4 231
75ac158b
JD
2322009-08-14 Joel E. Denny <jdenny@clemson.edu>
233
234 maint: fix use of copyright year intervals.
235 * gnulib: Update.
236 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
237 as now recommended in gnulib/NEWS.
238 * build-aux/update-b4-copyright: Fix.
239 * cfg.mk (update-copyright-env): Configure update-copyright.
240
f23cd660
AD
2412009-08-12 Akim Demaille <demaille@gostai.com>
242
243 distcheck: fix.
244
1266b636 245 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
f23cd660 246
98744608
JD
2472009-08-06 Joel E. Denny <jdenny@clemson.edu>
248
249 maint: run "make update-copyright"
250 But first...
251 * .x-update-copyright (^data/m4sugar/): Add, because these
252 files are from Autoconf.
253
915becaa
JD
2542009-08-06 Joel E. Denny <jdenny@clemson.edu>
255
256 maint: make update-b4-copyright easier to use
257 * build-aux/update-b4-copyright: In warnings, report line
258 numbers rather than character positions.
259 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
260 that update-copyright runs it.
261 * gnulib: Update.
262
ae509723
JD
2632009-08-05 Joel E. Denny <jdenny@clemson.edu>
264
265 maint: clean up update-b4-copyright code
266 * build-aux/update-b4-copyright: Do not accept 2-digit
267 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
268 Don't accept a `[' in a b4_copyright argument.
269 Format code more consistently.
270 Don't assume b4*copyright never occurs.
271
c9e0a880
JD
2722009-08-04 Joel E. Denny <jdenny@clemson.edu>
273
274 maint: automate b4_copyright updates.
275 * Makefile.am (update-b4-copyright): New target rule.
276 * build-aux/Makefile.am (EXTRA_DIST): Add update-b4-copyright.
277 * build-aux/update-b4-copyright: New.
278 * data/yacc.c: Remove stray characters around b4_copyright
279 invocations.
280
50bcb22c
JD
2812009-08-04 Joel E. Denny <jdenny@clemson.edu>
282
283 maint: automate annual package-wide copyright-year update.
284 * .x-update-copyright: New.
285 * Makefile.am (EXTRA_DIST): Remove maint.mk.
286 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
287 update-copyright. Remove gnumakefile, which is implied by
288 maintainer-makefile.
289 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
290 * gnulib: Update.
291 * maint.mk: Remove, now copied from gnulib.
292 * examples/extexi: Add missing "(C)" in copyright statement so
293 update-copyright can recognize it.
294 * src/LR0.h: Likewise.
295 * src/print.h: Likewise.
296 * src/print_graph.h: Likewise.
297 * src/gram.c: Add missing comma in copyright statement.
298 * src/gram.h: Likewise.
299
cfc9e431
JD
3002009-08-04 Joel E. Denny <jdenny@clemson.edu>
301
302 Fix "make distcheck".
303 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
304 of just calc.stamp.
305
42f8609b
JD
3062009-08-01 Joel E. Denny <jdenny@clemson.edu>
307
308 Pacify "gcc -Wunused" for the input function from Flex.
309 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
310 and later.
311 * src/scan-code.l: Add "%option noinput", which I cannot find in
312 the Flex manual, but which Flex has supported since at least as
313 far back as 2.5.4. However, if any of our developers still use
314 Flex 2.5.4, they'll need to stop configuring with
315 --enable-gcc-warnings because "%option noinput" didn't work
316 correctly until Flex 2.5.6.
317 * src/scan-gram.l: Likewise.
318 * src/scan-skel.l: Likewise.
319
9e408f84
AD
3202009-06-29 Akim Demaille <demaille@gostai.com>
321
322 build: avoid concurrent extraction of calc++.
323 * examples/calc++/Makefile.am (calc.stamp): New.
324 Depend on it to create the sources of calc++ so that concurrent
325 builds don't launch several "extexi" in parallel.
326 Not only this is inefficient, this also builds incorrect sources
327 with several extractions mixed together.
328
48578d6c
AD
3292009-06-25 Akim Demaille <demaille@gostai.com>
330
331 hash: check insertion for memory exhaustion.
332 * src/uniqstr.c (uniqstr_new): New.
333
914e713d
AD
3342009-06-11 Akim Demaille <demaille@gostai.com>
335
336 hash: check insertion for memory exhaustion.
337 * src/muscle-tab.c (muscle_insert, muscle_grow)
338 * src/state.c (state_hash_insert): Check the return value of
339 hash_insert.
340
94505fb7
AD
3412009-06-10 Akim Demaille <demaille@gostai.com>
342
343 gnulib: update.
1266b636
EB
344 * gnulib: Update to latest.
345 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
346 * m4/.gitignore: Regen.
347 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
348 Call xalloc_die on hash_insert failures.
349 Requested by the new __warn_unused_result__ attribute of
350 hash_insert.
94505fb7 351
1bcbca43
JD
3522009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
353
354 * data/c++.m4: Update copyright year.
355
a17352a9
JD
3562009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
357
358 Handle a trailing `:' in a user-supplied C++ namespace better.
359 * data/c++.m4 (b4_namespace_close): Don't let it be printed
360 among the closing braces here. This fix might make the
361 generated code easier to debug, but otherwise it should be
362 insignificant because a trailing `:' is a C++ error already.
363
c984dee8
AD
3642009-05-11 Akim Demaille <demaille@gostai.com>
365
366 doc: use C++ headers.
367 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
368 headers.
369
cefb1828
JD
3702009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
371
372 Declare %code to be a permanent feature.
373 * NEWS (2.4.2): Here.
374 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
375 experimental.
376 (Decl Summary): Likewise.
377
2f3064f0
AD
3782009-04-14 Akim Demaille <demaille@gostai.com>
379
380 doc: minor fixes.
381 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
382 (Table of Symbols): Remove duplicate entry for %debug.
383
ab3a683f
EB
3842009-04-06 Eric Blake <ebb9@byu.net>
385
386 Work around autoconf 2.63b bug in testsuite.
387 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
388 autoconf bug related to # in test.
389
ecd1b61c
JD
3902009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
391
392 Fix options documentation.
393 * build-aux/cross-options.pl: As in --help output, write optional
394 arguments as [=ARG] not =[ARG].
395 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
396
f67c4037
AD
3972008-11-07 Akim Demaille <demaille@gostai.com>
398
399 Fix --help.
400 * src/getargs.c (usage): Fix help string for -W.
401
0213d651
AD
4022008-11-07 Akim Demaille <demaille@gostai.com>
403
404 Handle more general types of option arguments.
405 * build-aux/cross-options.pl: The argument ends at the first
406 space, not the first non-symbol character.
407 Use @var for each word appearing the argument description.
408
c19178bf
JD
4092009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
410
411 Remove spurious initial empty lines.
412 * data/location.cc: End the @output lines with an @.
413
0d2b2ab0
AD
4142008-11-04 Akim Demaille <demaille@gostai.com>
415
416 Remove spurious initial empty lines.
417 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
418 * data/yacc.c: End the @output lines with an @.
419
8ba62e3e
JD
4202009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
421
422 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
423 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
424 requirements for a correct m4 are stricter.
425 * m4/m4.m4: Replace with Autoconf 2.63's m4/m4.m4.
426 * configure.ac: Update to use AC_PROG_GNU_M4.
427 Reported by Eric Blake.
428
5bc993d9
JD
4292009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
430
431 Help with updating web manual.
432 * HACKING: Incorporate instructions from gnulib/doc/README.
433 * bootstrap.conf (gnulib_modules): Add gendocs.
434
580c075d
JD
4352009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
436
437 Fix strange %define locations for default values.
438 Reported by Akim Demaille at
439 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
440 and discussed again starting at
441 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
442 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
443 because location information is bogus.
444 Use angle brackets to delimit fake file name because square brackets
445 look like underexpanded m4. Choose a better fake file name.
446 Use negative line numbers.
447 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
448 * src/location.c (location_print): If line for a boundary is negative,
449 only print that boundary's file name.
450 * src/location.h: Document that.
451 * tests/skeletons.at (%define Boolean variables: invalid skeleton
452 defaults): Update output.
453
5d3a1ecb
AD
4542008-11-07 Akim Demaille <demaille@gostai.com>
455
456 Locations without columns for command line arguments.
457 * src/location.c (location_print): Don't display negative columns.
458 * src/location.h: Document this.
459
015e86a7
JD
4602009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
461
462 Add reminder about uploading public key to keys.gnupg.net.
463 * HACKING (Release Procedure): Here.
464
c1455bab
AD
4652009-03-31 Akim Demaille <demaille@gostai.com>
466
467 bootstrap: --help to stdout.
468 * bootstrap (usage): Don't send --help to stderr.
469 Use a here doc instead of a long string.
470
2075a82a
AD
4712009-03-31 Akim Demaille <demaille@gostai.com>
472
473 bootstrap: README-hacking no longer exists
474 * bootstrap (checkout_only_file): Set to HACKING.
475
26fccd4d
AD
4762009-03-26 Akim Demaille <demaille@gostai.com>
477
478 doc: merge HACKING and README-hacking.
479 Two files is confusing.
480 Reported by Alexandre Duret-Lutz.
5bc993d9 481
26fccd4d
AD
482 * README-hacking: Merge into...
483 * HACKING (Working from the repository): here.
484
6469c4d7
AD
4852009-03-26 Akim Demaille <demaille@gostai.com>
486
487 doc: update README-hacking.
488 * README-hacking: We now use git and git submodules.
489 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
490
b328890a
AD
4912009-03-26 Akim Demaille <demaille@gostai.com>
492
493 lalr1.cc: avoid GCC 4.3 warnings.
494 GCC 4.3 now warns about "a || b && c" and asks for explicit
495 parentheses.
496 Reported by Alexandre Duret-Lutz.
497 * data/location.cc: Update copyright years.
498 (Position::operator==): Use parens to make precedence explicit.
499 Compare lines and columns first, as they are more likely to be
500 different, and they are faster to compare.
501
f3079439
AD
5022009-03-26 Akim Demaille <demaille@gostai.com>
503
504 gnulib: update.
505 * gnulib: Update to latest.
506 * lib/Makefile.am (AM_CPPFLAGS): It is now defined by gnulib, so
507 use +=.
508
8defe11b
AD
5092009-01-08 Akim Demaille <demaille@gostai.com>
510
511 Fix grep portability issues.
512 Grep on Solaris does not support -q.
513 Reported by Summum Bonum.
5bc993d9 514
8defe11b
AD
515 * NEWS: Add a stub for 2.4.2.
516 * THANKS: Add Summum Bonum.
517 * tests/atlocal.in (EGREP): New.
518 (CC, CXX, XSLTPROC): Make it possible to override them via
519 envvars.
520 * tests/java.at: Use $EGREP instead of egrep.
521 Use AT_CHECK's ignore instead of grep's -q.
522
41930e7a
JD
5232008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
524
525 Version 2.4.1.
526 * NEWS: Set version and date.
527 * lib/Makefile.am: Update copyright year.
528 * tests/atlocal.in: Update copyright year.
529
d07932ef
JD
5302008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
531
532 Semicolon feature removal is not about future language support.
533 * NEWS: The semicolon feature is no longer active for newer languages,
534 so don't claim that it causes trouble for them.
535
0364b334
JD
5362008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
537
538 * gnulib: Update submodule to HEAD.
539
876fd835
AD
5402008-12-09 Akim Demaille <demaille@gostai.com>
541
542 Update data/README.
543 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
544
bee1df15
EB
5452008-12-05 Eric Blake <ebb9@byu.net>
546
547 Build testsuite with newer autoconf.
548 * tests/output.at (m4_expand): Don't override in newer autoconf,
549 where the underlying implementation changed.
550 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
551 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
552 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
553 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
554 since some of them contain unbalanced ')'.
555
7e6d1e22
JD
5562008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
557
558 * NEWS: Clarify a little.
559
a957d06c
JD
5602008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
561
562 * NEWS: Update for recent changes.
563
462503f8
JD
5642008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
565
566 Fix unexpanded macros in GLR defines file.
567 Reported by Csaba Raduly at
568 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
569 * THANKS (Csaba Raduly): Add.
570 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
571 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
572 lexer in a separate module that includes the defines file.
573 (AT_CHECK_CALC): Use AT_FULL_COMPILE and request compilation of lexer
574 source.
575 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
576 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
577 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
578 (AT_DATA_SOURCE_PROLOGUE): New.
579 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
580 (AT_DATA_SOURCE): New.
581 (AT_FULL_COMPILE): New, copied from master branch and extended to
582 support an additional source file.
583
bf151b75
JD
5842008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
585
586 Don't let maintainer-*-check targets force a version update.
587 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
588 handled.
589
f56274a8
DJ
5902008-11-17 Di-an Jan <dianj@freeshell.org>
591
592 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
593 Align menus. Adjust word wrapping. Use node names for menu names.
594 (Examples): Don't abbreviate node names.
595 (LocalWords): Remove abbreviations.
596 (Copying): Make description a sentence.
bf151b75 597 (Java Action Features): Remove period to match the rest of menu.
f56274a8 598
b5775a81
PB
5992008-11-11 Paolo Bonzini <bonzini@gnu.org>
600
601 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
602 * configure.ac: Adjust usage.
603 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
604 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
605 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
606
7ed73f82
JD
6072008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
608
609 Don't add a semicolon to actions for %skeleton or %language.
610 It breaks Java test cases as reported by Akim Demaille.
611 * src/scan-code.l: Implement.
612
4b1ebc49
JD
6132008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
614
615 Clean up %skeleton and %language priority implementation.
616 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
617 remove static qualifier because others will soon need to see it.
618 (language_prio): Likewise.
619 (getargs): Use command_line_prio rather than 0.
620 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
621 enum fields.
622 (skeleton_prio): Extern it.
623 (language_prio): Extern it.
624 * src/parse-gram.y: Use grammar_prio rather than 1.
625
738cde3e
AD
6262008-11-04 Akim Demaille <demaille@gostai.com>
627
628 * NEWS: Mention the trailing semicolon in action.
629
d6fb461d
AD
6302008-11-04 Akim Demaille <demaille@gostai.com>
631
632 Reformat NEWS.
633 * NEWS: Use more outline-mode markup.
634 Suggested by Jim Meyering.
635
14da0cdd
JD
6362008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
637
638 Fix user actions without a trailing semicolon.
639 Reported by Sergei Steshenko at
640 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
641 * THANKS (Sergei Steshenko): Add.
642 * src/scan-code.l (SC_RULE_ACTION): Fix it.
643 * tests/regression.at (Fix user actions without a trailing semicolon):
644 New test case.
645
c9ba9e59
JD
6462008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
647
648 Initiate further development.
649 * NEWS: Create an empty section for new entries.
650 * gnulib: Update submodule to HEAD.
651
bfb40910
JD
6522008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
653
654 * NEWS: Version 2.4.
655
241fda7a
JD
6562008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
657
658 Prepare for next release.
659 * NEWS: Briefly mention changes since 2.3b.
660 * README: Say GNU m4 1.4.6, which we've been requiring in release
661 announcements already, not 1.4.3, which breaks the build.
662
ed4d67dc
JD
6632008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
664
665 Say %language is experimental.
666 We're thinking of extending it's effect on output file naming. See the
667 thread at
668 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
669 * NEWS: Say it's experimental.
670 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
671 recommend it over %skeleton for now.
672 (Bison Options): Likewise.
673 (C++ Bison Interface): Use %skeleton not %language.
674 (Calc++ Parser): Use %skeleton not %language.
675 * src/getargs.c (usage): Say it's experimental.
676
e254a580
DJ
6772008-11-01 Di-an Jan <dianj@freeshell.org>
678 Paolo Bonzini <bonzini@gnu.org>
679
680 Support all Java parser class modifiers.
681 * data/java.m4 (b4_percent_define_get3): New.
682 (b4_final_if, b4_strictfp_if): New.
683 * data/lalr1.java (final, strictfp, extends, implements): Support.
684 * doc/bison.texinfo (final, strictfp, extends, implements): Add
685 documentation.
686 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
687 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
688 (AT_CHECK_JAVA_GREP): New.
689 (Java parser class modifiers): New test.
690 (Java parser class extends and implements): New test.
691
692 Model exception propagation better with throws and lex_throws.
693 * data/java.m4 (b4_list2): New.
694 (throws): Change default.
695 * data/lalr1.java (yyaction): Add throws.
696 (parse): Add lex_throws in addition to throws.
697 * doc/bison.texinfo (throws, lex_throws): Add documentation.
698 * tests/java.at (Java throws specifications): New test.
699
700 Improve documentation for Java parsers.
701 * doc/bison.texinfo (Java Parsers): Add subsections.
702 Don't quote first argument of %define.
703 (Java Bison Interface): Document output files. Move documentation
704 of parser class and merge into Java Parser Interface. Document
705 features that error out. Document directives with no effect.
706 Move note about Javadoc higher.
707 (Java Semantic Values): Explicitly mention stype.
708 Document that generic types cannot be used.
709 (Java Location Values): Use @deftypeivar. Document constructors.
710 Correct return value for toString.
711 (Java Parser Interface): List undocumented constants/fields.
712 Move documentation of fields added by %parse-param closer to list
713 of members. Document that token names are added as fields.
714 Document constructors accurately. Remove error method.
715 (Java Scanner Interface): Move note on %pure-parser to Java Bison
716 Interface. Describe %code lexer and yylex accutately.
717 Remove documentation that does not match the code.
718 (Java Action Features): New.
719 (Java Differences): Add reference. Add item on semantic values.
720 Add note about @{ ... @}. Clarify %% epilogue placement.
721 (Java Declarations Summary): New.
722
723 Fix Java skeleton.
724 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
725 (b4_remove_comma): Quote test argument.
726 (b4_identification): Remove "bison" field.
727 * tests/java.at (Java parser class and package names): New test.
728 (Java %parse-param and %lex-param): New test.
729 (Java stype, position_class and location_class): New test.
730
f259e4e6
PB
7312008-10-31 Di-an Jan <dianj@freeshell.org>
732
733 * data/lalr1.jave: Update copyright years.
734 (YYParser): Correct name of "generated from" file in Javadoc:
735 use b4_file_name instead of @ofile@.
736 (Location constructor): Correct Javadoc parameter name.
737 (yylloc): Add missing opening m4 quote after b4_location_if.
738 This removes a stray [ in the Javadoc of Lexer.getStartPos.
739 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
740 (YYParser constructor): Correct Javadoc parameter name.
741
cae5057f
JD
7422008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
743
744 Always put auxiliary code files in the same dir as other output files.
745 * src/files.c (compute_file_name_parts): When the user specifies
746 --output but not --file-prefix, extract the directory prefix from the
747 file prefix not from the grammar file name. This affects the location
748 of files like location.hh generated by the C++ skeleton. The includes
749 in the other output files require this fix.
750 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
751 for expected output files.
752 (Output files): Add a test for the above.
753
4af432ba
JD
7542008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
755
756 * gnulib: Update submodule to HEAD.
757
e26d4e43
JD
7582008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
759
760 Update copyright year.
761 * src/files.c: Here.
762
c0ee9e21
DJ
7632008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
764
765 Don't overwrite the input file.
766 * src/files.c (output_file_name_check): Fatal error if using input file
767 for output.
768 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
769 argument.
770 (Conflicting output files): Add test.
771
482dc52f
AD
7722008-10-28 Akim Demaille <demaille@gostai.com>
773
774 Space changes.
775 * data/lalr1.cc: Formatting changes.
776
52cbbe84
AD
7772008-10-28 Akim Demaille <demaille@gostai.com>
778
779 Don't define debugging functions when !YYDEBUG.
780 * data/lalr1.cc (debug_stream, set_debug_stream)
781 (debug_level_type, debug_level, set_debug_level): Don't
782 declare them when YYDEBUG is not defined.
783 The implementation are already YYDEBUG-aware.
784
0925d5bf
AD
7852008-10-28 Akim Demaille <demaille@gostai.com>
786
787 Prefer "continue" for empty loop bodies.
788 * etc/bench.pl.in: Use "continue" instead of {}.
789
cf98343c
AD
7902008-10-28 Akim Demaille <demaille@gostai.com>
791
792 Space and comments changes.
793 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
794 * data/c.m4, data/lalr1.cc: Space changes.
795
9f467b7d
AD
7962008-10-28 Akim Demaille <demaille@gostai.com>
797
798 Make gnulib a submodule.
799 * gnulib: New.
800 * .gitmodules (gnulib): New.
801
0f0e1ace
JD
8022008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
803
804 Fix yyerror_range for user-defined location type in C++. Reported by
805 Georg Sauthoff at
806 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
807 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
808 * THANKS (Georg Sauthoff): Add.
809
548e2104
JD
8102008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
811
812 Update several administrative files mainly to facilitate releasing.
813 * HACKING (Administrivia): Make the git-merge-changelog notes more
814 helpful.
815 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
816 (Release Procedure): Update for git and add numerous details that were
817 previously missing.
818 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
819 * maint.mk (announcement): Don't list bison as a bootstrap tool so
820 that announcements don't claim we bootstrapped with whatever bison
821 happened to be in PATH. Add flex as a bootstrap tool.
822 * Makefile.maint: Remove, previously replaced by maint.mk.
823 * Makefile.cfg: Remove, and migrate settings to...
824 * cfg.mk: ... here for the sake of `make announcement'.
825 * bootstrap.conf (gnulib_modules): Add announce-gen.
826 * README: Say GNU Bison instead of just Bison. Suggested by Karl
827 Berry.
828
ddf17a6e
PB
8292008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
830
831 Small but important bugfixes for the Java skeleton.
832 * data/lalr1.java (yyerror): Change Location to b4_location_type.
833 (yy_symbol_print): Call toString on yyvaluep.
834
e1145ad8
AD
8352008-08-29 Akim Demaille <demaille@gostai.com>
836
837 Clarify UPDATED use.
bee1df15 838 * doc/bison.texinfo: It refers to the last edition of this file,
e1145ad8 839 not to the release date of Bison.
bee1df15 840 Reported by Joel E. Denny.
e1145ad8 841
0df72d78
AD
8422008-08-29 Akim Demaille <demaille@gostai.com>
843
844 * README: Update FAQ pointer.
845 Reported by Joel E. Denny.
846
9a90b6bb
EB
8472008-08-27 Eric Blake <ebb9@byu.net>
848
849 Resync m4sugar from autoconf.
850 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
851 (m4_init): Adjust to latest m4.git changes.
852 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
853 effects.
854 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
855 (_m4_list_cmp): Reduce side effects.
856
65015668
AD
8572008-08-27 Akim Demaille <demaille@gostai.com>
858
859 Check yyerrok in calc.at.
bee1df15
EB
860 * tests/calc.at (calc.y): Use yyerrok on "( error )".
861 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
862 expected.
65015668 863
98e26a92
AD
8642008-08-27 Akim Demaille <demaille@gostai.com>
865
866 Support yyerrok in lalr1.cc.
867 YYBACKUP is still to import back into lalr1.cc.
bee1df15 868 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
98e26a92 869
86c0e784
JD
8702008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
871
872 For maintainer-check*, don't recompile for a $(VERSION) update.
873 * cfg.mk: New file.
874 (_is-dist-target): Override the one in GNUmakefile.
875 * Makefile.am (EXTRA_DIST): Add cfg.mk.
876
88511166
JD
8772008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
878
879 Update for recent change to gnulib.
880 * src/parse-gram.y: Don't include strverscmp.h. It comes from
881 string.h now.
882
6bbb2ed5
EB
8832008-08-15 Eric Blake <ebb9@byu.net>
884
d67c52e8
EB
885 Remaining m4sugar merge from autoconf.
886 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
887 * data/m4sugar/foreach.m4: New file, copied from autoconf.
888 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
889 * src/output.c (output_skeleton): Tell m4 how to find it.
890
6bbb2ed5
EB
891 Partial m4sugar merge from autoconf: m4_map.
892 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
893 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
894 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
895 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
896 for empty list.
897 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
898 Likewise.
899 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
900 declares it.
901
8dce3875
JD
9022008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
903
904 Keep .version and PACKAGE_VERSION in sync.
905 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
906 dependency, and add comments justifying this in more detail. Discussed
907 starting at
908 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
909
882a1fbf
EB
9102008-08-06 Eric Blake <ebb9@byu.net>
911
a3764451
EB
912 Partial m4sugar merge from autoconf: m4_shiftn.
913 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
914 (m4_shift2, m4_shift3): New macros.
915 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
916 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
917 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
918 * data/java.m4 (b4_remove_comma): Likewise.
919
882a1fbf
EB
920 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
921 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
922 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
923 (m4_init): Consolidate wrapped text into single m4_wrap.
924 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
925 in wrapped text.
926
a30e920d
EB
9272008-08-05 Eric Blake <ebb9@byu.net>
928
dfcc5959
EB
929 Partial m4sugar merge from autoconf: builtins, version.m4.
930 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
931 (m4_prepend): Remove, as it is unused and inherently quadratic,
932 whereas m4_append is linear in newer m4.
933 (m4_mkstemp): New builtin.
934 (m4_symbols): Make rename conditional.
935 (m4_version_prereq): Ensure fatal error if used in bison, which
936 intentionally lacks version.m4.
937
a30e920d
EB
938 Fix comments in m4sugar.
939 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
940
445b7470
JD
9412008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
942
943 Update for recent .gitignore fix in Gnulib.
944 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
945 anchored .gitignore entries.
946
a1e50014
JD
9472008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
948
949 Set gnu or gnits strictness.
950 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
951 development and gnits strictness for releases. Based on Eric Blake's
952 suggestion at
953 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
954
d43f77e7
PB
9552008-07-31 Paolo Bonzini <bonzini@gnu.org>
956
957 * NEWS: Clarify documentation of %language.
958
fee2ed87
PB
9592008-07-31 Paolo Bonzini <bonzini@gnu.org>
960
961 Support usage of git-merge-changelog.
962 * .gitattributes: New.
963 * HACKING: Document usage of git-merge-changelog.
964 * bootstrap: Install git-merge-changelog entries in .git/config
965 if appropriate.
966
78029cd5
JD
9672008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
968
969 Remove remaining dependence on CVS Id keyword.
970 * ChangeLog: For the sake of people still using CVS, don't use dollars
971 when mentioning Id.
972 * data/xslt/bison.xsl: Remove Id from header comments, where it was
973 unusual anyway.
974 * data/xslt/xml2dot.xsl: Likewise.
975 * data/xslt/xml2text.xsl: Likewise.
976 * data/xslt/xml2xhtml.xsl: Likewise.
977 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
978 * doc/Makefile.am (neutralize): Remove, no longer needed.
979 (.x.1): Don't use neutralize.
980 (edit): Don't substitute for ID.
981 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
982
c53d18b1
JD
9832008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
984
985 Fix dependence on computed configure variables.
986 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
987 $(top_srcdir)/configure.ac so that changes to computed variables, such
988 as PACKAGE_VERSION, are seen.
989 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
990
5523ac79
JD
9912008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
992
993 Update copyright dates for recent changes.
994 * Makefile.am: Here.
995 * src/Makefile.am: Here.
996 * src/reduce.c: Here.
997 * tests/reduce.at: Here.
998
8fa36911
JD
9992008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
1000
1001 Use git-version-gen for version names between releases.
1002 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
1003 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
1004 * .prev-version: New.
1005 * .version.in: Remove.
78029cd5 1006 * ChangeLog: Remove the Id previously used for capturing the CVS
8fa36911
JD
1007 revision.
1008 * GNUmakefile: Remove, now copied from Gnulib.
1009 * Makefile.am: Add code suggested by comments in
1010 build-aux/git-version-gen.
1011 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
1012 .prev-version, and .version.
1013 * NEWS (2.3b+): Rename to...
1014 (?.?): ... this because we're dropping the "+" version naming scheme,
1015 but, in general, we still can't be sure of our next release name.
1016 * bootstrap: Add a quick hack to remove from .gitignore the
1017 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
1018 entry. This should really be fixed in gnulib instead.
1019 * bootstrap.conf (gnulib_modules): Add gnumakefile.
1020 * configure.ac (AC_INIT): Set version name by invoking
1021 build-aux/git-version-gen.
1022 (AC_CONFIG_FILES): Remove .version, now generated by
1023 build-aux/git-version-gen.
1024 * maint.mk: New, copied from coreutils.
1025 * doc/.cvsignore (bison.1): Add.
1026 * doc/.gitignore (/bison.1): Add.
1027 * doc/bison.1: Remove, generated.
1028 * src/.cvsignore (revision.c): Remove.
1029 * src/.gitignore (/revision.c): Remove.
1030 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
1031 (BUILT_SOURCES): Remove revision.c.
1032 (revision.c): Remove.
1033 * src/getargs.c (version): Don't print revision after the VERSION.
1034 * src/revision.h: Remove.
1035
bcf07cb7
JD
10362008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
1037
1038 Fix untranslatable composition of sentences. Reported by Goran
1039 Uddeborg at
1040 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
1041 * THANKS (Goran Uddeborg): Add.
1042 * src/reduce.c (reduce_print): Report the number of nonterminals and
1043 rules useless in the grammar in separate sentences.
1044 * tests/reduce.at (Useless Rules): Update output.
1045 (Reduced Automaton): Likewise.
1046 (Underivable Rules): Likewise.
1047 (Empty Language): Likewise.
1048
9aacab9a
JD
10492008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1050
1051 Fix some .gitignore and .cvsignore problems.
1052 * bootstrap (insert_sorted_if_absent): Replace all uses with...
1053 (insert_vc_ignore): ... this new function, which prepends `/' to all
1054 .gitignore entries before passing them to insert_sorted_if_absent.
1055 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
1056 .cvsignore files are maintained even though Bison developers run
1057 bootstrap while using Git.
1058 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
1059 unneeded by Bison.
1060 (gnulib): Add.
1061 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
1062 unneeded. Reported by Eric Blake.
1063 * lib/.gitignore (/*~): Add.
1064 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
1065 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
1066 Blake.
1067 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
1068
a9fc7990
JD
10692008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1070
1071 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
1072 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
1073 * bootstrap.conf (gnulib_modules): Add unsetenv.
1074 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
1075 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
1076 (/setenv.m4): Add.
1077 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
1078 the first argument because it may become position-dependent, and unset
1079 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
1080 Add comments explaining these issues in more detail.
1081
0f1d6f10
JD
10822008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
1083
1084 Add .gitignore everywhere based on .cvsignore.
1085 * .gitignore: New.
1086 * build-aux/.gitignore: New.
1087 * data/.gitignore: New.
1088 * doc/.gitignore: New.
1089 * etc/.gitignore: New.
1090 * examples/.gitignore: New.
1091 * examples/calc++/.gitignore: New.
1092 * lib/.gitignore: New.
1093 * m4/.gitignore: New.
1094 * po/.gitignore: New.
1095 * runtime-po/.gitignore: New.
1096 * src/.gitignore: New.
1097 * tests/.gitignore: New.
1098
7bd1665a
JD
10992008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1100
1101 * NEWS (2.3b+): New section, empty for now.
1102 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
1103
72c5b982
JD
11042008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1105
1106 * NEWS (2.3b): Update release date since there has been a delay in
1107 getting the announcements and tarballs out.
1108
bd02cd5d
JD
11092008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1110
1111 * NEWS: Version 2.3b.
1112 * configure.ac (AC_INIT): Likewise.
1113 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
1114
9126263e
JD
11152008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1116
1117 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
1118 been doing it for years.
1119 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
1120 (Release Procedure): Add FIXME about make alpha being unmaintained.
1121
fa6aa7b3
JD
11222008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
1123
1124 * data/yacc.c: Reformat m4 a little for readability.
1125 * src/lalr.c (build_relations): Correct comment.
1126
d30b312d
JMG
11272008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1128
1129 DJGPP specific issue.
1130 * djgpp/config.sed: Fixes required to run configure scripts generated
1131 by autoconf 2.62.
1132
138d4cd9
JD
11332008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
1134
1135 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
1136 coordinator@translationproject.org.
1137
8f7e2e1f
JD
11382008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
1139
1140 * THANKS: Add Eric Blake.
1141
f55efa38
JD
11422008-04-23 Eric Blake <ebb9@byu.net>
1143
1144 Revert prior patch, by working around autoconf regression.
1145 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
1146 ("Output file name: ("): Uncomment test.
1147 ("Output file name: )"): Likewise.
1148 Based on an idea from Noah Misch.
1149
096c9f9d
JD
11502008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1151
1152 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
1153 2.61. Reported by Juan Manuel Guerrero at
1154 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
1155 * tests/output.at ("Output file name: ("): Comment out test case for
1156 now.
1157 ("Output file name: )"): Likewise.
1158
0f664b89
JD
11592008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1160
1161 * GNUmakefile: Update git-version-gen invocation so make dist
1162 succeeds.
1163
1cfe6375
JD
11642008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1165
1166 Update to the current gnulib CVS repository, and fix trigraph handling
1167 in Bison.
1168 * bootstrap: Update gnulib CVS repository URL.
1169 (symlink_to_dir): Encapsulate the code that guarantees the destination
1170 directory exists into...
1171 (check_dst_dir): ... this new function, and...
1172 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
1173 fail when copying files into lib/uniwidth/.
1174 * src/output.c (prepare_symbols): When writing yytname muscles, where
1175 symbol names will be encoded in C-string literals, tell quotearg to
1176 escape trigraphs. This used to be the default in gnulib.
1177 * tests/regression.at (Token definitions): Because of the change in
1178 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
1179 escapes trigraphs in symbol names. Thus, yytname no longer has
1180 trigraphs unnecessarily doubly escaped. Update test case output.
1181 Extend test case to be sure Bison's own error messages will no longer
1182 have trigraphs in symbol names unnecessarily escaped once.
1183
74c52fc8
JD
11842008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1185
1186 Fix make dist infinite loop reported by Juan Manuel Guerrero at
1187 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
1188 * .cvsignore: Add .version.
1189 * .version.in: New.
1190 * bootstrap.conf (gnulib_modules): Add git-version-gen.
1191 * configure.ac (AC_CONFIG_FILES): Add .version.
1192 * build-aux/.cvsignore: Add git-version-gen.
1193
8e55b3aa
JD
11942008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
1195
1196 * NEWS (2.3a+): Mention that -g now takes an argument.
1197 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
1198 consistency. Update the -g and -x entries now that they take
1199 arguments. Use brackets to indicate optional arguments.
1200 * src/getargs.c (usage): Explain the relationship between arguments of
1201 long and short options more completely. Document --defines and -d
1202 separately since the former takes an argument but, for POSIX Yacc, the
1203 latter does not.
1204 (short_options): Let -W take an optional argument like --warnings.
8452fdd9 1205 (getargs): Sort cases.
8e55b3aa 1206
59c5ac72
AD
12072008-02-28 Akim Demaille <demaille@gostai.com>
1208
1209 * doc/bison.texinfo: Fix a few typos.
1210
118d4978
AD
12112008-02-28 Akim Demaille <akim@epita.fr>
1212
1213 * doc/bison.texinfo (Bison Options): Document -W.
1214 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
1215
7020f1e9
AD
12162008-02-28 Akim Demaille <akim@epita.fr>
1217
1218 * src/getargs.c (short_options): Split and sort for readability.
1219 -g and -x take optional arguments, just like their long options.
1220 * build-aux/cross-options.pl: Use /x to make the regexp easier to
1221 understand.
1222 Fix the handling of $opt which resulted in all the argument to be
1223 considered as optional.
1224
59da312b
JD
12252008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
1226
1227 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
1228 say its interface is experimental.
1229 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
1230 Java.
1231 (Bison Options): In the -L and --language entry, mention Java.
1232 (Java Bison Interface): Say the interface is experimental.
1233 * src/getargs.c (usage): Mention -L and --language.
1234
1235 * NEWS (2.3a+): Say the push parsing interface is experimental.
1236 * doc/bison.texinfo (Push Decl): Likewise.
1237 (Decl Summary): Likewise in the "%define api.push_pull" entry.
1238 (Push Parser Function): Likewise.
1239 (Pull Parser Function): Likewise.
1240 (Parser Create Function): Likewise.
1241 (Parser Delete Function): Likewise.
1242 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
1243 yypull_parse, and yypush_parse entries.
1244
1245 * NEWS (2.3a+): Mention XML support, and say the schema is
1246 experimental.
1247 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
1248 * src/getargs.c (usage): Say the XML schema is experimental.
1249
1250 * NEWS (2.3a+): Say option instead of flag.
1251
2bb3ebec
WP
12522008-02-21 Wojciech Polak <polak@gnu.org>
1253
1254 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
1255 text.
1256
333e670c
JD
12572008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
1258
1259 Fix impure push parser compile error reported by Bob Rossi at
1260 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
1261 * data/yacc.c: Clean up whitespace in the output a little.
1262 (yypstate_allocated): Define for impure push parsers regardless of
1263 whether the pull interface is also requested.
1264 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
1265 check impure push parsers without the pull interface.
1266
1267 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
1268 yyerror takes arguments specified by %parse-param while yypstate_new
1269 does not.
1270 * doc/bison.texinfo (Parser Create Function): Document that
1271 yypstate_new returns 0 for multiple impure parser instances.
1272 * tests/push.at (Push Parsing: Multiple impure instances): Update
1273 expected stderr output.
1274
798096e1
JD
12752008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
1276
1277 * runtime-po/POTFILES.in (push.c): Remove.
1278
9ca7f077
JD
12792008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
1280
1281 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
1282 * data/push.c: Rename to...
1283 * data/yacc.c: ... this, overwriting it.
1284 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
1285 `%push-pull-parser' -> `%define api.push_pull "both"'.
1286 Remove old yacc.c tests, and update push.c tests to yacc.c.
1287
42ee26bb
JD
12882008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
1289
1290 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
1291 `"%code top" blocks' instead of `%code "top" blocks'.
1292 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
1293 Clean up whitespace in the output a little.
1294
b1cc23c4
JD
12952008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
1296
1297 Fix documentation problems reported by Tim Josling at
1298 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
1299 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
1300 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
1301 integers. Explain the effect of literal string aliases on error
1302 messages. Copy token 0 documentation from the C++ skeleton
1303 documentation.
1304
ab7f29f8
JD
13052008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
1306
1307 Accept a token number in a %left, %right, or %nonassoc for POSIX
1308 conformance. Reported by Tim Josling at
1309 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
1310 * NEWS (2.3a+): Mention.
1311 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
1312 and code numbers are treated by precedence declarations.
1313 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
1314 of symbols.1.
1315 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
1316 of symbol.
1317 (symbol.prec): New, just like symbol but allows INT.
1318 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
1319 longer holds.
1320 * tests/regression.at (Token number in precedence declaration): New
1321 test case.
1322
a924ef36
JMG
13232008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1324
1325 DJGPP specific issues.
1326 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
1327 be changed. Copyright timestamp adjusted.
1328 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
1329 be changed. Copyright timestamp adjusted.
1330 * djgpp/config.site: Copyright timestamp adjusted.
1331 * djgpp/config_h.sed: Copyright timestamp adjusted.
1332 * djgpp/djunpack.bat: Copyright timestamp adjusted.
1333 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
1334 filename translation list.
1335 * djgpp/subpipe.c (init_subpipe): Check the environment variables
1336 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
1337 files shall be created. Before trying to use the temp dir where the
1338 environment variable points to check that the dir really exists. If
1339 not default to the cwd as temp dir. Copyright timestamp adjusted.
1340 * djgpp/subpipe.h: Copyright timestamp adjusted.
1341 * djgpp/testsuite.sed: Copyright timestamp adjusted.
1342
389c8cfd
PE
13432008-01-30 Paul Eggert <eggert@cs.ucla.edu>
1344
1345 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
1346
5d1cfef4
PE
13472008-01-09 Paul Eggert <eggert@cs.ucla.edu>
1348
1349 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
1350 Problem reported by Claudio Saavedra in
1351 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
1352
e2dcf996
WP
13532008-01-05 Wojciech Polak <polak@gnu.org>
1354
1355 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
1356 document's title with the input grammar file name.
1357
da730230
JD
13582007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
1359
1360 Automate regression testing of the XML/XSLT implementation. Discussed
1361 starting at
1362 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
1363 * configure.ac (XSLTPROC): New substitution.
1364 * Makefile.am (maintainer-xml-check): New phony target invoking...
1365 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
1366 invoking make maintainer-check with BISON_TEST_XML=1.
1367 * tests/atlocal.in (XSLTPROC): New.
1368 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
1369 not to report reachable memory when Bison is expected to have a
1370 non-zero exit status and (2) to compare XML/XSLT output with --graph
1371 and --report=all output for every working grammar when
1372 BISON_TEST_XML=1.
1373 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
1374 (AT_BISON_CHECK_XML): New.
1375 (AT_QUELL_VALGRIND): New.
1376 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
1377 (AT_CHECK): ... don't redefine this since this was the old way to
1378 quell Valgrind.
1379 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
1380 AT_BISON_CHECK invocations.
1381 * tests/c++.at: Likewise.
1382 * tests/calc.at: Likewise.
1383 * tests/conflicts.at: Likewise.
1384 * tests/cxx-type.at: Likewise.
1385 * tests/existing.at: Likewise.
1386 * tests/glr-regression.at: Likewise.
1387 * tests/headers.at: Likewise.
1388 * tests/input.at: Likewise.
1389 * tests/java.at: Likewise.
1390 * tests/output.at: Likewise.
1391 * tests/push.at: Likewise.
1392 * tests/reduce.at: Likewise.
1393 * tests/regression.at: Likewise.
1394 * tests/sets.at: Likewise.
1395 * tests/skeletons.at: Likewise.
1396 * tests/synclines.at: Likewise.
1397 * tests/torture.at: Likewise.
1398 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
1399 tends to hang xsltproc.
1400 (Big horizontal): Likewise.
1401
408476bc
JD
14022007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
1403
1404 In XML output, remove redundant class attribute on symbol element.
1405 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
1406 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
1407 look up a symbol to determine whether it's a nonterminal or terminal.
1408 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
1409 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
1410
1411 Add prec/assoc information to XML output.
1412 * src/gram.c (grammar_rules_print_xml): For each rule that has a
1413 %prec, add a percent_prec attribute.
1414 * src/print-xml.c (print_grammar): For each terminal that has a
1415 precedence or associativity, add a prec or assoc attribute.
1416 (xml_indent): New.
1417 (xml_puts): Use xml_indent.
1418 (xml_printf): Use xml_indent.
1419 * src/print-xml.h (xml_indent): Prototype.
1420
1421 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
1422 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
1423
d4a26c48
JD
14242007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
1425
1426 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
1427 (bison:ruleByNumber): ... this for clarity.
1428 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
1429 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
1430 (xsl:template match="reduction"): Update.
1431 (xsl:template match="item"): Update.
1432 (xsl:template match="reduction"): Update.
1433
1434 In the XML output, don't print the list of rules where symbols appear.
1435 Compute it in XSLT instead. Discussed at
1436 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
1437 * data/xslt/bison.xsl (bison:ruleByLhs): New.
1438 (bison:ruleByRhs): New.
1439 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
1440 bison:ruleByRhs.
1441 (xsl:template match="terminal/rule"): Remove.
1442 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
1443 bison:ruleByRhs.
1444 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
1445 Remove.
1446 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
1447 bison:ruleByRhs and mode="number-link" for rule template.
1448 (xsl:template match="terminal/rule"): Remove.
1449 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
1450 bison:ruleByRhs and mode="number-link" for rule template.
1451 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
1452 Rewrite as...
1453 (xsl:template match="rule" mode="number-link"): ... this.
1454 * src/print-xml.c (print_grammar): Don't print the list of rules.
1455
ef1b4273
JD
14562007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
1457
1458 Don't let --report affect XML output; always print all information.
1459 Discussed at
1460 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
1461 * src/conflicts.c (log_resolution): Implement.
1462 * src/print-xml.c (print_core): Implement.
1463 (print_state): Implement.
1464 (print_xml): Implement.
1465
1466 * NEWS (2.3a+): Fix quotes.
1467 * src/parse-gram.y (prologue_declaration): For consistency with -v,
1468 don't let %verbose clear the list specified by --report.
1469
0f6cd9e3
AD
14702007-11-26 Akim Demaille <akim@epita.fr>
1471
1472 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
1473
d80fb37a
JD
14742007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
1475
1476 In the XML output, list useless and unused symbols and rules with the
1477 useful ones and add a "usefulness" attribute. Discussed starting at
1478 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
1479 * src/gram.c (grammar_rules_partial_print_xml): Remove.
1480 (grammar_rules_print_xml): Print all rules instead of just those
1481 useful in the grammar, and add a "usefulness" attribute.
1482 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
1483 * src/print-xml.c (print_rules_useless_in_parser): Remove.
1484 (print_grammar): Print all nonterminals instead of just useful ones,
1485 and add a "usefulness" attribute to nonterminals and terminals.
1486 (print_xml): Don't print a separate "reductions" or
1487 "rules-useless-in-parser" element.
1488 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
1489 (reduce_xml): Remove.
1490 (reduce_token_unused_in_grammar): New.
1491 (reduce_nonterminal_useless_in_grammar): New.
1492 * src/reduce.h (reduce_xml): Remove prototype.
1493 (reduce_token_unused_in_grammar): Add prototype.
1494 (reduce_nonterminal_useless_in_grammar): Add prototype.
1495 * data/xslt/xml2text.xsl: Update for XML changes.
1496 * data/xslt/xml2xhtml.xsl: Update for XML changes.
1497 * tests/reduce.at (Useless Terminals): Update output.
1498 (Useless Rules): Update output.
1499 (Reduced Automaton): Update output.
1500
1501 Say "Terminals unused in grammar" instead of "Unused terminals".
1502 * NEWS (2.3a+): Update.
1503 * doc/bison.texinfo (Understanding): Update example output.
1504 * src/reduce.c (reduce_output): Implement.
1505 * data/xslt/xml2text.xsl: Implement.
1506 * data/xslt/xml2xhtml.xsl: Implement.
1507
1bb2bd75
JD
15082007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
1509
1510 Accept --report-file=FILE to override the default `.output' filename.
1511 * NEWS (2.3a+): Mention.
1512 * doc/bison.texinfo (Bison Options): Add an entry.
1513 * src/files.c (compute_output_file_names): Don't override
1514 spec_verbose_file if already set.
1515 * src/getargs.c (usage): Document --report-file.
1516 (REPORT_FILE_OPTION): New anonymous enum member.
1517 (long_options): Add entry for it.
1518 (getargs): Add case for it setting spec_verbose_file.
1519
1520 * build-aux/cross-options.pl: Don't record a short option just because
1521 there's an arg.
1522 * doc/.cvsignore: Add yacc.1.
1523
a005a9c4
AD
15242007-11-14 Akim Demaille <akim@epita.fr>
1525
1526 * doc/yacc.1.in: New.
1527 * configure.ac, doc/Makefile.am: Adjust.
1528 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
1529 config.h symbol.
1530 Use AC_SUBST for assignments too.
1531 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
1532
cff03fb2
JD
15332007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
1534
1535 * src/gram.c: Remove comments that duplicate comments in gram.h.
1536
1537 When reporting useless rules and nonterminals, say "useless in grammar"
1538 instead of "useless", and say "useless in parser" instead of "never
1539 reduced". Discussed starting at
1540 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
1541 * NEWS (2.3a+): Mention this change.
1542 * data/xslt/xml2text.xsl: Update output text and expected input XML
1543 element names to match changes below.
1544 * data/xslt/xml2xhtml.xsl: Likewise.
1545 (xsl:template match="bison-xml-report"): Add missing entry in Table of
1546 Contents: "Rules useless in parser due to conflicts".
1547 * doc/bison.texinfo (Decl Summary): Reword a little.
1548 (Understanding): Update example output for changes below.
1549 * src/gram.c: (rule_useful_p): Rename to...
1550 (rule_useful_in_grammar_p): ... this.
1551 (rule_useless_p): Rename to...
1552 (rule_useless_in_grammar_p): ... this.
1553 (rule_never_reduced_p): Rename to...
1554 (rule_useless_in_parser_p): ... this.
1555 (grammar_rules_print): Update for renames.
1556 (grammar_rules_print_xml): Update for renames.
1557 (grammar_rules_never_reduced_report): Rename to...
1558 (grammar_rules_useless_report): ... this since it is used for either
1559 kind of useless rule.
1560 * src/gram.h: Reword comments and update function names in prototypes.
1561 * src/main.c (main): Say "rule useless in parser due to conflicts".
1562 * src/print-xml.c (print_rules_never_reduced): Rename to...
1563 (print_rules_useless_in_parser): ... this, and rename output XML
1564 element "rules-never-reduced" to "rules-useless-in-parser".
1565 (print_xml): Update for rename.
1566 * src/print.c (print_results): Say "Rules useless in parser due to
1567 conflicts".
1568 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
1569 (nonterminals_reduce): Say "nonterminal useless in grammar".
1570 (reduce_output): Say "Nonterminals useless in grammar".
1571 Say "Rules useless in grammar".
1572 (reduce_xml): Rename output XML element "useless" to
1573 "useless-in-grammar".
1574 (reduce_print): Don't report the count of grammatically useless rules
1575 as "rules never reduced" just because %yacc is specified.
1576 In the correct report of this count, say nonterminal(s) and rule(s)
1577 "useless in grammar".
1578 * tests/conflicts.at (S/R in initial): Update expected output.
1579 (Defaulted Conflicted Reduction): Likewise.
1580 (Unreachable States After Conflict Resolution): Likewise.
1581 * tests/existing.at (GNU pic Grammar): Likewise.
1582 * tests/reduce.at (Useless Nonterminals): Likewise.
1583 (Useless Rules): Likewise.
1584 (Reduced Automaton): Likewise.
1585 (Underivable Rules): Likewise.
1586 (Empty Language): Likewise.
1587
66f0441d
JD
15882007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
1589
1590 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
1591 here document and before the EOF so that BSD's implementation of Bourne
1592 shell doesn't parse the delimiter as part of the here document.
1593 * doc/.cvsignore: Add cross-options.texi.
1594 * src/getargs.c (usage): Add a blank line after the warning categories.
1595
d0ee4105
PB
15962007-11-08 Paolo Bonzini <bonzini@gnu.org>
1597
1598 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
1599
e8b1fb9b
AD
16002007-11-05 Akim Demaille <akim@epita.fr>
1601
1602 Remove Id: from bison.1.
1603 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
1604 (perl -0777 -pi -e 's/\.PP\nId): New.
1605 (.x.1): Use it to ignore the version control revision.
1606
2f7a96b5
AD
16072007-11-05 Akim Demaille <demaille@gostai.com>
1608
1609 * build-aux/Makefile.am: Ship cross-options.pl.
1610 * doc/Makefile.am: Always refer to cross-options.texi with
1611 $(srcdir).
1612 (MAINTAINERCLEANFILES): Add it.
1613
f4101aa6
AD
16142007-11-04 Akim Demaille <demaille@gostai.com>
1615
1616 Generate the long/short option cross-table.
1617 * build-aux/cross-options.pl: New.
1618 * doc/Makefile.am (cross-options.texi): New.
1619 * doc/bison.texinfo: Use it.
1620
727a1401
AD
16212007-11-04 Akim Demaille <demaille@gostai.com>
1622
1623 Generate bison.1 using help2man.
1624 * doc/common.x, doc/bison.x: New.
1625 * doc/Makefile.am (bison.1, .x.1): New.
1626 The code is taken from autoconf-2.61/man/Makefile.am.
1627 * configure.ac: Look for help2man.
1628
6aeb9c57
AD
16292007-11-04 Akim Demaille <demaille@gostai.com>
1630
1631 Complete --help.
1632 * src/getargs.c (usage): Document -W, make it clear that -d,
1633 -g and -x have optional arguments.
1634
d7be4085
AD
16352007-11-04 Akim Demaille <demaille@gostai.com>
1636
1637 Find sha1sum when named gsha1sum.
1638 * bootstrap (find_tool): New.
1639 ($SHA1SUM): New.
1640
d9df47b6
JD
16412007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1642
1643 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
1644 at
1645 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
1646 * NEWS (2.3a+): Mention.
1647 * data/bison.m4 (b4_pure_if): Don't define it here.
1648 * data/c.m4 (b4_identification): Depend on individual skeletons to
1649 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
1650 values of the %define variables api.pure or api.push_pull. Define
1651 YYPURE, YYPUSH, and YYPULL accordingly.
1652 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
1653 glr.cc has already defined b4_pure_flag.
1654 * data/push.c: Define b4_pure_if based on `%define api.pure'.
1655 Remove YYPUSH and YYPULL since they're back in b4_identification again.
42ee26bb 1656 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
d9df47b6
JD
1657 * doc/bison.texinfo (Pure Decl): Update.
1658 (Push Decl): Update.
1659 (Decl Summary): Add api.pure to %define entry.
1660 In %pure-parser entry, say it's deprecated and reference %define.
1661 (Pure Calling): Update.
1662 (Error Reporting): Update.
1663 (C++ Scanner Interface): Update.
1664 (How Can I Reset the Parser): Update.
1665 (Table of Symbols): In %pure-parser entry, say it's deprecated and
1666 reference %define.
1667 * src/getargs.c (pure_parser): Remove global variable.
1668 * src/getargs.h (pure_parser): Remove extern.
1669 * src/output.c (prepare): Don't define pure_flag muscle.
1670 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
1671 wrapper around `%define api.pure'.
1672 * tests/calc.at (Simple LALR Calculator): Update.
1673 (Simple GLR Calculator): Update.
1674 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
1675 Update.
1676 (GLR: Resolve ambiguity, pure, locations): Update.
1677 (GLR: Merge conflicting parses, pure, no locations): Update.
1678 (GLR: Merge conflicting parses, pure, locations): Update.
1679 * tests/glr-regression.at (Uninitialized location when reporting
1680 ambiguity): Update
1681 * tests/input.at (Unused %define api.pure): New test case.
1682 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
1683 AT_PURE_IF and AT_PURE_AND_LOC_IF.
1684 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
1685
c373bf8b
JD
16862007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1687
1688 %define push_pull -> %define api.push_pull. Discussed starting at
1689 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
1690 * data/push.c: Expect the new name.
1691 * data/yacc.c: Likewise.
1692 * doc/bison.texinfo (Push Decl): Update.
1693 (Decl Summary): Update %define entry.
1694 (Push Parser Function): Update.
1695 (Pull Parser Function): Update.
1696 (Parser Create Function): Update.
1697 (Parser Delete Function): Update.
1698 * tests/calc.at (Simple LALR Calculator): Update.
1699 * tests/input.at (%define enum variables): Update.
1700 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
1701 (Push Parsing: Multiple impure instances): Update.
1702 (Push Parsing: Unsupported Skeletons): Update.
1703 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
1704 (Exploding the Stack Size with Malloc): Update.
1705
1706 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
1707 other entries some.
1708
32f19b6b
JD
17092007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
1710
1711 For the XML output's terminal element, rename @number to @token-number,
1712 and add @symbol-number. In the nonterminal element, rename @number to
1713 @symbol-number. Discussed starting at
1714 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
1715 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
1716 renames.
1717 (xsl:template match="nonterminal"): Likewise.
1718 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
1719 (xsl:template match="nonterminal"): Likewise.
1720 * src/print-xml.c (print_grammar): Implement.
1721
255a6b90
JD
17222007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
1723
1724 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
1725 2007-10-11 change, the child elements here are items not rules.
408476bc 1726 (xsl:template match="item"): New.
255a6b90
JD
1727 (xsl:template match="rule"): Update for new reduced itemset.
1728 (xsl:template match="point"): Remove.
1729 (xsl:template match="empty"): For consistency with --graph, don't
1730 output "/* empty */".
1731 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
1732 line-wrap, don't pass a negative value as first-line-length since this
1733 won't work with the following changes.
1734 (xsl:template name="line-wrap"): Simplify slightly.
1735 (xsl:template name="ws-search"): Eliminate recursion.
1736 * src/print_graph.c (print_core): Don't print a reduction's lookahead
1737 set next to an item whose dot is not at the end of the RHS even if it
1738 happens to be associated with the same rule.
1739
88c78747
JD
17402007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
1741
31984206
JD
1742 Add %define lr.keep_unreachable_states.
1743 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
1744 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
1745 * src/main.c (main): Implement it.
1746 * tests/conflicts.at (Unreachable States After Conflict Resolution):
1747 Extend to test it, and fix a typo.
1748
17492007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
1750
1751 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
88c78747
JD
1752 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
1753 the example .output text.
1754 * tests/regression.at (Extra lookahead sets in report): Improve wording
1755 of comments.
1756
b7a70162
WP
17572007-10-17 Wojciech Polak <polak@gnu.org>
1758
1759 * src/print-xml.c (print_grammar): Renamed
1760 <terminal> and <nonterminal> attributes:
1761 "type" to "number" and "symbol" to "name".
1762 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
1763 Use new attribute names.
1764 (xsl:template match="nonterminal"): Likewise.
1765 * data/xslt/xml2xhtml.xsl: Likewise.
1766
a0de5091
JD
17672007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
1768
1769 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
1770 (Option Cross Key): Likewise.
1771
1772 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
1773 next to an item whose dot is not at the end of the RHS even if it
1774 happens to be associated with the same rule.
1775 * src/print.c (print_core): Likewise.
1776 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
1777 (Resolved SR Conflicts): Update output.
1778 * tests/regression.at (Extra lookahead sets in report): New test case.
1779
4c20d18d
WP
17802007-10-11 Wojciech Polak <polak@gnu.org>
1781
1782 * src/print-xml.c (print_core): Remove item set
1783 redundancy.
1784 * data/xslt/bison.xsl (bison:ruleNumber): New key.
1785 Improve processing time. Suggested by Joel E. Denny.
1786 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
1787 Write xsl:param "required" attribute as comment.
1788 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
1789 (xsl:template match="rule"): Support new reduced itemset.
1790 (xsl:template match="point"): Remove.
1791 * data/xslt/xml2xhtml.xsl: Likewise.
1792
f506ad1c
JD
17932007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
1794
1795 * src/getargs.c (version): Update copyright year.
1796
21f1b063
JD
17972007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
1798
1799 Make xml2dot.xsl and --graph produce the same output.
1800 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
1801 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
1802 escaped later.
1803 (xsl:template name="output-node"): Use the new escape template instead
1804 of the string-replace template directly.
1805 (xsl:template name="output-edge"): Likewise.
1806 (xsl:template name="escape"): New, escapes backslashes and newlines in
1807 addition to quotation marks.
1808 * src/graphviz.c (start_graph, output_node, output_edge): Add
1809 whitespace to output for legibility.
1810
1811 Make xml2text.xsl and --report produce the same output, and remove the
1812 XML "conflicts" element since a conflict summary is easily extracted
1813 from the automaton.
1814 * data/xslt/bison.xsl: New.
1815 (xsl:template match="state" mode="bison:count-conflicts): New.
1816 * data/xslt/xml2text.xsl: Import bison.xsl.
1817 (xsl:template match="bison-xml-report"): Instead of styling the
1818 "conflicts" element, style the "automaton" element with mode
1819 "conflicts". Unlike the former, the latter lists S/R and R/R
1820 conflicts for a state on the same line.
1821 (xsl:template match="conflicts"): Remove.
1822 (xsl:template match="conflict"): Remove.
1823 (xsl:template match="terminal"): Line-wrap the list of rules in which
1824 the terminal is used.
1825 (xsl:template match="nonterminal"): Likewise for nonterminals.
1826 (xsl:template match="automaton" mode="conflicts"): New.
1827 (xsl:template match="state" mode="conflicts"): New.
1828 (xsl:template name="line-wrap"): New.
1829 (xsl:template name="ws-search"): New.
1830 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
1831 (xsl:template match="bison-xml-report"): Instead of styling the
1832 "conflicts" element, style the "automaton" element with mode
1833 "conflicts."
1834 (xsl:template match="conflicts"): Remove.
1835 (xsl:template match="conflict"): Remove.
1836 (xsl:template match="automaton" mode="conflicts"): New.
1837 (xsl:template match="state" mode="conflicts): New.
1838 * src/conflicts.c (conflicts_output_xml): Remove.
1839 * src/conflicts.h (conflicts_output_xml): Remove prototype.
1840 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
1841 * src/print.c (print_grammar): Consistently wrap at the 66th column so
1842 the corresponding XSLT is easier. Also, never wrap between a word and
1843 the comma that follows it.
1844
793fbca5
JD
18452007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
1846
1847 Improve C++ namespace support. Discussed starting at
1848 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
1849 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
1850 b4_namespace_close): New macros that interpret the %define variable
1851 "namespace" so its value can contain "::" to indicate nested
1852 namespaces.
1853 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
1854 the above macros.
1855 * data/lalr1.cc (b4_namespace): Likewise.
1856 * data/location.cc (b4_namespace): Likewise.
1857 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
1858 inside a new table in the general %define entry. Document `%define
1859 namespace' there as well. Point the %name-prefix entry to it since it
1860 explains it more completely in the case of C++.
1861 (C++ Bison Interface): Mention `%define namespace' instead of
1862 %name-prefix.
1863 (Table of Symbols): Remove the `%define push_pull' entry. The %define
1864 entry suffices.
1865 * tests/c++.at (Relative namespace references): New test case.
1866 (Absolute namespace references): New test case.
1867 (Syntactically invalid namespace references): New test case.
1868 * tests/input.at (C++ namespace reference errors): New test case.
1869
35b8730d
JD
18702007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
1871
1872 Add syncline support and location accessor to internal %define
1873 interfaces.
1874 * data/bison.m4 (b4_percent_define_get_loc): New.
1875 (b4_percent_define_get_syncline): New.
1876 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
1877 (b4_percent_define_default): Record defining location as line 1 rather
1878 than 0 for the sake of synchronizing #line's, and define
1879 b4_percent_define_syncline(VARIABLE).
1880 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
1881 * src/muscle_tab.c (muscle_syncline_grow): New.
1882 (muscle_code_grow): Use muscle_syncline_grow.
1883 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
1884 define b4_percent_define_syncline(VARIABLE).
1885 (muscle_percent_define_get_loc): New.
1886 (muscle_percent_define_get_syncline): New.
1887 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
1888 remove some unused variables.
1889 (muscle_percent_define_default): Record defining location as line 1
1890 rather than 0 for the sake of synchronizing #line's, and define
1891 b4_percent_define_syncline(VARIABLE).
1892 (muscle_percent_define_check_values): Use
1893 muscle_percent_define_get_loc.
1894 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
1895 (muscle_percent_define_get_syncline): Prototype.
1896 * tests/skeletons.at (%define Boolean variables: invalid skeleton
1897 defaults): Update output for location change.
1898 (Complaining during macro argument expansion): Extend to test
1899 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
1900
7dc4a694
JD
19012007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
1902
1903 Fix some error-reporting macro bugs.
1904 * data/bison.m4 (b4_cat): New.
1905 (b4_error, b4_error_at): Use b4_cat to send error directives directly
1906 to stdout so they don't become arguments to other macros. Update
1907 comments and add examples.
1908 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
1909 add examples.
1910 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
1911 after printing the error directive so that M4 doesn't report subsequent
1912 problems that are induced by this problem.
1913 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
1914 instead of just in them. Recognize @\n in both places. Both expand to
1915 the empty string. Needed by b4_cat.
1916 * tests/skeletons.at (Complaining during macro argument expansion):
1917 New test case.
1918 (Fatal errors make M4 exit immediately): New test case.
1919
d4bd2295
JD
19202007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
1921
1922 Implement --print-datadir.
1923 * src/getargs.c (usage): Mention.
1924 (PRINT_DATADIR_OPTION): New anonymous enum member.
1925 (long_options): Add entry for it.
1926 (getargs): Add case for it calling compute_pkgdatadir.
1927 * src/output.c (output_skeleton): Encapsulate data directory
1928 computation from here...
1929 (prepare): ... and from here...
1930 (compute_pkgdatadir): ... into this new function.
1931 * src/output.h (compute_pkgdatadir): Prototype.
1932
34cdeddf
JD
19332007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
1934
1935 * src/print-xml.c (escape_bufs): New static global variable
1936 replacing...
1937 (xml_escape_n): ... the static local variable buf here.
1938 (print_xml): Free memory for escape_bufs.
1939 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
1940
d782395d
JD
19412007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
1942
1943 Replace `%push-parser' and `%push-pull-parser' with
1944 `%define push_pull "push"' and `%define push_pull "both"'.
1945 `%define push_pull "pull"' is the default.
1946 * doc/bison.texinfo (Push Decl, Push Parser Function,
1947 Pull Parser Function, Parser Create Function, Parser Delete Function):
1948 Update declarations.
1949 (Decl Summary, Table of Symbols): Replace %push-parser and
1950 %push-pull-parser entries with a %define push_pull entry.
1951 * data/bison.m4 (b4_percent_define_check_values): New macro.
1952 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
1953 definitions...
1954 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
1955 definitions...
1956 * data/push.c: ... to here and compute them from the value of the
1957 %define variable push_pull.
1958 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
1959 parsing requests here...
1960 * data/yacc.c: ... hack this to switch to push.c any time
1961 b4_use_push_pull_flag or the %define variable push_pull is set. This
1962 will go away when we mv push.c yacc.c.
1963 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
1964 push parsing is not supported since unused %define variables are
1965 reported anyway.
1966 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
1967 * src/muscle_tab.h (muscle_percent_define_check_values): Update
1968 comments for consistency with b4_percent_define_check_values.
1969 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
1970 muscles.
1971 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
1972 Remove.
1973 (prologue_declaration): Remove %push-parser and %push-pull-parser
1974 rules.
1975 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
1976 * tests/calc.at: Update declarations.
1977 * tests/input.at (%define enum variables): New test case.
1978 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
1979 declaration.
1980 (Push Parsing: Multiple impure instances): Update declaration.
1981 (Push Parsing: Unsupported Skeletons): New test case.
1982 * tests/torture.at (Exploding the Stack Size with Alloca): Update
1983 declaration.
1984 (Exploding the Stack Size with Malloc): Update declaration.
1985
3f999f78
WP
19862007-09-24 Wojciech Polak <polak@gnu.org>
1987
1988 Add XSLT transformations.
1989
1990 * data/xslt/xml2dot.xsl: Transform XML into DOT.
1991 * data/xslt/xml2text.xsl: Transform XML into plain text.
1992 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
1993 * data/Makefile.am (xsltdir): New variable.
1994 (dist_xslt_DATA): Add xslt/*.xsl files.
1995
a4f75309
PE
19962007-09-23 Paul Eggert <eggert@cs.ucla.edu>
1997
1998 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
1999 Problem reported by Wojciech Polak.
2000 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
2001 (xml_printf): Undo change I made on 21 September; that is,
2002 indent 2 spaces, not 1.
2003
ad5feac4
JD
20042007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
2005
2006 Pacify ./configure --enable-gcc-warnings.
2007 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
2008 `char const *' instead of `char *'.
2009 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
2010 local variable `sep'.
2011
41d7a5f2
PE
20122007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2013
2014 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
2015 elsewhere.
2016 * src/print-xml.c: Prefer "const" after types; that's more consistent.
2017 (xml_printf): Indent just 1 space for level.
2018 (e_char, xlate_char): Remove.
2019 (xml_escape_string): Rewrite to avoid undefined behavior (used
2020 storage that was freed from the stack).
2021 (xml_escape_n): Don't bother checking for subscript error.
2022
3f999f78
WP
20232007-09-21 Wojciech Polak <polak@gnu.org>
2024
2025 Add Bison XML Automaton Report.
41d7a5f2
PE
2026
2027 Add support for an -x option to generate an XML report.
2028 It is not documented yet.
2029 * src/print-xml.c: New file.
2030 * src/print-xml.h: Likewise.
2031 * lib/timevar.def (TV_XML): New var.
2032 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
2033 * src/conflicts.c: Include print-xml.h.
2034 (solved_conflicts_xml_obstack): New var.
2035 (log_resolution, conflicts_solve, conflicts_free):
2036 Add support for XML report.
2037 (conflicts_output_val): New function.
2038 * src/conflicts.h (conflicts_output_val): New decl.
2039 * src/files.c (spec_xml_file): New var.
2040 (compute_output_file_names, output_file_names_free): Add XML support.
2041 * src/files.h (spec_xml_file): New decl.
2042 * src/getargs.c (xml_flag): New var.
2043 (usage, short_options, long_options, getargs): Add XML support.
2044 * src/getargs.h (xml_flag): New decl.
2045 * src/gram.c: Include print-xml.h.
2046 (rule_lhs_print_xml, rule_rhs_print_xml):
2047 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
2048 New functions.
2049 * src/gram.h: Declare external ones.
2050 * src/main.c: Include print-xml.h.
2051 (main): Add XML support.
2052 * src/reduce.c: Include print-xml.h.
2053 (reduce_xml): New function.
2054 * src/reduce.h: Declare it.
2055 * src/state.c: Include print-xml.h.
2056 (state_new): Add XML support.
2057 (state_rule_lookahead_tokens_print_xml): New function.
2058 * src/state.h: Declare it.
2059 (struct state): New member solved_conflicts_xml.
2060 * src/symtab.c (symbol_class_get_string): New function.
2061 * src/symtab.h: Declare it.
2062
6d8e724d
PE
20632007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2064
2065 * GNUmakefile: Switch to coreutils's version.
2066 * bootstrap: Likewise.
2067 * Makefile.cfg: Adjust to new GNUmakefile.
2068 * README-hacking: Likewise.
2069
2070 Import from gnulib:
2071
2072 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
2073 Bruno Haible <bruno@clisp.org>
2074
2075 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
2076 and is a script that invokes bison. Tighten the code. Add comments.
2077
922bdd7f
JD
20782007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
2079
2080 Spell "boolean" as "Boolean". Reported by Akim Demaille.
2081 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
2082 * doc/bison.texinfo (Decl Summary): Fix.
2083 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
2084 * tests/input.at (Boolean %define variables): Update output.
2085 * tests/skeletons.at (%define boolean variables: invalid skeleton
2086 defaults): Rename to...
2087 (%define Boolean variables: invalid skeleton defaults): ... this and
2088 update output.
2089
1b17b01d
JD
20902007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
2091
2092 In impure push mode, don't allow more than one yypstate to be allocated
2093 since multiple impure parsers would corrupt yynerrs.
2094 * data/push.c (yypstate_allocated): New static global variable
2095 initialized to 0.
2096 (yypull_parse): If yypstate_new returns 0, don't report it as memory
2097 exhaustion if yypstate_allocated is 1, but still return 2.
2098 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
2099 already 1. Otherwise, set it to 1.
2100 (yypstate_delete): Set it to 0.
2101 * tests/push.at (Push Parsing: Multiple impure instances): New test
2102 case.
2103
9987d1b3
JD
21042007-08-17 Bob Rossi <bob@brasko.net>
2105
2106 * doc/bison.texinfo (Push Decl): Document the push parser.
2107 (Table of Symbols): Ditto.
2108 (Pure Decl): Ditto.
2109 (Decl Summary): Ditto.
2110 (Multiple Parsers, Push Parser Function, Pull Parser Function,
2111 Parser Create Function, Parser Delete Function):
2112 Add new push parser symbols.
2113 (Table of Symbols): Document push-parser, push-pull-parser,
2114 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
2115
f16b0819
PE
21162007-08-15 Paul Eggert <eggert@cs.ucla.edu>
2117
2118 Update to GPLv3.
2119 * doc/gpl-3.0.texi: New file.
2120 * doc/gpl.texi: Remove.
2121 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
2122 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
2123 * README-hacking, TODO, bootstrap, bootstrap.conf:
2124 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
2125 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
2126 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
2127 * data/lalr1.cc, data/lalr1.java, data/location.cc:
2128 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
2129 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
2130 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
2131 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
2132 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
2133 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
2134 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
2135 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
2136 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
2137 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
2138 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
2139 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
2140 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
2141 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
2142 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
2143 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
2144 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
2145 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
2146 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
2147 * src/complain.c, src/complain.h, src/conflicts.c:
2148 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
2149 * src/files.h, src/flex-scanner.h, src/getargs.c:
2150 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
2151 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
2152 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
2153 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
2154 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
2155 * src/print.c, src/print.h, src/print_graph.c:
2156 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
2157 * src/reduce.h, src/relation.c, src/relation.h:
2158 * src/revision.h, src/scan-code.h, src/scan-code.l:
2159 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
2160 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
2161 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
2162 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
2163 * tests/Makefile.am, tests/actions.at, tests/c++.at:
2164 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
2165 * tests/existing.at, tests/glr-regression.at:
2166 * tests/headers.at, tests/input.at, tests/java.at:
2167 * tests/local.at, tests/output.at, tests/push.at:
2168 * tests/reduce.at, tests/regression.at, tests/sets.at:
2169 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
2170 * tests/torture.at:
2171 Update to GPLv3.
2172
728c4be2
JD
21732007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2174
2175 Get rid of broken %no-parser, -n, and --no-parser implementation and
2176 documentation.
2177 * TODO: Don't mention them.
2178 * doc/bison.1: Likewise.
2179 * doc/bison.texinfo (Decl Summary): Likewise.
2180 (Bison Options): Likewise.
2181 (Option Cross Key): Likewise.
2182 * src/getargs.c (no_parser_flag): Remove global variable.
2183 (usage): Don't print description of -n and --no-parser.
2184 (long_options): Remove --no-parser entry here.
2185 (getargs): Remove -n case in the switch here.
2186 * src/getargs.h (no_parser_flag): Remove extern.
2187 * tests/regression.at (Web2c Actions): Remove comment that mentions
2188 --no-parser.
2189
5d31a216
JD
21902007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2191
2192 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
2193 name user variables starting with `yy'. Just pass NULL instead of a
2194 dummy local &yylval to yypush_parse.
2195 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
2196 starting with `yy'.
2197
a2ea208d
JD
21982007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
2199
2200 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
2201 true since it's then always used regardless of whether yyoverflow is
2202 defined. Reported by Christian Burger at
2203 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
2204 * THANKS: Add Christian Burger.
2205
91661ebb
JD
2206 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
2207 node names: say "Decl Summary" not "Bison Declaration Summary".
2208
cbd50549
JD
22092007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
2210
2211 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
2212 determine whether this function has already complained about an invalid
2213 value for a %define boolean variable, don't check whether Bison has
2214 ever examined the value. As written, the check was a tautology.
2215 Instead, record and check for this complaint using a separate muscle.
2216
eb1b0740
JD
22172007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
2218
2219 Fix push parsing memory leak reported by Brandon Lucia at
2220 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
2221 * THANKS: Add Brandon Lucia.
2222 * data/push.c (yypstate_delete): Free the stack if it was reallocated
2223 but the parse never completed and thus freed it.
2224 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
2225 * tests/testsuite.at: Include push.at.
2226 * test/push.at: New.
2227 (Push Parsing: Memory Leak for Early Deletion): New test case.
2228
9d774aff
JD
22292007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
2230
2231 Improve handling of multiple S/R conflicts in the same state and of S/R
2232 conflicts involving multiple reductions.
2233 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
2234 set for a state here or Bison will abort if it is reassigned on a
2235 later conflicted reduction in the same state.
2236 Similarly, don't finalize and assign the solved conflicts report here
2237 or it will be lost if it is reassigned on a later conflicted reduction
2238 in the same state.
2239 (set_conflicts): Instead, assign them both here after all S/R conflicts
2240 in the state have been fully examined.
2241 * src/print.c (shift_set): Rename to...
2242 (no_reduce_set): ... this.
2243 (print_reductions): Update for rename, and add %nonassoc error action
2244 tokens to no_reduce_set so that, when printing the first remaining
2245 reduction on an error action token, the reduction is enclosed in
2246 brackets.
2247 (print_results): Update for rename.
2248 * tests/conflicts.at (Solved conflicts report for multiple reductions
2249 in a state): New test case.
2250 (%nonassoc error actions for multiple reductions in a state): New test
2251 case.
2252
2253 * src/main.c (main): Don't depend on C99 features.
2254
10159d2a
JD
22552007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
2256
2257 * build-aux/.cvsignore: Add compile.
b541ffdf
JD
2258 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
2259 uniwidth.
10159d2a 2260
953b3935
JD
22612007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
2262
2263 * bootstrap (slurp): Create target directories that don't exist.
2264 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
2265
6ce2d93a
JD
22662007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
2267
2268 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
2269 than item number.
2270 * closure.c (closure): Likewise.
2271 * state.h (reductions): Comment sorting of rules.
2272 (state): Comment sorting of items.
2273
ce3448d5
JD
22742007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
2275
2276 Fix C++ test cases after recent Gnulib changes. Discussed starting at
2277 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
2278 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
2279 definition in order to avoid Gnulib headers since we don't use config.h
2280 here.
2281 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
2282 rather than AT_DATA so that config.h is included.
2283
8a86eef0
JD
22842007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
2285
2286 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
2287 instead of fprintf. Guard these functions with #if YYDEBUG instead of
2288 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
2289 and so that YYFPRINTF is guaranteed to be defined here.
2290
b1a81613
JD
22912007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
2292
2293 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
2294 with...
2295 (muscle_percent_define_check_values): ... this more helpful function.
2296 Again, it's not used yet, but it will be.
2297 * src/muscle_tab.h: Likewise.
2298
71b61d4d
JD
2299 Improve some comments in parser table construction.
2300 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
2301 (generate_states): Don't mention ruleset, which is internal to closure.
2302 * src/closure.c (closure): Explain sorting of core and itemset, which
2303 is required for this function to behave correctly.
2304 * src/closure.h (closure): Mention sorting.
2305
2a6b783d
JD
23062007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
2307
2308 * src/lalr.c (state_lookahead_tokens_count): For code readability,
2309 move the check for disabled transitions to an aver since conflict
2310 resolution hasn't happened yet.
2311
2312 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
2313 labels a state as inconsistent just because it has error transitions.
2314 The original form of this check appeared in revision 1.1 of lalr.c,
2315 which was committed on 1991-12-21. Now (at least), changing the
2316 consistency label on such a state appears to have no useful effect in
2317 any of the places it is examined, which I enumerate below. The key
2318 point to understanding each item in this enumeration is that a state
2319 with an error transition is labelled consistent in the first place only
2320 if it has no rules, so the check cannot matter for states that have
2321 rules. (1) Labelling a state as inconsistent will cause set_conflicts
2322 to try to identify its conflicts, and a state must have *rules* to have
2323 conflicts. (2) Labelling a state as inconsistent will affect how
2324 action_row sets the default *rule* for the state. (3) Labelling a
2325 state as inconsistent will cause build_relations to add lookback edges
2326 to *rules* in that state.
2327 * src/state.h (struct state): Word the comment for member consistent
2328 more carefully.
2329
14462c2b
JD
23302007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
2331
2332 Don't depend on C99 features.
2333 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
2334 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
2335 * src/reader.c (check_and_convert_grammar): Fix for-loop.
2336 * src/state.c (state_mark_reachable_states): Fix for-loop.
2337 (state_remove_unreachable_states): Fix for-loop.
2338
2339 Don't widen struct state with member reachable just to temporarily
2340 record reachability. Instead, use a local bitset.
2341 * src/state.h (struct state): Remove member.
2342 * src/state.c (state_new): Don't initialize it.
2343 (state_mark_reachable_states): Rename to...
2344 (state_record_reachable_states): ... this, and use bitset.
2345 (state_remove_unreachable_states): Use bitset.
2346
5a43d418
JD
23472007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
2348
2349 * src/Makefile.am (yacc): Quote target action commands properly so
2350 that the yacc script isn't corrupt. Reported by Hans Aberg at
2351 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
2352
0c650a20
JD
2353 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
2354 the case of pure parsers. Reported by Frans Englich at
2355 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
2356 * THANKS: Add Frans Englich.
2357
61fee93e
JD
2358 * NEWS (2.3a+): In the %code entry, reference section `Bison
2359 Declaration Summary' from the manual now since the %code summary has
2360 moved there.
2361 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
2362 in the rules section must be terminated by semicolons.
2363
f124d423
JD
23642007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
2365
2366 Extend the front-end API for %define variables to more completely
2367 mirror the back-end. This will be useful in the future.
2368 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
2369 Update comments to mention the new front-end counterparts of these
2370 macros.
2371 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
2372 for muscle_string_decode and muscle_location_decode.
2373 (muscle_string_decode): New static function.
2374 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
2375 (muscle_percent_define_get, muscle_percent_define_ifdef): New
2376 functions.
2377 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
2378 muscle_percent_define_get to mimic the b4_percent_define_flag_if
2379 implementation more closely.
2380 (muscle_percent_define_invalid_value): New function.
2381 * src/muscle_tab.h (muscle_percent_define_get,
2382 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
2383 Prototype.
2384
75ad86ee
JD
23852007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
2386
2387 * NEWS (2.3a+): Mention yesterday's state-removal change.
2388 (2.3a): Remove the %language entry, which was added after 2.3a.
2389 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
2390 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
2391 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
2392 tests/existing.at: Update copyright date.
2393
5967f0cf
JD
23942007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2395
2396 If conflict resolution makes states unreachable, remove those states,
2397 report rules that are then unused, and don't report conflicts in those
2398 states.
2399 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
2400 New global function.
2401 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
2402 function.
2403 * src/main.c (main): After conflict resolution, remove the unreachable
2404 states and update all data structures that reference states by number.
2405 * src/state.c (state_new): Initialize each state's reachable member to
2406 false.
2407 (state_mark_reachable_states): New static function.
2408 (state_remove_unreachable_states): New global function.
2409 * src/state.h (struct state): Add member bool reachable.
2410 (state_remove_unreachable_states): Prototype.
2411 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2412 New test case.
2413 * tests/existing.at (GNU pic Grammar): Update test case output now that
2414 an unused rule is discovered.
2415
b09f4f48
JD
24162007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2417
2418 Minor code cleanup in parser table construction.
2419 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
2420 (new_itemsets, save_reductions): Update for rename to nitemset.
2421 * src/closure.c (nritemset): Rename to...
2422 (nitemset): ... this since the "r" appears to meaningless and isn't
2423 used in the comments.
2424 (closure): Update for rename.
2425 * src/closure.h (nritemset): Update extern to...
2426 (nitemset): ... this.
2427 * src/lalr.c (LA): Fix a typo in comments.
2428 * src/print.c (print_core): Update for rename to nitemset.
2429 * src/print_graph.c (print_graph): Likewise.
2430 * src/state.h: Fix some typos in header comments.
2431
bbb44d83
PE
24322007-04-04 Paul Eggert <eggert@cs.ucla.edu>
2433
9b33de72
PE
2434 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
2435 still sticks to ASCII. Sorry!
2436
bbb44d83
PE
2437 * README-hacking: New file, taken mostly from coreutils, with changes
2438 for Bison. Contains much of the contents of:
2439 * README-cvs: Remove.
2440 * bootstrap: Sync from gnulib.
2441 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
2442 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
2443
29553547
JD
24442007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
2445
2446 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
2447 Setzer.
2448 (Java Differences): Fix some typos.
2449 * THANKS: Add Sebastian Setzer.
2450
01b477c6
PB
24512007-03-07 Paolo Bonzini <bonzini@gnu.org>
2452
730739e4
AD
2453 * data/java.m4 (b4_single_class_if): Remove.
2454 (b4_abstract_if): Look at "%define abstract".
2455 (b4_lexer_if): New.
2456 (b4_union_name): Rename...
2457 (b4_yystype): ... to this. Map to "%define stype".
2458 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
2459 b4_maybe_throws): Fix quoting.
2460 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
2461 * data/lalr1.java (Lexer interface): Always define.
2462 (Lexer interface within parser class): Remove.
2463 (YYLexer class): New, used when "%code lexer" is present.
2464 (constructor): When "%code lexer" is used, pass %lex-param
2465 to the lexer constructor.
2466 (yylex, yyparse): Remove %lex-param from method invocations
2467 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
2468
2469 * doc/bison.texinfo (Java Bison Interface): Mention "%define
2470 abstract". Rename "%define union_name" to "%define stype".
2471 Rename method names according to previous patch.
2472 (Java Scanner Interface): Describe "%code lexer" instead of
2473 "%pure-parser" and "%define single_class".
2474 (Java Differences): Mention "%code lexer".
2475
2476 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
2477 Include scanner here, using macros from tests/local.at.
2478 (AT_DATA_CALC_Y): Remove final argument.
2479 (_AT_CHECK_JAVA_CALC): Likewise.
2480 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
2481 of %locations and %error-verbose.
2482 (main): Test with and without %lex-param.
2483 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
2484 (AT_BISON_OPTION_POPDEFS): Pop it.
01b477c6 2485
122bea3a
JMG
24862007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2487
2488 DJGPP spefic issue. Inhibit the use of disallowed characters for
2489 file name genertion on Win98, WinXP, etc. These are |<>":?*\
2490 and concern testsuite case 46.
2491 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
2492 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
2493 * djgpp/config.bat: Inhibit the use of disallowed characters.
2494
9611cfa2
JD
24952007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
2496
2497 Miscellaneous %define and %code cleanup.
2498 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
2499 values are interpreted.
2500 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
2501 documentation a little more.
2502 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
2503 muscle_percent_define_insert, muscle_percent_code_grow): New
2504 functions/macros.
2505 * src/muscle_tab.h (muscle_percent_define_insert,
2506 muscle_percent_code_grow): Prototype.
2507 * src/parse-gram.y (prologue_declaration): Use
2508 muscle_percent_define_insert and muscle_percent_code_grow when parsing
2509 %define and %code directives.
2510
2511 Make it easy to share %define boolean variables between the front-end
2512 and back-end. Though not used yet, this will be useful in the future.
2513 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
2514 Bison uses of names rather than just skeleton uses of names.
2515 (b4_percent_define_get, b4_percent_define_ifdef): Rename
2516 b4_percent_define_skeleton_variables(VARIABLE) to
2517 b4_percent_define_bison_variables(VARIABLE).
2518 (b4_percent_code_get, b4_percent_code_ifdef): Rename
2519 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
2520 b4_percent_code_bison_qualifiers(QUALIFIER).
2521 (b4_check_user_names_wrap): Update for renames.
2522 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
2523 muscle_percent_define_default): New functions mimicking
2524 b4_percent_define_flag_if and b4_percent_define_default.
2525
2526 For %define variables, report locations for invalid values and
bbb44d83 2527 redefinitions.
9611cfa2
JD
2528 * data/bison.m4 (b4_percent_define_flag_if): Read
2529 b4_percent_define_loc(VARIABLE) to report the location of an invalid
2530 value for VARIABLE.
2531 (b4_percent_define_default): Save a special location in
2532 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
2533 must later be reported as invalid.
2534 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
2535 functions.
2536 (muscle_percent_define_insert): Record the location of VARIABLE in
2537 muscle percent_define_loc(VARIABLE), and use it to report the previous
2538 location for a redefinition.
2539 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
2540 (muscle_percent_define_default): Update like b4_percent_define_default.
2541 (muscle_grow_user_name_list): Rename to...
2542 (muscle_user_name_list_grow): ... this for consistency and use
2543 muscle_location_grow.
2544 * src/muscle_tab.h (muscle_location_grow): Prototype.
2545 * tests/input.at (%define errors): Update expected output.
2546 * tests/skeletons.at (%define boolean variables: invalid skeleton
2547 defaults): New test case.
2548
0bf92491
JD
25492007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
2550
2551 * src/print.c (lookahead_set, state_default_rule): Remove.
2552 (print_reductions): Replace state_default_rule invocation with
2553 equivalent use of yydefact, which was computed in token_actions in
2554 tables.c.
2555 (print_results): Don't allocate lookahead_set.
2556
d3b12988
PB
25572007-02-27 Paolo Bonzini <bonzini@gnu.org>
2558
2559 * data/lalr1.java: Prefix all private members with yy.
2560
f57a7536
JD
25612007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
2562
2563 Use YYFPRINTF instead of fprintf where appropriate. Reported by
9b33de72 2564 Sebastien Fricker at
f57a7536 2565 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
9b33de72 2566 * THANKS: Add Sebastien Fricker.
f57a7536
JD
2567 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
2568 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
2569 accept a variable number of arguments.
2570
6404a5bf
JD
25712007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
2572
2573 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
2574
e4e09639
JMG
25752007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2576
2577 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
2578 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
2579 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
2580
d7e0a1a7
PE
25812007-02-11 Paul Eggert <eggert@cs.ucla.edu>
2582
2583 Undo my 2007-02-07 change, switching back to the c-strcase module
2584 introduced in the 2007-02-03 change. Bruno Haible reported that
2585 the 2007-02-07 change would be dangerous in Turkish if we add a
2586 language whose name contains "i", since "i" is not lowercase "I"
2587 in Turkish.
2588 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
2589 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
2590 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
2591 * m4/.cvsignore: Remove strcase.m4.
2592 * src/getargs.c: Revert 2007-02-07 change, as follows.
2593 Include c-strcase.h.
2594 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
2595
deee93a1
JD
25962007-02-11 Bruno Haible <bruno@clisp.org>
2597
2598 Enable the Java related testsuite tests when the only Java compiler
2599 found is a gcj < 4.3. Discussed at
2600 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
2601 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
2602
574add85
JD
26032007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
2604
2605 * data/Makefile.am: Update copyright date.
2606 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
2607 yypstate_new returns NULL.
2608 (yypstate_new): Return NULL if malloc does.
2609 * src/reader.c (packgram): Move translation of rule actions from the
2610 beginning of packgram to...
2611 (check_and_convert_grammar): ... here right before packgram is invoked
2612 so it's easier to write more complete comments, and remove redundant
2613 code.
2614
e785ccf7
JD
26152007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
2616
2617 As in semantic actions, make @$ in %initial-action, %destructor, and
2618 %printer imply %locations.
2619 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
2620 scanning @$.
2621 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
2622 (@$ in %initial-action implies %locations,
2623 @$ in %destructor implies %locations,
2624 @$ in %printer implies %locations): ... these new test cases.
2625
1cfe1ed7
PE
26262007-02-07 Paul Eggert <eggert@cs.ucla.edu>
2627
2628 Undo most of the 2007-02-03 change, switching to the strcase module
2629 now that gnulib strcase has been fixed.
2630 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
2631 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
2632 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
2633 * m4/.cvsignore: Add strcase.m4.
2634 * src/getargs.c: Revert 2007-02-03 change, as follows.
2635 Don't include c-strcase.h.
2636 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
2637 strcasecmp has "unspecified behavior" outside the POSIX locale,
2638 but it works fine in practice if at least one argument is ASCII,
2639 as is the case in Bison.
2640
0049ec86
PB
26412007-02-07 Paolo Bonzini <bonzini@gnu.org>
2642
2643 * tests/java.at: Skip tests if only one of javac/java is present.
2644 Reported by Joel E. Denny.
2645 * tests/atlocal.in: Adjust copyright years.
2646
26472007-02-05 Paolo Bonzini <bonzini@gnu.org>
2648
2649 * data/lalr1.java (Stack): Work around old verifiers that disallow
2650 access to the private fields of an inner class, from the outer class.
2651 We can make Stack's fields public because user code doesn't have access
2652 to the instance of Stack used by parse(). Reported by Paul Eggert.
2653
2c2b7220
PE
26542007-02-03 Paul Eggert <eggert@cs.ucla.edu>
2655
2656 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
2657 the right spot for these files?
2658 * bootstrap.conf (gnulib_modules): Add c-strcase.
2659 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
2660 c-strncasecmp.c.
2661 * src/getargs.c: Include c-strcase.h.
2662 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
2663 to avoid unspecified behavior.
2664
b2b81dae
JD
26652007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
2666
2667 * doc/bison.texinfo (Decl Summary): Correct typo.
2668
c1d19e10
PB
26692007-01-30 Paolo Bonzini <bonzini@gnu.org>
2670
2671 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
2672 Complain if the value does not match empty, "true" or "false".
2673 * data/c++.m4: Adjust default definitions of %define variables.
2674 * data/java.m4: Adjust default definitions of %define variables.
2675 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
2676 to above behavior.
2677 * tests/input.at (Boolean %define variables): Test new behavior.
2678
8405b70c
PB
26792007-01-29 Paolo Bonzini <bonzini@gnu.org>
2680
2681 * NEWS: Mention java.
2682 * TODO: Remove things that are done.
2683 * bootstrap.conf: Add javacomp-script and javaexec-script.
2684 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
2685
2686 * data/Makefile.am: Add new files.
2687 * data/java-skel.m4: New.
2688 * data/java.m4: New.
2689 * data/lalr1.java: New.
2690
2691 * doc/bison.texinfo: Put "A Complete C++ Example" under
2692 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
2693 under Other Languages.
2694
2695 * src/getargs.c (valid_languages): Add Java.
2696 * src/getargs.h (struct bison_language): Update size of string fields.
2697
2698 * tests/Makefile.am: Add java.at.
2699 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
2700 * tests/java.at: New.
2701 * tests/testsuite.at: Include it.
2702
3eb82471
JD
27032007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
2704
2705 Clean up.
2706 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
2707 at_directive_argv arguments so these no longer have to be global
2708 variables. Also, update the implementation for the following changes.
2709 (fail_for_at_directive_too_many_args,
2710 fail_for_at_directive_too_few_args): Add at_directive_name argument.
2711 (at_directive_name): Remove as at_directive_argv[0] will be used for
2712 this now.
2713 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
2714 for the directive name.
2715 (at_directive_argc, at_directive_argv): Make these local within
2716 skel_lex instead of global.
2717 (INITIAL): Update directive start action for above changes.
2718 (SC_AT_DIRECTIVE_ARG): Rename to...
2719 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
2720 (SC_AT_DIRECTIVE_SKIP_WS): Update.
2721 (scan_skel): Move yylex_destroy to...
2722 (skel_scanner_free): ... here.
2723 * tests/skeletons.at (installed skeleton file name): Rename to...
2724 (installed skeleton file names): ... this.
2725
148d66d8
JD
27262007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
2727
2728 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
2729 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
2730 Summary" not "Directives".
2731 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
2732 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
2733 since the former is now the more complete one.
2734 (Prologue Alternatives): Likewise and do the same for %defines.
2735 (Table of Symbols): Add summary of %code, add summary of %define, and
2736 move full %code documentation to...
2737 (Decl Summary): ... here for consistency with other entries in these
2738 sections.
2739 Move %define entry in order to keep this list alphabetized.
2740 Reword %define entry a little to put less emphasis on the skeleton
2741 concept, which most users shouldn't have to think about.
2742
665f0c24
PE
27432007-01-26 Paul Eggert <eggert@cs.ucla.edu>
2744
2745 Adjust to recent gnulib changes.
2746 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
2747 Add string.h, string_.h, unistd_.h, wchar_.h.
2748 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
2749 * src/system.h: Don't include <stpcpy.h>; this is now done by
2750 <string.h>.
2751
592d0b1e
PB
27522007-01-23 Paolo Bonzini <bonzini@gnu.org>
2753
2754 Simplify implementation of unqualified %code, implement macros for
2755 uniform treatment of boolean %define flags. Document %define.
2756 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
2757 b4_percent_code_ifdef): New.
2758 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
2759 * data/c++.m4: Define default value for global_tokens_and_yystype.
2760 * data/glr.cc: Likewise.
2761 * data/location.cc: Use b4_percent_define_flag_if.
2762
148d66d8 2763 * doc/bison.texinfo (Decl Summary): Document %define.
592d0b1e
PB
2764
2765 * src/parse-gram.y (Unqualified %code): Change muscle name to
2766 b4_percent_code().
2767 (content.opt): Default to empty.
2768
a7867f53
JD
27692007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
2770
2771 Implement support for relative and absolute skeleton file names.
2772 Discussed starting at
2773 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
2774 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
2775 (Bison Options): Document in --skeleton entry.
2776 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
2777 full_skeleton can't necessarily hold all of pkgdatadir.
2778 If the specified skeleton file name contains a `/', don't prepend
2779 pkgdatadir.
2780 * src/parse-gram.y (prologue_declaration): If the specified skeleton
2781 file name contains a `/', prepend the grammar file directory.
2782 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
2783 * skeletons.at: New file.
2784 (relative skeleton file names): New test case.
2785 (installed skeleton file names): New test case.
2786 * tests/testsuite.at: Include skeletons.at.
2787
2788 * bootstrap: Update copyright to 2007.
2789
830c9b18
PB
27902007-01-17 Paolo Bonzini <bonzini@gnu.org>
2791
2792 * bootstrap: Remove occurrences of .#bootmp from the files.
2793
a8c2e813
AD
27942007-01-17 Akim Demaille <akim@epita.fr>
2795
2796 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
2797 nonterminals.
2798 Use per-type %printer.
2799
279cabb6
JD
28002007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
2801
2802 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
2803 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
2804 djgpp/config.site, src/files.c, src/files.h, src/main.c,
2805 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
2806 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
2807 tests/glr-regression.at, tests/input.at, tests/local.at,
2808 tests/output.at, tests/torture.at: Update copyright to 2007.
2809
bb32f4f2
AD
28102007-01-16 Akim Demaille <akim@epita.fr>
2811
2812 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
2813 error code.
2814 (Calc++ Scanner): Exit with failure if we can't open the input
2815 file.
2816 Accept "-" standing for stdin.
2817 (Calc++ Top Level): Print the result only if the parsing was
2818 successful.
2819
7cff04b5
AD
28202007-01-16 Akim Demaille <akim@epita.fr>
2821
2822 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
2823
a4e25e1d
JD
28242007-01-15 Paolo Bonzini <bonzini@gnu.org>
2825 and Joel E. Denny <jdenny@ces.clemson.edu>
2826
2827 Clean up %define and %code implementation in M4 some. Most
2828 importantly, rename all related macros to be in the b4_percent_define
2829 and b4_percent_code namespaces. Also, complete support for `.' in
2830 %define variable names and %code qualifiers.
2831 * data/bison.m4 (b4_check_user_names): Check for special
2832 "SKELETON-NAMESPACE(name)" macros instead of using two nested
2833 m4_foreach loops.
2834 (b4_get_percent_define, b4_get_percent_code): Rename to...
2835 (b4_percent_define_get, b4_percent_code_get): ... these.
2836 Extend documentation with examples.
2837 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
2838 b4_percent_define_skeleton_variables and
2839 b4_percent_code_skeleton_qualifiers.
2840 Expect any value for the %define variable `foo' to be stored in the
2841 macro named `b4_percent_define(foo)'; expect any %code blocks for the
2842 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
2843 expect any unqualified %code blocks to be stored in a macro named
2844 `b4_percent_code_unqualified'.
2845 Use m4_indir so that %define variable names and %code qualifiers can
2846 contain `.', which is allowed by the grammar parser.
2847 (b4_percent_define_default): New macro to set a default value for a
2848 %define variable.
2849 (m4_wrap): Update wrapped code, and fix some underquoting.
2850 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
2851 Expect grammar uses of %define variables and %code qualifiers to be
2852 defined in b4_percent_define_user_variables and
2853 b4_percent_code_user_qualifiers.
2854 * data/c++.m4: Use b4_percent_define_default rather than
2855 m4_define_default. Fix some underquoting. Skeleton usage of %define
2856 variable define_location_comparison now implies skeleton usage of
2857 %define variable filename_type.
2858 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
2859 data/push.c, data/yacc.c: Update macro names.
2860 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
2861 muscle names.
2862
e37c665c
JMG
28632007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2864
2865 DJGPP specific issues.
2866
2867 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
2868 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
2869
7d2d521f
JD
28702007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
2871
2872 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
2873 run parsers in all tests so that Valgrind is invoked during
2874 maintainer-check-valgrind.
2875 (Duplicate representation of merged trees): Free all semantic values.
2876 (Duplicated user destructor for lookahead): Likewise.
2877
e0ac9b4b
JD
28782007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
2879
2880 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
2881 command-line prefix.
2882 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
2883 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
2884 miss Valgrind messages.
2885 (Exploding the Stack Size with Malloc): Likewise.
2886
78143faa
JD
28872007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
2888
2889 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
2890 locals. Reported by Juan Manuel Guerrero at
2891 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
2892 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
2893 Fix some indentation also.
2894 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
2895 explaining this issue.
2896
7ecec4dd
JD
28972007-01-09 Paolo Bonzini <bonzini@gnu.org>
2898 and Joel E. Denny <jdenny@ces.clemson.edu>
2899
2900 Simplify union and prologue handling, and escape union and lex/parse
2901 params with digraphs.
2902 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
2903 values to the empty string since these are no longer guaranteed
2904 initialized by the front-end.
2905 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
2906 braces around b4_user_stype since this is no longer done by the
2907 front-end.
2908 * src/files.c, src/files.h (pre_prologue_obstack,
2909 post_prologue_obstack): Remove.
2910 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
2911 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
2912 with digraphs. This fixes lex params and parse params.
2913 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
2914 * src/output.c (prepare): Remove muscle insertion of the prologues.
2915 (output): Remove freeing of pre_prologue_obstack and
2916 post_prologue_obstack.
2917 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
2918 than prologue_augment for prologue parsing so you don't need prologue
2919 obstacks.
5c80250c
JD
2920 (grammar_declaration): For %union RHS, use `braceless' instead of
2921 "{...}" so that braces are already stripped and code is escaped with
2922 digraphs.
7ecec4dd
JD
2923 * src/reader.c (prologue_augment): Remove.
2924 (reader): Remove initialization of pre_prologue_obstack and
2925 post_prologue_obstack.
2926 * src/reader.h (prologue_augment): Remove.
2927
2928 * data/c.m4: Remove stray parenthesis.
2929
16dc6a9e
JD
29302007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2931
2932 Remove quotes from variables names in %define directives and from
2933 qualifiers in %code directives, and restrict the characters that are
2934 allowed in them to M4-friendly ones. For %define, continue to support
2935 the quoted form as a deprecated feature. Discussed starting at
2936 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
2937 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
2938 %code.
2939 * doc/bison.texinfo (Prologue Alternatives): Update.
91661ebb
JD
2940 (Decl Summary): In %defines entry, update mention of `%code requires'
2941 and `%code provides'.
16dc6a9e
JD
2942 (C++ Location Values): Update %define uses.
2943 (Calc++ Parser Interface): Likewise.
2944 (Calc++ Parser): Likewise, and update `%code requires' uses.
148d66d8 2945 (Table of Symbols): Update %code documentation.
16dc6a9e
JD
2946 * src/parse-gram.y (prologue_declaration): For %define variables, use
2947 `variable' instead of `STRING'.
2948 (grammar_declaration): For %code qualifiers, use `ID' instead of
2949 `STRING'.
2950 (variable): New nonterminal that takes an `ID' or a `STRING'.
2951 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
2952 and %define uses.
2953 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
2954 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
2955 (%define errors): Update %define uses.
2956
e9813cd4
JD
29572007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2958
2959 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
2960 instead of muscle_insert for %define values so that M4-special
2961 characters are replaced with digraphs.
2962 * tests/input.at (%define errors): Extend to check weird values.
2963
6afc30cc
JD
29642007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2965
2966 Instead of having skeletons declare all valid %define variables and
2967 %code qualifiers, provide macros that retrieve the associated values
2968 and build these lists automatically. Thus Bison will now warn when a
2969 variable or qualifier is not used by the skeleton in the current
2970 invocation regardless of whether it might sometimes be used by that
2971 skeleton in other invocations. Also, move all %define value macros to
2972 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
2973 form, which is replaced by %code.
2974 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
2975 (b4_check_user_names): ... this, and change the series of valid name
2976 arguments to a single list argument for names used in the skeleton
2977 similar to the existing list argument for names used in the grammar.
2978 Warn instead of complaining.
2979 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
2980 values and %code code, to format %code code properly, and to build
2981 lists of all %define variables and %code qualifiers used in the
2982 skeleton: b4_skeleton_percent_define_variables and
2983 b4_skeleton_percent_code_qualifiers.
2984 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
2985 Remove, and...
2986 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
2987 the skeleton names lists can finish building first. In place of
2988 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
2989 expect the lists b4_user_percent_define_variables and
2990 b4_user_percent_code_qualifiers.
2991 * data/c++.m4: Where setting default values for b4_parser_class_name,
2992 b4_location_type, b4_filename_type, b4_namespace, and
2993 b4_define_location_comparison, update their names to the
2994 b4_percent_define_ namespace.
2995 * data/glr.c: Don't use b4_check_percent_define_variables and
2996 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
2997 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
2998 (b4_parser_class_name, b4_namespace): Define these using
a4e25e1d 2999 b4_get_percent_define for parser_class_name and namespace.
6afc30cc
JD
3000 * data/location.cc: Use b4_get_percent_define.
3001 * data/push.c: Don't use b4_check_percent_define_variables and
3002 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3003 * data/yacc.c: Likewise, and don't call m4_exit in
3004 b4_use_push_for_pull_if or m4_wrap code will never execute.
3005 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
3006 Rename to...
3007 (muscle_grow_user_name_list): ... this for consistency with the
3008 terminology used in bison.m4.
3009 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
3010 %define variable names, and rename muscle used_percent_define_variables
3011 to user_percent_define_variables.
3012 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
3013 user_percent_code_qualifiers.
3014 (content): Remove.
3015 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
3016 {CODE} form is no longer accepted.
3017 * tests/input.at (Reject bad %code qualifiers): Rename to...
3018 (Reject unused %code qualifiers): ... this, and update test output.
3019 (%define error): Update test output.
3020
7eb8a0bc
JD
30212007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
3022
3023 Check for unrecognized %define variables similar to checking for
3024 unrecognized %code qualifiers. Check for redefined %define variables.
3025 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
3026 generalizes...
3027 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
3028 (b4_check_percent_define_variables): New, also wraps it.
3029 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
3030 variables using b4_check_percent_define_variables.
3031 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
3032 all those exercised in the test suite and all those listed in the
3033 `Default values' section of c++.m4. Are there others?
3034 * data/push.c, data/yacc.c: Declare no valid %define variables.
3035 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
3036 similar to muscle_find, but it works even when the muscle stores a
3037 const value.
3038 (muscle_grow_used_name_list): New function for constructing the used
3039 name list muscles that b4_check_for_unrecognized_names requires.
3040 * src/parse-gram.y (prologue_declaration): Warn if a variable is
3041 %define'd more than once. Define the b4_used_percent_define_variables
3042 muscle with muscle_grow_used_name_list.
3043 (grammar_declaration): Abbreviate %code code with
3044 muscle_grow_used_name_list.
3045 * tests/input.at (%define errors): New.
3046
3fc65ead
JD
30472007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3048
3049 Provide warn_at, complain_at, and fatal_at function callbacks to the
3050 skeletons, and use this for %code qualifier complaints.
3051 * data/bison.m4 (b4_error_at): New, invoked by...
3052 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
3053 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
3054 @fatal_at(...@) directives.
3055 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
3056 qualifiers in b4_used_percent_code_qualifiers and to use
3057 b4_complain_at.
3058 * src/location.c, src/location.h (boundary_set_from_string): New global
3059 function.
3060 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
3061 function.
3062 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
3063 to b4_used_percent_code_qualifiers.
3064 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
3065 function.
3066 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
3067 (lineno): Rename to...
3068 (out_lineno): ... this so I don't misunderstand it again.
3069 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
3070 here; these newlines are in the input but not the output file.
3071 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
3072 (at_directive_perform): ... this new static function, and add handling
3073 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
3074 directives.
3075 * tests/input.at (Reject bad %code qualifiers): Update test output with
3076 locations and extend.
3077
3078 * tests/output.at (Output file name: [, Output file name: ]): Remove
3079 bogus comment about these tests failing.
3080
1c7b7e1d
JD
30812007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3082
3083 Clean up b4_check_percent_code_qualifiers a little.
3084 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
3085 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
3086 documentation and add examples.
3087 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
3088 qualifiers here.
3089
08af01c2
JD
30902007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
3091
3092 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
3093 unreliable -- especially when they're hidden inside another macro.
3094 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
3095 data/c.m4: Remove m4_divert(-1).
3096 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3097 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
3098 m4_divert_push(0) and m4_divert_pop(0).
279cabb6 3099 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
08af01c2
JD
3100 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
3101 pushed and popped by m4sugar, should be first on the stack.
3102
3103 Provide warn, complain, and fatal function callbacks to the skeletons.
3104 This provides more flexibility than m4_fatal, improves the error
3105 message format, and captures messages for translation. Discussed
3106 starting at
3107 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
3108 * data/bison.m4 (b4_error): New, invoked by...
3109 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
3110 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
3111 directives. Because these M4 macros might be called when the current
3112 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
3113 the previous removal of uses of m4_divert, which caused trouble.
3114 (b4_check_percent_code_qualifiers): Use b4_complain instead of
3115 m4_fatal to report unrecognized %code qualifiers.
3116 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
3117 push parser requests.
3118 * data/glr.c: Use b4_complain instead of m4_fatal to report
3119 non-deterministic push parser requests.
3120 Update @output usage to @output(...@) form.
3121 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
3122 report missing %defines. Update @output usage to @output(...@) form.
3123 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
3124 @output(...@) form.
3125 * src/main.c (main): Invoke skel_scanner_free.
3126 * src/scan-skel.h (skel_scanner_free): Prototype new function.
3127 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
3128 obstack_for_string from flex-scanner.h.
3129 (YY_DECL): Use to declare skel_lex static.
3130 (decode_at_digraphs): Remove; now handled in the new
3131 SC_AT_DIRECTIVE_ARG start condition.
3132 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
3133 functions.
3134 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
3135 at_directive_argv): New static globals.
3136 (INITIAL): Use fail_for_invalid_at.
3137 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
3138 recognize the start of a generalized `@directive(...@)' form and
3139 start...
3140 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
3141 directive args (using the new obstack_for_string), to decode the
3142 contained @ diagraphs, and to perform the directive. It recognizes
3143 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
3144 @output(...@).
3145 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
3146 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
3147 `@,'.
3148 (scan_skel): Initialize obstack_for_string on the first call.
3149 (skel_scanner_free): New function to free obstack_for_string.
3150 * tests/input.at (Reject bad %code qualifiers): Update test output.
3151
8e0a5e9e
JD
31522007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
3153
3154 Consolidate the 4 prologue alternative directives (%code, %requires,
3155 %provides, and %code-top) into a single %code directive with an
3156 optional qualifier field. Discussed at
3157 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
3158 * NEWS (2.3a+): Rewrite the existing entry for the prologue
3159 alternatives.
3160 * doc/bison.texinfo (Prologue Alternatives): Update.
3161 (Decl Summary): Update to %code "requires" and %code "provides".
3162 (Calc++ Parser): Update to %code "requires".
148d66d8 3163 (Table of Symbols): Remove entries for %requires, %provides, and
8e0a5e9e
JD
3164 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
3165 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
3166 are replaced by b4_percent_code_provides and b4_percent_code_requires,
3167 which are skeleton-specific.
3168 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
3169 declare what %code qualifiers it supports and to complain if any other
3170 qualifiers were used in the grammar.
3171 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
3172 and b4_user_code([b4_percent_code_provides]) in place of
3173 b4_user_requires and b4_user_provides.
3174 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
3175 Add b4_user_code([b4_percent_code_top]) and
3176 b4_user_code([b4_percent_code]).
3177 Invoke b4_check_percent_code_qualifiers.
3178 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3179 PERCENT_REQUIRES): Remove.
3180 (grammar_declaration): Remove RHS's for %code-top, %provides, and
3181 %requires. Rewrite the %code RHS as the unqualified form defining the
3182 muscle b4_percent_code. Add another RHS for the qualified %code form,
3183 which defines muscles of the form b4_percent_code_QUALIFIER and the
3184 b4_used_percent_code_qualifiers muscle.
3185 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3186 PERCENT_REQUIRES): Remove.
3187 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
3188 %code "requires" and %code "provides".
3189 * tests/input.at (Reject bad %code qualifiers): New.
3190
95021767
JD
31912007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3192
3193 Use the new code_props interface for destructors and printers.
3194 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
3195 printer_location members, and change the type of the destructor and
3196 printer members to code_props.
3197 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
3198 symbol_printer_get, semantic_type_destructor_set,
3199 semantic_type_printer_set, default_tagged_destructor_set,
3200 default_tagless_destructor_set, default_tagged_printer_set,
3201 default_tagless_printer_set): Use code_props in arguments and return
3202 types in place of char const * and location.
3203 (symbol_destructor_location_get, symbol_printer_location_get): Remove
3204 since the locations are now contained in the return of
3205 symbol_destructor_get and symbol_printer_get.
3206 * src/output.c (symbol_destructors_output, symbol_printers_output):
3207 Replace with...
3208 (symbol_code_props_output): ... this to eliminate duplicate code.
3209 (output_skeleton): Update to use symbol_code_props_output.
3210 * src/reader.c (symbol_should_be_used): Update use of
3211 symbol_destructor_get.
3212 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
3213 Update uses of the various _destructor_set and _printer_set functions.
3214 * src/symtab.c: (default_tagged_destructor_location,
3215 default_tagless_destructor_location, default_tagged_printer_location,
3216 default_tagless_printer_location): Remove since we...
3217 (default_tagged_destructor, default_tagless_destructor,
3218 default_tagged_printer, default_tagless_printer): ... change the type
3219 of these to code_props.
3220 (symbol_new, semantic_type_new, symbol_destructor_set,
3221 semantic_type_destructor_set, symbol_destructor_get,
3222 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
3223 symbol_check_alias_consistency, default_tagged_destructor_set,
3224 default_tagless_destructor_set, default_tagged_printer_set,
3225 default_tagless_printer_set): Update.
3226 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
3227 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
3228 code_props members.
3229 (symbol_print): Use SYMBOL_CODE_PRINT.
3230
f6857bbf
JD
32312007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3232
3233 Use the new code_props interface for rule actions.
3234 * src/symlist.h (symbol_list): Replace action, action_location, and
3235 used members with a code_props action_props member.
3236 * src/reader.c (symbol_should_be_used, grammar_rule_check,
3237 grammar_midrule_action, grammar_current_rule_merge_set,
3238 grammar_current_rule_symbol_append, packgram): Update.
3239 * src/scan-code.h (translate_rule_action): Remove, no longer used.
3240 * src/scan-code.l (handle_action_dollar): Update.
3241 (translate_rule_action): Remove, no longer used.
3242 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
3243
7c0c6181
JD
32442007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
3245
3246 Use the new code_props interface in parse-gram.y.
3247 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
3248 Update all uses of translate_* functions to use the new code_props
3249 interface and to use gram_scanner_last_string_free and
3250 code_scanner_last_string_free where possible.
3251 (grammar_declaration): symbol_list_destructor_set and
3252 symbol_list_printer_set now perform the translation, so don't do it
3253 here. Use gram_scanner_last_string_free where possible.
3254 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
3255 translate_code): Remove, no longer used.
3256 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
3257 symbol_list_printer_set): Perform code translation here rather than
3258 depending on the caller to do so.
3259
3260 * src/symlist.h (struct symbol_list): Correct some documentation typos.
3261 * src/scan-gram.h (gram_last_string): Remove declaration.
3262 * src/scan-gram.l (last_string): Declare it static.
3263
28e52c0d
JD
32642007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
3265
3266 Encapsulate code properties and related functionality for the various
3267 destructors, printers, and actions into a code_props structure and
3268 interface. This patch merely implements code_props in scan-code.h and
3269 scan-code.l. Future patches will rewrite other modules to use it.
3270 Discussed starting at
3271 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
3272 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
3273 consistently initialize const structs that have an empty location
3274 field.
3275 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
3276 to ensure consistency.
3277 * src/scan-code.h (code_props): New structure.
3278 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
3279 function, macro, and const global variable for initializing a
3280 code_props with no code.
3281 (code_props_plain_init, code_props_symbol_action_init,
3282 code_props_rule_action_init, code_props_translate_code): The rest of
3283 the new code_props functional interface. Among other things, the init
3284 functions set the code_props kind field so that
3285 code_props_translate_code will know whether to behave like
3286 translate_symbol_action, translate_rule_action, or translate_code.
3287 These old translate functions must remain until all other modules are
3288 updated to use the new code_props interface.
3289 (code_scanner_last_string_free): New function similar to
3290 gram_scanner_last_string_free.
3291 (code_scanner_free): Add documentation.
3292 * src/scan-code.l: Implement the new interface.
3293 (code_lex): Make it static, add a code_props* argument, and remove the
3294 rule argument.
3295 (last_string): New static global similar to the one in scan-gram.l.
3296 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
3297 instead of rule.
3298 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
3299 code_props since Bison may one day use this information for destructors
3300 and printers.
3301 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
3302 (handle_action_dollar): Use symbol_list_n_get and set used flag
3303 directly since symbol_list_n_used_set is removed.
3304 (translate_action): Add a code_props* argument and remove the rule,
3305 action, and location arguments. Pass the code_props* on to code_lex.
3306 (translate_rule_action, translate_symbol_action, translate_code):
3307 Rewrite as wrappers around the new code_props interface.
3308 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
3309 it would eventually need to break the encapsulation of code_props.
3310
96034983
JD
33112007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
3312
3313 * etc/.cvsignore: New.
3314
945e396c
JD
33152007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
3316
3317 Add maintainer-push-check to run maintainer-check using push parsing in
3318 place of pull parsing where available.
3319 * Makefile.am (maintainer-push-check): New.
3320 * data/bison.m4 (b4_use_push_for_pull_if): New.
3321 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
3322 appropriately based on their existing values.
3323 (yypush_parse): Don't print push-parser-specific diagnostics if push
3324 parsing is being used in place of pull parsing.
3325 * data/yacc.c: If push parsing should replace pull parsing, redirect to
3326 push.c.
3327 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
3328 variable, and insert b4_use_push_for_pull_flag into muscles.
3329 * tests/Makefile.am (maintainer-push-check): New.
3330
7d596384
JD
33312006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
3332
3333 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
3334 (whether successful or failed) so that yypush_parse can be invoked
3335 again to start a new parse using the same yypstate.
3336 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
3337 check multiple yypull_parse invocations on the same yypstate. For pull
3338 mode, extend to check multiple yyparse invocations.
3339 (Exploding the Stack Size with Alloca): Extend to try with
3340 %push-pull-parser.
3341 (Exploding the Stack Size with Malloc): Likewise.
3342
3343 * tests/calc.at (Simple LALR Calculator): Don't specify
3344 %skeleton "push.c" since %push-pull-parser implies that now.
3345 * tests/headers.at (export YYLTYPE): Don't check for the push
3346 declarations. Otherwise, this test case can't be used to see if push
3347 mode can truly emulate pull mode.
3348 * tests/input.at (Torturing the Scanner): Likewise.
3349 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
3350 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
3351 AT_YACC_IF, which now includes the case of push mode since %skeleton
3352 need not be used for push mode. This will be more intuitive once
3353 push.c is renamed to yacc.c.
3354
7172e23e
JD
33552006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
3356
3357 For push mode, convert yyparse from a macro to a function, invoke yylex
3358 instead of passing a yylexp argument to yypull_parse, and don't
3359 generate yypull_parse or yyparse unless %push-pull-parser is declared.
3360 Discussed starting at
3361 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
3362 * data/bison.m4 (b4_pull_if): New.
3363 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
3364 * data/push.c: Improve M4 quoting a little.
3365 (b4_generate_macro_args, b4_parenthesize): Remove.
3366 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
3367 any time a pull parser is requested.
3368 Don't #define this as a wrapper around yypull_parse. Instead, when
3369 both push and pull are requested, make it a function that does that
3370 same thing.
3371 (yypull_parse): If there's a b4_prefix, #define this to
3372 b4_prefix[pull_parse] when both push and pull are requested.
3373 Don't define this as a function unless both push and pull are
3374 requested.
3375 Remove the yylexp argument and hard-code yylex invocation instead.
3376 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
3377 %push-parser.
3378 * src/getargs.c (pull_parser): New global initialized to true.
3379 * getargs.h (pull_parser): extern it.
3380 * src/output.c (prepare): Insert pull_flag muscle.
3381 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
3382 (prologue_declaration): Set both push_parser and pull_parser = true for
3383 %push-pull-parser. Set push_parser = true and pull_parser = false for
3384 %push-parser.
3385 * src/scan-gram.l: Don't accept %push_parser as an alternative to
3386 %push-parser since there's no backward-compatibility concern here.
3387 Scan %push-pull-parser.
3388 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
3389 instead of %push-parser.
3390 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
3391 prototype it in the module that calls yyparse.
3392 * tests/input.at (Torturing the Scanner): Likewise.
3393 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
3394
2e7944cb
JD
33952006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
3396
3397 Update etc/bench.pl. Optimize push mode a little (the yyn change
3398 deserves most of the credit).
3399 * Makefile.am (SUBDIRS): Add etc subdirectory.
3400 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
3401 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
3402 yytoken, yyval, and yyloc declarations to...
3403 (yyparse or yypush_parse): ... here to improve performance. For
3404 yypush_parse invocations after the first, be sure to assign yyn its old
3405 value again.
3406 (yypstate_new): Don't bother initializing the yyresult field since the
3407 initial value isn't used.
3408 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
3409 remove the #define that, in push mode, set it to yyps->NAME.
3410 * etc/Makefile.am: New.
3411 * etc/bench.pl: Remove and build it instead from...
3412 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
3413 "tests/bison" from the build directory by default rather than just
3414 invoking "bison" from $PATH.
3415 (calc_grammar): Update push parser code: don't declare yylval globally,
3416 don't define yyparse_wrapper, and don't #define yyparse.
3417 (bench_grammar): Update to check all working combinations of yacc.c,
3418 push.c, impure, pure, pull, and push.
3419
c3d50342
JD
34202006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
3421
3422 For push mode, add pull wrappers around yypush_parse.
3423 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
3424 (yypull_parse): New function wrapping yypush_parse.
3425 (yyparse): New #define wrapping yypull_parse.
3426 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
3427 is declared.
3428 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
3429 prototype yylex in the module that calls yyparse, and don't prototype
3430 yyparse there. Otherwise, the yyparse expansion won't compile.
3431 * tests/input.at (Torturing the Scanner): Likewise.
3432
94ebeba5
JD
34332006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
3434
3435 Enable push parsers to operate in impure mode. Thus, %push-parser no
3436 longer implies %pure-parser. The point of this change is to move
3437 towards being able to test the push parser code by running the entire
3438 test suite as if %push-parser had been declared.
3439 * data/push.c (yypush_parse): For impure mode, remove the
3440 yypushed_char, yypushed_val, and yypushed_loc arguments.
3441 Instead, declare these as local variables initialized to the global
3442 yychar, yylval, and yylloc.
3443 For the first yypush_parse invocation only, restore the initial values
3444 of these global variables when it's time to read a token since they
3445 have been overwritten.
3446 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
3447 %push-parser.
3448 * tests/calc.at (Simple LALR(1) Calculator): Always declare
3449 %pure-parser along with %push-parser since this test case was designed
3450 for pure push parsers.
3451 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
3452 (AT_YACC_OR_PUSH_IF): New.
3453 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
3454 add a note that it's still wrong for some cases (as it has been for a
3455 while).
3456 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
3457 %push-parser no longer implies %pure-parser.
3458
a0633178
JD
34592006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
3460
3461 Remove some unnecessary differences between the pull parser code and
3462 the push parser code. This patch enables yynerrs in push mode.
3463 * data/push.c: Reformat M4 a little.
3464 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
3465 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
3466 because push mode is on. Instead, if pure mode is on, move yynerrs
3467 to...
3468 (b4_declare_parser_state_variables): ... here.
3469 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
3470 to yyps->NAME so it can be used in yypush_parse.
3471 (yypush_parse): Don't omit uses of yynerrs in push mode.
3472
8646b6a3
JD
34732006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
3474
3475 Fix bug such that the first pushed token's value and location are
3476 sometimes overwritten (sometimes by %initial-action) before being used.
3477 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
3478 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
3479 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
3480 more closely mimic the pull parser logic.
3481 Don't copy the pushed token to yychar, yylval, and yylloc until it's
3482 time to read a token, which is after any initialization of yylval and
3483 yylloc.
3484 (gottoken): Rename label to...
3485 (yyread_pushed_token): ... for clarity and to avoid infringing on the
3486 user namespace.
3487
9baf4d74
JD
34882006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
3489
3490 Rearrange initialization of the parser state variables so that the
3491 skeleton doesn't have to have a copy for pull mode and another for push
3492 mode. This patch also fixes at least a bug such that yylloc was not
3493 initialized (with b4_location_initial_line and
3494 b4_location_initial_column) upon calling yypush_parse. However, that
3495 initialization now overwrites the first token's location;
3496 %initial-action assigning @$ already did the same thing, and both bugs
3497 will be fixed in a later patch.
3498 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
3499 (b4_declare_parser_state_variables): Remove initialization of yytoken,
3500 yyss, yyvs, yyls, and yystacksize.
3501 (yypstate_new): Remove initialization of some yypstate fields: yystate,
3502 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
3503 yylsp.
3504 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
3505 yyps->NAME so it can be used in yypush_parse.
3506 (yyparse or yypush_parse): For yypush_parse, don't print the
3507 "Starting parse" diagnostic for invocations after the first.
3508 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
3509 yypush_parse, only do it for the first invocation.
3510 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
3511 initialization to occur in yypush_parse but only on the first
3512 invocation.
3513
23522164
JD
35142006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
3515
3516 * data/push.c: Add CPP guards around push parser declarations in both
3517 the header and the code file.
3518 In the code file, move the push parser declarations to the same place
3519 they appear in the header file.
3520 Clean up the M4 some, especially the inconsistent underquoting in
3521 some b4_c_function_def and b4_c_function_decl uses.
3522
bb010fe5
JD
35232006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
3524
3525 Encapsulate the push parser state variables into an M4 macro so the
3526 push skeleton doesn't have to list them again for pull mode's yyparse.
3527 For push mode, remove yypush_parse's local equivalents of these
3528 variables to eliminate unnecessary copying between the two sets at
3529 run-time. This patch also fixes at least a bug related to multiple
3530 %initial-action invocations in push mode.
3531 * data/push.c (b4_declare_parser_variables): Rename to...
3532 (b4_declare_scanner_communication_variables): ... this for clarity and
3533 update both uses.
3534 (b4_declare_yyparse_variables): Remove and move its contents to the one
3535 spot where it was invoked.
3536 (b4_declare_parser_state_variables): New macro containing the parser
3537 state variables required by push mode.
3538 (struct yypstate): Replace all fields but yynew with
3539 b4_declare_parser_state_variables.
3540 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
3541 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
3542 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
3543 (yyparse or yypush_parse): For yyparse in pull mode, replace local
3544 parser state variable declarations with
3545 b4_declare_parser_state_variables.
3546 Don't initialize parser state variables when calling yypush_parse since
3547 yypstate_new already does that.
3548 Invoke the user's initial action only upon the first yypush_parse
3549 invocation.
3550 Remove all code that copies between the local parser state variables
3551 and the yypstate.
3552
2d212f8c
JD
35532006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
3554
3555 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
3556 prevent a name collision in a future patch where these names will
3557 sometimes be #define'd.
3558 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
3559 since it no longer has the same name as the existing argument.
3560 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
3561
e6e704dc
JD
35622006-12-19 Paolo Bonzini <bonzini@gnu.org>
3563 and Joel E. Denny <jdenny@ces.clemson.edu>
3564
3565 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
3566 that the argument is case-insensitive, and there's no `=' here.
3567 For the %skeleton entry, mention that %language is better.
3568 (Bison Options): Likewise for --language and --skeleton. Move the
3569 --skeleton entry so that the `Tuning the parser' section is sorted
3570 alphabetically on long options.
3571 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
3572 %language directive in detail here; cross-reference the %language
3573 documentation instead.
3574 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
3575 `%require "2.3b"' so that the example is always up-to-date.
148d66d8 3576 (Table of Symbols): Add entries for %language and %skeleton.
e6e704dc
JD
3577 * examples/extexi (normalize): Instead of replacing every %require
3578 argument with the current Bison version, just substitute for
3579 `@value{VERSION}'. This guarantees that we're testing what actually
3580 appears in the documentation.
3581 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
3582 rather than `@VERSION@'.
3583
0e021770
PE
35842006-12-18 Paul Eggert <eggert@cs.ucla.edu>
3585
fd575f05
PE
3586 * NEWS: Reword the %language news a bit, and put it earlier.
3587
0e021770
PE
3588 * src/getargs.c (skeleton_arg): Last arg is now location const *.
3589 Rewrite to simplify the logic.
3590 (language_argmatch): Likewise.
fd575f05
PE
3591 (program_name): We now own this var.
3592 * src/getargs.h (struct bison_language): Use char[] rather than
3593 const char *.
0e021770
PE
3594
3595 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
3596 Java is supported.
3597 * src/complain.c (program_name): Remove decl; no longer needed.
3598 * src/main.c (program_name): Remove; now belongs to getargs.
3599
36002006-12-18 Paolo Bonzini <bonzini@gnu.org>
3601
3602 * NEWS: Document %language.
3603
3604 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
3605
3606 * data/c-skel.m4, data/c++-skel.m4: New files.
3607 * data/glr.c: Complain on push parsers.
3608
3609 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
3610 over %skeleton.
148d66d8 3611 (Decl Summary): Document %language and %skeleton.
0e021770
PE
3612 (Command line): Document -L.
3613
3614 * examples/extexi: Rewrite %require directive.
3615 * examples/calc++/Makefile.am: Pass VERSION to extexi.
3616
3617 * src/files.c (compute_exts_from_gc): Look in language structure
3618 for .y extension.
3619 (compute_file_name_parts): Check whether .tab should be added.
3620 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
3621 (language, skeleton_arg, language_argmatch): New.
3622 (long_options): Add --language.
3623 (getargs): Use skeleton_arg, add -L/--language.
3624 * src/getargs.h: Include location.h.
3625 (struct bison_language, language, skeleton_arg, language_argmatch): New.
3626 * src/output.c (prepare): Pick default skeleton from struct language.
3627 Don't dispatch C skeletons here.
3628 * src/parse-gram.y (PERCENT_LANGUAGE): New.
3629 (prologue_declaration): Add "%language" rule, use skeleton_arg.
3630 * src/scan-gram.l ("%language"): New rule.
3631
3632 * tests/calc.at: Test %skeleton and %language.
3633 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
3634 (AT_GLR_IF): Look for %skeleton "glr.cc".
3635 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
3636 (AT_YACC_IF): Reject %language.
3637
5691bf57
PE
36382006-12-18 Paul Eggert <eggert@cs.ucla.edu>
3639
db06f0ce
PE
3640 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
3641 since it wasn't used; only the typedef name 'semantic_type' is needed.
3642 Also, omit trailing white space.
3643
5691bf57
PE
3644 * bootstrap: Sync from coreutils.
3645 (gnulib_extra_files): Add build-aux/announce.gen.
3646 (slurp): Adjust .gitignore files like .cvsignore files.
3647 * build-aux/announce-gen: Remove from CVS, since bootstrap
3648 now creates this.
3649
791934e4
JD
36502006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
3651
3652 Make %push-parser imply %pure-parser. This fixes several bugs; see
3653 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
3654 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
3655 pure_parser = true.
3656 * data/push.c: Don't bother testing b4_push_if when deciding whether
3657 to expand b4_declare_parser_variables globally.
3658 (yypush_parse): Likewise in here.
3659
3660 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
3661 (yy_reduce_print): Reformat M4 for readability.
3662
ee5abb37
JD
36632006-12-15 Bob Rossi <bob@brasko.net>
3664 and Joel Denny <jdenny@ces.clemson.edu>
3665
3666 * data/push.c (yypstate): Add typedef, and update all uses of
3667 struct yypstate to just yypstate.
3668 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
3669
16ca01f9
JD
36702006-12-14 Bob Rossi <bob@brasko.net>
3671
3672 * data/push.c (yypush_parse): Declare prototype regardless of
3673 %locations option.
3674
ab8e7e1a
JD
36752006-12-14 Bob Rossi <bob@brasko.net>
3676
3677 * data/push.c (yyparse): Remove the prototype and the #define when in
3678 push-parser mode.
3679
9bf32be3
JD
36802006-12-13 Bob Rossi <bob@brasko.net>
3681
3682 * data/push.c (yypstate_init): Rename to...
3683 (yypstate_new): ... this and use b4_c_function_def.
3684 (yypstate_delete): New.
3685 (yypush_parse): Change parameters yynval and yynlloc to be const.
3686 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
3687 yypstate_delete functions.
3688
f02e2948
JD
36892006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
3690
3691 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
3692 strange test case titles. Reported by Bob Rossi.
3693
38eb7751
PE
36942006-12-13 Paul Eggert <eggert@cs.ucla.edu>
3695
3696 * TODO: Add pointer to Sylvain Schmitz's work on static detection
3697 of potential ambiguities in GLR grammers.
3698
bd9d212b
JD
36992006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
3700
3701 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
3702 `bison ', use m4_index instead of m4_substr since chopping up a string
3703 containing M4-special characters causes problems here.
3704
3705 Fix a couple of bugs related to special characters in user-specified
3706 file names, and make it easier for skeletons to compute output file
3707 names with the same file name prefix as Bison-computed output file
3708 names.
3709 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
3710 b4_parser_file_name and b4_spec_defines_file instead of
3711 @output_parser_name@ and @output_header_name@, which are now redundant.
3712 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
3713 b4_parser_file_name, b4_spec_defines_file, and the new
3714 @basename(FILENAME@) instead of @output_parser_name@ and
3715 @output_header_name@, which inappropriately escaped the file names as
3716 C string literals.
3717 * src/files.c (all_but_ext): Remove static qualifier.
3718 (compute_output_file_names): Move `free (all_but_ext)' to...
3719 (output_file_names_free): ... here since all_but_ext is needed later.
3720 * src/files.h (all_but_ext): Extern.
3721 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
3722 exactly what MUSCLE_INSERT_STRING used to do.
3723 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
3724 characters are escaped properly.
3725 * src/output.c (prepare): Define muscle file_name_all_but_ext as
3726 all_but_ext.
3727 For pkgdatadir muscle, maintain previous functionality by using
3728 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
3729 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
3730 digraphs would never be expanded. Hopefully no one has M4-special
3731 characters in his Bison installation path.
3732 * src/scan-skel.l: Don't parse @output_header_name@ and
3733 @output_parser_name@ anymore since they're now redundant.
3734 In @output, use decode_at_digraphs.
3735 Parse a new @basename command that invokes last_component.
3736 (decode_at_digraphs): New.
3737 (BASE_QPUTS): Remove unused.
3738 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
3739 (Output file name): New tests.
3740
3f7ca628
JD
37412006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
3742
3743 Warn about output files that are generated by the skeletons and that
3744 conflict with other output files.
3745 * data/glr.c: Don't generate the header file here when glr.cc does.
3746 * src/files.c (file_names, file_names_count): New static globals.
3747 (compute_output_file_names): Invoke output_file_name_check for files
3748 not generated by the skeletons and remove existing checks.
3749 (output_file_name_check): New function that warns about conflicting
3750 output file names.
3751 (output_file_names_free): Free file_names.
3752 * src/files.h (output_file_name_check): Declare.
3753 * src/scan-skel.l: Invoke output_file_name_check for files generated by
3754 the skeletons.
3755 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
3756 (Conflicting output files): New tests.
3757
178e123e
PE
37582006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3759
3760 * doc/bison.texinfo: Fix a couple of typos.
3761
37622006-12-08 Bob Rossi <bob@brasko.net>
8def5cd0
JD
3763
3764 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
3765 Rename to...
3766 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
3767 update all uses.
3768 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
3769 (yypush_parse): Rename yypvars argument to yyps and remove redundant
3770 local pv.
3771 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
3772 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
3773
ea17f233
JD
37742006-12-07 Bob Rossi <bob@brasko.net>
3775 and Joel Denny <jdenny@ces.clemson.edu>
3776
3777 * data/push.c (yypvarsinit): Change return type from void* to struct
3778 yypvars*. No longer cast to void* on return.
3779 (struct yypvars): Remove yylen since it need not be remembered between
3780 yypushparse invocations.
3781 (yypushparse): Don't copy between yylen and pv->yylen.
3782
55a30bda
JD
37832006-12-05 Bob Rossi <bob@brasko.net>
3784
3785 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
3786 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
3787 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
3788 (struct yypvars): Remove b4_declare_parser_variables.
3789 (yypvarsinit): Remove init code for removed variables.
3790 (global scope): Do not declare b4_declare_parser_variables if
3791 push or pure mode.
3792 (yypushparse): Add b4_declare_parser_variables.
3793 Init new local variables, and remove init code for removed
3794 yypvars variables.
3795 (yyparse): Delete.
3796 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
3797 and yyparse for other modes.
3798 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
3799 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
3800 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
3801 (AT_PURE_LEX_IF): True if pure or push parser.
3802
85894313
JD
38032006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
3804
3805 Document Yacc prologue alternatives and default %destructor's and
3806 %printer's as experimental. Don't mention Java yet. Discussed at
3807 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
3808 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
3809 (2.3a): Annotate this entry to say the old forms of these features were
3810 also experimental.
3811 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
148d66d8 3812 Table of Symbols): Say they're experimental. Comment out any mention
85894313
JD
3813 of Java (we'll want this back eventually).
3814
02975b9a
JD
38152006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
3816
3817 Support a file name argument to %defines. Deprecate `=' in
3818 %file-prefix, %name-prefix, and %output. Discussed at
3819 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
3820 * NEWS (2.3a+): Mention.
148d66d8 3821 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
02975b9a
JD
3822 form of %defines, and remove `=' from entries for %file-prefix,
3823 %name-prefix, and %output.
3824 * src/parse-gram.y (prologue_declaration): Implement.
3825 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
3826 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
3827 all but one occurrence of %name-prefix.
3828 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
3829 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
3830 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
3831 occurrence of each of %file-prefix and %output. Add check for %defines
3832 with argument.
3833 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
3834 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
3835 Remove the `=' from %output.
3836
287b314e
JD
38372006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
3838
3839 Don't escape $ in test case titles since Autoconf 2.61 now does that
3840 correctly.
3841 * tests/actions.at (Default %printer and %destructor are not for error
3842 or $undefined): Here.
3843 (Default %printer and %destructor are not for $accept): Here.
3844 * tests/input.at (Invalid $n and @n): Here.
3845
3ebecc24
JD
38462006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
3847
3848 Rename <!> to <>. Discussed starting at
3849 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
3850 * NEWS (2.3a+): Update.
148d66d8 3851 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
3ebecc24
JD
3852 Update.
3853 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
3854 * src/scan-gram.l (INITIAL): Implement.
3855 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
3856 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
3857 comment.
3858 * tests/actions.at (Default tagless %printer and %destructor,
3859 Default tagged and per-type %printer and %destructor,
3860 Default %printer and %destructor are not for error or $undefined,
3861 Default %printer and %destructor are not for $accept,
3862 Default %printer and %destructor for mid-rule values): Update.
3863 * tests/input.at (Default %printer and %destructor redeclared,
3864 Unused values with default %destructor): Update.
3865
26b8a438
JD
38662006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
3867
3868 Don't let %prec take a nonterminal.
3869 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
3870 token.
3871 * tests/input.at (%prec takes a token): New test checking that %prec
3872 won't take a nonterminal.
3873
07c39ae9
JD
38742006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
3875
405d53b7
JD
3876 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
3877 it was double-quoted.
07c39ae9
JD
3878 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
3879 grammar is maintained with Bison's highest standards.
3880 * src/getargs.c: Fix some typos in Doxygen comments.
3881
580b8926
JD
38822006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
3883
3884 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
3885 later. Reported by Paul Eggert in
3886 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
3887 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
3888 * src/scan-code.l (translate_action): Don't bother invoking
3889 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
3890 (code_scanner_free): Instead of invoking
3891 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
3892 which frees more.
3893 * src/scan-gram.l (gram_scanner_free): Likewise.
3894 * src/scan-skel.l (scan_skel): Likewise.
3895
4502eadc
JD
38962006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
3897
3898 * src/files.c (tr): Change return type to void.
3899 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
3900 has been called previously for the same key.
3901 (muscle_find): Return storage instead of value so that
3902 --enable-gcc-warnings doesn't produce warnings that the return discards
3903 const. aver that the value and storage are the same since storage
3904 could potentially be NULL when value is not.
3905 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
3906 same as 0.
3907
7746c8f6
PE
39082006-11-08 Paul Eggert <eggert@cs.ucla.edu>
3909
3910 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
3911 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
3912 us a slightly cleaner distribution, and also works.
3913 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
3914 gnulib changes.
3915
eb095650
PE
39162006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
3917 and Paul Eggert <eggert@cs.ucla.edu>
3918
3919 Don't let Bison leak memory except when it complains.
3920 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
3921 (spec_defines_file, dir_prefix): Now char *, not const char *,
3922 since they are freed.
3923 * src/files.c: Likewise.
3924 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
3925 Likewise.
3926 (tr): Now operates in-place. All uses changed.
3927 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
3928 values.
3929 (compute_file_name_parts, compute_output_file_names): Don't store
3930 read-only data in variables that will be freed.
3931 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
3932 src_extension, and header_extension.
3933 (output_file_names_free): New public function to free
3934 spec_verbose_file, spec_graph_file, spec_defines_file,
3935 parser_file_name, and dir_prefix.
3936 * src/getargs.c (getargs): Don't store read-only data in variables that
3937 will be freed.
3938 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
3939 (which previously existed but was unused), and quotearg_free.
3940 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
3941 * src/muscle_tab.c: Likewise.
3942 (muscle_entry): Make the value char const *,
3943 and add a new storage member that is char * and can be freed.
3944 (muscle_entry_free): New private function.
3945 (muscle_init): Use it instead of free.
3946 (muscle_insert, muscle_grow): Update and use new storage member.
3947 (muscle_code_grow): Free the string passed to muscle_grow
3948 since it's not needed anymore.
3949 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
3950 add a new `char *code' member.
3951 ("{...}"): Declare semantic type as code.
3952 * src/scan-code.h (translate_rule_action):
3953 (translate_symbol_action, translate_code, translate_action): Return
3954 `char const *' rather than `char *' since external code should not free
3955 these strings.
3956 * src/scan-code.l: Likewise.
3957 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
3958 which is "{...}" in the parser.
3959 * tests/Makefile.am (maintainer-check-valgrind): Set
3960 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
3961 Valgrind.
3962 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
3963 complain.
3964 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
3965 expecting a non-zero exit status sets --leak-check=summary and
3966 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
3967 this case, and we don't want to hear about it.
3968
ac564be4
PE
39692006-11-08 Paul Eggert <eggert@cs.ucla.edu>
3970
3971 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
3972 instead of from the template, to simplify configuration a bit.
3973 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
3974 and m4/wint_t.m4, as they are needed with the latest gnulib.
3975
17bd8a73
JD
39762006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
3977
3978 Disable unset/unused mid-rule value warnings by default, and recognize
3979 --warnings=midrule-values to enable them. Discussed starting at
3980 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
3981 * NEWS (2.3a+): Mention.
3982 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
3983 warnings): Add entry for midrule-values subargument.
3984 * src/reader.c (symbol_should_be_used): Don't return true just because
3985 the value is a set/used mid-rule value unless
3986 --warnings=midrule-values was specified.
3987 * tests/input.at (Unused values, Unused values before symbol
3988 declarations): Run tests with and without --warnings=midrule-values.
3989
3990 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
3991 than LIST_FREE directly.
3992
89eb3c76
JD
39932006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
3994
3995 Finish implementing --warnings=error, which should not be implied by
3996 --warnings=all (or by its synonyms -W and --warnings without
3997 subarguments).
3998 * src/complain.c (set_warning_issued): New function to report that
3999 warnings are being treated as errors and to record an error if so.
4000 Invoke...
4001 (warn_at, warn): ... here.
4002 * src/getargs.c (warnings_args, warnings_types): Reorder so that
4003 "error - warnings are errors" does not appear above "all - all of the
4004 above".
4005 (getargs): For -W and --warnings without subarguments, don't let
4006 FLAGS_ARGMATCH set warnings_error in warnings_flag.
4007 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
4008
ba7560e2
JD
40092006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4010
4011 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
4012 empty subargument list. For example: `bison --warnings= parser.y'.
4013
31283fc3
JD
40142006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4015
4016 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
4017 the parser header file so that gcc doesn't warn.
4018
12e35840
JD
40192006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4020
4021 Split the default %destructor/%printer into two kinds: <*> and <!>.
4022 Discussed starting at
4023 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
4024 * NEWS (2.3a+): Mention.
4025 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
4026 previous change today related to mid-rules.
148d66d8 4027 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
3ebecc24 4028 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
12e35840
JD
4029 (TYPE_TAG_ANY): Add as <*>.
4030 (TYPE_TAG_NONE): Add as <!>.
4031 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
4032 for <*> and <!>.
4033 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
4034 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
4035 * src/symlist.c (symbol_list_default_new): Split into tagged and
4036 tagless versions.
4037 (symbol_list_destructor_set, symbol_list_printer_set): Split
4038 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
4039 SYMLIST_DEFAULT_TAGLESS.
4040 * src/symlist.h: Update symbol_list_default*_new prototypes.
4041 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
4042 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
4043 * src/symtab.c (default_destructor, default_destructor_location,
4044 default_printer, default_printer_location): Split each into tagged and
4045 tagless versions.
4046 (symbol_destructor_get, symbol_destructor_location_get,
4047 symbol_printer_get, symbol_printer_location_get): Implement tagged
4048 default and tagless default cases.
4049 (default_destructor_set, default_printer_set): Split each into tagged
4050 and tagless versions.
4051 * src/symtab.h: Update prototypes.
4052 * tests/actions.at (Default %printer and %destructor): Rename to...
4053 (Default tagless %printer and %destructor): ... this, and extend.
4054 (Per-type %printer and %destructor): Rename to...
4055 (Default tagged and per-type %printer and %destructor): ... this, and
4056 extend.
4057 (Default %printer and %destructor for user-defined end token): Extend.
4058 (Default %printer and %destructor are not for error or $undefined):
4059 Update.
4060 (Default %printer and %destructor are not for $accept): Update.
4061 (Default %printer and %destructor for mid-rule values): Extend.
4062 * tests/input.at (Default %printer and %destructor redeclared): Extend.
4063 (Unused values with default %destructor): Extend.
4064
f91b1629
JD
40652006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4066
4067 Don't apply the default %destructor/%printer to an unreferenced midrule
4068 value. Mentioned at
4069 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
4070 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
4071 like $@n instead of just @n so that the default %destructor/%printer
4072 logic doesn't see them as user-defined symbols.
4073 (symbol_is_dummy): Check for both forms of the name.
4074 * src/reader.c (packgram): Remove the `$' from each midrule symbol
4075 name for which the midrule value is referenced in any action.
4076 * tests/actions.at (Default %printer and %destructor for mid-rule
4077 values): New test.
4078 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
4079 for change to dummy symbol names.
4080
519d0004
JD
40812006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4082
4083 Warn about unset midrule $$ if the corresponding $n is used.
4084 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
4085 $n usage.
4086 (packgram): Before invoking grammar_rule_check on any rule, make sure
4087 all actions have already been scanned in order to set `used' flags.
4088 Otherwise, checking that a midrule's $$ is set will not always work
4089 properly because the midrule check must forward-reference the midrule's
4090 parent rule.
4091 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
4092 warning.
4093
a501eca9
JD
40942006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4095
4096 More improvements to the documentation of the prologue alternatives:
4097 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
4098 Bison manual.
4099 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
4100 some text to clarify the relative importance of the new directives and
4101 to show how these directives may be viewed as code labels.
4102
2cbe6b7f
JD
41032006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
4104
4105 Similar to the recently removed %before-header, add %code-top as the
4106 alternative to the pre-prologue. Mentioned at
4107 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
4108 Also, let the prologue alternatives appear in the grammar section.
4109 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
4110 (prologue_declaration): Move the existing prologue alternatives to...
4111 (grammar_declaration): ... here and add %code-top.
4112 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
4113
4114 Clean up and extend documentation for the prologue alternatives.
4115 * NEWS (2.3a+): Describe prologue alternatives.
4116 * doc/bison.texinfo (Prologue): Move discussion of prologue
4117 alternatives to...
4118 (Prologue Alternatives): ... this new section, and extend it to discuss
4119 all 4 directives in detail.
148d66d8
JD
4120 (Table of Symbols): Clean up discussion of prologue alternatives and
4121 add %code-top.
2cbe6b7f 4122
e557d3ea
JMG
41232006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4124
4125 DJGPP specific issues.
4126
4127 * djgpp/config.bat: config.hin has been moved to lib. Adjust
4128 config.bat accordingly.
4129 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
4130 * djgpp/config.site: Likewise.
4131
136a0f76
PB
41322006-10-16 Paolo Bonzini <bonzini@gnu.org>
4133
27bd5d67
PB
4134 Replace %*-header with %provides, %requires, %code. See discussion at
4135 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
4136
136a0f76
PB
4137 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
4138 (b4_user_start_header): Remove.
4139 * data/glr.c: Use new macros instead of b4_*start_header
4140 and b4_*end_header.
4141 * data/glr.cc: Likewise.
4142 * data/lalr1.cc: Likewise.
4143 * data/push.c: Likewise.
4144 * data/yacc.c: Likewise.
4145
4146 * doc/bison.texinfo: Remove %before-header, rename
4147 %{start,end,after}-header to %requires, %provides, %code.
4148
4149 * src/parse-gram.y: Likewise (also rename token names accordingly).
4150 * src/scan-gram.l: Likewise.
4151 * tests/actions.at: Likewise.
4152
10f429ef
PE
41532006-10-14 Paul Eggert <eggert@cs.ucla.edu>
4154
4155 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
4156 Problem reported by Joel E. Denny.
4157
41582006-10-14 Jim Meyering <jim@meyering.net>
4159
4160 (Sync from coreutils.)
4161 Work also when the working directory (with e.g. coreutils sources)
4162 is version controlled with git, rather than CVS.
4163 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
4164 rather than CVS.
4165 In messages and comments, say e.g., "checked-out sources",
4166 rather than "CVS sources".
4167 (version_controlled_file): New function. Work for git as well as
4168 for CVS. Don't use grep's -q option.
4169 (slurp): Call it here, in place of CVS-specific code.
4170
c4bd5bf7
JD
41712006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
4172
4173 Fix testsuite for ./configure --enable-gcc-warnings:
4174 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
4175 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
4176 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
4177 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
4178 * test/regression.at (Diagnostic that expects two alternatives):
4179 Likewise.
4180
46356ea4
PE
41812006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4182
231ed89a
PE
4183 * bootstrap.conf (gnulib_modules): Add config-h.
4184 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
4185 worry about HAVE_CONFIG_H.
4186 * lib/abitset.c: Likewise.
4187 * lib/bitset.c: Likewise.
4188 * lib/bitset_stats.c: Likewise.
4189 * lib/bitsetv-print.c: Likewise.
4190 * lib/bitsetv.c: Likewise.
4191 * lib/ebitset.c: Likewise.
4192 * lib/get-errno.c: Likewise.
4193 * lib/lbitset.c: Likewise.
4194 * lib/subpipe.c: Likewise.
4195 * lib/timevar.c: Likewise.
4196 * lib/vbitset.c: Likewise.
4197 * lib/bitset.c: Include "bitset.h" first, to test interface.
4198 * lib/bitset_stats.c: Include "bitset_stats.h" first.
4199 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
4200 * lib/bitsetv.c: Include "bitsetv.h" first.
4201 * lib/get-errno.c: Include "get-errno.h" first.
4202 * m4/.cvsignore: Add config-h.m4.
4203 * tests/actions.at (Default %printer and %destructor for ...):
4204 Adjust expected line numbers in output to reflect removal of #if
4205 HAVE_CONFIG_H lines.
4206 * tests/glr-regression.at (Missed %merge type warnings when ...):
4207 Likewise.
4208 * tests/regression.at (Braced code in declaration in rules section):
4209 Likewise.
4210 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
4211 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
4212 Include <config.h> unconditionally.
4213
46356ea4
PE
4214 * bootstrap: Sync from coreutils, as follows:
4215
4216 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
4217
4218 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
4219 variable was sometimes used without being initialized. This
4220 messed up the installation of the INSTALL file in some cases.
4221
4222 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
4223
4224 * bootstrap (usage, main program, symlink_to_gnulib): Add option
4225 --copy. Inspired by a suggestion from Bruno Haible.
4226
4227 2006-10-03 Jim Meyering <jim@meyering.net>
4228
4229 * bootstrap: Undo last change to this file, since now gnulib-tool
4230 sticks with the automake default in generating dependencies.
4231
dd4bf078
PE
42322006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4233
cf2a5f7c
PE
4234 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
4235 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
4236
4237 * doc/bison.1: Add copyright notice.
4238
4239 * data/glr.c: Don't include <stdarg.h>; not used.
4240
35fe0834
PE
4241 * NEWS: The -g and --graph options now output graphs in Graphviz
4242 DOT format, not VCG format.
4243 * doc/bison.1: Likewise.
4244 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
fcab4a2e
PE
4245 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
4246 of this change in
4247 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
35fe0834
PE
4248 * TODO: Remove Graphviz entry.
4249 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
4250 remove vcg.c, vcg.h, vcg_defaults.h.
4251 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
4252 * src/graphviz.c, src/graphviz.h: New files.
4253 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
4254 * src/files.h: Make comment more generic.
4255 * src/main.c (main): Likewise.
4256 * src/print_graph.h: Likewise.
4257 * src/getargs.c (usage): Make usage description more generic.
4258 * src/print_graph.c: Include graphviz.h rather than vcg.h.
4259 (static_graph, fgraph): Remove. All uses changed to pass
4260 arguments instead of sharing a static var.
4261 (print_core, print_actions, print_state, print_graph):
4262 Output graphviz format rather than VCG format.
4263 * tests/.cvsignore: Remove *.vcg; add *.dot.
4264 * tests/output.at: Expect *.dot files, not *.vcg files.
4265
dd4bf078
PE
4266 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
4267 accommodates the 2006-10-08 change.
4268
efdd7421
PE
42692006-10-11 Bob Rossi <bob@brasko.net>
4270
4271 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
4272 (b4_yyssa, b4_yyerror_range): New macros.
4273 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
4274 (yypvarsinit): Remove init of removed fields.
4275 (yypushparse): Remove use of removed fields; use new macros instead.
4276
96a1981a
PE
42772006-10-11 Paul Eggert <eggert@cs.ucla.edu>
4278
4279 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
4280 in a push parser. Reindent slightly to match yacc.c better.
4281
42822006-10-11 Bob Rossi <bob@brasko.net>
4283
46356ea4
PE
4284 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
4285 yymsg_alloc fields.
4286 (yypvarsinit, yypushparse): Remove init of removed fields.
4287 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
96a1981a 4288
c1630a8b
PE
42892006-10-09 Paul Eggert <eggert@cs.ucla.edu>
4290
4291 * THANKS: Add Paolo Bonzini and Bob Rossi.
4292
90b9908d
PB
42932006-10-08 Paolo Bonzini <bonzini@gnu.org>
4294
4295 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
4296 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
4297 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
4298 b4_define_user_cde and uses): Remove.
4299 (b4_comment, b4_prefix, b4_sync_start): New.
4300 * data/bison.m4: New file, with most of the content removed from c.m4.
4301 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
4302 * src/output.c (output_skeleton): Pass bison.m4.
4303 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
4304 only if specified.
4305
cf806753
PE
43062006-10-05 Paul Eggert <eggert@cs.ucla.edu>
4307
4308 Fix test failure reported by Tom Lane in
4309 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
4310 and try to make such failures easier to catch in the future.
4311 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
4312 that's now the caller's responsibility.
4313 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
4314 Set yychar = YYEOF if it's negative.
4315 * tests/actions.at (yylex): Abort if asked to read past EOF.
4316 * tests/conflicts.at (yylex): Likewise.
4317 * tests/cxx-type.at (yylex): Likewise.
4318 * tests/glr-regression.at (yylex): Likewise.
4319 * tests/input.at (yylex): Likewise.
4320 * tests/regression.at (yylex): Likewise.
4321 * tests/torture.at (yylex): Likewise.
4322
0e2f006a
PE
43232006-10-01 Paul Eggert <eggert@cs.ucla.edu>
4324
4325 Fix problems with translating English-language diagnostics.
4326 * bootstrap: Fix bug introduced in recent bootstrap changes, with
4327 respect to bison-runtime pot generation. The YY_ stuff
4328 wasn't being captured.
4329 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
4330 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
4331 * runtime-po/POTFILES.in: Add data/push.c.
4332
e3ddc1e3
PE
43332006-09-29 Paul Eggert <eggert@cs.ucla.edu>
4334
4335 Merge bootstrap changes from coreutils.
4336
4337 2006-09-28 Jim Meyering <jim@meyering.net>
4338
4339 Automatically generated dependencies are important even
4340 when all of the sources in a directory come from gnulib.
4341 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
4342 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
4343
4344 2006-09-23 Jim Meyering <jim@meyering.net>
4345
4346 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
4347
4348 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4349
4350 * bootstrap: Add support for --force.
4351 (usage): New function. Describe usage less tersely.
4352 (CVS_only_file): New var.
4353
01e972b3
PE
43542006-09-21 Paul Eggert <eggert@cs.ucla.edu>
4355
4356 * data/push.c (YYPUSH_MORE): Make it an enum instead.
4357 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
4358 Adjust white space and comments to match GNU style better.
4359
c63d3e90
PE
43602006-09-20 Bob Rossi <bob@brasko.net>
4361
4362 * data/push.c (yyresult_get): Remove function.
4363 (YYPUSH_MORE): Add #define.
4364 (yypushparse): Modify return value.
4365
e70f46d1
PE
43662006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4367
4368 * stamp-h.in: Remove; no longer needed.
4369 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
4370 Remove config.h, config.hin, intl (no longer created).
4371 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
4372 stamp-h1.
4373
4374 Sync bootstrap from coreutils, as follows:
4375
4376 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
4377
4378 * bootstrap (symlink_to_gnulib): New function.
4379 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
4380 to copies-of-gnulib.
4381 (cp_mark_as_generated, slurp, gnulib_files):
4382 Avoid making a copy if it's the same as the old version.
4383 (gnulib_files): Add support for this variable (used by Bison).
4384
a92be413
PE
43852006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4386
4387 * src/getargs.c (usage): Rework to use conventions similar to
4388 coreutils, to make translation a bit easier and the code a bit
4389 smaller. Problem reported by Tim Van Holder.
4390
4f82b42a
PE
43912006-09-15 Paul Eggert <eggert@cs.ucla.edu>
4392
3b2942e6
PE
4393 Use some of gnulib's new modules, taken from coreutils.
4394
4395 * bootstrap: Sync from coreutils, except add support for gnulib_files.
4396 * bootstrap.conf: New file.
4397 (gnulib_modules): Add configmake, inttypes, unistd.
4398 (XGETTEXT_OPTIONS): Add complain, complain_at,
4399 fatal, fatal_at, warn, warn_at, unexpected_end.
4400 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
4401 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
4402 (gl_EARLY): Add.
4403 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
4404 (gl_INIT): Add
4405 (GNULIB_AUTOCONF_SNIPPET): Remove.
4406 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
4407 the pickiest.
4408 * lib/.cvsignore: Add inttypes_.h.
4409 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
4410 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
4411 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
4412 no-longer-necessary initializations.
4413 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
4414 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
4415 use the unistd module.
4416 * src/system.h: Likewise.
4417 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
4418 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
4419 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
4420 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
4421 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
4422 * src/system.h: Include inttypes.h unconditionally, now that we
4423 use the inttypes module. Don't bother to include stdint.h, since
4424 inttypes.h now does that for us.
4425 (LOCALEDIR): Remove, now that we use the configmake module.
4426 * src/getargs.c: Include configmake.h.
4427 * src/main.c: Likewise.
4428 * src/output.c: Likewise.
4429 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
4430 not from $abs_top_builddir, since config.h moved.
4431
4432
4f82b42a
PE
4433 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
4434 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
4435
4436 * src/parse-gram.y (symbol_declaration): Don't put statements
4437 before declarations; it's not portable to C89.
4438 * src/scan-code.l (handle_action_at): Likewise.
4439
4440 * src/scan-code.l: Always initialize braces_level; the old code
4441 left it uninitialized and therefore had undefined behavior.
4442
4443 Don't attempt to redefine 'assert', since it runs afoul of
4444 systems where standard headers (mistakenly) include <assert.h>.
4445 Instead, define and use our own alternative, called 'aver'.
4446 * src/reader.c: Don't include assert.h, since we no longer
4447 use assert.
4448 * src/scan-code.l: Likewise.
4449 * src/system.h (assert): Remove, replacing with....
4450 (aver): New function, taking a bool arg. All uses changed.
4451 * src/tables.c (pack_vector): Ensure that aver arg is bool,
4452 not merely an integer.
4453
31c10e38
PE
44542006-09-15 Bob Rossi <bob@brasko.net>
4455
3c0be434
JD
4456 Add support for push parsing. Based on the original work of
4457 Odd Arild Olsen <oao@fibula.no>.
31c10e38
PE
4458 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
4459 * data/c.m4 (YYPUSH): New.
4460 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
3c0be434 4461 * data/push.c: New file.
31c10e38
PE
4462 * src/getargs.c (push_parser): New var.
4463 * src/getargs.h (push_parser): New declaration.
4464 * src/output.c (prepare): Add macro insertion of `push_flag'.
4465 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
4466 (prologue_declaration): Parse %push-parser.
4467 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
4468 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
4469 list of removed lines from the traces observed.
4470 (AT_CHECK_CALC_LALR): Added push parser tests.
4471
fa7b79c0
PE
44722006-09-13 Paul Eggert <eggert@cs.ucla.edu>
4473
21fe08ca
PE
4474 * NEWS: Version 2.3a.
4475 * configure.ac (AC_INIT): Likewise.
4476
e8ec4d9b
PE
4477 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
4478 "#define YYSTYPE int" that caused "make maintainer-check" to fail
4479 due to header ordering dependencies. I don't know why the #define
4480 was there.
4481
fa7b79c0
PE
4482 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
4483 runtime cost when YYDEBUG is not defined, and so that some tests
4484 that used to fail now work. Problem and initial suggestion by
4485 Paolo Bonzini.
4486 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
4487 * data/glr.cc (b4_parser_class_name):
4488 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
4489 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
4490 (yydebug_) [YYDEBUG]: New member.
4491 (yycdebug_): Now defined only if YYDEBUG.
4492 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
4493 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
4494 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
4495 if YYYDEBUG.
4496 (debug_stream, set_debug_stream, debug_level, set_debug_level):
4497 Define only if YYDEBUG.
4498 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
4499 set_debug_level.
4500 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
4501 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
4502 AT_CHECK_CALC_GLR_CC that are working now.
4503
4ec13d60
PE
45042006-09-12 Paul Eggert <eggert@cs.ucla.edu>
4505
4506 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
4507 We don't need them in glr.cc, and glr.c defines them.
4508 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
4509 assumes that defining it to anything is the same as defining
4510 it to 1. Problem reported by Paolo Bonzini.
4511
8e1687ae
PE
45122006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
4513
4514 * data/c.m4 (b4_null, b4_case): Define.
4515 * src/output.c (prepare_symbols): Use b4_null.
4516 (user_actions_output): Use b4_case.
4517
3dc5e96b
PE
45182006-09-11 Paul Eggert <eggert@cs.ucla.edu>
4519
aef3da86
PE
4520 * data/glr.c (b4_shared_declarations): Put start-header first,
4521 before any #includes that we generate, so that feature-test
4522 macros work. Problem reported by Michael Deutschmann in
4523 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
4524 * data/lalr1.cc: Likewise.
4525 * doc/bison.texinfo (Prologue): Document that feature-test macros
4526 should be defined before any Bison declarations.
4527 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
4528 that depend on location.hh after, not before, Bison decls, since
4529 we now include location.hh after the first user prologue.
4530
3dc5e96b
PE
4531 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
4532 Sander Brandenburg in
4533 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
4534 Also, fix minor white space and comment issues.
aef3da86
PE
4535 (Prologue): Mention that it's better to define feature-test macros
4536 before Bison declarations. Problem reported by Michael Deutschmann.
4537
4538 * README-cvs: Fix typo: "&" should be "&&". Problem reported
4539 by Jim Meyering.
4540 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
4541 This adjusts to recent gnulib changes.
3dc5e96b 4542
b2a0b7ca
JD
45432006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
4544
4545 Finish implementation of per-type %destructor/%printer. Discussed
4546 starting at
4547 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
4548 and
4549 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
4550 * NEWS (2.3+): Add a description of this feature to the default
4551 %destructor/%printer description.
4552 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
4553 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
4554 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
4555 list node contains a semantic type.
4556 * src/symtab.c, src/symtab.h: Extend with a table that associates
4557 semantic types with their %destructor's and %printer's.
4558 (semantic_type_from_uniqstr, semantic_type_get,
4559 semantic_type_destructor_set, semantic_type_printer_set): New functions
4560 composing the public interface of that table.
4561 (symbol_destructor_get, symbol_destructor_location_get,
4562 symbol_printer_get, symbol_printer_location_get): If there's no
4563 per-symbol %destructor/%printer, look up the per-type before trying
4564 the default.
4565 * tests/actions.at (Per-type %printer and %destructor): New test case.
4566 * tests/input.at (Default %printer and %destructor redeclared):
4567 Extend to check that multiple occurrences of %symbol-default in a
4568 single %destructor/%printer declaration is an error.
4569 (Per-type %printer and %destructor redeclared, Unused values with
4570 per-type %destructor): New test cases.
4571
3be03b13
JD
45722006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
4573
4574 Require default %destructor/%printer to be declared using
4575 %symbol-default instead of an empty symbol list, and start working on
4576 new per-type %destructor/%printer. Discussed at
4577 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
4578 * NEWS (2.3+): Add %symbol-default to example.
4579 * bison.texinfo (Freeing Discarded Symbols): Likewise.
148d66d8 4580 (Table of Symbols): Add entry for %symbol-default.
3be03b13
JD
4581 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
4582 (generic_symlist, generic_symlist_item): New nonterminals for creating
4583 a list in which each item is a symbol, semantic type, or
4584 %symbol-default.
4585 (grammar_declaration): Use generic_symlist in %destructor and %printer
4586 declarations instead of symbols.1 or an empty list.
4587 (symbol_declaration, precedence_declaration, symbols.1): Update actions
4588 for changes to symbol_list.
4589 * src/reader.c: Update for changes to symbol_list.
4590 * src/scan-code.l: Likewise.
4591 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
4592 * src/symlist.c, src/symlist.h: Extend such that a list node may
4593 represent a semantic type or a %symbol-default in addition to just an
4594 ordinary symbol. Add switched functions for setting %destructor's and
4595 %printer's.
4596 * tests/actions.at, tests/input.at: Add %symbol-default to all default
4597 %destructor/%printer declarations.
4598
3508ce36
JD
45992006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
4600
4601 Whether the default %destructor/%printer applies to a particular symbol
4602 isn't a question of whether the user *declares* that symbol (in %token,
4603 for example). It's a question of whether the user by any means
4604 *defines* the symbol at all (by simply using a char token, for
4605 example). $end is defined by Bison whereas any other token with token
4606 number 0 is defined by the user. The error token is always defined by
4607 Bison regardless of whether the user declares it with %token, but we
4608 may one day let the user define error as a nonterminal instead.
4609 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
4610 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
4611 the meaning of "user-defined".
4612 * tests/actions.at (Default %printer and %destructor for user-declared
4613 end token): Rename to...
4614 (Default %printer and %destructor for user-defined end token): ...
4615 this.
4616
4617 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
4618 computation of whether to apply the default, don't maintain a list of
4619 every Bison-defined symbol. Instead, just check for a first character
4620 of '$', which a user symbol cannot have, and check for the error token.
4621
9350499c
JD
46222006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
4623
4624 Don't apply the default %destructor or %printer to the error token,
4625 $undefined, or $accept. This change fits the general rule that the
4626 default %destructor and %printer are only for user-declared symbols,
4627 and it solves several difficulties that are described in the new test
4628 cases listed below.
4629 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
4630 * tests/actions.at (Default %printer and %destructor are not for error
4631 or $undefined, Default %printer and %destructor are not for $accept):
4632 New test cases.
4633
4d7370cb
JD
46342006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
4635
4636 Allow %start after the first rule.
4637 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
4638 when parsing the first rule.
4639 (check_and_convert_grammar): Search for it here after all grammar
4640 declarations have been parsed. Skip midrules, which have dummy LHS
4641 nonterminals.
4642 * src/symtab.c (symbol_is_dummy): New function.
4643 * src/symtab.h (symbol_is_dummy): Declare it.
4644 * tests/input.at (%start after first rule): New test.
4645
6d0ef4ec
JD
46462006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
4647
4648 Redo some of the previous commit: add back the ability to use
4649 non-aliased/undeclared string literals since it might be useful to
4650 those declaring %token-table.
4651 * src/reader.c (check_and_convert_grammar): Undo changes in previous
4652 commit: don't worry about complaints from symbols_pack.
4653 * src/symtab.c (symbol_new, symbol_class_set,
4654 symbol_check_alias_consistency): Undo changes in previous commit: count
4655 each string literal as a new symbol and token, assign it a symbol
4656 number, and don't complain about non-aliased string literals.
4657 (symbols_pack): Since symbol_make_alias still does not decrement symbol
4658 and token counts but does still set aliased tokens to the same number,
4659 symbol_pack_processor now leaves empty slots in the symbols array.
4660 Remove those slots.
4661 * tests/regression.at (Undeclared string literal): Remove test case
4662 added in previous commit since non-aliased string literals are allowed
4663 again.
4664 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
4665 remove unnecessary string literal declarations.
4666 * tests/sets.at (Firsts): Likewise.
4667
965537bc
JD
46682006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
4669
4670 Don't allow an undeclared string literal, but allow a string literal to
4671 be used before its declaration.
4672 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
4673 symbols_pack complained.
4674 * src/symtab.c (symbol_new): Don't count a string literal as a new
4675 symbol.
4676 (symbol_class_set): Don't count a string literal as a new token, and
4677 don't assign it a symbol number since symbol_make_alias does that.
4678 (symbol_make_alias): It's not necessary to decrement the symbol and
4679 token counts anymore. Don't assume that an alias declaration occurs
4680 before any uses of the identifier or string, and thus don't assert that
4681 one of them has the highest symbol number so far.
4682 (symbol_check_alias_consistency): Complain if there's a string literal
4683 that wasn't declared as an alias.
4684 (symbols_pack): Bail if symbol_check_alias_consistency failed since
4685 symbol_pack asserts that every token has been assigned a symbol number
4686 although undeclared string literals have not.
4687 * tests/regression.at (String alias declared after use, Undeclared
6d0ef4ec 4688 string literal): New test cases.
965537bc
JD
4689 (Characters Escapes, Web2c Actions): Declare string literals as
4690 aliases.
4691 * tests/sets.at (Firsts): Likewise.
4692
47aee066
JD
46932006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
4694
4695 In the grammar scanner, STRING_FINISH unclosed constructs and return
4696 them to the parser in order to improve error messages.
4697 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
4698 SC_BRACED_CODE, SC_PROLOGUE): Implement.
4699 * tests/input.at (Unclosed constructs): New test case.
4700 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
4701 seen.
4702
4703 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
4704 unused global.
4705
1f6b3679
JD
47062006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
4707
4708 Handle string aliases for character tokens correctly.
4709 * src/symtab.c (symbol_user_token_number_set): If the token has an
4710 alias, check and set its alias's user token number instead of its own,
4711 which is set to indicate the alias. Previously, every occurrence of
4712 the character token in the grammar overwrote that alias indicator with
4713 the character code.
4714 * tests/input.at (String aliases for character tokens): New test.
4715
219741d8
JD
47162006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
4717
4718 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
4719
11daa4e7
PE
47202006-08-11 Paul Eggert <eggert@cs.ucla.edu>
4721
4722 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
4723 to prevent failures when building on older platforms.
4724 Check for autopoint failure.
4725 Set XGETTEXT_OPTIONS to values that check for C format strings,
4726 so that translators are warned about them (this also helps
4727 prevent core dumps).
4728
4729 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
4730 function, since it simplifies our code a bit.
4731
4732 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
4733 rather than -W, so we don't get bogus warnings about sign comparisons.
4734 Add -Wpointer-arith, since that warning is useful (it reports code
4735 that does not conform to C89 and that some compilers reject).
4736 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
4737 since it's no longer needed.
4738
f9bfc42a
JD
47392006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
4740
4741 Clean up scanners a bit.
4742 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
4743 definitions so gcc won't warn when obstack_for_string is unused.
4744 * src/scan-code.l: config.h and system.h are already #include'd by
4745 scan-code-c.c, so get rid of them here.
4746 * src/scan-gram.l: Likewise.
4747 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
4748 definitions rather than duplicating the rest of it.
4749 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
4750
06e8700a
JD
47512006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
4752
4753 Suppress signed/unsigned comparison warnings for yycheck.
4754 * data/c.m4 (b4_safest_int_type): New macro.
4755 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
4756 a signed int type, cast it to b4_safest_int_type first.
4757 * data/yacc.c: Likewise.
4758 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
4759 also overwritten.
4760
9c437126
PE
47612006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
4762
4763 * doc/bison.texinfo: Fix some typos.
4764
284d8a13
PE
47652006-08-02 Paul Eggert <eggert@cs.ucla.edu>
4766
4767 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
4768 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
4769
4770 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
4771 the latest gnulib does this a different way.
4772 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
4773 translation was patched, so stop omitting it.
4774
ec5479ce
JD
47752006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
4776
4777 Enable declaration of default %printer/%destructor. Make the parser
4778 use these for all user-declared grammar symbols for which the user does
4779 not declare a specific %printer/%destructor. Thus, the parser uses it
4780 for token 0 if the user declares it but not if Bison generates it as
4781 $end. Discussed starting at
4782 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
4783 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
4784 and
4785 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
4786 * NEWS (2.3+): Mention.
4787 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
4788 declare a %destructor for a mid-rule's semantic value. It's just
4789 impossible to declare one specific to it.
4790 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
4791 code. Describe default %destructor form.
4792 * src/parse-gram.y (grammar_declaration): Parse default
4793 %printer/%destructor declarations.
4794 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
4795 and symbol_destructor_location_get rather than accessing the destructor
4796 and destructor_location members of struct symbol.
4797 (symbol_printers_output): Likewise but for %printer's.
4798 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
4799 again.
4800 * src/symtab.c (default_destructor, default_destructor_location,
4801 default_printer, default_printer_location): New static global
4802 variables to record the default %destructor and %printer.
4803 (symbol_destructor_get, symbol_destructor_location_get,
4804 symbol_printer_get, symbol_printer_location_get): New functions to
4805 compute the appropriate %destructor and %printer for a symbol.
4806 (default_destructor_set, default_printer_set): New functions to set the
4807 default %destructor and %printer.
4808 * src/symtab.h: Prototype all those new functions.
4809 * tests/actions.at (Default %printer and %destructor): New test to
4810 check that the right %printer and %destructor are called, that they're
4811 not called for $end, and that $$ and @$ work correctly.
4812 (Default %printer and %destructor for user-declared end token): New
4813 test to check that the default %printer and %destructor are called for
4814 a user-declared end token.
4815 * tests/input.at (Default %printer and %destructor redeclared, Unused
4816 values with default %destructor): New tests to check related grammar
4817 warnings and errors.
4818
868d2d96
JD
48192006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
4820
4821 Clean up handling of %destructor for the end token (token 0).
4822 Discussed starting at
4823 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
4824 and
4825 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
4826
4827 Make the skeletons consistent in how they pop the end token and invoke
4828 its %destructor.
4829 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
4830 state, which has token number 0, since this would invoke the
4831 %destructor for the end token.
4832 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
4833 until after shifting the end token, or else it won't be popped.
4834 * data/yacc.c (yyparse): Likewise.
4835
4836 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
4837 it's the end token. Upon termination, destroy an unshifted lookahead
4838 even when it's the end token.
4839 * data/lalr1.cc (yy::parser::parse): Likewise.
4840 * data/yacc.c (yyparse): Likewise.
4841
4842 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
4843 value warnings for the end token when the user gives the end token a
4844 %destructor.
4845
4846 * tests/actions.at (Printers and Destructors): Test all the above.
4847
62a9592d
PE
48482006-07-24 Paul Eggert <eggert@cs.ucla.edu>
4849
4850 Update to latest gnulib and gettext versions.
4851 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
4852 Add fopen-safer.
4853 (gnulib_files): Add m4/warning.m4. Don't worry about files
4854 overwritten by autopoint.
4855 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
4856 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
4857 rejects them.
4858 Don't use autoreconf; instead, invoke autopoint etc. by hand,
4859 so that we can remove the intl files at a better time.
4860 (intl_files_to_remove): Remove aclocal.m4, since it gets
4861 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
4862 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
4863 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
4864 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
4865 Remove datarootdir hack; no longer needed.
4866 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
4867 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
4868 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
4869 strdup.h.
4870 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
4871 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
4872
10d6970f
PE
48732006-07-20 Paul Eggert <eggert@cs.ucla.edu>
4874
4875 * bootstrap: Adjust to today's change to gnulib-tool by invoking
4876 it with --assume-autoconf='latest-stable'.
4877
50a33993
JD
48782006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
4879
4880 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
4881 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
4882 YYSTYPE' and `{'.
4883 * src/muscle_tab.h (muscle_grow): Replace the header comments with
4884 those from muscle_tab.c since the old ones are misleading.
4885
2ce4ed68
AD
48862006-07-13 Akim Demaille <akim@epita.fr>
4887
4888 Support %define "KEY" {VALUE}.
4889 * src/scan-code.h, src/scan-code.l (translate_action)
4890 (translate_rule_action, translate_symbol_action, translate_code):
4891 Return char *, not const char *.
4892 * src/parse-gram.y (declaration): Rename as...
4893 (prologue_declaration): this.
4894 (string_content): Remove this nonterminal, use STRING.
4895 (braceless, content, content.opt): New nonterminal.
4896 Use them.
4897 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
4898 as value.
4899 * src/scan-gram.l (getargs.h): Don't include it.
4900
db7e5eb5
PE
49012006-07-12 Paul Eggert <eggert@cs.ucla.edu>
4902
4903 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
4904 rather than a for-loop that declares a local bool variable. This
4905 should work around a compatibility problem with a Cray x1e C++
4906 compiler reported by Hung Nguyen in
4907 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
4908 The for-loop was introduced in the 2004-11-17 change but I don't
4909 know why it was needed.
4910
a5d80ba5
AD
49112006-07-12 Akim Demaille <akim@epita.fr>
4912
4913 * data/c.m4: Comment changes.
4914
23eb2a69
AD
49152006-07-10 Akim Demaille <akim@lrde.epita.fr>
4916
4917 * src/complain.c (error_message, ERROR_MESSAGE): New.
4918 To factor...
4919 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
4920 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
4921
ddc8ede1
PE
49222006-07-09 Paul Eggert <eggert@cs.ucla.edu>
4923
4924 * NEWS: Instead of %union, you can define and use your own union type
4925 YYSTYPE if your grammar contains at least one <type> tag.
4926 Your YYSTYPE need not be a macro; it can be a typedef.
4927 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
4928 (Union Decl, Decl Summary): Document this.
4929 * data/glr.c (YYSTYPE): Implement this.
4930 * data/glr.cc (YYSTYPE): Likewise.
4931 * data/lalr1.cc (YYSTYPE): Likewise.
4932 * data/yacc.c (YYSTYPE): Likewise.
4933 * src/output.c (prepare): Output tag_seen_flag.
4934 * src/parse-gram.y (declaration, grammar_declaration):
4935 Use 'union_seen' rather than 'typed' to determine whether
4936 %union has been seen, since grammars can now be typed without
4937 %union.
4938 (symbol_declaration, type.opt, symbol_def):
4939 Keep track of whether a tag has been seen.
4940 * src/reader.c (union_seen, tag_seen): New vars.
4941 (typed): remove.
4942 * src/reader.h (union_seen, tag_seen, typed): Likewise.
4943 * src/scan-code.l (untyped_var_seen): New variable.
4944 (handle_action_dollar): Adjust to above changes.
4945 (handle_action_dollar, handle_action_at):
4946 Improve overflow checking for outlandish numbers.
4947 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
4948 avoid new diagnostics generated by above changes.
4949 * tests/regression.at (YYSTYPE typedef): Add test to check
4950 for type tags without %union.
4951
4952 * src/symlist.c (symbol_list_length): Return int, not unsigned
4953 int, since callers expect int. This may need to get revisited
4954 once we have proper integer overflow checking.
4955
4956 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
4957 object is now static.
4958
4959 * src/getargs.c (flags_argmatch): Return void, not int,
4960 to pacify ./configure --enable-gcc-warnings.
4961
4962 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
4963 since last_string is already defined to FLEX_PREFIX (last_string).
4964
7b42569e
AD
49652006-07-09 Akim Demaille <akim@lrde.epita.fr>
4966
4967 Implement --warnings/-W.
4968 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
4969 replaced by...
4970 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
4971 Adjust callers.
4972 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
4973 (warnings_args, warnings_types): New.
4974 (getargs, short_options, long_options): Accept -W/--warnings.
4975 Sort the options by alphabetical order, upper case letter right
4976 before its lower case.
4977
3b452f4e
JD
49782006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
4979
4980 Change %merge result type clash warnings to errors. Discussed at
4981 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
4982 * src/reader.c (record_merge_function_type): Use complain_at.
4983 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
4984 declared later): Update test case results.
4985
b8a41559
AD
49862006-07-09 Akim Demaille <akim@lrde.epita.fr>
4987
4988 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
4989 to be in alphabetical order.
4990 (trace_args): Spelling fixes.
4991
cd9e1ba2
PE
49922006-07-09 Paul Eggert <eggert@cs.ucla.edu>
4993
4994 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
4995 so they don't collide with user-defined macros.
4996 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
4997 this was never guaranteed, and now that we're using gnulib stdint,
4998 which defines int_fast16_t to long int, the problem is exposed.
4999
cb48f191
PE
50002006-07-08 Paul Eggert <eggert@cs.ucla.edu>
5001
b8445a15
PE
5002 * data/c.m4 (b4_basename): Simplify a bit, since we don't
5003 need the full POSIX semantics (and weren't implementing them
5004 anyway).
5005
cb48f191
PE
5006 Adjust to Autoconf 2.60 and today's gnulib.
5007 * bootstrap (gnulib_modules): Add stdint.
5008 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
5009 no longer copies it.
5010 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
5011 since stdint needs the former and wcwidth (which is now required
5012 by mbswidth) needs the latter.
5013 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
5014 work around a compatibility glitch between gettext 0.14.6 and
5015 Autoconf 2.60.
5016 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
5017 Do not check for uintptr_t, since new stdint module does the right
5018 thing.
5019 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
5020 Add stdint.h, stdint_.h, wcwidth.h.
5021 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
5022 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
5023 stdint.m4, wchar_t.m4, wcwidth.m4.
5024 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
5025 usual order for ../lib/*.h files.
5026 (file_name_split): Use last_component, not base_name, to adjust
5027 to gnulib changes.
5028 * src/parse-gram.h: Include <strverscmp.h> in the usual order
5029 for ../lib/*.h files.
5030 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
5031 Define unconditionally, since we now assume the stdint module.
5032 * src/scan-skel.l: Include <dirname.h>.
5033 (BASE_QPUTS): Use last_component, not base_name.
5034 * src/system.h: Include <unlocked-io.h> in the usual order
5035 for ../lib/*.h files. Include <stdint.h> unconditionally,
5036 since we now use the stdint module.
5037 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
5038 HAVE_UINTPTR_T, since we now use the stdint module.
5039 (base_name): Remove decl, since files now include <dirname.h>
5040 to get the decl.
5041
cd48d21d
AD
50422006-07-08 Akim Demaille <akim@lrde.epita.fr>
5043
5044 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
5045 New, default to 1.
5046 * data/yacc.c, data/glr.c, data/location.cc: Use them.
5047 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
5048 default.
5049 * tests/calc.at: Adjust.
5050
8ec0a172
AD
50512006-07-08 Akim Demaille <akim@lrde.epita.fr>
5052
b8445a15 5053 * data/c.m4 (b4_basename): New.
8ec0a172
AD
5054 (b4_syncline): Also output the location of its invocation (from
5055 the skeleton).
5056 (b4_user_action, b4_define_user_action, b4_user_actions)
5057 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
5058 (b4_user_stype): New.
5059 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
5060
4a678af8
JD
50612006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5062
5063 In the grammar file, the first column is 1 not 0 on the first line as
5064 on every other line.
5065 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
5066 * tests/input.at (Torturing the Scanner): Update output.
5067
5068 * src/scan-gram.l (scanner_cursor): Declare it static.
5069
dd60572a
JD
50702006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5071
5072 In warnings, say "previous declaration" rather than "first
5073 declaration".
5074 * src/symtab.c (redeclaration): Do that here.
5075 * src/reader.c (record_merge_function_type): In the case of a result
5076 type clash, report the previous declaration rather than the very first
5077 one in the grammar file.
5078 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5079 declared later): Add a third declaration to check this behavior.
5080 * tests/input.at (Incompatible Aliases): Update output.
5081
2073e1b6
AD
50822006-06-27 Akim Demaille <akim@epita.fr>
5083
5084 * doc/Doxyfile.in: New.
5085 * doc/Makefile.am: Use it.
5086 * src/lalr.h, src/symtab.h: Initial doxygenation.
5087
8ee5b538
JD
50882006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5089
5090 Don't miss %merge result type warnings just because the LHS types are
fab044e6
JD
5091 declared after the %merge. This continues the effort of the previous
5092 patch.
8ee5b538
JD
5093 * src/reader.c (get_merge_function): Don't set the merger type yet.
5094 (record_merge_function_type): New function for setting the merger type
5095 and checking for clashes.
5096 (grammar_current_rule_merge_set): Set the location of the %merge for
5097 the current rule.
5098 (packgram): Invoke record_merge_function_type for each rule now that
5099 all symbol type declarations have been parsed.
5100 * src/reader.h (merger_list.type_declaration_location): New member
5101 storing the location of the first %merge from which the type for this
5102 merging function was derived.
5103 * src/symlist.h (symbol_list.merger_declaration_location): New member
5104 storing the location of a rule's %merge, if any.
5105 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5106 declared later): New test to catch the error fixed by the above patch.
5107
ffa4ba3a
JD
51082006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5109
5110 Get action warnings (grammar_rule_check) right even when symbol
fab044e6
JD
5111 declarations appear after the rules. Discussed at
5112 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
5113 and
5114 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
5115 Don't mistake the type of $$ in a midrule to be that of its parent
5116 rule's $$.
ffa4ba3a
JD
5117 * src/reader.c (grammar_current_rule_end): Don't invoke
5118 grammar_rule_check yet since not all symbol declarations may have been
5119 parsed yet.
5120 (grammar_midrule_action): Likewise.
5121 Don't record whether the midrule's $$ has been used yet since actions
5122 haven't been translated yet.
5123 Record the midrule's parent rule and its RHS index within the parent
5124 rule.
5125 (grammar_current_rule_action_append): Don't translate the action yet
5126 since not all symbol declarations may have been parsed yet and, thus,
5127 warnings about types for $$, $n, @$, and @n can't be reported yet.
5128 (packgram): Translate the action and invoke grammar_rule_check now that
5129 all symbol declarations have been parsed.
5130 * src/scan-code.l (handle_action_dollar): Now that this is invoked
5131 after parsing the entire grammar file, the symbol list here in the case
5132 of a midrule is actually the midrule's empty RHS, so reference its
5133 parent rule's RHS where necessary.
5134 On the other hand, now that you can already know it's a midrule, you
5135 aren't forced to think $$ has the same type as its parent rule's $$.
5136 (handle_action_at): In the case of a midrule, reference the parent rule
5137 where necessary.
5138 * src/symlist.c (symbol_list_new): Initialize new midrule-related
5139 members.
5140 (symbol_list_length): Now that this is invoked after all rules have
5141 been parsed, a NULL symbol (rather than a NULL symbol list node)
5142 terminates a rule. symbol_list_print already does this correctly.
5143 * src/symlist.h (symbol_list.midrule_parent_rule,
5144 symbol_list.midrule_parent_rhs_index): New members so that midrules can
5145 remember their relationships with their parents.
5146 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
5147 fixed by the above patch.
5148 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
5149 implementing...
5150 (Unused values): ... this old test case and...
5151 (Unused values before symbol declarations): ... this new test case.
5152 This one is the same as `Unused values' except that all symbol
5153 declarations appear after the rules in order to catch the rest of the
5154 errors fixed by the above patch.
5155
e256e17f
JD
51562006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5157
300a1930
JD
5158 More cleanup.
5159 * src/reader.c (current_rule): Declare it static since it's no longer
5160 used outside this file.
5161 (grammar_current_rule_action_append): Remove redundant arguments from
5162 translate_rule_action invocation.
5163 * src/reader.h (current_rule): Remove this unused extern.
5164 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
5165 * src/scan-code.l (translate_rule_action): Likewise.
e256e17f 5166
381ecb06
JD
51672006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
5168
5169 Clean up yesterday's patch.
5170 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
5171 to...
5172 * src/reader.c (grammar_current_rule_action_append): ... here for
5173 consistency with grammar_current_rule_symbol_append.
5174 * tests/regression.at (Braced code in declaration in rules section):
5175 Make yyerror and yylex static as usual.
5176
4210cd0b
JD
51772006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
5178
5179 Fix bug that mistakes braced code in a declaration in the rules section
5180 to be a rule action. Mentioned at
5181 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
5182 * src/scan-gram.l: Move midrule action detection from the start of the
5183 scanning of any braced code to...
5184 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
5185 action. For readability, use $2 and @2 rather than the equivalent
5186 global variables.
5187 * tests/regression.at (Braced code in declaration in rules section):
5188 New test to catch the error fixed by the above patch.
5189
5190 Work on code readability some.
5191 * src/scan-code.l (current_rule): Get rid of this misleading and
5192 redundant declaration: it's actually extern'ed in reader.h.
5193 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
5194 translate_action): Add a rule argument and use it instead of the global
5195 current_rule.
5196 (translate_rule_action): This already receives current_rule through an
5197 argument, so pass it on to translate_action instead of assigning
5198 current_rule to current_rule.
5199 (translate_symbol_action, translate_code): Pass rule = NULL to
5200 translate_action.
5201
34f98f46
JD
52022006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
5203
5204 Rename %before-definitions to %start-header and %after-definitions to
5205 %end-header. Don't use these declarations to separate pre-prologue
5206 blocks from post-prologue blocks. Add new order-independent
5207 declarations %before-header and %after-header as alternatives to the
5208 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
5209 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
5210 * NEWS (2.3+): Update for these changes.
5211 * data/glr.c (b4_before_definitions): Update to...
5212 (b4_start_header): ... this.
5213 (b4_after_definitions): Update to...
5214 (b4_end_header): ... this.
5215 * data/glr.cc: Likewise.
5216 * data/lalr1.cc: Likewise.
5217 * data/yacc.c: Likewise.
5218 * doc/bison.texinfo (The prologue): Update names, and replace remaining
5219 prologue blocks with %*-header declarations.
5220 (Calc++ Parser): Likewise.
91661ebb 5221 (Decl Summary): Update names.
148d66d8 5222 (Table of Symbols): Update description.
34f98f46
JD
5223 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
5224 (PERCENT_END_HEADER): ... this.
5225 (PERCENT_BEFORE_DEFINITIONS): Update to...
5226 (PERCENT_START_HEADER): ... this.
5227 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5228 (declaration): Update token names and m4 macro names.
5229 When parsing %end-header and %start-header, invoke translate_code
5230 before muscle_code_grow, and no longer set global booleans to remember
5231 whether these declarations have been seen.
5232 Parse new %after-header and %before-header.
5233 * src/reader.c (before_definitions, after_definitions): Remove.
5234 (prologue_augment): Accept a new bool argument to specify whether to
5235 augment the pre-prologue or post-prologue.
5236 * src/reader.h (before_definitions, after_definitions): Remove these
5237 extern's.
5238 (prologue_augment): Add new bool argument.
5239 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
5240 (PERCENT_END_HEADER): ... this.
5241 (PERCENT_BEFORE_DEFINITIONS): Update to...
5242 (PERCENT_START_HEADER): ... this.
5243 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5244 * tests/actions.at (Printers and Destructors): Update names.
5245
31b2b07e
JD
52462006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
5247
5248 Add comparison operators for C++ location classes. Discussed at
5249 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
5250 * data/c++.m4 (b4_define_location_comparison): New boolean %define
5251 declaration indicating whether filename_type has an operator==. If
5252 filename_type is `std::string', it defaults to `1', `0' otherwise.
5253 * data/location.cc: Iff b4_define_location_comparison is `1', add
5254 operator== and operator!= for class position and for class location.
5255
5256 Some minor fixes.
5257 * src/scan-action.l: Remove unused file.
5258 * src/symtab.c (symbol_printer_set): Use printer_location not
5259 destructor_location.
5260 * src/symtab.h (struct symbol): Replace incorrect source comment for
5261 printer members.
5262 * tests/input.at (Incompatible Aliases): Update output with correct
5263 printer location.
5264
9bc0dd67
JD
52652006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
5266
5267 Don't put the pre-prologue in the header file. For the yacc.c code
5268 file and the glr.c header and code files, move the pre-prologue before
5269 the token definitions. Add new %before-definitions and
5270 %after-definitions to declare code that will go in both the header file
5271 and code file. Discussed at
5272 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
5273 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
5274 and
5275 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
5276 * NEWS (2.3+): Describe these changes.
5277 * data/glr.c (b4_pre_prologue): Move from within to before...
5278 (b4_shared_declarations): ... this.
5279 Add new b4_before_definitions before b4_token_enums.
5280 Add new b4_after_definitions at the end.
5281 * data/glr.cc (b4_pre_prologue): Replace with...
5282 (b4_before_definitions): ... this in the header file.
5283 (b4_after_definitions): New near the end of the header file.
5284 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
5285 code file right before including the header file.
5286 (b4_before_definitions): New in the previous position of
5287 b4_pre_prologue in the header file.
5288 (b4_after_definitions): New near the end of the header file.
5289 * data/yacc.c: Clean up some m4 quoting especially in the header file.
5290 (b4_token_enums_defines): In the code file, move to right before
5291 YYSTYPE for consistency with the header file.
5292 (b4_before_definitions): New right before b4_token_enums_defines in
5293 both the header and code file.
5294 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
5295 header and code file.
5296 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
5297 of prologues for %union dependencies.
91661ebb
JD
5298 (Decl Summary): In %defines description, mention the effect of
5299 %before-definitions and %after-definitions on the header file.
9bc0dd67
JD
5300 (Calc++ Parser): Forward declare driver in a %before-definitions rather
5301 than in the pre-prologue so that make check succeeds.
148d66d8 5302 (Table of Symbols): Add entries for %before-definitions and
9bc0dd67
JD
5303 %after-definitions.
5304 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
5305 %before-definitions.
5306 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
5307 (declaration): Parse those declarations and append to
5308 b4_before_definitions and b4_after_definitions, respectively.
5309 * src/reader.c (before_definitions, after_definitions): New bools to
5310 track whether those declarations have been seen.
5311 (prologue_augment): Add to the post-prologue if %union,
5312 %before-definitions, or %after-definitions has been seen.
5313 * src/reader.h (before_definitions, after_definitions): New extern's.
5314 * src/scan-gram.l: Scan the new declarations.
5315 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
5316 prologue block in a %before-definitions or a %after-definitions based
5317 on whether the %union is declared.
5318 * tests/regression.at (Early token definitions with --yacc, Early token
5319 definitions without --yacc): Move tests for token definitions into the
5320 post-prologue since token names are no longer defined in the
5321 pre-prologue.
5322
203b9274
AD
53232006-06-20 Akim Demaille <akim@epita.fr>
5324
5325 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
5326 (symbol_get): Use it.
5327 * src/parse-gram.y: Use it.
5328
a7ee59cf
JD
53292006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
5330
5331 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
5332 build succeeds when configured with --enable-gcc-warnings.
5333
5a2baae7
PE
53342006-06-19 Paul Eggert <eggert@cs.ucla.edu>
5335
33ad1a9c
PE
5336 * src/parse-gram.y (char_name): New function.
5337 (CHAR, STRING, string_content): For %printer, properly escape.
5338 (ID): Prefer fputs to fprintf.
5339 (id): Reindent to be consistent with other rules.
5340 Properly quote char.
5341
5a2baae7
PE
5342 The Translation Project changed its way of publishing translations
5343 to maintainers. I haven't received any responses to my request
5344 for supporting the old way, or for documenting the new way. I
5345 have modified 'bootstrap' to use screen scraping
5346 (in this case, HTML scraping). This is unreliable and inelegant,
5347 but I don't see any better way. Yuck.
5348 * bootstrap (TP_URL, WGET_COMMAND): New vars.
5349 (get_translations): New function, which uses HTML scraping to
5350 deduce locations of latest translations.
5351 Use this function to grab both bison and bison-runtime .po files.
5352 Don't bother priming the pump for the runtime-po domain any more,
5353 as it's now translated better than bison is.
5354
58d7a1a1
AD
53552006-06-19 Akim Demaille <akim@epita.fr>
5356
5357 * src/scan-gram.l: No longer "parse" things after `%union' until
5358 `{'. Rather, return a single "%union" token.
5359 No longer make symbols: return strings, and leave the conversion
5360 to symbols to the parser.
5361 (SC_PRE_CODE, token_type): Remove.
5362 * src/parse-gram.y (%union): New field `character'.
5363 Sort tokens.
5364 (CHAR): New token.
5365 (ID, ID_COLON): Now that the scanner no longer makes them
5366 identifiers, adjust all uses to invoke symbol_get.
5367 (id_colon): New, wraps the conversion from string to symbol.
5368 (%union): Accept a possible union_name.
5369 (symbol): Now can be a char.
5370 * data/c.m4 (b4_union_name): Leave a default value.
5371 * data/glr.c, data/yacc.c: Use it.
5372
b931235e
JD
53732006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
5374
5375 For associating token numbers with token names for "yacc.c", don't use
5376 #define statements unless `--yacc' is specified; always use enum
5377 yytokentype. Most important discussions start at:
5378 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
5379 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
5380 and
5381 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
5382 * NEWS (2.3+): Mention.
5383 * data/c.m4 (b4_yacc_if): New.
5384 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
5385 token #define's.
5386 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
5387 on token name definitions.
5388 * src/getargs.c (usage): Capitalize `Yacc' in English.
5389 * src/output.c (prepare): Define b4_yacc_flag.
5390 * tests/regression.at (Early token definitions): Test that tokens names
5391 are defined before the pre-prologue not just before the post-prologue.
5392 Remove this test case and copy to...
5393 (Early token definitions with --yacc): ... this to test #define's.
5394 (Early token definitions without --yacc): ... and this to test enums.
5395
9e6e7ed2
PE
53962006-06-11 Paul Eggert <eggert@cs.ucla.edu>
5397
5398 * NEWS: Reword the post-2.3 change to not be so optimistic about
5399 removing the old "look-ahead" spelling.
5400 Update previous look-ahead/lookahead change reports.
5401 * REFERENCES: look-ahead -> lookahead (since that's
5402 what he actually wrote).
5403 * doc/refcard.tex: look ahead -> lookahead,
5404 look-ahead -> lookahead
5405
742e4900
JD
54062006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
5407
5408 For consistency, use `lookahead' instead of `look-ahead' or
5409 `look_ahead'. Discussed starting at
5410 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
5411 and then at
5412 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
5413 * NEWS: For the next release, note the change to `--report'.
5414 * TODO, doc/bison.1: Update English.
5415 * doc/bison.texinfo: Update English.
5416 (Understanding Your Parser, Bison Options): Document as
5417 `--report=lookahead' rather than `--report=look-ahead'.
5418 * src/conflicts.c: Update English in comments.
5419 (lookahead_set): Rename from look_ahead_set.
5420 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
5421 (resolve_sr_conflict): Rename local look_ahead_tokens to
5422 lookahead_tokens, and update other uses.
5423 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
5424 count_rr_conflicts, conflicts_free): Update uses.
5425 * src/getargs.c (report_args): Move "lookahead" before alternate
5426 spellings.
5427 (report_types): Update uses.
5428 (usage): For `--report' usage description, state `lookahead' spelling
5429 rather than `look-ahead'.
5430 * src/getargs.h (report.report_lookahead_tokens): Rename from
5431 report_look_ahead_tokens.
5432 * src/lalr.c: Update English in comments.
5433 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
5434 (state_lookahead_tokens_count): Rename from
5435 state_look_ahead_tokens_count.
5436 Rename local n_look_ahead_tokens to n_lookahead_tokens.
5437 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
5438 Rename local n_look_ahead_tokens to n_lookahead_tokens.
5439 Update other uses.
5440 Update English in output.
5441 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
5442 * src/print.c: Update English in comments.
5443 (lookahead_set): Rename from look_ahead_set.
5444 (print_reduction): Rename argument lookahead_token from
5445 look_ahead_token.
5446 (print_core, state_default_rule, print_reductions, print_results):
5447 Update uses.
5448 * src/print_graph.c: Update English in comments.
5449 (print_core): Update uses.
5450 * src/state.c: Update English in comments.
5451 (reductions_new): Update uses.
5452 (state_rule_lookahead_tokens_print): Rename from
5453 state_rule_look_ahead_tokens_print, and update other uses.
5454 * src/state.h: Update English in comments.
5455 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
5456 (state_rule_lookahead_tokens_print): Rename from
5457 state_rule_look_ahead_tokens_print.
5458 * src/tables.c: Update English in comments.
5459 (conflict_row, action_row): Update uses.
5460 * tests/glr-regression.at
5461 (Incorrect lookahead during deterministic GLR,
5462 Incorrect lookahead during nondeterministic GLR): Rename
5463 print_look_ahead to print_lookahead.
5464 * tests/torture.at: Update English in comments.
5465 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
5466 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
5467 (Many lookahead tokens): Update uses.
5468 * data/glr.c: Update English in comments.
5469 * lalr1.cc: Likewise.
5470 * yacc.c: Likewise.
5471 * src/conflicts.h: Likewise.
5472 * src/lalr.h: Likewise.
5473 * src/main.c: Likewise.
5474 * src/output.c: Likewise.
5475 * src/parse-gram.c: Likewise.
5476 * src/tables.h: Likewise.
5477 * tests/calc.at: Likewise.
5478
3c40d0b5
JD
54792006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
5480
5481 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
5482
5d278082
PE
54832006-06-07 Paul Eggert <eggert@cs.ucla.edu>
5484
5485 * TODO: Add request from Nelson H. F. Beebe to be able to install
5486 Bison without installing the yacc script.
5487
9e668899
JD
54882006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
5489
5490 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
5491 and yytext if they're already #define'd.
5492 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
5493 * src/scan-code-c.c: ... here.
5494 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
5495 <config.h>.
5496
0c8e079f
JD
54972006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
5498
5499 Get Bison to build again when configured with --enable-gcc-warnings.
5500 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
5501 missing #include's.
5502 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
5503 loc argument as it shadows a global.
5504 * src/scan-gram.l: Remove stray comma that prevents boundary_set
5505 invocation.
5506
5507 * src/.cvsignore: Add scan-code.c.
5508
2346344a
AD
55092006-06-07 Akim Demaille <akim@epita.fr>
5510
5511 * src/scan-gram.l: Move the "add a trailing ; to actions" code
5512 to...
5513 * src/scan-code.l: here.
5514 * tests/input.at (Torturing the Scanner): Fix another location
5515 error.
5516
4862bdfd
AD
55172006-06-07 Akim Demaille <akim@epita.fr>
5518
5519 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
5520
e9071366
AD
55212006-06-06 Akim Demaille <akim@epita.fr>
5522
5523 Extract the parsing of user actions from the grammar scanner.
5524 As a consequence, the relation between the grammar scanner and
5525 parser is much simpler. We can also split "composite tokens" back
5526 into simple tokens.
5527 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
5528 * src/scan-gram.l (add_column_width, adjust_location): Move to and
5529 rename as...
5530 * src/location.h, src/location.c (add_column_width)
5531 (location_compute): these.
5532 Fix the column count: the initial column is 0.
5533 (location_print): Be robust to ending column being 0.
5534 * src/location.h (boundary_set): New.
5535 * src/main.c: Adjust to scanner_free being renamed as
5536 gram_scanner_free.
5537 * src/output.c: Include scan-code.h.
5538 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
5539 Use boundary_set.
5540 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
5541 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
5542 which is now, again, a separate token.
5543 Adjust all dependencies.
5544 Whereever actions with $ and @ are used, use translate_code.
5545 (action): Remove this nonterminal which is now useless.
5546 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
5547 (grammar_current_rule_action_append): Use translate_code.
5548 (packgram): Bound check ruleno, itemno, and rule_length.
5549 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
5550 (last_string, last_braced_code_loc, max_left_semantic_context)
5551 (scanner_initialize, scanner_free, scanner_last_string_free)
5552 (gram_out, gram_lineno, YY_DECL_): Move to...
5553 * src/scan-gram.h: this new file.
5554 (YY_DECL): Rename as...
5555 (GRAM_DECL): this.
5556 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
5557 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
5558 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
5559 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
5560 Move these declarations, and...
5561 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
5562 these to...
5563 * src/flex-scanner.h: this new file.
5564 * src/scan-gram.l (rule_length, rule_length_overflow)
5565 (increment_rule_length): Remove.
5566 (last_braced_code_loc): Rename as...
5567 (gram_last_braced_code_loc): this.
5568 Adjust to the changes of the parser.
5569 Move all the handling of $ and @ into...
5570 * src/scan-code.l: here.
5571 * src/scan-gram.l (handle_dollar, handle_at): Remove.
5572 (handle_action_dollar, handle_action_at): Move to...
5573 * src/scan-code.l: here.
5574 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
5575 scan-code.h, scan-code-c.c, scan-gram.h.
5576 (EXTRA_bison_SOURCES): Add scan-code.l.
5577 (BUILT_SOURCES): Add scan-code.c.
5578 (yacc): Be robust to white spaces.
5579
5580 * tests/conflicts.at, tests/input.at, tests/reduce.at,
5581 * tests/regression.at: Adjust the column numbers.
5582 * tests/regression.at: Adjust the error message.
7891a7c4 5583
184e42f0
JD
55842006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
5585
5586 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
5587 Use Akim's wording from
5588 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
5589
7891a7c4
JD
55902006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
5591
5592 Between Bison releases, manually append `+' to the previous Bison
5593 release number, and use that as a signal to automatically print the
5594 ChangeLog's CVS Id keyword from --version. Discussed starting at
5595 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
5596 * ChangeLog: Add Id header.
5597 * configure.ac (AC_INIT): Append `+' to `2.3'.
5598 * src/.cvsignore: Add revision.c.
5599 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
5600 (BUILT_SOURCES): Add revision.c.
5601 (revision.c): New target rule. This file defines a new global variable
5602 named revision. It initializes it with either the Id from ChangeLog
5603 or, if VERSION doesn't contain `+', with the empty string.
5604 * src/getargs.c (version): Print the value of revision.
5605 * src/revision.h: Extern revision.
5606
4ad3ed84
PE
56072006-06-05 Paul Eggert <eggert@cs.ucla.edu>
5608
5609 * NEWS: Version 2.3.
5610 * configure.ac (AC_INIT): Likewise.
5611
02103984
PE
56122006-05-30 Paul Eggert <eggert@cs.ucla.edu>
5613
5614 * data/glr.c (YYRECOVERING): Define to be a function-like macro
5615 with no arguments, not as an object-like macro. This is for
5616 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
5617 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
5618 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
5619 Document this.
5620
2c08afa5
JD
56212006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
5622
5623 * src/getargs.c (usage): Back out yesterday's modification of the
5624 --help output so that we don't have to wait for translation before
5625 releasing 2.3.
5626
6077da58
PE
56272006-05-29 Paul Eggert <eggert@cs.ucla.edu>
5628
5629 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
5630 Problem reported by Akim Demaille.
5631
2a26b6c2
JD
56322006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
5633
5634 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
5635
aefef0d6
PE
56362006-05-26 Paul Eggert <eggert@cs.ucla.edu>
5637
5638 * data/yacc.c (yy_reduce_print): Omit trailing white space in
5639 generated source code. Problem reported by Frans Englich in
5640 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
5641
fcd8e201
PE
56422006-05-22 Paul Eggert <eggert@cs.ucla.edu>
5643
5644 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
5645 shell, not within 'make', so that 'make' by an ordinary builder
5646 (using GNU make) does not worry about configuring gzip. This also
5647 works around a bug reported independently by Keith Thompson and by
5648 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
5649 stderr rather than stdout, messing up the build logs.
5650
7b5cdcbd
JD
56512006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
5652
5653 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
5654 to make sure that YYID will never be unused. This fixes a 'make
5655 maintainer-check' failure caused by the recent changes to the 'Trivial
5656 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
5657 not used.
5658 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
5659
5ad0a449
JD
56602006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
5661
5662 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
5663 state before an empty RHS is always resolved here. Only the location
5664 of that state is guaranteed to be resolved, and that's enough. This
5665 fixes the remaining bug reported by Derek M. Jones in
5666 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
5667 * tests/glr-regression.at (Uninitialized location when reporting
5668 ambiguity): Test the above case.
5669 Also, the embedded comments in this test case claim it checks the case
5670 of an empty RHS that has inherited the initial location. However, the
5671 corresponding LHS was already resolved, so yyresolveLocations didn't
5672 actually have reason to modify it. Fix this by forcing
5673 nondeterministic operation at the beginning of the parse.
5674
50cce58e
PE
56752006-05-20 Paul Eggert <eggert@cs.ucla.edu>
5676
5677 * data/c.m4 (b4_yy_symbol_print_generate):
5678 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
5679 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
5680 of the bugs reported today by Derek M Jones in
5681 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
5682 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
5683 defined to be a type name without parens or brackets.
5684 (Location Type): Similarly for YYLTYPE.
5685 * tests/regression.at (Trivial grammars): Put in a test for this
5686 bug that will be caught by 'make maintainer-check' (though not,
5687 alas, by 'make check' unless your compiler is picky).
5688
ab8d9dc5
PE
56892006-05-19 Paul Eggert <eggert@cs.ucla.edu>
5690
0d2c8934 5691 * NEWS: Version 2.2.
ab8d9dc5
PE
5692 * configure.ac (AC_INIT): Likewise.
5693
9138c575
JD
56942006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
5695
5696 * data/glr.c (yyreportTree): Make room in yystates for the state
5697 preceding the RHS. This fixes the segmentation fault reported by Derek
5698 M. Jones in
5699 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
5700 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
5701 to the user. Reported for yyreportTree by Derek M. Jones later in the
5702 same thread.
5703 * THANKS: Add Derek M. Jones.
5704 Update my email address.
5705 Fix typo in Steve Murphy's name.
5706
276f48df
PE
57072006-05-14 Paul Eggert <eggert@cs.ucla.edu>
5708
d6645148
PE
5709 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
5710 checking against YYLAST that caused the parser to miss a potential
5711 alternative in its diagnostic.
5712 Problem reported by Maria Jose Moron Fernandez in
5713 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
5714 * data/lalr1.cc (yysyntax_error_): Likewise.
5715 * data/yacc.c (yysyntax_error): Likewise.
5716 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
5717 tokens, in case we run into an older C compiler.
5718 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
5719 Use them to check for the off-by-one error fixed above.
5720
276f48df
PE
5721 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
5722 YYSIZE_T, not size_t.
5723 * tests/regression.at (Trivial grammars): New test, to catch
5724 the error fixed by the above patch.
5725
cd8b5791
AD
57262006-05-14 Akim Demaille <akim@lrde.epita.fr>
5727
5728 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
5729 scheme.
5730 Reported by Steve Murphy.
5731
34376418
AD
57322006-05-14 Akim Demaille <akim@lrde.epita.fr>
5733
5734 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
5735 * data/glr.cc: b4_location_flag is now b4_locations_flag.
5736
327afc7c
AD
57372006-05-14 Akim Demaille <akim@lrde.epita.fr>
5738
5739 Implement --trace=m4.
5740 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
5741 * src/output.c (output_skeleton): When set, pass -dV to m4.
5742
5743 Factor the handling of flags in m4.
5744 * src/output.c (prepare): Rename the muscle names debug, defines,
5745 error_verbose to debug_flag, defines_flag, error_verbose_flag.
5746 * data/c.m4: Adjust.
5747 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
5748 Use b4_define_flag_if to define other b4_FLAG_if macros.
5749 (b4_location_if): As a consequence, rename as...
5750 (b4_locations_if): this, for consistency.
5751 Adjust all the skeletons.
5752
ba9ecd19
AD
57532006-05-14 Akim Demaille <akim@lrde.epita.fr>
5754
5755 * etc/bench.pm: Shorten bench names.
5756
4e83ea15
AD
57572006-05-14 Akim Demaille <akim@lrde.epita.fr>
5758
5759 * src/output.h, src/output.c (error_verbose): Move to...
5760 * src/getargs.h, src/getargs.c: here.
5761 Sort the flags.
5762 Adjust dependencies.
5763
6e93d810
PE
57642006-05-13 Paul Eggert <eggert@cs.ucla.edu>
5765
5766 * data/c.m4 (b4_copyright): Put the special exception for Bison
5767 skeletons here, so we don't have to put it in each skeleton. All
b15296ff
PE
5768 uses changed. Suggested by Akim Demaille. Also, wrap the
5769 copyright notice, in case it is longer than 80 columns. Replace
5770 comma by newline after title.
6e93d810 5771
eaea13f5
PE
57722006-05-11 Paul Eggert <eggert@cs.ucla.edu>
5773
5774 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
5775 incompatibility, not a bug. Mention that it wasn't fixed as of
5776 flex 2.5.33.
5777
3cf084ec
AD
57782006-05-11 Akim Demaille <akim@lrde.epita.fr>
5779
5780 * examples/extexi: Enforce the precedence of concatenation over
5781 >>.
0a9f1c7d 5782 Reported by Tommy Nordgren.
3cf084ec 5783
32c96bd7
AD
57842006-05-11 Akim Demaille <akim@lrde.epita.fr>
5785
5786 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
5787 with the member "token".
f94705b2 5788 Reported by Martin Nylin.
32c96bd7 5789
eaea13f5
PE
57902006-05-08 Paul Eggert <eggert@cs.ucla.edu>
5791
5792 * data/glr.c: Switch to Bison 2.2 special-exception language in
5793 the copyright notice. Use more-regular format for titles and
5794 copyright notices.
5795 * data/glr.cc: Likewise.
5796 * data/location.cc: Likewise.
5797 * data/yacc.cc: Likewise.
5798 * doc/bison.texinfo (Conditions): Document this.
5799 * NEWS: likewise. Upgrade version to 2.2.
5800
6e2d1146
AD
58012006-04-27 Akim Demaille <akim@lrde.epita.fr>
5802
5803 * data/glr.cc: Remove dead code.
5804
47671055
PE
58052006-04-25 Paul Eggert <eggert@cs.ucla.edu>
5806
5807 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
5808 that variable and the line breaks the bootstrap. Problem reported
5809 by Juan M. Guerrero.
5810
ed2e6384
AD
58112006-04-24 Akim Demaille <akim@lrde.epita.fr>
5812
5813 * doc/bison.texinfo (Multiple start-symbols): New.
5814
3cedc2dc
AD
58152006-04-24 Akim Demaille <akim@lrde.epita.fr>
5816
5817 * etc/README, etc/bench.pl: New.
5818
b2ddc3f3
AD
58192006-04-03 Akim Demaille <akim@lrde.epita.fr>
5820
5821 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
5822 rule.
5823 Reported by Mickael Labau.
5824 * tests/input.at (Torturing the Scanner): Test it.
5825
91e3ac9a
PE
58262006-03-16 Paul Eggert <eggert@cs.ucla.edu>
5827
5828 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
5829 Problem reported by Bob Rossi.
5830
58312006-03-13 Paul Eggert <eggert@cs.ucla.edu>
5832
5833 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
5834 and didn't really work.
5835 For the index, use @ifnotinfo, not @iftex.
5836 Minor cleanups of spacing and terminology.
5837
5cf61e93
AD
58382006-03-12 Akim Demaille <akim@lrde.epita.fr>
5839
5840 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
5841 of AT_NAME_PREFIX when %name-prefix is not used.
5842
aa08666d
AD
58432006-03-12 Akim Demaille <akim@lrde.epita.fr>
5844
5845 Apply --prefix to C++ skeletons too: they change the namespace.
5846 The test suite already exercize these cases.
5847 * data/c++.m4 (b4_namespace): New.
5848 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
5849 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
5850 * data/yacc.c, data/glr.c: Remove a useless `[]'.
5851 * doc/bison.texinfo: Document it.
5852 (Option Cross Key): Use @multitable in all formats. It looks
5853 nicer, even in TeX outputs.
5854 (Rules): Use the same code whatever the output type is.
5855 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
5856 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
5857 * tests/calc.at: Use it, instead of hard coding `yy'.
91e3ac9a 5858
45567173
AD
58592006-03-10 Akim Demaille <akim@lrde.epita.fr>
5860
5861 * TODO: Remove dead items.
5862
e9d8f881 58632006-03-10 Akim Demaille <akim@lrde.epita.fr>
55ba27be
AD
5864
5865 * doc/FAQ: Remove, merged into...
5866 * doc/bison.texinfo (FAQ): this.
5867 * doc/Makefile.am (EXTRA_DIST): Adjust.
5868
c095d689
AD
58692006-03-10 Akim Demaille <akim@lrde.epita.fr>
5870
5871 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
5872 even if empty.
5873 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
5874 * doc/bison.texinfo (Calc++ Scanner): Use it.
5875
6e0f8287
PE
58762006-03-09 Paul Eggert <eggert@cs.ucla.edu>
5877
5878 Fix two nits reported by twlevo, plus one more that I discovered.
5879
5880 * src/assoc.h (assoc_to_string): Give a name to the arg, as
5881 this is the usual Bison style.
5882 * src/location.h (location_print): Likewise.
5883
5884 * src/reader.h (token_name): Likewise.
5885
d6b771c3
PE
58862006-03-08 Paul Eggert <eggert@cs.ucla.edu>
5887
5888 Fix some nits reported by twlevo.
5889 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
5890 and "POSIX". Use more-modern syntax for URLs. Mention C++
5891 and ask for Java. Don't hardwire OS version numbers. Add
5892 copyright notice.
5893 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
5894 * src/conflicts.c (solved_conflicts_obstack): Now static.
5895
1e137b71
JD
58962006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
5897
5898 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
5899 page. Say "you can use it" not "you may use it" as on the web page;
5900 we're describing capabilities not granting permission.
5901
73f2e47e
PE
59022006-03-06 Paul Eggert <eggert@cs.ucla.edu>
5903
6d05403d
PE
5904 * data/glr.c (yyresolveLocations): Rename local variables to avoid
5905 shadowing warnings. Use usual patter for iterating through RHS.
5906 * tests/glr-regression.at
5907 (Uninitialized location when reporting ambiguity):
5908 Modify yylex so that it uses its argument, rather than trying
5909 to rely on ARGSUSED (which doesn't work for gcc with warnings).
5910 const char -> char const.
5911
73f2e47e
PE
5912 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
5913 Don't use tabs inside commands; it messes up 'ps'.
5914 Problem reported by twlevo.
5915
8710fc41
JD
59162006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
5917
5918 * tests/glr-regression.at (Uninitialized location when reporting
5919 ambiguity): New test case.
5920 * data/glr.c (yyresolveLocations): New function, which uses
5921 YYLLOC_DEFAULT.
5922 (yyresolveValue): Invoke yyresolveLocations before reporting an
5923 ambiguity.
5924 * doc/bison.texinfo (Default Action for Locations): Note
5925 YYLLOC_DEFAULT's usage for ambiguity locations.
5926 (GLR Semantic Actions): Cross-reference those notes.
5927
ae952af2
JD
59282006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
5929
5930 * tests/glr-regression.at (Leaked semantic values when reporting
5931 ambiguity): Remove unnecessary union and type declarations.
5932 (Leaked lookahead after nondeterministic parse syntax error): New test
5933 case.
5934 * data/glr.c (yyparse): Check for zero stacks remaining before
5935 attempting to shift the lookahead so that you don't lose it.
5936
35ee866a
JD
59372006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
5938
5939 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
5940 * tests/glr-regression.at (Leaked semantic values when reporting
5941 ambiguity): New test case.
5942 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
5943 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
5944 now unnecessary yystackp parameter.
5945 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
5946 destructors can be called.
5947
5948 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
5949 in existing testcases.
5950
520181ab
JD
59512006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
5952
5953 Don't leak semantic values for parent RHS when a user action cuts the
5954 parser, and clean up related code a bit.
5955 * tests/glr-regression.at (Leaked merged semantic value if user action
35ee866a
JD
5956 cuts parse): Rename to...
5957 (Leaked semantic values if user action cuts parse): ... this. Add check
520181ab
JD
5958 for leaked parent RHS values.
5959 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
5960 between an unresolved state (non-empty chain of semantic options) and
5961 an incomplete one (signaled by an empty chain).
ae952af2 5962 (yyresolveStates): Document the interface. Move all manipulation of a
520181ab
JD
5963 successfully or unsuccessfully resolved yyGLRState to...
5964 (yyresolveValue): ... here so that yyresolveValue always leaves a
5965 yyGLRState with consistent data and thus is easier to understand.
5966 Remove the yyvalp and yylocp parameters since they are always just
5967 taken from the yys parameter. When reporting a discarded merged value
5968 in debugging output, note that it is incompletely merged. Document the
5969 interface.
5970 (yyresolveAction): If resolving any of the RHS states fails, destroy
5971 them all rather than leaking them. Thus, as long as user actions are
5972 written to clean up the RHS correctly, yyresolveAction always cleans up
5973 the RHS of a semantic option. Document the interface.
5974
18d9185c
PE
59752006-02-27 Paul Eggert <eggert@cs.ucla.edu>
5976
5977 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
5978 led to a segmentation fault in GNU Pascal. Problem reported
5979 by Waldek Hebisch.
5980
841a7737
JD
59812006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
5982
5983 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
5984 mid-rule action inside a nonterminal symbol in order to declare a
5985 destructor for its semantic value.
5986
fc3f467f
PE
59872006-02-16 Paul Eggert <eggert@cs.ucla.edu>
5988
5989 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
5990 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
5991 __cplusplus && ! defined _STDLIB_H && !
5992 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
5993 defined free))]: Include <stdlib.h> rather than rolling our own
5994 declarations of malloc and free, to avoid problems with
5995 incompatible declarations (using 'throw') C++'s stdlib.h. This
5996 should fix Debian bug 340012
5997 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
5998 reported by Guillaume Melquiond.
5999
a3af26dd
PE
60002006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6001
4d7bc38c
PE
6002 * NEWS: Clarify symbols versus types in unused-value warnings.
6003
a3af26dd
PE
6004 * configure.ac (AC_INIT): Bump version number.
6005
4e26c69e
PE
60062006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6007
6008 * NEWS: Version 2.1a.
6009 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
6010 since C99 requires this.
6011
498e897c
PE
60122006-02-11 Paul Eggert <eggert@cs.ucla.edu>
6013
6014 * m4/c-working.m4: New file.
6015 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
6016
57bb17ca
PE
60172006-02-10 Paul Eggert <eggert@cs.ucla.edu>
6018
6019 * Makefile.maint: Merge from coreutils.
6020
0be105dc
PE
60212006-02-09 Paul Eggert <eggert@cs.ucla.edu>
6022
6023 More portability fixes for problems summarized by Nelson H. F. Beebe.
6024
6025 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
6026 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
6027 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
6028 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
6029 messes up because C++ code is compiled in 32-bit mode but linked
6030 in 64-bit mode.
6031
6fc0c024
PE
60322006-02-08 Paul Eggert <eggert@cs.ucla.edu>
6033
6034 More portability fixes for problems summarized by Nelson H. F. Beebe.
6035
7870f699
PE
6036 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
6037 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
6038
6fc0c024
PE
6039 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
6040 nodist_PROGRAMS, since we don't need to actually compile the
6041 example if we're just doing a plain 'make'. This avoids bothering
6042 the installer unnecessarily about problems due to weird C++
6043 compilers.
6044
fe6c2fde
PE
60452006-02-06 Paul Eggert <eggert@cs.ucla.edu>
6046
6047 More portability fixes for problems summarized by Nelson H. F. Beebe.
6048
6049 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
6050 than #include "...", and compile with -I'.'. The old method was
6051 not portable, according to Posix and the C standard, and it does
6052 not work with Sun C 5.7, where previous #line directives affect
6053 the working directory used in later #include "..." directives.
6054
927b425b
JMG
60552006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6056
6057 Various DJGGP specific issues in /djgpp
6058
d9735e9e
PE
60592006-02-02 Paul Eggert <eggert@cs.ucla.edu>
6060
6061 More portability fixes for problems summarized by Nelson H. F. Beebe.
6062
6063 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
6064 '#include <map>' works and that you can apply ++ to iterators.
6065
5a6755af
PE
60662006-02-01 Paul Eggert <eggert@cs.ucla.edu>
6067
67a0dc4f
PE
6068 Work around portability problems summarized by Nelson H. F. Beebe in
6069 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
6070
8c86f0ef
PE
6071 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
6072 that '#include <string>' works.
6073
de35dd59
PE
6074 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
6075 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
6076 "warning: sorry: semantics of inline function static data `const
6077 unsigned char translate_table[262]' are wrong (you'll wind up with
6078 multiple copies)".
6079
67a0dc4f
PE
6080 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
6081 or, xor to not_, and_, or_, and xor_, respectively. This works
6082 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
6083 random system header somewhere that includes the equivalent of
6084 <iso646.h>.
6085
5a6755af
PE
6086 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
6087 -E" works; it apparently doesn't work with PathScale EKO Compiler
67a0dc4f 6088 Suite Version 2.0.
5a6755af 6089
3f001415
JD
60902006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
6091
6092 During deterministic GLR operation, user actions should be able to
6093 influence the parse by changing yychar. To make this easier to fix and
6094 to make glr.c easier to evolve in general, don't maintain yytoken in
6095 parallel with yychar; just compute yytoken when needed.
6096 * tests/glr-regression.at (Incorrect lookahead during deterministic
6097 GLR): Check that setting yychar in a user action has the intended
6098 effect.
6099 * data/glr.c (yyGLRStack): Remove yytokenp member.
6100 (yyclearin): Don't set *yytokenp.
6101 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
6102 yychar rather than *yytokenp to determine the current lookahead.
6103 Compute yytoken locally when needed.
6104 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
6105 point to.
6106
6107 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
6108 after `--report' documentation.
6109
e2a8c0f5
PE
61102006-01-30 Paul Eggert <eggert@cs.ucla.edu>
6111
6112 * src/parse-gram.y (grammar_declaration): Location of printer
6113 symbol is @1, not list->location. Bug reported by twlevo.
6114 * tests/input.at (Incompatible Aliases): Adjust to above change.
6115
6b702268
PE
61162006-01-29 Paul Eggert <eggert@cs.ucla.edu>
6117
27622431
PE
6118 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
6119 all the test at once. This makes the output easier to read in the
6120 normal case.
6121
6b702268
PE
6122 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
6123 got from <http://bro-ids.org/download.html>. The bug is that
6124 when two actions appeared in succession, the second one was
6125 scanned before the first one was added to the grammar rule
6126 as a midrule action. Bison then output the incorrect warning
6127 "parse.y:905.17-906.36: warning: unused value: $3".
6128 * src/parse-gram.y (BRACED_CODE, action): These are no longer
6129 associated with a value.
6130 (rhs): Don't invoke grammar_current_rule_action_append.
6131 (action): Invoke it here instead.
6132 * src/reader.c (grammar_midrule_action): Now extern.
6133 (grammar_current_rule_action_append): Don't invoke
6134 grammar_midrule_action; that is now the scanner's job.
6135 * src/reader.h (last_string, last_braced_code_loc):
6136 (grammar_midrule_action): New decls.
6137 * src/scan-gram.l (last_string): Now extern, sigh.
6138 (last_braced_code_loc): New extern variable.
6139 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
6140 rule already has an action.
6141 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
6142 * tests/input.at (AT_CHECK_UNUSED_VALUES):
6143 Add some tests to check that the above changes fixed the bug.
6144
d40ba6c2
PE
61452006-01-27 Paul Eggert <eggert@cs.ucla.edu>
6146
6147 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
6148 All used changed. Check whether the symbol has a destructor,
6149 not whether it is typed.
6150 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
6151 that the values are still reported as unused. All line numbers
6152 adjusted.
6153
401aace6
PE
61542006-01-23 Paul Eggert <eggert@cs.ucla.edu>
6155
6156 Work around a bug in bro 0.8, which underparenthesizes its
6157 definition of YYLLOC_DEFAULT.
6158 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
6159 their arguments.
6160 * data/lalr1.cc: Likewise.
6161 * data/yacc.cc: Likewise.
6162
06f01bc4
PE
61632006-01-22 Paul Eggert <eggert@cs.ucla.edu>
6164
401aace6
PE
6165 Work around a bug in Pike 7.0, and give the Pike folks a
6166 better way to override the usual int widths.
6167 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
6168 user can override the types.
6169 (short): #undef, to work around a bug in Pike 7.0.
6170 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
6171 (union yyalloc.yyss): Use yytype_int16 rather than short.
6172 All uses changed.
6173 (yysigned_char): Remove.
6174 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
6175 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
6176 * tests/regression.at (Web2c Actions): Adjust to above changes.
6177
6178 * src/reader.c (check_and_convert_grammar): New function.
6179 (reader): Close the input file even if something went wrong during
6180 parsing. Minor file descriptor leak reported by twlevo.
6181
06f01bc4
PE
6182 * src/assoc.c (assoc_to_string): Use a default: abort (); case
6183 to pacify gcc -Wswitch-default.
6184 * src/scan-gram.l (adjust_location): Use a default: break; case
6185 to pacify gcc -Wswitch-default.
6186 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
6187 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
6188 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
6189 Move these decls to scan-skel.l, since they don't need to be
6190 visible elsewhere.
6191 * src/scan-skel.l: Accept the above decls.
6192 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
6193 is used.
6194
02650b7f
PE
61952006-01-21 Paul Eggert <eggert@cs.ucla.edu>
6196
6197 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
6198 since we don't want to insist on a version number at the start
6199 of the changelog every time.
6200 * Makefile.maint: Sync from coreutils a bit better.
6201 (sc_trailing_blank): Renamed from sc_trailing_space.
6202 All uses changed.
6203 (sc_no_if_have_config_h, sc_require_config_h):
6204 (sc_prohibit_assert_without_use): New rules.
6205 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
6206 (sc_dd_max_sym_length): Fix leading spaces in rule.
6207 (sc_system_h_headers): Prefix with @.
6208 (sc_useless_cpp_parens, m4-check): Output line numbers.
6209 (changelog-check): Allow version only in head.
6210 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
6211 satisfy new Makefile.maint rule.
6212 * data/glr.c: Likewise.
6213 * data/glr.cc: Likewise.
6214 * data/lalr1.cc: Likewise.
6215 * data/yacc.c: Likewise.
6216 * lib/ebitsetv.c: Likewise.
6217 * lib/lbitset.c: Likewise.
6218 * lib/subpipe.c: Likewise.
6219 * lib/timevar.c: Likewise.
6220 * src/system.h: Likewise.
6221 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
6222 * djgpp/Makefile.maint: Add copyright notice.
6223 * djgpp/README.in: Likewise.
6224 * djgpp/config.bat: Likewise.
6225 * djgpp/config.site: Likewise.
6226 * djgpp/config_h.sed: Likewise.
6227 * djgpp/djunpack.bat: Likewise.
6228 * djgpp/config.sed: Fix copyright notice to match standard format.
6229 * djgpp/subpipe.h: Likewise.
6230 * lib/bitsetv-print.c: Likewise.
6231 * lib/bitsetv.c: Likewise.
6232 * lib/subpipe.h: Likewise.
6233 * lib/timevar.c: Likewise.
6234 * lib/timevar.h: Likewise.
6235 * djgpp/subpipe.c: Use standard recipe for config.h.
6236 * lib/abitset.c: Likewise.
6237 * lib/bitset.c: Likewise.
6238 * lib/bitset_stats.c: Likewise.
6239 * lib/bitsetv-print.c: Likewise.
6240 * lib/bitsetv.c: Likewise.
6241 * lib/ebitsetv.c: Likewise.
6242 * lib/get-errno.c: Likewise.
6243 * lib/lbitset.c: Likewise.
6244 * lib/subpipe.c: Likewise.
6245 * lib/timevar.c: Likewise.
6246 * lib/vbitset.c: Likewise.
6247 * tests/local.at: Likewise.
6248 * src/scan-gram.l: Don't include verify.h, since system.h does
6249 that for us.
6250 * .x-sc_require_config_h: New file.
6251 * .x-sc_unmarked_diagnostics: New file.
6252
287c78f6
PE
62532006-01-20 Paul Eggert <eggert@cs.ucla.edu>
6254
287c78f6
PE
6255 Be a bit more systematic about using 'abort'.
6256 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
6257 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
6258 Put 'default: abort ();' before some other case, to satisfy older
6259 pedantic compilers.
6260 * lib/bitset_stats.c (bitset_stats_init): Likewise.
6261 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
6262 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
6263 * src/conflicts.c (resolve_sr_conflict): Likewise.
68cae94e
PE
6264 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
6265 (get_decision_str, get_orientation_str, get_node_alignment_str):
6266 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
6267 (get_linestyle_str, get_arrowstyle_str): Likewise.
6268 * src/conflicts.c (resolve_sr_conflict):
6269 Use a default case rather than one for the one remaining enum
6270 value, to catch invalid enum values as well.
6271 * src/lalr.c (set_goto_map, map_goto):
6272 Prefer "assert (FOO);" to "if (!FOO) abort ();".
6273 * src/nullable.c (nullable_compute, token_definitions_output):
6274 Likewise.
6275 * src/reader.c (packgram, reader): Likewise.
6276 * src/state.c (transitions_to, state_new, state_reduction_find):
6277 Likewise.
6278 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
6279 (symbol_pack): Likewise.
6280 * src/tables.c (conflict_row, pack_vector): Likewise.
287c78f6
PE
6281 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
6282 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
68cae94e
PE
6283 * src/system.h: Don't include <assert.h>.
6284 (assert): New macro.
6285
6286 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
6287 (Destructor Decl, Parser Function, Pure Calling):
6288 Describe rules for braces inside C code more carefully.
287c78f6 6289
c66dfadd
PE
62902006-01-19 Paul Eggert <eggert@cs.ucla.edu>
6291
c21493b8
PE
6292 Fix some porting glitches found by Nelson H. F. Beebe.
6293 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
6294 compilers that don't understand that abort () does not return.
6295 * src/state.c (transitions_to): Likewise.
6296 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
6297 that '#include <cstdlib>' works.
6298 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
6299 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
6300 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
6301 for the benefit of some pre-C99 compilers.
6302
b6e3facf
PE
6303 * bootstrap: Undo changes to gnulib files that autoreconf made.
6304
c66dfadd
PE
6305 Minor fixups to get 'make maintainer-check' to work.
6306 * configure.ac: Don't use -Wnested-externs, as it's incompatible
6307 with the new verify.h implementation.
6308 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
6309 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
6310 * data/yacc.c (YYUSE): Likewise.
6311 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
6312 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
6313 * src/parse-gram.y (declaration): Don't pass a string constant
6314 to a function that expects char *, since GCC might complain
6315 about the constant value.
6316 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
6317 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
6318 before #defining them.
6319 * tests/glr-regression.at
6320 (Incorrectly initialized location for empty right-hand side in GLR):
6321 In yyerror, use the msg arg.
6322 (Corrupted semantic options if user action cuts parse):
6323 (Incorrect lookahead during deterministic GLR):
6324 (Incorrect lookahead during nondeterministic GLR):
6325 Don't name a local var 'index'; it shadows string.h's 'index'.
6326
ed94ef2a
AD
63272006-01-19 Akim Demaille <akim@epita.fr>
6328
6329 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
6330 location, not just parts of it.
6331
e9ad4aec
PE
63322006-01-18 Paul Eggert <eggert@cs.ucla.edu>
6333
d6ca7905
PE
6334 * NEWS: Document the fact that multiple %unions are now allowed.
6335 * doc/bison.texinfo (Union Decl): Likewise.
51cbef6f
PE
6336 * TODO: This feature is now implemented, so remove it from
6337 the wishlist.
d6ca7905 6338
ef1b70e0
PE
6339 * Makefile.maint: Merge with coreutils Makefile.maint.
6340 (CVS_LIST): Use build-aux version if available.
6341 (VERSION_REGEXP): New macro.
6342 (syntax-check-rules): Add sc_no_if_have_config_h,
6343 sc_prohibit_assert_without_use, sc_require_config_h,
6344 sc_useless_cpp_parens.
6345 (sc_obsolete_symbols): Check for O_NDELAY.
6346 (sc_dd_max_sym_length): Track coreutils.
6347 (sc_unmarked_diagnostics): Look in all files, not just *.c.
6348 (sc_useless_cpp_parens): New rule.
6349 (news-date-check): Look for version or today's date.
6350 (changelog-check): Don't require version number near head.
6351 (copyright-check): Use current year instead of hardwiring 2005.
6352 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
6353 (announcement): Add --gpg-key-ID.
6354
6355 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
6356 with "file system".
6357
2073ce56 6358 Avoid undefined behavior that addressed just before the start of an
e9ad4aec
PE
6359 array. Problem reported by twlevo.
6360 * src/reader.c (packgram): Prepend a new sentinel before ritem.
6361 * src/lalr.c (build_relations): Rely on new sentinel.
6362 * src/gram.c (gram_free): Adjust to new sentinel.
6363
b7691f15
JD
63642006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
6365
6366 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
6367 yylookaheadNeeds. All uses updated.
6368 (yysplitStack): Rename local yynewLookaheadStatuses to
6369 yynewLookaheadNeeds.
6370 * data/glr-regression.at (Incorrect lookahead during nondeterministic
6371 GLR): In comments, change `lookahead status' to `lookahead need'.
6372
ddee1b06
PH
63732006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6374
6375 * data/glr.c (yysplitStack): A little stylistic rewrite.
6376
12f4614d
PH
63772006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6378
6379 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
6380
32c29292
JD
63812006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
6382
6383 * doc/bison.texinfo: Fix some typos.
6384 (GLR Semantic Actions): New subsection discussing special
6385 considerations because GLR semantic actions might be deferred.
6386 (Actions): Mention look-ahead usage of yylval.
6387 (Actions and Locations): Mention look-ahead usage of yylloc.
6388 (Special Features for Use in Actions): Add YYEOF entry and mention it
6389 in the yychar entry.
6390 In the yychar entry, remove mention of the local yychar case (pure
6391 parser) since this is irrelevant information when writing semantic
148d66d8 6392 actions and since it's already discussed in `Table of Symbols' where
32c29292
JD
6393 yychar is otherwise described as an external variable.
6394 In the yychar entry, don't call it the `current' look-ahead since it
6395 isn't when semantic actions are deferred.
6396 In the yychar and yyclearin entries, add note about deferred semantic
6397 actions.
6398 Add yylloc and yylval entries discussing look-ahead usage.
6399 (Look-Ahead Tokens): When discussing yychar, don't call it the
6400 `current' look-ahead, and do mention yylval and yylloc.
6401 (Error Recovery): Cross-reference `Action Features' when mentioning
6402 yyclearin.
148d66d8 6403 (Table of Symbols): In the yychar entry, don't call it the `current'
32c29292
JD
6404 look-ahead.
6405 In the yylloc and yylval entries, mention look-ahead usage.
6406
de366a2f 64072006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2781dbd1
JD
6408
6409 * tests/glr-regression.at: Update copyright year to 2006.
6410
bf70fa87
JD
64112006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6412
6413 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
6414 use during nondeterministic operation to track which stacks have
6415 actually needed the current lookahead.
6416 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
6417 Allocate, deallocate, resize, and otherwise shuffle space for
6418 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
6419 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
6420 appropriately during nondeterministic operation.
6421 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
6422 members to store the current lookahead to be used by the deferred
6423 user action.
6424 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
6425 from which the RHS is taken. Set the lookahead members of the new
6426 yySemanticOption according to the lookahead status for stack yyk.
6427 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
6428 yyaddDeferredAction.
6429 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
6430 members of yySemanticOption before invoking yyuserAction, and then set
6431 them back to their current values afterward.
6432 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
6433 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
6434 * tests/glr-regression.at: Remove `.' from the ends of recent test case
6435 titles for consistency.
6436 (Leaked merged semantic value if user action cuts parse): In order to
6437 suppress lint warnings, use arguments in merge function, and assign
6438 char value < 128 in main.
6439 (Incorrect lookahead during deterministic GLR): New test case.
6440 (Incorrect lookahead during nondeterministic GLR): New test case.
6441
05449a2c
JD
64422006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6443
de366a2f 6444 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
05449a2c
JD
6445 !yyvaluep as signal that no semantic value is available to print.
6446 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
6447 to print a semantic value.
6448
4158e0a1 64492006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
fd2493f7 6450
4158e0a1
JD
6451 * tests/glr-regression.at: For consistency with my newer test cases,
6452 don't thank myself.
6453
d659304d
JD
64542006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
6455
6456 * data/glr.c (yyresolveValue): When merging semantic options, if at
6457 least one user action succeeds but a later one cuts the parse, then
6458 destroy the semantic value before returning rather than leaking it.
6459 (yyresolveStates): If a user action cuts the parse and thus
6460 yyresolveValue fails, ignore the (unset) semantic value rather than
6461 corrupting the yyGLRState, and empty the semantic options list since
6462 the user actions should have called all necessary destructors.
6463 Simplify code with YYCHK.
6464 * tests/glr-regression.at (Corrupted semantic options if user action
6465 cuts parse): New test case.
6466 (Undesirable destructors if user action cuts parse): New test case.
6467 Before applying any of this patch, this test case never actually failed
6468 for me... but only because the corrupted semantic options usually
6469 masked this bug.
6470 (Leaked merged semantic value if user action cuts parse): New test
6471 case.
6472
6ec2c0f2
AD
64732006-01-05 Akim Demaille <akim@epita.fr>
6474
6475 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
6476
1b9c21fb
PE
64772006-01-04 Paul Eggert <eggert@cs.ucla.edu>
6478
6479 * data/c.m4 (b4_c_modern): New macro, with a new provision for
6480 _MSC_VER. Problem reported by Cenzato Marco.
6481 (b4_c_function_def): Use it.
6482 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
6483 b4_c_modern.
6484 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
6485 than rolling our own.
6486
84866159
AD
64872006-01-04 Akim Demaille <akim@epita.fr>
6488
6489 Also warn about non-used mid-rule values.
6490 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
6491 member.
6492 (symbol_list_new): Adjust.
6493 * src/reader.c (symbol_typed_p): New.
6494 (grammar_rule_check): Use it.
6495 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
6496 Check its rule.
6497 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
6498 Use it.
6499 * tests/actions.at (Exotic Dollars): Adjust.
6500
378f4bd8
AD
65012006-01-04 Akim Demaille <akim@epita.fr>
6502
6503 * src/reader.c (grammar_midrule_action): If $$ is set in a
6504 mid-rule, move the `used' bit to its lhs.
6505 * tests/input.at (Unused values): New.
6506 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
6507
e2a21b6f
PE
65082006-01-03 Paul Eggert <eggert@cs.ucla.edu>
6509
54662697
PE
6510 * doc/bison.texinfo (Bison Options): Say more accurately what
6511 --yacc does.
6512 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
6513 about declarations in the grammar when in Yacc mode, as POSIX does
6514 not require a diagnostic when the grammar uses extensions.
6515
6516 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
6517
073f9288
PE
6518 Warn about dubious constructions like "%token T T".
6519 Reported by twlevo.
6520 * src/symtab.h (struct symbol.declared): New member.
6521 * src/symtab.c (symbol_new): Initialize it to false.
6522 (symbol_class_set): New arg DECLARING, specifying whether
6523 this is a declaration that we want to warn about, if there
6524 is more than one of them. All uses changed.
6525
1221b78a
PE
6526 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
6527 Allow multiple %union directives, whose contents concatenate.
6528 * src/parse-gram.y (grammar_declaration): Likewise.
6529 Use muscle_code_grow, so that we don't need stype_line any more.
6530 All uses changed.
6531
6532 * src/muscle_tab.c (muscle_grow): Fix comment.
6533
e2a21b6f
PE
6534 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
6535 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
6536 Update copyright year to 2006.
6537
8f7e3cf9
AD
65382006-01-03 Akim Demaille <akim@epita.fr>
6539
6540 Have glr.cc pass (some of) the calc.at tests.
6541 * data/glr.cc (b4_parse_param_orig): New.
6542 (b4_parse_param): Improve its definition, and bound it more
6543 clearly in the skeleton.
6544 (b4_epilogue): Append, instead of prepending, in order to keep
6545 #line consistency.
6546 Simplify the generation of auxiliary functions: locations and
6547 purity are mandated.
6548 (b4_global_tokens_and_yystype): Honor it.
6549 * data/location.cc (c++.m4): Don't include it.
6550 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
6551 and AT_SKEL_CC_IF.
6552 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
6553 AT_LALR1_CC_IF.
6554 Be sure to initialize the first position's filename.
6555 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
6556 mandated anyway.
6557 (AT_CHECK_CALC_GLR_CC): New.
6558 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
6559
3953ed88
AD
65602006-01-02 Akim Demaille <akim@epita.fr>
6561
6562 * src/output.c (output_skeleton): Don't hard wire the inclusion of
6563 c.m4.
0a96ba81 6564 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
3953ed88
AD
6565 * data/glr.cc: Do not include stack.hh.
6566
9ecafbbf
AD
65672006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
6568
6569 * data/glr.c: Reformat whitespace with tabs.
6570 (b4_lpure_formals): Remove this unused m4 macro.
6571 * tests/cxx-type.at: Reformat whitespace with tabs.
6572 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
6573 since it's a member. Rename type to isNterm for clarity.
6574
c4d497a0
AD
65752005-12-29 Akim <akim@sulaco.local>
6576
6577 Let glr.cc catch up with symbol_value_print.
6578 * data/glr.cc (b4_yysymprint_generate): Replace by...
6579 (b4_yy_symbol_print_generate): this.
6580 (yy_symbol_print, yy_symbol_value_print): Declare them.
6581
4517da37
PE
65822005-12-28 Paul Eggert <eggert@cs.ucla.edu>
6583
6584 * src/location.h (boundary): Note that a line or column equal
6585 to INT_MAX indicates an overflow.
6586 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
6587 (rule_length_overflow, increment_rule_length, add_column_width):
6588 New functions.
6589 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
6590 (<SC_BRACED_CODE>"}"):
6591 Use increment_rule_length rather than incrementing it by hand.
6592 (adjust_location, handle_syncline): Diagnose overflow.
6593 (handle_action_dollar, handle_action_at):
6594 Fix bug with monstrosities like $-2147483648.
6595 Remove now-unnecessary checks.
6596 (scan_integer): Verify assumptions and remove now-unnecessary checks.
6597 (convert_ucn_to_byte): Verify assumptions.
6598 (handle_syncline): New arg LOC. All callers changed.
6599 Don't store through a value derived from char const * pointer.
6600
6601 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
6602 GCC warnings.
6603
e3233bf6
PE
66042005-12-27 Paul Eggert <eggert@cs.ucla.edu>
6605
6606 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
6607 Remove unnecessary forward static decls.
6608
8f3596a6
AD
66092005-12-27 Akim Demaille <akim@epita.fr>
6610
6611 * src/reader.c (grammar_current_rule_check): Also check that $$
6612 is used.
6613 Take the rule to check as argument, hence rename as...
6614 (grammar_rule_check): this.
6615 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
6616 Rename as...
6617 (grammar_rule_begin, grammar_rule_end): these, for consistency.
6618 (grammar_midrule_action, grammar_symbol_append): Now static.
6619 * tests/torture.at (input): Don't rely on the default action
6620 being always performed.
6621 * tests/calc.at: "Set" $$ even when the action is "cut" with
6622 YYERROR or other.
6623 * tests/actions.at (Exotic Dollars): Instead of using unused
6624 values, check that the warning is issued.
6625
721be13c
PE
66262005-12-22 Paul Eggert <eggert@cs.ucla.edu>
6627
6628 * NEWS: Improve wording for unused-value warnings.
6629
a0af42fc
AD
66302005-12-22 Akim Demaille <akim@epita.fr>
6631
6632 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
6633 (b4_yysymprint_generate): Rename as...
6634 (b4_yy_symbol_print_generate): this.
6635 Generate yy_symbol_print instead of yysymprint.
6636 Generate also yy_symbol_value_print, and use it.
6637
affac613
AD
66382005-12-22 Akim Demaille <akim@epita.fr>
6639
721be13c 6640 * NEWS: Warn about unused values.
affac613
AD
6641 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
6642 a `used' member.
6643 (symbol_list_n_get, symbol_list_n_used_set): New.
6644 (symbol_list_n_type_name_get): Use symbol_list_n_get.
6645 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
6646 * src/reader.c (grammar_current_rule_check): Check that values are
6647 used.
6648 * src/symtab.c (symbol_print): Accept 0.
6649 * tests/existing.at: Remove the type information.
6650 Empty the actions.
6651 Remove useless actions (beware of mid-rule actions: perl -000
6652 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
6653 * tests/actions.at (Exotic Dollars): Use unused values.
6654 * tests/calc.at: Likewise.
6655 * tests/glr-regression.at (No users destructors if stack 0 deleted):
6656 Likewise.
6657
6658 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
6659 rule_useful_p.
6660
9d9b8b70
PE
66612005-12-21 Paul Eggert <eggert@cs.ucla.edu>
6662
8bb4c753
PE
6663 Undo 2005-12-01 tentative license wording change. The wording is
6664 still being reviewed by the lawyers, and we don't want to wait for
6665 them before publishing a test release. For now, revert to the
6666 previous wording.
6667 * NEWS: Undo 2005-12-01 change.
6668 * data/glr.c: Revert to previous license wording.
6669 * data/glr.cc: Likewise.
6670 * data/lalr1.cc: Likewise.
6671 * data/location.cc: Likewise.
6672 * data/yacc.c: Likewise.
6673
9d9b8b70
PE
6674 * NEWS: Reword %destructor vs YYABORT etc.
6675 * data/glr.c: Use American spacing, for consistency.
6676 * data/glr.cc: Likewise.
6677 * data/lalr1.cc: Likewise.
6678 * data/yacc.c: Likewise.
6679 * data/yacc.c: Reformat comments slightly.
6680 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
6681 for consistency. Fix some spelling errors and reword recently-included
6682 text slightly.
6683 * tests/cxx-type.at: Cast results of malloc, for C++.
6684
2c3b392a
AD
66852005-12-21 Joel E. Denny <address@hidden>
6686
6687 * tests/cxx-type.at: Construct a tree, count the parents of shared
6688 nodes, and free each node once and only once. Previously, the memory
6689 for semantic values was leaked instead.
6690
d6cff4dc
AD
66912005-12-21 Joel E. Denny <address@hidden>
6692
6693 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
6694 (yylval, yylloc): If pure, #define to yystackp->yyval and
6695 yystackp->yyloc similar to yychar and yynerrs.
6696 (yyparse): If pure, remove local yylval and yylloc. Add local
6697 yystackp to accommodate pure definitions of yylval and yylloc.
6698 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
6699 yylvalp and yyllocp to &yylval and &yylloc.
6700 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
6701 namespace. Previously, nerrs and char were missing, but lval and lloc
6702 weren't necessary.
6703 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
6704 yylvalp and yyllocp parameters since, if pure, these are now always
6705 accessible through yystackp. If not pure, they are still accessible
6706 globally.
6707 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
6708 `if (YYID (N))' to pacify lint.
6709
a85284cf
AD
67102005-12-21 Akim Demaille <akim@epita.fr>
6711
6712 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
6713 destroy the RHS symbols of a rule.
6714 * data/yacc.c (yylen): Initialize to 0.
6715 Keep its value to the number of items to possibly shift.
6716 In particular, a regular successful parse that ends on YYFINAL by
6717 a (internal) YYACCEPT must not have yylen != 0.
6718 (yyerrorlab, yyreturn): Pop the RHS.
6719 Reorder a bit to emphasize the `shifting' bits of code.
6720 (YYPOPSTACK): Now accept a number of items to pop.
6721 * data/lalr1.cc: Likewise.
6722 * data/glr.c: Formatting changes.
6723 Use goto instead of fall through.
6724 * doc/bison.texinfo (Destructor Decl): Complete.
6725
d508c281
JMG
67262005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6727
6728 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
6729 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
6730 * djgpp/config.bat: Replace every occurence of the file name
6731 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
6732 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
6733 * djgpp/config.sed: Replace every occurence of the file name
6734 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
6735 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
6736 * djgpp/djunpack.bat: DJGPP specific file.
6737 * djgpp/fnchange.lst: DJGPP specific file.
6738 * djgpp/README.in: Add new information about how to unpack the bison
6739 source on MSDOS and other systems which have 8.3 file name restrictions
6740 using djunpack.bat and fnchange.lst.
6741
3e7a2cd9
PE
67422005-12-12 Paul Eggert <eggert@cs.ucla.edu>
6743
6744 * bootstrap (build_cvs_prefix): Remove; unused.
6745 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
6746 when getting gnulib.
6747
67482005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
6749
6750 * data/glr.c: Reorder typedef declarations for structs to match order
6751 of struct declarations.
6752 Rename yystack everywhere to yystackp except in yyparse where it's not
6753 a pointer.
6754 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
6755 consistency.
6756 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
6757 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
6758 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
6759 lint.
6760
877519f8
PE
67612005-12-09 Paul Eggert <eggert@cs.ucla.edu>
6762
0eca5a39
PE
6763 * tests/sets.at (Accept): Fix typos in regular expression used to
6764 sed out the final state number.
6765
2cec9080
PE
6766 Work around portability problem on Solaris 10: flex-generated
6767 files include <stdio.h> before <config.h>, which messes up
6768 because the latter defines __EXTENSIONS__. Address the problem
6769 by creating two new little files that include <config.h> first,
6770 then include the flex-generated files. Rewrite everyone else
6771 to include <config.h> first, as well.
6772 * lib/timevar.c: Always include "config.h".
6773 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
6774 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
6775 (EXTRA_bison_SOURCES): New macro.
6776 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
6777 * src/system.h: Don't include config.h.
6778 * src/LR0.c: Include <config.h> first.
6779 * src/assoc.c: Likewise.
6780 * src/closure.c: Likewise.
6781 * src/complain.c: Likewise.
6782 * src/conflicts.c: Likewise.
6783 * src/derives.c: Likewise.
6784 * src/files.c: Likewise.
6785 * src/getargs.c: Likewise.
6786 * src/gram.c: Likewise.
6787 * src/lalr.c: Likewise.
6788 * src/location.c: Likewise.
6789 * src/main.c: Likewise.
6790 * src/muscle_tab.c: Likewise.
6791 * src/nullable.c: Likewise.
6792 * src/output.c: Likewise.
6793 * src/parse-gram.y: Likewise.
6794 * src/print.c: Likewise.
6795 * src/print_graph.c: Likewise.
6796 * src/reader.c: Likewise.
6797 * src/reduce.c: Likewise.
6798 * src/relation.c: Likewise.
6799 * src/state.c: Likewise.
6800 * src/symlist.c: Likewise.
6801 * src/symtab.c: Likewise.
6802 * src/tables.c: Likewise.
6803 * src/uniqstr.c: Likewise.
6804 * src/vcg.c: Likewise.
6805
877519f8
PE
6806 * src/parse-gram.y: Fix minor problems uncovered by lint.
6807 (current_lhs, current_lhs_location): Now static.
6808 (current_assoc): Remove unused variable.
6809
6810 Cleanups so that Bison-generated parsers have less lint.
6811 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
6812 Prepend /*ARGSUSED*/, for lint's sake.
6813 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
6814 definition if 'lint' is defined.
6815 (YYID): New macro (or function, if lint).
6816 All uses of /*CONSTCOND*/0 replaced by YYID(0).
6817 * data/yacc.c: Likewise.
6818 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
6819 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
6820 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
6821 is C++ only.
6822 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
6823 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
6824 Use YYID(0) rather than 0, for lint.
6825 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
6826 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
6827
f5228370
PE
68282005-12-07 Paul Eggert <eggert@cs.ucla.edu>
6829
6830 * tests/glr-regression.at
6831 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
6832 Close memory leak reported by twlevo.
6833
69ce078b
PE
68342005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
6835
6ff99711
PE
6836 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
6837 all stacks.
6838 (yyparse): Iterate another stack in order to call user destructors.
69ce078b
PE
6839 * tests/glr-regression.at (No users destructors if stack 0 deleted):
6840 New test case.
6841 (Duplicated user destructor for lookahead): This test now is expected
6842 to succeed.
6843
af3412cd
PE
68442005-12-01 Paul Eggert <eggert@cs.ucla.edu>
6845
32b5b719 6846 * NEWS: Document the following change.
af3412cd
PE
6847 * data/yacc.c: Say "parser skeleton" rather than "file", since
6848 it's no longer just a file.
6849 * data/glr.c: Grant a special exception for C GLR parsers, that
6850 reads like the already-existing exception for C LALR(1) parsers.
6851 * data/glr.cc: Likewise.
6852 * data/lalr1.cc: Likewise.
6853 * data/location.cc: Likewise.
6854 * data/yacc.c: Reword the "written by" statement to clarify that
6855 it was the parser skeleton, not the entire output file.
6856 * data/glr.c: Written by Paul Hilfinger.
6857 * data/glr.cc: Written by Akim Demaille.
6858 * data/lalr1.cc: Likewise.
6859
035aa4a0
PE
68602005-11-18 Paul Eggert <eggert@cs.ucla.edu>
6861
d9963c85
PE
6862 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
6863 Fix typos in previous change that broke 'make check'.
6864 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
6865 supported in C.
6866 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
6867 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
6868 We can revert this once things settle down.
6869
035aa4a0
PE
6870 * src/conflicts.c (conflicts_print): Don't print file name twice
6871 when %expect fails because there were no conflicts.
6872 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
6873 change.
6874 * tests/conflicts.at (%expect not enough, %expect too much):
6875 (%expect with reduce conflicts): Adjust to new behavior.
6876
68772005-11-18 Akim Demaille <akim@epita.fr>
6878
6879 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
6880 errors.
6881 * NEWS: Document this.
6882 * doc/bison.texinfo (Expect Decl): Likewise.
6883
d1ff7a7c
AD
68842005-11-16 Akim Demaille <akim@epita.fr>
6885
6886 Generalize the display of semantic values and locations in traces.
6887 * data/glr.c (yy_reduce_print): Fix indices (again).
6888 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
6889 literal integers.
6890 * data/lalr1.cc (yyreduce_print): Rename as...
6891 (yy_reduce_print): this.
6892 Display values and locations.
6893 * data/yacc.c (yy_reduce_print): Likewise.
6894 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
6895 (yysymprint): Move higher to be visible from yy_reduce_print).
6896 (yyparse): Adjust.
6897 * tests/calc.at: Adjust the expected length of the traces.
6898
6de5398d
AD
68992005-11-14 Akim Demaille <akim@epita.fr>
6900
6901 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
6902 from 1 to N, while values and location start at 0.
6903 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
6904
a1373f55
AD
69052005-11-14 Akim Demaille <akim@epita.fr>
6906
6907 * data/glr.c (yy_reduce_print): Fix the $ number.
6908
613d8952
AD
69092005-11-14 Akim Demaille <akim@epita.fr>
6910
6911 "Use" parse parameters.
6912 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
6913 * data/glr.c, data/glr.cc: Use them.
6914 * data/glr.c (YYUSE): Have a C++ definition that supports
6915 non-pointer types.
6916
b2741627
AD
69172005-11-14 Akim Demaille <akim@epita.fr>
6918
6919 * data/glr.c (yyexpandGLRStack): Declare only if defined.
6920
5059b5c8
AD
69212005-11-14 Akim Demaille <akim@epita.fr>
6922
42249483
AD
6923 * data/glr.cc: New.
6924 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
5059b5c8 6925
4626a15d
AD
69262005-11-12 Akim Demaille <akim@epita.fr>
6927
6928 Let position and location be PODs.
6929 * data/location.cc (position::initialize, location::initialize): New.
6930 (position::position, location::location): Define only if
6931 b4_location_constructors is defined.
6932 * data/lalr1.cc (b4_location_constructors): Define it for backward
6933 compatibility.
6934 * doc/bison.texinfo (Initial Action Decl): Use initialize.
6935
69362005-11-12 Akim Demaille <akim@epita.fr>
98ae9643
AD
6937
6938 * data/lalr1.cc: Move the body of the ctor and dtor into the
6939 parser file (instead of the header).
6940 Wrap the implementations in a "namespace yy".
6941
69422005-11-12 Akim Demaille <akim@epita.fr>
6943
6944 Have glr.c include its header file when created.
6945 * data/glr.c (b4_shared_declarations): New.
6946 Output them verbatim in the parser if !%defines, otherwise
6947 output then in the header file, and include it instead.
6948
1989d947
AD
69492005-11-11 Akim Demaille <akim@epita.fr>
6950
6951 * data/glr.c: Comment changes.
6952
69532005-11-11 Akim Demaille <akim@epita.fr>
62b08cfc
AD
6954
6955 When yydebug, report semantic and location values for reductions.
6956 * data/glr.c (yy_reduce_print): Report the semantic values and the
6957 locations.
6958 (YY_REDUCE_PRINT): Adjust.
6959 (yyglrReduce): Use them.
6960 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
6961 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
6962 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
6963 traces.
6964
02998094
AD
69652005-11-10 Akim Demaille <akim@epita.fr>
6966
6967 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
6968 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
6969 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
6970
5210672f
PE
69712005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
6972
6973 * m4/cxx.m4, examples/Makefile.am: Don't build
6974 examples/calc++ if no C++ compiler is available. (trivial change)
6975
a8991a1d
AD
69762005-11-09 Akim Demaille <akim@epita.fr>
6977
6978 * src/scan-skel.l: Use a couple of asserts.
6979
36b5e963
AD
69802005-11-03 Akim Demaille <akim@epita.fr>
6981
6982 In some (weird) cases, the final state number is incorrect.
6983 Reported by Alexandre Duret-Lutz.
6984 * src/LR0.c (state_list_append): Remove the computation of
6985 final_state.
6986 (save_reductions): Do it here.
6987 (get_state): Alpha conversion.
6988 (generate_states): Use a for loop.
6989 * src/gram.h (item_number_is_rule_number)
6990 (item_number_is_symbol_number): New.
6991 * src/state.c: Use assert.
6992 * src/system.h: Include assert.h.
6993 * tests/sets.at (Accept): New.
6994
44e7ead1
PH
69952005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6996
6997 * data/glr.c (yyfill): Adjust comment.
36b5e963 6998 (yyresolveAction): Initialize default location properly
44e7ead1
PH
6999 for empty right-hand sides.
7000 (yydoAction): Ditto.
7001 Add comment explaining apparently dead code.
36b5e963
AD
7002 * tests/glr-regression.at
7003 (Incorrectly initialized location for empty right-hand side in GLR):
44e7ead1 7004 New test.
36b5e963 7005
e10a80ee
PE
70062005-10-30 Paul Eggert <eggert@cs.ucla.edu>
7007
7008 * bootstrap (cleanup_gnulib): New function. Use it to clean up
7009 gnulib when interrupted. This fixes some race conditions and
7010 works around some portability problems (one noted by Paul
7011 Hilfinger).
7012
067b32ee
AD
70132005-10-22 Akim <akim@epita.fr>
7014
7015 * Makefile.cfg: Adjust to config -> build-aux.
7016 Reported by twledo.
7017
4b367315
AD
70182005-10-21 Akim Demaille <akim@epita.fr>
7019
7020 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
7021 the %parse-params.
7022 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
7023 * data/yacc.c (b4_Pure_if): Rename as...
7024 (b4_yacc_pure_if): this.
7025 (YY_SYMBOL_PRINT, yyparse): Adjust.
7026 * doc/bison.texinfo: Formatting changes.
7027
24cc23d9
AD
70282005-10-21 Akim Demaille <akim@epita.fr>
7029
7030 Finish the transition config -> build-aux.
7031 * configure.ac, Makefile.am: Use build-aux.
7032 * config/prev-version, config/announce-gen, config/Makefile.am:
7033 Move to...
7034 * build-aux/prev-version, build-aux/announce-gen,
7035 * build-aux/Makefile.am: here.
7036
d4476375
AD
70372005-10-14 Akim Demaille <akim@epita.fr>
7038
7039 * examples/calc++/test: Use set -x only when VERBOSE.
7040
302c0aee
PE
70412005-10-13 Paul Eggert <eggert@cs.ucla.edu>
7042
7043 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
7044 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
7045
7625ec2c
AD
70462005-10-13 Akim Demaille <akim@epita.fr>
7047
7048 * src/scan-skel.l: Output the base name parts of the parser and
7049 header file names.
302c0aee 7050 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7625ec2c
AD
7051 additional checks.
7052 Use this to exercise C++ outputs in subdirs.
7053 Reported by Oleg Smolsky.
7054
ba0fe3c7
PE
70552005-10-12 Paul Eggert <eggert@cs.ucla.edu>
7056
7057 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
7058 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
7059 Problem reported by John P. Hartmann.
7060 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
7061 already defined it.
7062
9b8a5ce0
AD
70632005-10-12 Akim Demaille <akim@epita.fr>
7064
7065 * src/parse-gram.y (version_check): Exit 63 to please missing
7066 (stands for "version mismatch).
7067 * tests/input.at, doc/bison.texinfo: Adjust.
7068
4f6e011e
PE
70692005-10-10 Paul Eggert <eggert@cs.ucla.edu>
7070
7071 Work around portability problems with Visual Age C compiler
7072 (xlc and xlC_r) reported by John P. Hartmann.
7073 * data/location.cc (initial_column, initial_line): Remove.
7074 All uses replaced by 0 and 1.
7075 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
7076 that xlc complains about.
7077 * src/scan-skel.l (skel_wrap): Likewise.
4d7aa45e 7078 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
ba0fe3c7 7079 as __STDC__.
4d7aa45e
PE
7080 * data/yacc.c (YYMODERN_C): New macro, which also looks at
7081 __STDC_VERSION__. Use it everywhere instead of looking at
7082 __STDC__ and __cplusplus.
4f6e011e 7083
a1b3bf8c
AD
70842005-10-10 Akim Demaille <akim@epita.fr>
7085
7086 * examples/calc++/test: Be quiet unless VERBOSE.
7087
412e44aa
PE
70882005-10-05 Paul Eggert <eggert@cs.ucla.edu>
7089
2a4647a3
PE
7090 * data/c.m4 (yydestruct, yysymprint):
7091 Use YYUSE instead of casting to void.
7092 * data/glr.c (YYUSE): New macro.
7093 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7094 Use it instead of rolling our own.
7095 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7096 (YYCHK1):
7097 Use /*CONSTCOND*/ to suppress lint warnings.
7098 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7099 (YY_STACK_PRINT): Use 'false' not '0'.
7100 (YYUSE): New macro.
7101 (yysymprint_, yydestruct_): Use it instead of rolling our own.
7102 * data/yacc.c (YYUSE): New macro.
7103 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
7104 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
7105 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
7106
7107
412e44aa
PE
7108 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
7109 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
7110
88c6637f
PE
71112005-10-04 Paul Eggert <eggert@cs.ucla.edu>
7112
2f4f028d
PE
7113 Undo the parts of the unlocked-I/O change that substituted
7114 putc or puts for printf. This might hurt performance a bit,
7115 but some people prefer the printf style.
7116 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
7117 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
7118 All uses replaced by YYFPRINTF and YYDPRINTF.
7119 * data/yacc.c: Likewise.
7120 * lib/bitset.c (bitset_print): Likewise.
7121 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
7122 putc and puts.
7123 * lib/lbitset.c (debug_lbitset): Likewise.
7124 * src/closure.c (print_firsts, print_fderives): Likewise.
7125 * src/gram.c (grammar_dump): Likewise.
7126 * src/lalr.c (look_ahead_tokens_print): Likewise.
7127 * src/output.c (escaped_output): Likewise.
7128 (user_actions_output): Break apart two printfs.
7129 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
7130 * src/reduce.c (reduce_print): Likewise.
7131 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7132 * src/system.h: Include unlocked-io.h rathe than stdio.h.
7133
88c6637f
PE
7134 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7135 Use assignments rather than casts-to-void to suppress
7136 unused-variable warnings. This pacifies 'lint'.
7137 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
7138 unused-variable warnings.
7139
fb32e373
JMG
71402005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7141
7142 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7143
edb8f44f
PE
71442005-10-02 Paul Eggert <eggert@cs.ucla.edu>
7145
fb9c0b33
PE
7146 Use unlocked I/O for a minor performance improvement on hosts like
7147 GNU/Linux and Solaris that support unlocked I/O. The basic idea
7148 is to use the gnlib unlocked-io module, and to prefer putc and
7149 puts to printf when either will work (since the latter doesn't
7150 come in an unlocked flavor).
7151 * bootstrap (gnulib_modules): Add unlocked-io.
7152 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
7153 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
7154 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
7155 and similarly for puts and putc and printf.
7156 * data/yacc.c: Likewise.
7157 * lib/bitset.c (bitset_print): Likewise.
7158 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
7159 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
7160 to printf.
7161 * lib/lbitset.c (debug_lbitset): Likewise.
7162 * src/closure.c (print_firsts, print_fderives): Likewise.
7163 * src/gram.c (grammar_dump): Likewise.
7164 * src/lalr.c (look_ahead_tokens_print): Likewise.
7165 * src/output.c (escaped_output): Likewise.
7166 (user_actions_output): Coalesce two printfs.
2f4f028d 7167 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
fb9c0b33
PE
7168 * src/reduce.c (reduce_print): Likewise.
7169 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2f4f028d 7170 * src/system.h: Include unlocked-io.h rather than stdio.h.
fb9c0b33 7171
edb8f44f
PE
7172 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
7173 this confuses xgettext.
7174
b50d2359
AD
71752005-10-02 Akim Demaille <akim@epita.fr>
7176
7177 * bootstrap (gnulib_modules): Add strverscmp.
7178 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
7179 * m4/.cvsignore: Add strverscmp.m4.
7180 * src/parse-gram.y (%require): New token, new rule.
7181 (version_check): New.
7182 * src/scan-gram.l (%require): Adjust.
7183 * tests/input.at (AT_REQUIRE): New.
7184 Use it.
7185 * doc/bison.texinfo (Require Decl): New.
7186 (Calc++ Parser): Use %require.
7187
21667f64
AD
71882005-10-02 Akim Demaille <akim@epita.fr>
7189
7190 * data/location.cc: New.
7191
2b81e969
AD
71922005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
7193 Akim Demaille <akim@epita.fr>
7194
7195 Make sure -odir/foo.cc creates dir/location.hh etc.
7196 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
7197 (spec_file_prefix, spec_verbose_file, spec_graph_file)
7198 (spec_defines_file): Now const.
7199 (dir_prefix): New.
7200 (short_base_name): Remove.
7201 * src/files.c: Adjust.
7202 (dirname.h): Include.
7203 (base_name): Don't prototype it.
7204 (finput): Remove, duplicates gram_in.
7205 (full_base_name, short_base_name): Replace by...
7206 (all_but_ext, all_but_tab_ext): these.
7207 (compute_base_names): Rename as...
7208 (compute_file_name_parts): this.
7209 Update to compute the new variables, including dir_prefix.
7210 Adjust dependencies.
7211 * src/output.c (prepare): Output them.
7212 * src/reader.c: Adjust to use gram_in, not finput.
7213 * src/scan-skel.l (@dir_prefix@): New.
7214
ad6a9b97
JMG
72152005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7216
7217 * lib/subpipe.c: New function end_of_output_subpipe() added
7218 to allow support for non-posix systems. This is a no-op function
7219 for posix systems.
7220
7221 * lib/subpipe.h: New function end_of_output_subpipe() added
7222 to allow support for non-posix systems. This is a no-op function
7223 for posix systems.
7224
7225 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
7226 handle the lack of pipe/fork functionality on non-posix systems.
7227
7228 * djgpp/Makefile.maint: DJGPP specific file.
7229
7230 * djgpp/README.in: DJGPP specific file.
7231
7232 * djgpp/config.bat: DJGPP specific configuration file.
7233
7234 * djgpp/config.sed: DJGPP specific configuration file.
7235
7236 * djgpp/config.site: DJGPP specific configuration file.
7237
7238 * djgpp/config_h.sed: DJGPP specific configuration file.
7239
7240 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
7241
7242 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
7243
fc695704
AD
72442005-10-02 Akim Demaille <akim@epita.fr>
7245
7246 * data/location.cc: New, extract from...
7247 * data/lalr1.cc: here.
7248 (location.hh): Include it after the user prologue, in case the
7249 filename type is defined by the user.
7250 Forward declation location and position before the pre-prologue.
7251 (yyresult_): Rename as...
7252 (yyresult): this, it's a local variable, not an attribute.
7253 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
7254
72552005-10-01 Akim Demaille <akim@epita.fr>
5215c87f
AD
7256
7257 * examples/extexi: Restore the #line generation.
7258
fb9712a9
AD
72592005-09-30 Akim Demaille <akim@epita.fr>,
7260 Alexandre Duret-Lutz <adl@gnu.org>
7261
7262 Move the token type and YYSTYPE in the parser class.
7263 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
7264 (parser::token): New, from the moved free definition of tokens.
7265 (parser::semantic_value): Now a full definition instead of an
7266 indirection to YYSTYPE.
7267 (b4_post_prologue): No longer included in the header file, but
7268 in the implementation file.
7269 * doc/bison.texi (C+ Language Interface): Update.
7270 * src/parse-gram.y: Support unary %define.
7271 * tests/actions.at: Define global_tokens_and_yystype for backward
7272 compatibility until we update the tests.
7273 * tests/calc.at: Idem.
7274 (first_line, first_column, last_line, last_column): Define for lalr1.cc
7275 to simplify the code.
7276
55f0c7b1
PE
72772005-09-29 Paul Eggert <eggert@cs.ucla.edu>
7278
7279 Port to SunOS 4.1.4, which lacks strtoul and strerror.
7280 Ah, the good old days! Problem reported by Peter Klein.
7281 * bootstrap (gnulib_modules): Add strerror, strtoul.
7282 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
7283 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
7284
fb9712a9 72852005-09-29 Akim Demaille <akim@epita.fr>
d4fb5e3c
AD
7286
7287 * data/c.m4 (b4_error_verbose_if): New.
7288 * data/lalr1.cc: Use it.
7289 (YYERROR_VERBOSE_IF): Remove.
7290 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
7291 parser members, replaced by...
7292 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
7293 local variables.
7294 (yysyntax_error_): Takes the state number as argument.
7295 (yyreduce_print_): Use the argument yyrule, not the former
7296 attribute yyn_.
7297
8a6f72f3
PE
72982005-09-26 Paul Eggert <eggert@cs.ucla.edu>
7299
7300 * bootstrap (gnulib_modules): Add verify.
7301 * lib/.cvsignore: Add verify.h.
7302 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
7303 * src/system.h (verify): Remove.
7304 Include verify.h instead.
7305 * src/tables.c (tables_generate): Use new API for 'verify'.
7306
0d50976f
PE
73072005-09-21 Paul Eggert <eggert@cs.ucla.edu>
7308
ebc3737e
PE
7309 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
7310 local variables whose names begin with 'yy'.
7311 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
7312 Trivial changes from Joel E. Denny.
7313
0d50976f
PE
7314 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
7315 it itself.
7316 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
7317 don't use alloca any more.
7318
7319 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
7320 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
62c4328e 7321 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
0d50976f
PE
7322 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
7323 to match yacc.c, to test more hosts.
7324
a05b79df
PE
73252005-09-20 Paul Eggert <eggert@cs.ucla.edu>
7326
55289366
PE
7327 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
7328 doesn't affect behavior.
7329 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
7330 Solaris, AIX, MSC.
7331 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
7332 This works a bit better with glibc, if user code has already included
7333 stdlib.h.
7334 * doc/bison.texinfo (Bison Parser): Document that users can't
7335 arbitrarily use malloc and free for other purposes. Document
7336 that <alloca.h> and <malloc.h> might be included.
7337 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
7338 user must declare alloca.
7339
a05b79df
PE
7340 * HACKING (release): Forwarn the Translation Project about
7341 stable releses.
7342
3ab2ca22
AD
73432005-09-20 Akim Demaille <akim@epita.fr>
7344
7345 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
7346
a9739e7c
PE
73472005-09-19 Paul Eggert <eggert@cs.ucla.edu>
7348
a702593e
PE
7349 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
7350 (YYSTACK_ALLOC_MAXIMUM): Use it.
7351 (yysyntax_error): New function.
7352 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
7353 multiple syntax errors are reported, and alloca is being used.
7354 Instead, reallocate buffers twice as big each time, so that
7355 we waste at most half the allocated memory. Start with a small
7356 (128-byte) buffer that will suffice in most cases anyway.
7357 Use yysyntax_error to do most of the work.
7358
7359 * doc/bison.texinfo (Error Reporting, Table of Symbols):
7360 yynerrs is the number of errors reported, not the number of
7361 errors encountered.
7362
a9739e7c
PE
7363 * tests/glr-regression.at (Duplicated user destructor for lookahead):
7364 Mark it as expected to fail.
7365 Cast result of malloc; problem reported by twlevo@xs4all.nl.
7366 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
7367 Don't start user-code symbols with "yy", to avoid name space problems.
7368
f479c6c6
AD
73692005-09-19 Akim Demaille <akim@epita.fr>
7370
7371 Remove the traits, failed experiment.
7372 It never proved useful, and anyway because of the current
7373 definition, it was not possible to have several specialization of
7374 this traits, making it useless.
7375 * data/lalr1.cc (yy:traits): Remove.
7376 Inline its definitions in the parser class.
7377
e2586f82
AD
73782005-09-19 Akim Demaille <akim@epita.fr>
7379
7380 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
7381 least Mac OSX with a /usr/local install of gettext.
7382
2e8cf949
AD
73832005-09-19 Akim Demaille <akim@epita.fr>
7384
7385 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
7386 and yytoken for similarity with the other skeletons.
7387
c7fb0b90
AD
73882005-09-19 Akim Demaille <akim@epita.fr>
7389
4e26c69e 7390 * NEWS, configure.ac: update version number to 2.1a.
c7fb0b90 7391
1bd0deda
PE
73922005-09-16 Paul Eggert <eggert@cs.ucla.edu>
7393
7394 * NEWS: Version 2.1.
7395
7396 * NEWS: Remove notice of yytname change, since it was never in an
7397 official release.
7398 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
7399 diagnostic.
7400 * src/output.c (prepare): Likewise.
7401 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
7402 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
7403 is not defined. This is an awful hack, but it's enough for now.
7404 All callers changed.
7405 * tests/glr-regression-at (make_value): Args are const pointers now,
7406 to avoid GCC warning.
7407 (Duplicated user destructor for lookahead): New test. Currently
7408 skipped. It fails on my host but I'm not sure it'll always fail.
7409
74102005-09-16 Akim Demaille <akim@epita.fr>
c1432f65
AD
7411
7412 * src/symtab.h (struct symbol): Declare the printer and destructor
7413 as const, to avoid accidental calls to free.
7414 (symbol_destructor_set, symbol_printer_set): Adjust.
7415 * src/symtab.c: Adjust.
7416
1bd0deda 74172005-09-16 Akim Demaille <akim@epita.fr>
cf147260
AD
7418
7419 * data/c.m4 (b4_token_enums): New.
7420 (b4_token_defines): Rename as...
7421 (b4_token_enums_defines): this.
7422 (b4_token_defines): New, output only the #defines.
7423 * data/yacc.c, data/glr.c: Adjust.
7424 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
7425 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
7426 as default values.
7427
dbcdae2d
AD
74282005-09-16 Akim Demaille <akim@epita.fr>
7429
7430 * data/lalr1.cc (yylex_): Remove, inline its code.
7431 (yyreport_syntax_error_): Remove, replaced by...
7432 (yysyntax_error_): this which returns a string and leaves to the
7433 caller the call to the users' error function.
7434 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
7435 Move from members of the parser object...
7436 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
7437 to local variables of the parse function.
7438
70d8f291
AD
74392005-09-16 Akim Demaille <akim@epita.fr>
7440
7441 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
7442 since it's in Bison's name space.
7443
b47dbebe
PE
74442005-09-15 Paul Eggert <eggert@cs.ucla.edu>
7445
ae199bf1
PE
7446 * data/glr.c (yyresolveValue): Add default case to pacify
7447 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
7448
b47dbebe
PE
7449 * NEWS: Document when yyparse started to return 2.
7450 * doc/bison.texinfo (Parser Function): Document when yyparse
7451 returns 2.
7452
7453 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
7454 (b4_filename_type): Renamed back from b4_file_name_type. All uses
7455 changed.
7456 (class position): file_name -> filename (reverting). All uses changed.
7457
74582005-09-14 Paul Eggert <eggert@cs.ucla.edu>
7459
7460 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
7461 do anything if $@ exists. This reverts part of the 2005-07-07
7462 patch.
7463
00292f66
PE
74642005-09-11 Paul Eggert <eggert@cs.ucla.edu>
7465
7466 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
7467 contains obsolete information and isn't worth distributing as a
7468 separate file anyway.
7469 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
7470 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
7471 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
7472 (yyparse): Abort if user code uses longjmp to throw an unexpected
7473 value.
7474
a420f962
PE
74752005-09-09 Paul Eggert <eggert@cs.ucla.edu>
7476
00292f66
PE
7477 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
7478 Suggested by twlevo@xs4all.nl.
7479
127287e9
PE
7480 * data/glr.c (YYCHK1): Do not assume YYE is in range.
7481 This avoids a diagnostic from gcc -Wswitch-enum.
7482 Problem reported by twlevo@xs4all.nl.
7483
a420f962
PE
7484 * doc/bison.texinfo: Don't use "filename", as per GNU coding
7485 standards. Use "file name" or "file" or "name", depending on
7486 the context.
7487 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
7488 not to hack/foo.tab.c.
7489 (Calc++ Top Level): 2nd arg of main is not const.
48b16bbc
PE
7490 * data/glr.c: b4_filename -> b4_file_name.
7491 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
7492 All uses changed.
7493 (class position): filename -> file_name. All uses changed.
7494 * data/yacc.c: b4_filename -> b4_file_name.
7495 * lib/bitset.h: filename -> file_name in local vars.
7496 * lib/bitset_stats.c: Likewise.
7497 * src/files.c: Likewise.
7498 * src/scan-skel.l ("@output ".*\n): Likewise.
7499 * src/files.c (file_name_split): Renamed from filename_split.
7500 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
a420f962
PE
7501
75022005-09-08 Paul Eggert <eggert@cs.ucla.edu>
7503
7504 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
7505 to accommodate latest gnulib.
7506
7507 * tests/glr-regression.at (Duplicate representation of merged trees):
7508 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
7509
7510 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
7511 needed.
7512
42a6501d
PE
75132005-08-26 Paul Eggert <eggert@cs.ucla.edu>
7514
7515 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
7516 All uses changed. Invoke user destructor after an error during a
7517 split parse (trivial change from Joel E. Denny).
7518
7519 * tests/glr-regression.at
7520 (User destructor after an error during a split parse): New test case.
7521 Problem reported by Joel E. Denny in:
7522 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
7523
ef9a1faf
PE
75242005-08-25 Paul Eggert <eggert@cs.ucla.edu>
7525
5b4aaf78
PE
7526 * README-cvs: Give URLs for recommended tools.
7527 Mention Gzip version problem, and bootstrapping issues.
7528 Remove troubleshooting section, as it's somewhat obsolete.
7529
b5240ba5
PE
7530 * bootstrap (no_cache): New var, to accommodate different wget
7531 variants. Use it instead of '-C off'. Problem reported by
7532 twlevo@xs4all.nl.
7533
ef9a1faf
PE
7534 * data/glr.c (yydestroyStackItem): New function.
7535 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
7536 debugging information. Problem reported by Joel E. Denny.
7537
e6efa9da
AD
75382005-08-25 Akim Demaille <akim@epita.fr>
7539
7540 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
7541
adc90f13
PE
75422005-08-24 Paul Eggert <eggert@cs.ucla.edu>
7543
7544 * data/glr.c (yyrecoverSyntaxError, yyreturn):
7545 Don't invoke destructor on unresolved entries.
7546 * tests/glr-regression.at
7547 (User destructor for unresolved GLR semantic value): New test case.
7548 Problem reported by Joel E. Denny in:
7549 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
7550
f9315de5
PE
75512005-08-21 Paul Eggert <eggert@cs.ucla.edu>
7552
15d29c1f
PE
7553 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
7554 Add strnlen.c.
7555 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
7556 lib-prefix.m4, po.m4.
7557
dd5f2af2
PE
7558 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
7559 in yydestruct diagnostic, since it might not be an error.
7560 Problem reported by Joel Denny near end of
7561 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
6250acbd 7562 * data/lalr1.cc (yyerturn): Likewise.
dd5f2af2
PE
7563 * data/yacc.c (yyreturn): Likewise.
7564 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
7565
7566 * src/files.c: Remove obsolete FIXME comment.
7567
7568 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
7569 with the other templates, and to fix bogus run-on messages such
7570 as the one reported at the end of
7571 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
7572 All callers changed to avoid the newline.
7573 (yyprocessOneStack): Output two lines rather than one, to accommodate
7574 the above change. This changes the debug output format slightly.
7575
f9315de5
PE
7576 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
7577 reported by Joel E. Denny in
7578 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
7579 (trivial change).
7580 * tests/glr-regression.at (Duplicate representation of merged trees):
7581 New test, from Joel E. Denny in:
7582 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
7583 * THANKS: Add Joel E. Denny.
7584
7585 * configure.ac (AC_INIT): Bump to 2.0c.
7586
04098407
PE
75872005-07-24 Paul Eggert <eggert@cs.ucla.edu>
7588
7589 * NEWS: Version 2.0b.
7590
ca5d2013
PE
7591 * Makefile.am (SUBDIRS): Put examples before tests, so that
7592 "make check" doesn't finish with "All 1 tests passed".
7593
3d54b576
PE
7594 * tests/regression.at (Token definitions): Don't rely on
7595 AT_PARSER_CHECK for data that contains backslashes. It currently
7596 uses 'echo', and 'echo' isn't portable if its argument contains
7597 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
7598 that the byte '\0xff' is not printable in the C locale; it is,
7599 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
7600 not printable, so use '\0x81' to test.
7601
d53ae497
PE
7602 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
7603 version of GCC, since the macro is used with non-GCC compilers.
7604
fc01665e
PE
7605 Fix core dump reported by Pablo De Napoli in
7606 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
7607 * tests/regression.at (Invalid inputs with {}): New test.
7608 * src/parse-gram.y (token_name): Translate type before using
7609 it as an index.
7610
04098407
PE
7611 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
7612 the user's name space. All uses changed to __attribute__
7613 ((__unused__)).
7614 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
7615 Add __attribute__ ((__noreturn__)).
7616
7617 * etc/clcommit: Remove. We weren't using it, and it failed
7618 "make maintainer-distcheck".
7619 * Makefile.maint: Merge from coreutils.
7620 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
7621 (syntax-check-rules): Change list of rules as described below.
7622 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
7623 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
7624 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
7625 (sc_trailing_space): New rules.
7626 (sc_xalloc_h_in_src): Remove.
7627 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
7628 (sc_space_tab, sc_error_exit_success, sc_changelog):
7629 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
7630 (makefile-check, po-check, author_mark_check):
7631 (makefile_path_separator_check, copyright-check):
7632 Use grep -n, to make it easier to find violations.
7633 Use CVS_LIST and CVS_LIST_EXCEPT.
7634 (header_regexp, h_re): Remove.
7635 (dd_c): New macro.
7636 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
7637 (my-distcheck): Use more-modern GCC flags.
7638 (signatures, %.asc): Remove.
7639 (rel-files, announcement): Remove signatures.
7640 Restore old updating code, even though we don't use it, so
7641 that we're the same as coreutils.
7642 (alpha, beta, major): Depend on news-date-check.
7643 Make the upload commands.
7644
7645 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
7646 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
7647 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
7648 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
7649 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
7650 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
7651 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
7652 * tests/sets.at: Likewise.
7653
7654 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
7655 we comment out the Autoconf version number.
7656 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
7657 it's error-prone and "make maintainer-distcheck" rejects it.
7658
7659 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
7660 Indent calls to "error" to pacify "make maintainer-distcheck",
7661 when the calls are not intended to be translated.
7662 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
7663
7664 * src/Makefile.am (DEFS): Use +=, to pacify
7665 "make maintainer-distcheck".
7666 (bison_SOURCES): Add scan-skel.h.
7667 (sc_tight_scope): New rule, from coreutils.
7668
7669 * src/files.c (src_extension, header_extension):
7670 Now static, not extern.
7671 * src/getargs.c (short_options): Likewise.
7672 * src/muscle_tab.c (muscle_table): Likewise.
7673 * src/parse-gram.y (current_class, current_type, current_prec):
7674 Likewise.
7675 * src/reader.c (grammar_end, previous_rule_end): Likewise.
7676 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
7677 * src/main.c (main): Cast bindtextdomain and textdomain calls to
7678 void, to avoid warning when NLS is disabled.
7679 * src/output.c: Include scan-skel.h.
7680 (scan_skel): Remove decl, since scan-skel.h does this.
7681 (output_skeleton):
7682 Indent calls to "error" to pacify "make maintainer-distcheck".
7683 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
7684 * src/reader.h (gram_end, gram_lineno): New decls to pacify
7685 "make maintainer-distcheck".
7686 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
7687 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
7688 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
7689 (skel_lex_destroy, scan_skel): Move these decls to...
7690 * src/scan-skel.h: New file.
7691 * src/uniqstr.c (uniqstr_assert):
7692 Indent calls to "error" to pacify "make maintainer-distcheck".
7693
7694 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
7695 not @VAR@.
7696
7697 * tests/torture.at: Revamp to avoid misuse of atoi that
7698 "make maintainer-distcheck" complained about.
7699
7700 * examples/extexi (message): Don't print a message more than once,
7701 and omit line-number decoration that makes Emacs compile think
7702 that informative messages are worth worrying about.
7703
77042005-07-22 Paul Eggert <eggert@cs.ucla.edu>
7705
7706 * configure.ac: Update version number.
7707
7708 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
7709 accidentally.
7710 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
7711 autogenerated by the maintainer.
7712 * examples/calc++/.cvsignore: Add *.yy.
7713
7714 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
7715 * lib/bitset_stats.c (bitset_stats_init): Likewise.
7716 * lib/bitsetv.c (bitsetv_alloc): Likewise.
7717
7718 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
7719
7720 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
7721 from maintainer-distcheck about casting the argument of 'free'.
7722
7723 * NEWS: Mention recent yytname changes.
7724 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
7725
7726 * bootstrap: For translations that have not yet been upgraded to
7727 the new runtime-po domain, prime the pump by extracting the
7728 relevant strings from the obsolete translations. This code can be
7729 removed once the bison-runtime domain has been translated by each
7730 team.
7731
7732 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
7733 now that token names are already quoted.
7734
7735 Fix problem reported by Anthony Heading.
7736 * data/glr.c (YYTOKEN_TABLE): New macro.
7737 (yytname): Define if YYTOKEN_TABLE.
7738 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
7739 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
7740 (YYERROR_VERBOSE): Define the same way the other skeletons do.
7741 * src/output.c (prepare_symbols): Output token_table_flag.
7742
0ffda363
PE
77432005-07-21 Paul Eggert <eggert@cs.ucla.edu>
7744
7745 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
7746 again if the first call fails.
7747
7748 * data/glr.c (yytnamerr): New function.
7749 (yyreportSyntaxError): Use it to dequote most string literals.
7750 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
7751 with other skeletons. All uses changed.
7752 (yytnameerr_): New function.
7753 (yyreport_syntax_error): Use it to dequote most string literals.
7754 * data/yacc.c (yytnamerr): New function.
7755 (yyerrlab): Use it to decode most string literals.
7756 * doc/bison.texinfo (Decl Summary, Calling Convention):
7757 Clarify quoting convention of yytname.
7758 * src/output.c (prepare_symbols): Quote all names. This undoes
7759 the 2005-04-17 change, which is now accomplished (mostly) via
7760 changes in the parsers as described above.
7761 * tests/regression.at (Token definitions, Web2c Actions):
7762 Undo most 2005-04-17 change here, too.
7763
77642005-07-20 Paul Eggert <eggert@cs.ucla.edu>
7765
7766 Fix more problems reported by twlevo@xs4all.nl.
7767 * tests/cxx-type.at: Don't pipe output of ./types through sed to
7768 remove trailing spaces. This loses the exit status of ./types,
7769 and isn't needed since ./types shouldn't be emitting trailing
7770 spaces.
7771 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
7772 as the stack isn't valid in that case.
7773
7774 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
7775 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
7776 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
7777 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
7778 is used.
7779 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
7780 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
7781 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
7782 Likewise.
7783
7784 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
7785 overly-picky compilers that reject 'char *foo = "bar";'.
7786
7787 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
7788 to FILE * parameter, not to stderr. This fixes a typo introduced
7789 in the 2005-07-12 change.
7790
7791 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
7792 warnings from GCC 4.
7793
7794 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
7795 (yyglrShiftDefer, yysplitStack):
7796 Remove unused parameters b4_pure_formals. All uses changed.
7797 (yyglrShift): Remove unused parameters b4_user_formals.
7798 All uses changed.
7799 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
7800
6100a9aa
PE
78012005-07-18 Paul Eggert <eggert@cs.ucla.edu>
7802
258b75ca
PE
7803 Destructor cleanups and regularization among the three skeletons.
7804 * NEWS: Document the behavior changes.
7805 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
7806 stack before failing, as the cleanup code will do it for us now.
7807 * data/lalr1.cc (yyerrlab): Likewise.
7808 * data/glr.c (yyparse): Pop everything off the stack before
7809 freeing it, so that destructors get called properly.
7810 * data/lalr1.cc (yyreturn): Likewise.
7811 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
7812 This is more consistent.
7813 * doc/bison.texinfo (Destructor Decl): Mention more reasons
7814 why destructors might be called. 1.875 -> 2.1.
7815 (Destructor Decl, Decl Summary, Table of Symbols):
7816 Some English-language cleanups for %destructor.
7817 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
7818 Add output line for destructor of start symbol.
7819 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
7820 because of that same extra output line.
7821
1a059451
PE
7822 * NEWS: Document minor wording changes in diagnostics of
7823 Bison-generated parsers.
7824 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
7825 Remove unused formals. All uses changed.
7826 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
7827 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
7828 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
7829 Rename yyoverflowab to yyexhaustedlab.
7830 When memory exhaustion occurs during syntax-error reporting,
7831 report it separately rather than in a single diagnostic; this
7832 eases translation.
7833 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
7834 (Memory Exhausted): Renamed from Parser Stack Overflow.
7835 Revamp wording slightly to prefer "memory exhaustion".
7836 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
7837
97460c78
PE
7838 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
7839
30757c8c
PE
7840 Add i18n support to the GLR skeleton. Partially fix the C++
7841 skeleton; a C++ expert needs to finish this. Remove debugging
7842 msgids; there's little point to having them translated, since they
7843 can be understood only by someone who can read the
7844 (English-language) source code.
7845
7846 Generate runtime-po/bison-runtime.pot automatically, so that we
7847 don't have to worry about garbage getting in that file. We'll
7848 make sure after the next official release that old msgids don't
7849 get lost. See
7850 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
7851
7852 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
7853 Now auto-generated.
7854 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
7855 Fix typos in explanations of the runtime file.
7856 * bootstrap: Change gettext keyword from YYI18N to YY_.
7857 Use standard Makefile.in.in in runtime-po, since we'll arrange
7858 for backward-compatible bison-runtime.po files in a different way.
7859 * data/glr.c (YY_): New macro, from yacc.c.
7860 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
7861 Translate messages intended for users.
7862 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
7863 the wording in the other skeletons. We don't know that the memory
7864 is virtual.
7865 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
7866 Use same method that yacc.c uses.
7867 Don't translate debugging messages.
7868 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
7869 it doesn't work (yet), and requires C++ expertise to fix.
7870 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
7871 Move defn to a more logical place, to be consistent with other
7872 skeletons.
7873 Don't translate debugging messages.
7874 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
7875 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
7876 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
7877 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
7878
ac8c5689
PE
7879 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
7880 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
7881 void, not int.
7882 * tests/glr-regression.at (Badly Collapsed GLR States):
7883 Likewise.
7884 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7885 yylex should return 0 at EOF rather than aborting.
7886
6100a9aa
PE
7887 Improve tests for stack overflow in GLR parser.
7888 Problem reported by twlevo@xs4all.nl.
7889 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
7890 All uses removed.
7891 (yyStackOverflow): Just longjmp, but with value 2 so that caller
7892 can handle the problem.
7893 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
7894 (yyparse): New local variable yyresult to record the result.
7895 Use result of setjmp to set it, rather than storing itinto
7896 struct.
7897 (yyDone): Remove label.
7898 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
7899 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
7900 if YYABORT is used).
7901 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
7902 yyparse status; put status > 1 into diagnostic.
7903 Check that status==2 works.
7904 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
7905 Use exit status 3 for failure to open (which shouldn't happen).
7906
15f40952
PE
79072005-07-17 Paul Eggert <eggert@cs.ucla.edu>
7908
67fd79c4
PE
7909 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
7910 1 on syntax error; just let yyparse do its thing.
7911 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
7912 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
7913 (Exploding the Stack Size with Alloca):
7914 (Exploding the Stack Size with Malloc):
7915 Expect exit status 2, not 1, since the parser is supposed to blow
7916 its stack. Problem reported by twlevo@xs4all.nl.
7917
15f40952
PE
7918 * data/glr.c (yyparse): Don't assume that the initial calls
7919 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
7920 Print a stack-overflow message and fail instead.
7921 Initialize the line-number information before creating the stack,
7922 so that the stack-overflow message can report line zero safely.
7923
f32c66b5
PE
79242005-07-14 Paul Eggert <eggert@cs.ucla.edu>
7925
a22ff96f 7926 Fix problems reported by twlevo@xs4all.nl.
e2688cd9
PE
7927 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
7928 (yyuserMerge): Provide a default case if b4_mergers is empty.
7929 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
7930 * tests/glr-regression.at
7931 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
c70fdfcd 7932 Add casts to pacify C++ compilers.
1beb0b24
PE
7933 * tests/glr-regression.at (Improper merging of GLR delayed action
7934 sets): Declare yylex before using it.
f32c66b5 7935 * tests/Makefile.am (maintainer-check-g++): Fix a stray
a22ff96f
PE
7936 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
7937 test for valgrind; valgrind is independent of g++.
7938 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
7939 for compatibility with POSIX 1003.1-2001 (if running coreutils).
7940 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
7941 Use a destructor, so that we can expand the stack. Change
7942 YYSTYPE to char * so that we can free it. Cast result of malloc.
f32c66b5 7943
d741bd1b
PE
79442005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
7945
7946 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
7947 a valgrind failure. Problem reported by twlevo@xs4all.nl.
7948
0410a6e0
PE
79492005-07-13 Paul Eggert <eggert@cs.ucla.edu>
7950
7951 * PACKAGING: New file, suggested by Bruno Haible and taken from
7952 similar wording in gettext's PACKAGING file.
7953 * NEWS: Mention PACKAGING.
7954 * Makefile.am (EXTRA_DIST): Add PACKAGING.
7955
f7ab6a50
PE
79562005-07-12 Paul Eggert <eggert@cs.ucla.edu>
7957
baf785db 7958 * NEWS: Document recent i18n improvements.
f7ab6a50
PE
7959 * bootstrap: Get runtime translations into runtime-po.
7960 Create runtime-po files automatically, if possible.
7961 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
7962 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
7963 does not infringe on the user's name space.
7964 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
7965 * doc/bison.texinfo (Internationalization): Revamp the English
7966 and Texinfo syntax a bit, to try to make it clearer.
7967 (Bison Options, Option Cross Key): Mention --print-localedir.
7968 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
7969 YYENABLE_NLS. Quote a bit more.
7970 * runtime-po/.cvsignore: New file.
7971 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
7972 * runtime-po/Rules-quot: Remove; now created by bootstrap.
7973 * runtime-po/quot.sed: Likewise.
7974 * runtime-po/boldquot.sed: Likewise.
7975 * runtime-po/en@quot.header: Likewise.
7976 * runtime-po/en@boldquot.header: Likewise.
7977 * runtime-po/insert-header.sin: Likewise.
7978 * runtime-po/remove-potcdate.sin: Likewise.
7979 * runtime-po/Makevars: Likewise.
7980 * runtime-po/LINGUAS: Likewise.
7981 * runtime-po/de.po: Likewise; we will rely on the translation project
7982 to maintain this, so "bootstrap" should get it.
0410a6e0 7983 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
f7ab6a50
PE
7984 its value.
7985 * src/main.c (main): Bind the bison-runtime domain, too.
7986
79872005-07-12 Bruno Haible <bruno@clisp.org>
7988
7989 * data/yacc.c: Include <libintl.h> when NLS is enabled.
7990 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
7991 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
7992 * runtime-po: New directory.
7993 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
7994 $(DOMAIN).pot-update rule, so that old messages are never dropped.
7995 * runtime-po/Rules-quot: New file, copied from po/.
7996 * runtime-po/quot.sed: Likewise.
7997 * runtime-po/boldquot.sed: Likewise.
7998 * runtime-po/en@quot.header: Likewise.
7999 * runtime-po/en@boldquot.header: Likewise.
8000 * runtime-po/insert-header.sin: Likewise.
8001 * runtime-po/remove-potcdate.sin: Likewise.
8002 * runtime-po/Makevars: New file.
8003 * runtime-po/POTFILES.in: New file.
8004 * runtime-po/LINGUAS: New file.
8005 * runtime-po/bison-runtime.pot: New file.
8006 * runtime-po/de.po: New file.
8007 * m4/bison.m4: New file.
8008 * Makefile.am (SUBDIRS): Add runtime-po.
8009 (aclocaldir, aclocal_DATA): New variables.
8010 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
8011 Define aclocaldir.
8012 * src/getargs.c (usage): Document --print-localedir option.
8013 (PRINT_LOCALEDIR_OPTION): New enum item.
8014 (long_options): Add --print-localedir option.
8015 (getargs): Handle --print-localedir option.
8016 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
8017 (Internationalization): New section.
8018
22dda0f0
AD
80192005-07-12 Akim Demaille <akim@epita.fr>
8020
8021 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
8022 for consistency with the rest of the code.
8023 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
8024 Add separators.
8025
82b248ad
AD
80262005-07-12 Akim Demaille <akim@epita.fr>
8027
8028 * src/parse-gram.y: Use %printer instead of YYPRINT.
8029
fa0e9314
AD
80302005-07-12 Akim Demaille <akim@epita.fr>
8031
867a3e00
AD
8032 * src/symtab.h, src/symtab.c (symbol_print): New.
8033 * src/symlist.h, src/symlist.c (symbol_list_print): New.
8034 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
8035
80362005-07-12 Akim Demaille <akim@epita.fr>
8037
8038 * data/glr.c (b4_syncline): Fix (swap) the definitions of
fa0e9314
AD
8039 b4_at_dollar and b4_dollar_dollar.
8040
e054b190
PE
80412005-07-11 Paul Eggert <eggert@cs.ucla.edu>
8042
8043 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
8044 and Pennello's paper.
8045
34160ec4
PE
80462005-07-09 Paul Eggert <eggert@cs.ucla.edu>
8047
407d4a75
PE
8048 * data/yacc.c (yyparse): Undo previous patch. Instead,
8049 set yylsp[0] and yyvsp[0] only if the initial action
8050 sets yylloc and yylval, respectively.
8051
34160ec4
PE
8052 * data/yacc.c (yyparse): In the initial action, set
8053 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
8054 This avoids the use of undefined variables if the initial
8055 action does not set yylloc and/or yylval.
8056
c3d5a4a7
PE
80572005-07-07 Paul Eggert <eggert@cs.ucla.edu>
8058
b34d96c1
PE
8059 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
8060 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
8061 Remove from CVS. These files are automatically generated.
8062 * examples/extexi: Clarify that this file is now part of Bison,
8063 not GNU M4, and that it works with any POSIX-compatible Awk.
8064 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
8065 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
8066 so that we also get calc++-parser.yy. Geneate it.
8067 Use $(AWK), not gawk, since any conforming Awk will do.
8068 Put comment before action, since older 'make' can't handle comment
8069 in action.
8070 $(BUILT_SOURCES): List all built sources, not just some of them.
8071 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
8072 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
8073 $($(calc_sources_generated)): Remove unnecessary test for existence
8074 of target. (This had a shell syntax error anyway; a stray "x".)
8075 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
8076 calc++-parser.yy.
8077 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
8078
c3d5a4a7
PE
8079 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
8080 implied by the other modules.
8081
828c373b
AD
80822005-07-06 Akim Demaille <akim@epita.fr>
8083
8084 Bind examples/calc++ to the package.
8085 * examples/calc++/Makefile: Remove, replaced by...
8086 * examples/calc++/Makefile.am: ... this new file.
8087 * examples/calc++/test: Remove input.
8088 * examples/calc++/compile: Remove.
8089 * examples/Makefile.am: New.
8090 * configure.ac, Makefile.am: Adjust.
8091 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
8092
63cb01d6
PE
80932005-07-05 Paul Eggert <eggert@cs.ucla.edu>
8094
fd2df2ed
PE
8095 * data/glr.c (yyFail): Drastically simplify; since the format argument
8096 never had any % directives, we can simply pass it to yyerror.
8097 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
8098 be modified later, as that is the usual style in glr.c.
8099 Problems reported by Paul Hilfinger.
8100
63cb01d6
PE
8101 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
8102 and size overflow errors.
8103 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
8104 in case the user prolog sets feature-test macros like _GNU_SOURCE.
8105 (YYSIZEMAX): New macro.
8106 (yystpcpy): New function, taken from yacc.c.
8107 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
8108 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
8109 so that we don't have to maintain their signatures.
8110 (yyFail): Check for buffer overflow, by using vsnprintf rather
8111 than vsprintf. Allocate a bigger buffer if possible.
8112 Report an error if buffer allocation fails.
8113 (yyStackOverflow): New function.
8114 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
8115 the initialization was successful. It might fail if storage was
8116 exhausted.
8117 (yyexpandGLRStack): Add more checks for storage allocation failure.
8118 Use yyStackOverflow to report failures.
8119 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
8120 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
8121 Don't assume stack number fits in int.
8122 (yysplitStack): Check for storage allocation failure.
8123 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
8124 can print diagnostics on storage allocation failure. All callers
8125 changed.
8126 (yyresolveValue): Use yybool for boolean.
8127 (yyreportSyntaxError): Check for size-calculation overflow.
8128 This code is taken from yacc.c.
8129 (yyparse): Check for storage allocation errors when allocating
8130 the initial stack.
8131
1c59e0a1
AD
81322005-07-05 Akim Demaille <akim@epita.fr>
8133
8134 Extract calc++ from the documentation.
8135 * doc/bison.texinfo (Calc++): Add the extraction marks.
8136 * examples/extexi: New, from the aborted GNU Programming 2E.
8137 Separate the different paragraph of a file with empty lines.
8138 * examples/Makefile: Use it to extract the whole calc++ example.
8139
8a0adb01
AD
81402005-06-24 Akim Demaille <akim@epita.fr>
8141
8142 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
8143 class typedefs.
8144
12545799
AD
81452005-06-22 Akim Demaille <akim@epita.fr>
8146
8147 * doc/bison.texinfo (C++ Language Interface): First stab.
8148 (C++ Parsers): Remove.
8149
99be0235
AD
81502005-06-22 Akim Demaille <akim@epita.fr>
8151
8152 * data/lalr1.cc (yylex_): Honor %lex-param.
8153
0ffd4fd1
AD
81542005-06-22 Akim Demaille <akim@epita.fr>
8155
8156 Start a set of simple examples.
8157 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
8158 * examples/calc++/calc++-driver.hh,
8159 * examples/calc++/calc++-parser.yy,
8160 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
8161 * examples/calc++/compile, examples/calc++/test: New.
8162
0925ebb4
PE
81632005-06-09 Paul Eggert <eggert@cs.ucla.edu>
8164
8165 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
8166 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
8167 which stems from the 2005-05-27 patch.
8168
43d3b664
PH
81692005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8170
8171 * data/glr.c: Modify treatment of unused parameters to permit use
8172 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
8173
3062864d
PE
81742005-05-30 Paul Eggert <eggert@cs.ucla.edu>
8175
8176 Fix infringement on user name space reported by Janos Zoltan Szabo.
8177 * data/yacc.c (yyparse): strlen -> yystrlen.
8178
989b5b8e
AD
81792005-05-30 Akim Demaille <akim@epita.fr>
8180
8181 * data/lalr1.cc (_): New.
8182 Translate the various messages.
8183
bedf57f5
PE
81842005-05-27 Paul Eggert <eggert@cs.ucla.edu>
8185
8186 Fix infringement on user name space reported by Bruno Haible.
8187 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
8188 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
8189 the user's name space.
8190 (alloca): Include <stdlib.h> to get it, if it's not built in.
8191 (YYMALLOC, YYFREE): Define only if needed.
8192 (malloc, free): Declare, but only if needed, as this infringes on
8193 the user name space.
8194
4d1801f1
PE
81952005-05-25 Paul Eggert <eggert@cs.ucla.edu>
8196
8197 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
8198 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
8199 with %d format.
8200 * lib/ebitset.c (min, max): Undef before defining.
8201 * lib/vbitset.c (min, max): Likewise.
8202 * lib/subpipe.c (create_subpipe): Save local variables in case
8203 vfork clobbers them.
8204
82052005-05-24 Bruno Haible <bruno@clisp.org>
8206
8207 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
8208 error message syntax used by gcc-4.0.
8209
b94a9e1e
PE
82102005-05-23 Paul Eggert <eggert@cs.ucla.edu>
8211
85ac3861
PE
8212 * README: Mention m4 1.4.3. Remove obsolete advice about
8213 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
8214
b94a9e1e
PE
8215 * bootstrap: Remove workaround for problem I encountered with
8216 gettext 0.14.1; it seems to be fixed now.
8217
51c30d21
PE
82182005-05-22 Paul Eggert <eggert@cs.ucla.edu>
8219
009ce67d
PE
8220 * NEWS: Version 2.0a.
8221
f2a97c62
PE
8222 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
8223 the previous change.
8224
c8775f93
PE
8225 Various maintainer cleanups.
8226 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
8227 conftest*, for benefit of CVS commands run at the same time as
8228 "configure". Add build-aux, since "bootstrap" now creates it and
8229 its subfiles.
8230 * Makefile.cfg (move_if_change): Remove.
8231 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
8232 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
8233 (po_repo, do-po-update, po-update, wget_files, get-targets):
8234 (config.guess-url_prefix, config.sub-url_prefix):
8235 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
8236 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
8237 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
8238 Remove.
8239 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
8240 this is now the recommended name.
8241 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
8242 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
8243 ylwrap. These files now go into build-aux.
8244 * config/move-if-change: Remove.
8245 * config/prev-version.txt: Bump from 1.75 to 2.0.
8246
3ea5f0ec
PE
8247 * bootstrap: Add stdio-safer, unistd-safer modules.
8248 Remove m4/glibc2.m4 (introduced by latest gnulib, but
8249 we don't need it).
8250 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
8251 fopen-safer.c, stdio-safer.h, unistd-safer.h.
8252 * lib/subpipe.c: Include "unistd-safer.h".
8253 (create_subpipe): Make sure all the newly-created
8254 file descriptors are > 2, so that diagnostics don't
8255 get sent down them (which might cause Bison to hang, in theory).
8256 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
8257 * src/files.c (xfopen): Use fopen_safer, not fopen.
8258
51c30d21
PE
8259 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
8260 yesterday's yacc.c fix.
8261
cea1469d
PE
82622005-05-21 Paul Eggert <eggert@cs.ucla.edu>
8263
3ea5f0ec
PE
8264 * data/glr.c, data/lalr1.cc: Update copyright date.
8265
cea1469d
PE
8266 Fix a destructor bug reported by Wolfgang Spraul in
8267 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
8268 * data/yacc.c (yyabortlab): Don't call destructor, and
8269 don't set yychar to EMPTY.
8270 (yyoverflowlab): Don't call destructor.
8271 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
8272 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
8273 since we no longer output the message "discarding lookahead token
8274 end of input ()".
8275
5e6f62f2
PH
82762005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8277
8278 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
8279 fix a small glitch in debugging output.
8280 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
8281 after YY_SYMBOL_PRINT where needed.
8282
8283 (struct yyGLRState): Add some comments.
8284 (struct yySemanticOption): Add some comments.
8285 (union yyGLRStackItem): Add comment.
8286
8287 (yymergeOptionSets): Correct this to properly perform the union,
8288 avoiding infinite reported by Michael Rosien.
8289 Update comment.
8290
8291 * tests/glr-regression.at: Add test for GLR merging error reported
8292 by M. Rosien.
cea1469d 8293
0fb669f9
PE
82942005-05-13 Paul Eggert <eggert@cs.ucla.edu>
8295
8296 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
8297 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
8298 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
8299 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
8300 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
8301 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
8302 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
8303 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
8304 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
8305 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
8306 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
8307 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
8308 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
8309 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
8310 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
8311 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
8312 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
8313 src/derives.h, src/files.c, src/files.h, src/getargs.c,
8314 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
8315 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
8316 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
8317 src/output.h, src/parse-gram.c, src/parse-gram.h,
8318 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
8319 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
8320 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
8321 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
8322 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
8323 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
8324 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
8325 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
8326 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
8327 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
8328 tests/reduce.at, tests/regression.at, tests/sets.at,
8329 tests/synclines.at, tests/testsuite.at, tests/torture.at:
8330 Update FSF postal mail address.
8331
51f4735e
PE
83322005-05-11 Paul Eggert <eggert@cs.ucla.edu>
8333
8334 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
8335 Problem reported by Ralf Menzel.
8336
80ce3401
PE
83372005-05-01 Paul Eggert <eggert@cs.ucla.edu>
8338
8339 * tests/actions.at: Test that stack overflow invokes destructors.
8340 From Marcus Holland-Moritz.
8341 * data/yacc.c (yyerrlab): Move the code that destroys the stack
8342 from here....
8343 (yyreturn): to here. That way, destructors are called properly
8344 even if the stack overflows, or the user calls YYACCEPT or
8345 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
8346 (yyoverflowlab): Destroy the lookahead.
8347
83482005-04-24 Paul Eggert <eggert@cs.ucla.edu>
8349
8350 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
8351
72f000b0
PE
83522005-04-17 Paul Eggert <eggert@cs.ucla.edu>
8353
8354 * NEWS: Bison-generated C parsers no longer quote literal strings
8355 associated with tokens.
8356 * src/output.c (prepare_symbols): Don't escape strings,
8357 since users don't want to see C escapes.
8358 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
8359 in diagnostics.
c19683bb 8360 * tests/input.at (Torturing the Scanner): Likewise.
72f000b0
PE
8361 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
8362
1094323f
PE
83632005-04-16 Paul Eggert <eggert@cs.ucla.edu>
8364
8365 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
8366 the data size is known to be too small and we can't increase it.
8367 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
8368
ca407bdf
PE
83692005-04-15 Paul Eggert <eggert@cs.ucla.edu>
8370
8371 * src/parse-gram.y: Include quotearg.h.
8372 (string_as_id): Quote $1 before using it as a key, since the
8373 lexer no longer quotes it for us.
8374 (string_content): Don't strip quotes, since lexer no longer
8375 quotes it for us.
8376 * src/scan-gram.l: Include quotearg.h.
8377 ("\""): Omit quote.
8378 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
8379 a key, since the rest of the lexer doesn't quote it.
8380 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
8381 * tests/regression.at (Token definitions): Check for backslashes
8382 in token strings.
8383
8384 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
8385 (YYSIZE_T): Define to unsigned long int when using an older compiler.
8386 (yyparse): Revamp code to generate long syntax error message, to
8387 make it easier to translate, and to avoid problems with arithmetic
8388 overflow. Change "virtual memory" to "memory" in diagnostic, since
8389 we don't know whether the memory is virtual.
8390
1ce59070
PE
83912005-04-13 Paul Eggert <eggert@cs.ucla.edu>
8392
8393 * NEWS: Bison-generated C parsers now use the _ macro to
8394 translate strings.
8395 * data/yacc.c (_) [!defined _]: New macro.
8396 All English strings wrapped inside this macro.
8397 * doc/bison.texinfo (Bison Parser): Document _.
8398 * po/POTFILES.in: Include src/parse-gram.c, since it now
8399 includes translateable strings that parse-gram.y doesn't.
8400
a749a695
PE
84012005-04-12 Paul Eggert <eggert@cs.ucla.edu>
8402
8403 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
8404 reverting the 2004-10-11 change to this function.
8405 (symbol_check_alias_consistency): Don't call symbol_type_set
8406 if the type name is already correct.
8407 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
8408
8fb1053b
PE
84092005-03-25 Paul Eggert <eggert@cs.ucla.edu>
8410
8411 * tests/regression.at (Token definitions): Don't use a token named
8412 c, as that generates a "#define c ..." that runs afoul of buggy
8413 stdlib.h that uses the identifier c as a member of struct
8414 drand48_data. Problem reported by Horst Wente.
8415
ff498c4a
PE
84162005-03-21 Paul Eggert <eggert@cs.ucla.edu>
8417
8418 * bootstrap: Change translation URL from
8419 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
8420 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
8421 redirection glitches. Problem reported by twlevo@xs4all.nl.
8422
65211d70
PE
84232005-03-20 Paul Eggert <eggert@cs.ucla.edu>
8424
8425 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
8426 after operands; POSIX says this isn't portable for the c99 command.
8427
9577fb1f
PE
84282005-03-18 Paul Eggert <eggert@cs.ucla.edu>
8429
8430 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
8431 immediately if a data overrun has occurred; this may help us track
8432 down what may be a spurious failure on MacOS.
8433
78b178f7
PE
84342005-03-17 Paul Eggert <eggert@cs.ucla.edu>
8435
a2599d0f
PE
8436 Respond to problems reported by twlevo@xs4all.nl.
8437
8438 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
8439
78b178f7
PE
8440 * src/vcg.h: Comment fix.
8441 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
8442 (G_CMAX): Change to -1 instead of INT_MAX.
8443
8444 * data/yacc.c (yyparse): Omit spaces before #line.
78b178f7 8445
7296e729
PE
84462005-03-15 Paul Eggert <eggert@cs.ucla.edu>
8447
8448 * src/tables.c (state_number_to_vector_number): Put it inside an
8449 "#if 0", since it's not currently used. Problem reported by
8450 Roland McGrath.
8451
05ac60f3
PE
84522005-03-06 Paul Eggert <eggert@cs.ucla.edu>
8453
8454 * src/output.c (escaped_output): Renamed from
8455 escaped_file_name_output, since we now use it for symbol tags as
8456 well. All uses changed.
8457 (symbol_destructors_output, symbol_printers_output):
8458 Escape symbol tags too.
8459 Problem reported by Matyas Forstner in
8460 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
8461
8462 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
8463 not needed.
8464 * src/output.c (user_actions_output, token_definitions_output,
8465 symbol_destructors_output, symbol_printers_output): Likewise.
8466 * src/reader.c (prologue_augment): Likewise.
8467 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
8468
8469 * src/vcg.c (output_edge): Don't quote linestyle arg.
8470 Problem reported by twlevo@xs4all.nl.
8471
7eb453ac
PE
84722005-02-28 Paul Eggert <eggert@cs.ucla.edu>
8473
8474 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
8475 example, reported by Derek M Jones. Also, make the example even
8476 more outrageous, to better illustrate how bad the problem is.
8477
4c04c52a
PE
84782005-02-24 Paul Eggert <eggert@cs.ucla.edu>
8479
8480 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
8481 putsym. Typo reported by Sebastian Piping.
8482
a61e1620
PE
84832005-02-23 Paul Eggert <eggert@cs.ucla.edu>
8484
8485 * doc/bison.texinfo (Language and Grammar): some -> same
8486 (Epilogue): int he -> in the
8487 Typos reported by Sebastian Piping via Justin Pence.
8488
9ec93868
PE
84892005-02-07 Paul Eggert <eggert@cs.ucla.edu>
8490
8491 * tests/glr-regression.at (Improper handling of embedded actions
8492 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
8493 embedded actions and $-N in GLR parsers", work around an Autoconf bug
8494 with dollar signs in test names.
8495 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
8496 for a similar reason.
8497
73ce7e7e
PE
84982005-01-28 Paul Eggert <eggert@cs.ucla.edu>
8499
8500 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
8501 wants to redefine G_VIEW.
8502
2e72b98e
PE
85032005-01-27 Paul Eggert <eggert@cs.ucla.edu>
8504
8505 * src/vcg.c (get_view_str): Remove case for normal_view.
8506 Problem reported by twlevo@xs4all.nl.
8507
e0d634e5
PE
85082005-01-24 Paul Eggert <eggert@cs.ucla.edu>
8509
ccf830a4
PE
8510 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
8511 Problem reported by twlevo@xs4all.nl.
8512
e0d634e5
PE
8513 * doc/bison.texinfo: Change @dircategory from "GNU programming
8514 tools" to "Software development". Requested by Richard Stallman
8515 via Karl Berry.
8516
7bbc8cb0
PE
85172005-01-23 Paul Eggert <eggert@cs.ucla.edu>
8518
8519 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
8520 Problem reported by twlevo@xs4all.nl.
8521
08b770bc
PE
85222005-01-21 Paul Eggert <eggert@cs.ucla.edu>
8523
8524 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
8525 keyword; it's not needed with modern compilers, and it doesn't
8526 affect correctness with older compilers. Suggested by
8527 twlevo@xs4all.nl.
8528
95f22ad2
PE
85292005-01-17 Paul Eggert <eggert@cs.ucla.edu>
8530
8531 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
8532 gcc -Wswitch-default.
8533 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
8534 * data/yacc.c (yyparse): Likewise.
8535
d229d15c
PE
85362005-01-12 Paul Eggert <eggert@cs.ucla.edu>
8537
8538 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
8539 already. Let config.h define any nonstandard values.
8540
ecadd90f
PE
85412005-01-10 Paul Eggert <eggert@cs.ucla.edu>
8542
8543 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
8544 for the benefit of slower hosts. Problem reported by
8545 Nelson H. F. Beebe.
8546
213744b5
PE
85472005-01-07 Paul Eggert <eggert@cs.ucla.edu>
8548
8549 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
8550 being defined and not used.
8551 * data/lalr1.cc (yyparse): Likewise.
8552 Use "if (false)" rather than "if (0)".
8553
249d3236
PE
85542005-01-05 Paul Eggert <eggert@cs.ucla.edu>
8555
8556 * TODO: Mention that we should allow NUL bytes in tokens.
8557
987cc1fb
PE
85582005-01-02 Paul Eggert <eggert@cs.ucla.edu>
8559
8560 * src/scan-skel.l (<<EOF>>): Don't close standard output.
8561 Problem reported by Hans Aberg.
8562
08fe02d9
PE
85632005-01-01 Paul Eggert <eggert@cs.ucla.edu>
8564
8565 * src/getargs.c (version): Happy new year; update overall
8566 program copyright date from 2004 to 2005.
8567
8568 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
8569 Problem reported by Hans Aberg.
8570 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
8571 (Output file names.): Add a test for the case when standard output
8572 is closed.
8573
010c0266
PE
85742004-12-26 Paul Eggert <eggert@cs.ucla.edu>
8575
8576 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
8577 to fix an oversight in the Bison 2.0 manual.
8578
da12206a
PE
85792004-12-25 Paul Eggert <eggert@cs.ucla.edu>
8580
8581 * NEWS: Version 2.0. Reformat the existing news items since
8582 1.875, so that related items are grouped together.
3a4734aa 8583 * configure.ac (AC_INIT): Bump version to 2.0.
da12206a
PE
8584 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
8585
c935d934
PE
8586 * tests/torture.at (Exploding the Stack Size with Alloca): Set
8587 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
8588 otherwise, we're not testing alloca. Unfortunately there's no
8589 simple way to consult HAVE_ALLOCA here.
8590
da12206a
PE
8591 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
8592 for yymsg, too.
8593
8594 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
8595 hand. This avoids a warning about comparing int to size_t when
8596 GCC warnings are enabled.
8597
0a2c5137
PE
85982004-12-22 Paul Eggert <eggert@cs.ucla.edu>
8599
d7e14fc0
PE
8600 * NEWS: Bison-generated parsers no longer default to using the
8601 alloca function (when available) to extend the parser stack, due
8602 to widespread problems in unchecked stack-overflow detection.
8603 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
8604 responsibility to set it to a positive value. This lets the user
8605 specify a value that is not a preprocessor constant.
8606 * data/yacc.c (YYMAXDEPTH): Likewise.
8607 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
8608 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
8609 to be a compile-time constant. However, explain the constraints on it.
8610 Also, explain the constraints on YYINITDEPTH.
8611 (Table of Symbols): Explain that alloca is no longer the default.
8612 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
8613 to 1.
8614
0a2c5137
PE
8615 * doc/bison.texinfo (Location Default Action): Mention that n must
8616 be zero when k is zero. Suggested by Frank Heckenbach.
8617
e019c247
AD
86182004-12-22 Akim Demaille <akim@epita.fr>
8619
8620 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
8621 (parser::state_type, parser::semantic_type, parser::location_type):
8622 Private, not public.
8623 (parser::parse): Return ints, not bool.
8624 Returning a bool introduces a problem: 0 corresponds to false, and
8625 it seems weird to return false on success. Returning true changes
8626 the conventions for yyparse.
8627 Alternatively we could return void and send an exception.
8628 There is no clear consensus (yet?).
8629 (state_stack, semantic_stack, location_stack): Rename as...
8630 (state_stack_type, semantic_stack_type, location_stack_type): these.
8631 Private, not public.
8632 * tests/c++.at: New.
8633 * tests/testsuite.at, tests/Makefile.am: Adjust.
8634
72731bb7
AD
86352004-12-21 Akim Demaille <akim@epita.fr>
8636
8637 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
8638
9a0d8bec
AD
86392004-12-21 Akim Demaille <akim@epita.fr>
8640
8641 Don't impose std::string for filenames.
8642
8643 * data/lalr1.cc (b4_filename_type): New.
8644 (position::filename): Use it.
8645 (parser.hh): Move the inclusion of stack.hh and location.hh below
8646 the user code, so that needed headers for the filename type can be
8647 included first.
72731bb7
AD
8648 Forward declare them before the user code.
8649 * tests/Makefile.am (check-local, installcheck-local): Pass
8650 TESTSUITEFLAGS to the TESTSUITE.
9a0d8bec 8651
99880de5
AD
86522004-12-20 Akim Demaille <akim@epita.fr>
8653
8654 Use more STL like names: my_class instead of MyClass.
8655
8656 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
8657 (SemanticStack, SemanticType, StateStack, StateType)
8658 (TokenNumberType, Stack, Slice, Traits, Parser::location)
8659 (Parser::value): Rename as...
8660 (location_stack, location_type, rhs_number_type, semantic_stack)
8661 (semantic_type, state_stack, state_type, token_number_type, stack)
8662 (slice, traits, parser::yylloc, parser::yylval): these.
8663
8664 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
8665
9bec482e
PE
86662004-12-19 Paul Eggert <eggert@cs.ucla.edu>
8667
8668 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
8669 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
8670
f6fbd3da
PE
86712004-12-17 Paul Eggert <eggert@cs.ucla.edu>
8672
8673 Remove uses of 'short int' and 'unsigned short int'. This raises
8674 some arbitrary limits. It uses more memory but nowadays that's
8675 not much of an issue.
8676
8677 This change does not affect the generated parsers; that's a different
8678 task, as some users will want to conserve memory there.
8679
8680 Ideally we should use size_t to represent all object counts, and
8681 something like ptrdiff_t to represent signed differences of object
8682 counts; but that will require more code-cleanup than I have the
8683 time to do right now.
8684
8685 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
8686 Use size_t, not int or short int, to count objects.
8687 * src/closure.c (nritemset, closure): Likewise.
8688 * src/closure.h (nritemset, closure): Likewise.
8689 * src/nullable.c (nullable_compute): Likewise.
8690 * src/print.c (print_core): Likewise.
8691 * src/print_graph.c (print_core): Likewise.
8692 * src/state.c (state_compare, state_hash): Likewise.
8693 * src/state.h (struct state): Likewise.
8694 * src/tables.c (default_goto, goto_actions): Likewise.
8695
8696 * src/gram.h (rule_number, rule): Use int, not short int.
8697 * src/output.c (prepare_rules): Likewise.
8698 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
8699 errs, reductions): Likewise.
8700 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
8701 Likewise.
8702 * src/tables.c (vector_number, tally, action_number,
8703 ACTION_NUMBER_MINIMUM): Likewise.
8704 * src/output.c (muscle_insert_short_int_table): Remove.
8705
efeed023
AD
87062004-12-17 Akim Demaille <akim@epita.fr>
8707
8708 * data/lalr1.cc: Extensive Doxygenation.
8709 (error_): Rename as...
8710 (error): this, since it is visible to the user.
8711 Adjust callers.
8712 (Parser::message): Now an automatic variable from...
8713 (Parser::yyreport_syntax_error_): here.
8714 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
8715 Parser::error.
8716 * tests/input.at: Escape $.
8717
bc82c5a5
PE
87182004-12-16 Paul Eggert <eggert@cs.ucla.edu>
8719
8720 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
8721 Parenthesize rhs to avoid obscure problems with mistakes like
8722 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
8723 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
8724 b4_rhs_location): Likewise.
8725 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
8726 b4_rhs_location): Likewise.
8727
fd19f271
AD
87282004-12-16 Akim Demaille <akim@epita.fr>
8729
8730 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
8731 yacc.c: be sure to stay within yycheck_.
8732 * tests/actions.at: Re-enable C++ tests.
8733
10454ea4
AD
87342004-12-16 Akim Demaille <akim@epita.fr>
8735
8736 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
8737 real.
8738
c5b95ccf
AD
87392004-12-16 Akim Demaille <akim@epita.fr>
8740
8741 Use #define to handle the %name-prefix.
8742
8743 * data/glr.c, data/yacc.c: Comment changes.
8744 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
8745 so that one can refer to yylex in the parser file, and have it
8746 renamed, as is the case with other skeletons.
8747
617a8f12
AD
87482004-12-16 Akim Demaille <akim@epita.fr>
8749
8750 Move lalr1.cc internals into yy*.
8751
8752 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
8753 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
8754 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
8755 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
8756 (empty_, final_, terror_, errcode_, ntokens_)
8757 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
8758 (looka_, ilooka_, error_range_, nerrs_):
8759 Rename as...
8760 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
8761 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
8762 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
8763 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
8764 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
8765 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
8766 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
8767 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
8768 these.
8769
1e547e6e
PE
87702004-12-15 Paul Eggert <eggert@cs.ucla.edu>
8771
8772 Fix some problems reported by twlevo at xs4all.
8773 * src/symtab.c (symbol_new): Report an error if the input grammar
8774 contains too many symbols. This is better than calling abort() later.
8775 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
8776 (struct node, struct graph):
8777 Rename member expand to stretch. All uses changed.
8778 (struct graph): Remove member layoutalgorithm. All uses removed.
8779 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
8780 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
8781 All uses changed.
8782 (N_STRETCH): Rename from N_EXPAND. All uses changed.
8783
735d6bd4
AD
87842004-12-15 Akim Demaille <akim@epita.fr>
8785
8786 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
8787 Add more Doxygen comments.
8788 (symprint_, stack_print_, reduce_print_, destruct_, pop)
8789 (report_syntax_error_, translate_): Rename as...
8790 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
8791 (yypop_, yyreport_syntax_error_, yytranslate_): this.
8792
2e1f5829
AD
87932004-12-15 Akim Demaille <akim@epita.fr>
8794
8795 * data/lalr1.cc (lex_): Rename as...
8796 (yylex_): this.
8797 Move the trace here.
8798 Take the %name-prefix into account.
8799 Reported by Alexandre Duret-Lutz.
8800
a3cb6248
AD
88012004-12-15 Akim Demaille <akim@epita.fr>
8802
8803 Simplify the C++ parser constructor.
8804
8805 * data/lalr1.cc (debug_): Rename as...
8806 (yydebug_): so that the parser's internals are always in the yy*
8807 pseudo namespace.
8808 Adjust uses.
8809 (b4_parse_param_decl): Remove the leading comma as it is now only
8810 called as unique argument list.
8811 (Parser::Parser): Remove the constructor accepting a location and
8812 an initial debugging level.
8813 Remove from the other ctor the argument for the debugging level.
8814 (debug_level_type, debug_level, set_debug_level): New.
8815
8816 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
8817 constructor calls.
8818
07fed891
AD
88192004-12-15 Akim Demaille <akim@epita.fr>
8820
8821 Remove b4_root related material: failure experiment
a3cb6248 8822 (which goal was to allow to derive from a class).
07fed891
AD
8823
8824 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
8825 definitions and uses.
8826
e603eaa5
PE
88272004-12-14 Paul Eggert <eggert@cs.ucla.edu>
8828
8829 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
8830 not 2, since it's not portable to subtract 1 from the start of an
8831 array. The new item 0 is never set or used. All uses changed.
8832
8833 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
8834 the default definition of YYLLOC_DEFAULT. Problem reported
8835 by Frank Heckenbach.
8836
fafb007d
PE
88372004-12-12 Paul Eggert <eggert@cs.ucla.edu>
8838
8839 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
8840 the normal case and one for the error case. Just use the
8841 first one uniformly. Problem reported by Frank Heckenbach.
8842 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
8843 use exactly the same macro in both places.
8844 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
8845 so that the normal-case YYRHSLOC works for the error case too.
8846 All uses changed.
8847 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
8848 (YYLLOC_DEFAULT): Use the same macro as glr.c.
8849 * doc/bison.texinfo (Location Default Action): Don't claim that
8850 we have an array of locations. Use the same macro for both glr
8851 and lalr parsers. Mention YYRHSLOC. Mention what happens when
8852 the index is 0.
8853
48814dcd
PE
88542004-12-10 Paul Eggert <eggert@cs.ucla.edu>
8855
a4e1a53b
PE
8856 * HACKING: Update email addresses to send announcements to.
8857
48814dcd
PE
8858 * configure.ac (AC_INIT): Bump version to 1.875f.
8859
337116ba
PE
88602004-12-10 Paul Eggert <eggert@cs.ucla.edu>
8861
8862 * NEWS: Version 1.875e.
8863 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
8864
8865 * src/scan-skel.l: Include "complain.h", for "fatal".
8866
8867 * src/relation.h (relation_print, relation_digraph):
8868 Relation sizes are of type relation_node, not size_t (this is
8869 merely a doc fix, since the two types are equivalent).
8870 (relation_transpose): Relation sizes are of type relation_node,
8871 not int.
8872 * src/relation.c: Likewise.
8873 (top, infinity): Now of type relation_node, not int.
8874 (traverse, relation_transpose): Use relation_node, not int.
8875
8876 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
8877 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
8878 (yyparse): Remove unused local introduced in 2004-10-25 patch.
8879
8880 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
68b082af 8881 specifying whether the test should be skipped. Use it tp
337116ba 8882 specify that the [%defines %skeleton "lalr1.cc"] tests currently
68b082af 8883 fail on some hosts, and should be skipped.
337116ba 8884
da2a7671
PE
88852004-12-08 Paul Eggert <eggert@cs.ucla.edu>
8886
8887 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
8888 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
8889 unless otherwise specified below.
8890
8891 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
8892 to allocate kernel_base, kernel_items, kernel_size, since
8893 they needn't be initialized to 0.
8894 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
8895 * src/closure.c (new_closure): Likewise, for itemset.
8896 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
8897 * src/lalr.c (set_goto_map): Likewise, for temp_map.
8898 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
8899 (build_relations): Likewise for edge, states1, includes.
8900 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
8901 * src/reader.c (packgram): Likewise, for ritem, rules.
8902 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
8903 * src/relation.c (relation_digraph): Likewise for VERTICES.
8904 (relation_transpose): Likewise for new_R, end_R.
8905 * src/symtab.c (symbols_token_translations_init): Likewise for
8906 token_translations.
8907 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
8908 (token_actions): Likewise for yydefact, actrow, conflrow,
8909 conflict_list.
8910 (save_column): Likewise for froms[symno], tos[symno].
8911 (goto_actions): Likewise for state_count.
8912 (pack_table): Likewise for base, pos, check.
8913 (tables_generate): Likewise for width.
8914
8915 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
8916 for initial core. Just have a separate core, so we needn't worry
8917 about whether kernel_size and kernel_base are initialized.
8918
8919 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
8920 kernel_size, kernel_items): Remove unnecessary initialization.
8921 * src/conflicts.c (conflicts): Likewise.
8922 * src/derives.c (derives): Likewise.
8923 * src/muscle_tablc (muscle_insert): Likewise.
8924 * src/relation.c (relation_digraph): Likewise.
8925 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
8926 conflrow, conflict_table, conflict_list, table, check):
8927 Likewise.
8928
8929 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
8930 This is because all callers pass unsigned int.
8931 * src/closure.h (new_closure): Likewise.
8932
8933 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
8934 (build_relations): Initialize includes[i] in all cases.
8935 * src/reader.c (packgram): Always initialize rules[ruleno].prec
8936 and rules[ruleno].precsym. Initialize members in order.
8937 * src/relation.c (relation_transpose): Always initialize new_R[i]
8938 and end_R[i].
8939 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
8940
8941 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
8942 conflict_list[0] was always 0, but now it isn't initialized.
8943
8944 * src/table.c (table_grow): When conflict_table grew, the grown
8945 area wasn't cleared. Fix this.
8946
8947 * lib/.cvsignore: Add strdup.c, strdup.h.
8948 * m4/.cvsignore: Add strdup.m4.
8949
00baeeac
PE
89502004-12-07 Paul Eggert <eggert@cs.ucla.edu>
8951
8952 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
8953 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
8954 GOTO_NUMBER_MAXIMUM, since we occasionally compute
8955 ngotos + 1 without checking for overflow.
8956 (build_relations): Use END_NODE, not -1, to denote end of edges.
8957 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
8958 build_relations): Use goto_number, not int, for goto numbers.
8959 * src/tables.c (save_column, default_goto): Likewise.
8960
be3d9d42
AD
89612004-11-23 Akim Demaille <akim@epita.fr>
8962
8963 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
8964 of #defining from yystype.
8965 Don't typedef yystype, C++ does not need it.
8966 This lets it possible to forward declare it as union.
8967
78e526d5
PE
89682004-11-23 Paul Eggert <eggert@cs.ucla.edu>
8969
8970 * bootstrap (gnulib_modules): Add extensions.
8971 Problem reported by Jim Meyering.
8972
afbb696d
PE
89732004-11-22 Paul Eggert <eggert@cs.ucla.edu>
8974
8975 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
8976 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
8977 src/system.h, src/tables.c: XFREE -> free, to accommodate
8978 recent change to gnulib xalloc.h.
78e526d5 8979 Problem reported by Jim Meyering.
afbb696d 8980
c1f8f16a
AD
89812004-11-17 Akim Demaille <akim@epita.fr>
8982
8983 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
8984
db7e5eb5 89852004-11-17 Akim Demaille <akim@epita.fr>,
9a1e9989
AD
8986 Alexandre Duret-Lutz <adl@gnu.org>
8987
8988 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
8989 changes.
8990 (YYCDEBUG): Adjust.
8991 Use it instead of cdebug_.
8992 (Parser::debug_stream, Parser::set_debug_stream): New.
8993 (Parser::symprint_): Define cdebug_ for temporary backward
8994 compatibility.
8995 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
8996 debug_stream ().
8997
68e11668
AD
89982004-11-17 Akim Demaille <akim@epita.fr>
8999
9000 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
9001 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
9002 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
9003 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
9004
97cbc73e
PE
90052004-10-27 Paul Eggert <eggert@cs.ucla.edu>
9006
9007 * data/glr.c (yyloc_default): Remove; not used.
9008 Problem reported by Frank Heckenbach.
9009
e342c3be
AD
90102004-10-25 Akim Demaille <akim@epita.fr>
9011
9012 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
9013 Introduce another definition to address simple location arrays.
9014 (yyGLRStack): New member: yyerror_range.
9015 (yyrecoverSyntaxError, yyparse): Update it.
9016 (yyrecoverSyntaxError): Use it when shifting the error token to
9017 have an accurate range, equivalent to the one computed by both
9018 yacc.c and lalr1.cc.
9019 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
9020 that column numbers start at column 0, as per GNU Coding
9021 Standards, the others tests, and the doc.
9022 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
9023 Adjust to the above change (first column is 0).
9024 And adjust the location of the "<error>", now covering the whole
9025 line.
9026
93602feb 90272004-10-22 Akim Demaille <akim@epita.fr>
04098407 9028 and Paul Eggert <eggert@cs.ucla.edu>
93602feb
PE
9029
9030 Remove some arbitrary limits on goto numbers and relations.
9031 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
9032 initial values, since they're never used.
9033 (set_goto_map): ngotos is now unsigned, so test for overflow
9034 by seeing whether it wraps around to zero.
9035 * src/lalr.h (goto_number): Now size_t, not short int.
9036 (GOTO_NUMBER_MAXIMUM): Remove.
9037 * src/relation.c (relation_print, traverse, relation_transpose):
9038 Check for END_NODE rather than looking at sign.
9039 * src/relation.h (END_NODE): New macro.
9040 (relation_node): Now size_t, not short int.
9041
dba08b04
PE
90422004-10-22 Paul Eggert <eggert@cs.ucla.edu>
9043
9044 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
9045 keyword, not an identifier. Problem reported by Baron Schwartz in
9046 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
9047
df09ef2e
AD
90482004-10-11 Akim Demaille <akim@epita.fr>
9049
9050 * src/symtab.c (symbol_check_alias_consistency): Also check
9051 type names, destructors, and printers.
9052 Reported by Alexandre Duret-Lutz.
9053 Recode the handling of associativity and precedence in terms
9054 of symbol_precedence_set.
9055 Accept no redeclaration at all, not even equal to the previous
9056 value.
9057 (redeclaration): New.
9058 Use it to factor redeclaration complaints.
9059 (symbol_make_alias): Don't set the type of the alias, let
9060 symbol_check_alias_consistency do it as for other features.
9061 * src/symtab.h (symbol): Add new member prec_location, and
9062 type_location.
9063 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
9064 * tests/input.at (Incompatible Aliases): New.
9065
146bc99d
PE
90662004-10-09 Paul Eggert <eggert@cs.ucla.edu>
9067
9068 .cvsignore fixes to accommodate gnulib changes,
9069 and the practice of naming build directories "_build".
9070 * .cvsignore: Add "_*". Sort.
9071 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
9072 * m4/.cvsignore: Add "*_gl.m4".
9073
e503aa60
AD
90742004-10-06 Akim Demaille <akim@epita.fr>
9075
9076 * src/parse-gram.y (add_param): Fix the truncation of trailing
9077 spaces.
9078
b4a20338
AD
90792004-10-05 Akim Demaille <akim@epita.fr>
9080
9081 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
9082 whether the reducion was empty or not. This leaves room to
9083 improve the use of YYLLOC_DEFAULT in such a case.
9084 lalr1.cc is still experimental, so changing this is acceptable.
9085 And finally, there are probably not many users who changed the
9086 handling of locations in GLR, so changing is admissible too.
9087
9088 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
9089 empty reduction, set @$ to an empty location ending the previously
9090 stacked symbol.
9091 Adjust uses to make sure the code is triggered on empty
9092 reductions.
9093 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
9094 expected output: empty reductions have empty locations.
9095
f85a5e6f
AD
90962004-09-29 Akim Demaille <akim@epita.fr>
9097
9098 * data/lalr1.cc: Move towards a more standard C++ coding style
9099 for templates: Class < T > -> Class<T>.
9100
b203fc2c
AD
91012004-09-29 Akim Demaille <akim@epita.fr>
9102
9103 * data/lalr1.cc: Reinstall the former ctor, for sake of
9104 compatibility, but warn it will be removed.
9105 Move towards a more standard C++ coding style (i.e., type *var ->
9106 type* var).
9107
5b7e1e73
PE
91082004-09-27 Paul Eggert <eggert@cs.ucla.edu>
9109
3fee967f
PE
9110 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
9111 since it's less likely to work if NULs are involved in the future.
5b7e1e73 9112
0dcca5c2
AD
91132004-09-27 Akim Demaille <akim@epita.fr>
9114
9115 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
9116
6dde1c82
AD
91172004-09-27 Akim Demaille <akim@epita.fr>
9118
9119 * data/lalr1.cc (b4_parse_param_decl_1): New.
b203fc2c 9120 (b4_parse_param_decl): Use it to have different names between attribute
6dde1c82
AD
9121 and argument names.
9122 (b4_cc_constructor_call): Likewise.
9123
b233d555
AD
91242004-09-24 Akim Demaille <akim@epita.fr>
9125
9126 * src/parse-gram.y (add_param): Strip the leading and trailing
9127 blanks from a formal argument declaration.
9128 (YY_LOCATION_PRINT): New.
9129
619404e3
AD
91302004-09-24 Akim Demaille <akim@epita.fr>
9131
9132 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
9133 after the location.
9134
dd8d9022
AD
91352004-09-24 Akim Demaille <akim@epita.fr>
9136
9137 * doc/bison.texinfo (Table of Symbols): Sort.
9138
0092f063
AD
91392004-09-21 Akim Demaille <akim@epita.fr>
9140
9141 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
9142 the useless parentheses.
9143 Suggested by Paul Eggert.
9144
451364ed
AD
91452004-09-20 Akim Demaille <akim@epita.fr>
9146
9147 Let the initial-action act on the look-ahead, and use it for the
9148 "initial push" (corresponding to an hypothetical beginning-of-file).
9149 And let lalr1.cc honor %initial-action.
9150
9151 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
9152 example.
9153 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
9154 (Parser::Parser): Remove the ctor that used to initialize it.
9155 (Parser::parse): Like in the other skeletons, issue the "starting
9156 parse" message before any action.
9157 Honor %initial-action.
9158 Initialize the stacks with the lookahead.
9159 * data/yacc.c: Let $$ and @$ in %initial-action designate the
9160 look-ahead.
9161 Push them in the stacks.
9162 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
9163
18d192f0
AD
91642004-09-20 Akim Demaille <akim@epita.fr>
9165
9166 * doc/bison.texinfo (Initial Action Decl): New.
9167
b8458aa5
AD
91682004-09-20 Akim Demaille <akim@epita.fr>
9169
9170 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
9171 clearer criterion to define it.
9172 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
9173 When reducing on an empty RHS, use the latest stacked location as
9174 location.
9175 yylloc is not always available.
9176 * data/glr.c: Likewise.
9177 Also, honor initial-actions.
9178
3fc16193
AD
91792004-09-20 Akim Demaille <akim@epita.fr>
9180
9181 * data/yacc.c (YY_LOCATION_PRINT): New.
9182 Define when we know YYLTYPE's structure, i.e., when the default
9183 YYLLOC_DEFAULT is used.
9184 * data/c.m4 (b4_yysymprint_generate): Use it.
9185 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
9186 value of the result.
9187 (error_start_): Replace with...
9188 (error_range_): this location array.
9189 This allows to replace code relying on the implementation of
9190 locations by portable code.
9191 * data/yacc.c (yylerrsp): Replace with...
9192 (yyerror_range): this.
9193 Every time a token is popped, update yyerror_range[0], to have an
9194 accurate location for the error token.
9195 * data/glr.c (YY_LOCATION_PRINT): New.
9196 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
9197 deference a pointer.
9198 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
9199 report the location in %printers.
9200
9201 * src/scan-skel.l: Instead of abort, report error messages to ease
9202 understanding skeleton scanning failures.
9203
ecfe33e7
AD
92042004-09-16 Akim Demaille <akim@epita.fr>
9205
9206 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
9207 (iterator, const_iterator): these, to be more in the C++ spirit.
9208 Also, return reverse iterators so that when displaying the stack
9209 we display its bottom first.
9210 (Parser::stack_print_, Parser::reduce_print_): Match the messages
9211 from yacc.c.
9212 We should probably use vector here though.
9213
1576d44d
AD
92142004-09-16 Akim Demaille <akim@epita.fr>
9215
9216 Have more complete shift traces.
9217
9218 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
9219 to report Shifts instead of ad hoc YYDPRINTF invocations,
9220 including for the error token.
9221 * data/lalr1.cc (symprint_): Output the location.
9222 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
9223 output the location within the %printer.
9224 Activate GLR tests, at least to make sure they compile properly.
9225 They still don't pass though.
9226 * tests/calc.at: Adjust expect verbose output, since now "Entering
9227 state..." is on a different line than the "Shifting" message.
9228
9c66f418
AD
92292004-09-08 Akim Demaille <akim@epita.fr>
9230
9231 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
9232 Bison directive from the Bison file to the invocation of this
9233 macro, so that these directives are passed to
9234 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
9235 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
9236 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
9237 the extra Bison directives instead of the whole series.
9238 Change the grammar so that there are recoverable errors, and
9239 unrecoverable errors. Now we can have the parser give up before
9240 consuming the whole input. As a result we now can observe that
9241 the lookahead is freed when needed.
9242 Change the parser source to parse argv[1] instead of a hard coded
9243 string.
9244 Simplify yylex, and give a value and location to EOF.
9245 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
9246 passed directives already coded in the file.
9247 Add some tests to check the location of "error".
9248 For some tests, the C++ parser is correct, and not yacc.c.
9249 For other tests, they provide different, but unsatisfying, values,
9250 so keep the C++ value so that at least one parser is "correct"
9251 according to the test suite.
9252 (Actions after errors): Remove, this is subsumed by the
9253 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
9254
52d5733f
AD
92552004-09-06 Akim Demaille <akim@epita.fr>
9256
9257 * data/lalr1.cc: Adjust the indentation of the labels.
04098407 9258 (Parser::pop): New.
52d5733f
AD
9259 Use it.
9260
a0e68930
AD
92612004-09-06 Akim Demaille <akim@epita.fr>
9262
9263 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
9264 argument, an informative message.
9265 Call YY_SYMBOL_PRINT.
9266 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
9267 * data/lalr1.cc (destruct_): Likewise.
9268 In addition, no longer depend on b4_yysymprint_generate and
9269 b4_yydestruct_generate to generate these functions, do it "by
9270 hand".
9271
e757bb10
AD
92722004-09-03 Akim Demaille <akim@epita.fr>
9273
9274 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
9275 invoked, yydestruct the lookahead.
9276 * tests/calc.at (Calculator $1): Update the expected lengths of
9277 traces: there is an added line for the discarded lookahead.
9278 * doc/bison.texinfo (Destructor Decl): Some rewording.
9279 Define "discarded" symbols.
9280
0fe1f06d
AD
92812004-09-02 Akim Demaille <akim@epita.fr>
9282
9283 * data/lalr1.cc (translate_, destruct_): No reason to be static.
9284
284acc8b
AD
92852004-09-02 Akim Demaille <akim@epita.fr>
9286
9287 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
9288 (YYDSYMPRINTF): Rename as...
9289 (YY_SYMBOL_PRINT): this.
9290 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
9291 two.
9292 Use it instead of direct symprint_ calls.
9293 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
9294 one.
9295
a5eb1ed2
AD
92962004-09-02 Akim Demaille <akim@epita.fr>
9297
b7c72fe1
AD
9298 * data/lalr1.cc (b4_yysymprint_generate): New.
9299 (symprint_): New member function, defined when YYDEBUG.
9300 Use it consistently instead of token/nterm debugging output by
9301 hand.
a5eb1ed2
AD
9302 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
9303 %printer calls to use cdebug_ when using lalr1.cc.
9304
417141dd
AD
93052004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
9306
9307 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
9308 with #ifdef YYDEBUG.
9309
2fa09258
AD
93102004-08-26 Akim Demaille <akim@epita.fr>
9311
9312 * doc/bison.texinfo (Implementing Loops): Rename as...
9313 (Implementing Gotos/Loops): this.
9314
9378b508
PE
93152004-08-13 Paul Eggert <eggert@cs.ucla.edu>
9316
9317 Adjust to latest gnulib.
9318 * bootstrap (gnulib_modules): Add xalloc-die.
9319 Set LC_ALL=C so that file names sort consistently.
9320 Prefer the gnulib copies of gettext.m4, glibc21.m4,
9321 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
9322 uintmax_t.m4, ulonglong.m4.
9323 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
9324 po.m4 since we are now using _gl.m4 instead.
9325
87a8ad5c
PE
93262004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
9327
9328 * src/scan-action.l: Remove. Scanning of semantic actions is
9329 handled in scan-gram.l.
9330
dca81a78
PE
93312004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
9332
9333 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
9334
9335 * src/location.h (struct): The file member is a uniqstr.
9336 (equal_boundaries): Use UNIQSTR_EQ for comparison.
9337
c9cbf7c5
PE
93382004-07-22 Paul Eggert <eggert@cs.ucla.edu>
9339
9340 Fix bug with non-%union parsers that have printers or destructors,
9341 which led to a Bison core dump. Reported by Peter Fales in
9342 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
2fa09258 9343
c9cbf7c5
PE
9344 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
9345 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
9346 not to our own type.
9347 * src/output.c (symbol_destructors_output, symbol_printers_output):
9348 Don't assume %union.
9349 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
9350 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
9351 UNION-FLAG. All callers changed.
9352 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
9353 Use type char, not unsigned int, when declaring an array of char;
9354 this lets us remove a cast.
9355 (Printers and Destructors): Add non-%union test cases.
9356
fa7e68c3
PE
93572004-06-21 Paul Eggert <eggert@cs.ucla.edu>
9358
9359 * doc/bison.texinfo: Minor editorial changes, mostly to the new
9360 GLR writeups. E.g., avoid frenchspacing and the future tense,
9361 change "lookahead" to "look-ahead", and change "wrt" to "with
9362 respect to".
2fa09258 9363
fa7e68c3
PE
93642004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9365
9366 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
9367 New sections, split off from the GLR Parsers section. Put the new
9368 Simple GLR Parser near the start of the GLR section, for clarity.
9369 Rewrite connective text.
9370
99a9344e
PE
93712004-06-21 Frank Heckenbach <frank@g-n-u.de>
9372
9373 * doc/bison.texinfo (Simple GLR Parsers): New section.
9374
8dd162d3
PE
93752004-06-21 Paul Eggert <eggert@cs.ucla.edu>
9376
9377 * NEWS, TODO, doc/bison.texinfo:
9378 Use "look-ahead" instead of "lookahead", to be consistent.
9379 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
9380 while we're fixing "look-ahead".
9381 * src/conflicts.c (shift_set): Renamed from shiftset.
9382 (look_ahead_set): Renamed from lookaheadset.
9383 * src/print.c: Likewise.
9384 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
9385 name for "lookahead".
9386 (report_types, usage): Likewise.
9387 * src/getargs.h (report_look_ahead_tokens): Renamed from
9388 report_lookaheads.
9389 * src/lalr.c (compute_look_ahead_tokens): Renamed from
9390 compute_lookaheads.
9391 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
9392 (look_ahead_tokens_print): Renamed from lookaheads_print.
9393 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
9394 state_rule_lookaheads_print.
9395 * src/state.h: Likewise.
9396 (reductions.look_ahead_tokens): Renamed from lookaheads.
9397 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
9398 AT_DATA_LOOKAHEADS_GRAMMAR.
9399
57a90331
PE
94002004-06-03 Paul Eggert <eggert@cs.ucla.edu>
9401
9402 * README: Update location of patched M4 distribution.
9403
8ed3234a
PE
94042004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
9405
9406 Don't assume the C++ compiler takes the same arguments as the C compiler
9407 (trivial change).
9408 * configure.ac (O0CXXFLAGS): New var.
9409 * tests/atlocal.in (CXXFLAGS): Use it.
9410
07971983
PE
94112004-05-29 Paul Eggert <eggert@cs.ucla.edu>
9412
9413 Fix some "make check" problems with C++ reported by
9414 Albert Chin-A-Young for Tru64 C++ in this thread:
9415 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
9416
9417 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
9418 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
9419 Output to a .cc file for C++, not to a .c file.
9420 * tests/calc.at (AT_CHECK_CALC): Likewise.
9421 * tests/regression.at (AT_CHECK_DANCER): Likewise.
9422 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
9423
29058652
PE
94242004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
9425
9426 * tests/calc.at, tests/actions.at: Workaround for SGI
9427 C++ compiler. (trivial change)
9428
62cb8a99
PE
94292004-05-27 Paul Eggert <eggert@cs.ucla.edu>
9430
fd418816
PE
9431 Spent a few hours checking out which prerequisite versions the
9432 current sources actually require. I went all the way back to
9433 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
9434 a seemingly endless set of combinations of versions more recent
9435 than that. The bottom line is that the current sources require
9436 fairly recent versions of the build tools, and it'll be some work
9437 to change this.
9438 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
9439 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
9440 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
9441 Add comments explaining why those particular versions are
9442 currently needed.
2fa09258 9443
62cb8a99
PE
9444 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
9445 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
161a71f3 9446 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
62cb8a99
PE
9447
9448 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
9449 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
9450
caa52c10
PE
94512004-05-26 Paul Eggert <eggert@cs.ucla.edu>
9452
9453 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
9454 0.11.5. Suggested by Bruno Haible.
9455 * bootstrap: Remove gettext version checking.
9456
9457 * doc/bison.texinfo (Decl Summary): Also mention that %union
9458 can depend on prerequisite types. Problem reported by Tim
9459 Van Holder.
9460
4bfd5e4e
PE
94612004-05-25 Paul Eggert <eggert@cs.ucla.edu>
9462
2cef3017
PE
9463 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
9464 * README-alpha: Don't tell people not to package this.
9465
b9c85d5c
PE
9466 * bootstrap: Don't assume $(...) works; use `...` instead.
9467 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
9468 gettext better.
9469
4bfd5e4e
PE
9470 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
9471 put into the -d output file, and mention what to do if YYSTYPE is
9472 defined as a macro.
9473
6a36ff94
PE
94742004-05-24 Paul Eggert <eggert@cs.ucla.edu>
9475
6712933e
PE
9476 Undo change made earlier today: it caused autopoint to not bring
9477 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
9478 autopoint's.
9479
9480 * bootstrap: Check that gettext version matches what's in
9481 configure.ac. Warn users to ignore robots.txt ERROR 404.
9482 * bootstrap: Undo today's earlier change (logged below).
9483 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
b9c85d5c 9484
6a36ff94
PE
9485 The gettext version checking is causing more trouble than it's
9486 curing; remove it. Problem reported by Paul Hilfinger.
9487
9488 * bootstrap: Issue a warning that one can expect a message
9489 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
9490 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
9491
209ea708
PE
94922004-05-23 Paul Eggert <eggert@cs.ucla.edu>
9493
9494 Ensure that the C++ compiler used for testing actually works on a
9495 simple test program; if not, skip the C++-related tests. Problem
9496 reported by Vin Shelton in:
161a71f3 9497 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
209ea708
PE
9498
9499 * m4/cxx.m4: New file.
9500 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
9501 * tests/atlocal.in (BISON_CXX_WORKS): Add.
9502 * tests/local.at (AT_COMPILE_CXX): Use it.
9503
41ca2549
PE
95042004-05-21 Paul Eggert <eggert@cs.ucla.edu>
9505
383e69dc
PE
9506 * data/glr.c (yylloc): Output this macro even if locations are not
9507 being generated, as the GLR parser needs it even in that case.
9508 Problem reported by Troy A. Johnson
9509 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
9510
41ca2549
PE
9511 * configure.ac (AC_INIT): Update to 1.875e.
9512
e476c87d
PE
95132004-05-21 Paul Eggert <eggert@cs.ucla.edu>
9514
9515 * NEWS: Version 1.875d.
9516 * configure.ac (AC_INIT): Likewise.
9517 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
9518
9519 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
9520 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
9521 lalr1.cc runs afoul of the first, and the last two are no longer
9522 supported by GCC 3.4.0.
9523 * README: Mention GNU m4 1.4 or later; mention m4 patches.
9524 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
9525
233a88ad
PE
95262004-05-06 Paul Eggert <eggert@cs.ucla.edu>
9527
9528 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
9529 unsigned int, for compatibility with latest gnulib hash module.
9530 * src/state.c (state_hash, state_hasher): Likewise.
9531 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
9532 * src/uniqstr.c (hash_uniqstr): Likewise.
e476c87d 9533
12ffdd28
PE
95342004-05-03 Paul Eggert <eggert@cs.ucla.edu>
9535
9536 * NEWS: Unescaped newlines are no longer allowed in char & strings.
9537
9538 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
9539 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
9540 character and string literals.
9541 (unexpected_end): New function.
9542 (unexpected_eof): Use it.
9543 (unexpected_newline): New function.
9544 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
9545 actions.
e476c87d 9546
12ffdd28
PE
9547 * NEWS: Document %expect-rr.
9548
9549 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
9550 Fix typo by replacing $1 with $option.
9551 Remove more 'intl'-related files.
9668e2be 9552 Don't DEFUN AM_INTL_SUBDIR twice.
12ffdd28
PE
9553
9554 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
9555 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
9556 strtoul.c.
9557 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
9558 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
9559 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
9560 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
9561 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
9562 * src/.cvsignore: Add *.output.
9563
9564 * src/parse-gram.y: Put copyright notice inside %{ %} so it
9565 gets copied to the output file.
e476c87d 9566
1f65350a
PE
95672004-04-28 Paul Eggert <eggert@twinsun.com>
9568
9569 Get files from the gnulib and po repositories, instead of relying
9570 on them being in our CVS. Upgrade to latest versions of gnulib
9571 and Automake.
9572
9573 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
9574 * bootstrap: Bootstrap from gnulib and po repositories.
9575 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
9576 * README-cvs: Document these changes. Remove version numbers from
9577 mentions of build tools, since they change so often. Mention Flex.
9578
9579 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
9580 (gl_USE_SYSTEM_EXTENSIONS): Add.
12ffdd28
PE
9581 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
9582 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
1f65350a 9583 does this for us.
12ffdd28
PE
9584 (AC_ISC_POSIX): Remove; we no longer support this
9585 ancient OS, as it gets in the way of latest Autoconf & gnulib.
1f65350a
PE
9586 (AC_HEADER_STDC): Remove: we now assume C89 or better.
9587 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
9588 Do not check for C89 headers, except for locale.h which is used
9589 by the Yacc library and must port to K&R hosts.
9590 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
9591 Do not check for C89 functions, except for setlocale which is
9592 used by the Yacc library.
9593 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
9594 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
9595 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
9596 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
9597 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
9598 AM_GNU_GETTEXT): Remove; now done by:
9599 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
9600 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
9601 for us.
9602
9603 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
9604 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
9605 Define to empty, as gnulib.mk will do the rest for us.
9606 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
9607 for us.
9608 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
9609 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
9610
9611 * src/files.c: Include gnulib's xstrndup.h.
9612
9613 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
9614 (REALLOC): Use xnrealloc, for likewise.
9615 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
9616 (strnlen, memrchr): Remove decls; functions no longer used.
9617 Include <stpcpy.h>.
9618
9619 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
9620 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
9621 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
9622 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
9623 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
9624 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
9625 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
9626 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
9627 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
9628 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
9629 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
9630 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
9631 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
9632 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
9633 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
9634 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
9635 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
9636 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
9637 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
9638 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
9639 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
9640 Remove, as these files are now generated automatically
9641 by bootstrap or automake.
9642
9643 * po/ChangeLog: Remove: all but one entry was a duplicate
9644 of this file, and I moved that 2000-11-02 entry here.
9645
9646 * config/.cvsignore: Add Makefile, depcomp, install-sh.
9647 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
9648 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
9649 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
9650 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
9651 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
9652 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
9653 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
9654 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
9655 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
9656 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
9657 xstrndup.h.
9658 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
9659 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
9660 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
9661 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
9662 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
9663 * src/.cvsignore: Remove *_.c.
9664
9665
9666 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
9667 support it. (The latest stable gzip doesn't.)
9668
96692004-04-27 Paul Eggert <eggert@twinsun.com>
9670
9671 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
9672 case, as stos_ is now used by destructors due to the 2004-02-09
9673 change.
9674
9675 Remove more K&R C support.
9676 * lib/libiberty.y (PARAMS): Remove. All uses removed.
9677 * lib/subpipe.c (errno): Remove decl.
9678 Include <stdlib.h> unconditionally.
9679 (EXIT_FAILURE): Remove macro.
9680 * src/complain.c (vfprintf, strerror): Remove.
9681 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
9682 unconditionally.
9683 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
9684 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
9685 (strchr, strspn, memchr): Remove decls.
9686 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
9687 unconditionally. Do not declare perror.
9688 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
9689 unconditionally.
9690
9691 * src/complain.c (_): Remove useless defn, as system.h defines this.
9692
9693 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
9694 with latest obstack.h.
9695 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
9696 to procedure types, as obstack.h now does that for us.
9697 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
9698
9699 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
9700 so that this include file can stand alone.
9701 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
9702 does this now. Include subpipe.h first after config.h, to
9703 test whether it can stand alone.
9704
9705 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
9706 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
9707 unused declaration.
9708
9709 * tests/synclines.at (%union synch line): Put a dummy member in
9710 the union, because empty unions aren't allowed in C. Caught
9711 by GCC 3.4.0.
9712
4f16766c
PE
97132004-04-13 Jim Meyering <jim@meyering.net>
9714
9715 * src/conflicts.c (conflicts_print): Correct format string typo:
9716 use `%%' to produce literal `%'. (trivial change)
9717
779e7ceb
PE
97182004-03-30 Paul Eggert <eggert@twinsun.com>
9719
9720 * src/getargs.c (version): Update copyright year to 2004.
9721
9722 * data/c.m4 (b4_int_type): Use 'short int' rather than
9723 'short', and similarly for 'long', 'unsigned', etc.
9724 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
9725 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
9726 yy_yypstack, yydumpstack): Likewise.
9727 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
9728 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
9729 Likewise.
9730 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
9731 yy_stack_print, yyparse): Likewise.
9732 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
9733 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
9734 * lib/bitset.c (bitset_print): Likewise.
9735 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
9736 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
9737 * lib/bitsetv.c (bitsetv_dump): Likewise.
9738 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
9739 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
9740 Likewise.
9741 * src/LR0.c (allocate_itemsets): Likewise.
9742 * src/gram.h (rule_number, rule): Likewise.
9743 * src/lalr.h (goto_number): Likewise.
9744 * src/nullable.c (nullable_compute): Likewise.
9745 * src/output.c (prepare_rules): Likewise.
9746 * src/relation.c (relation_print, relation_digraph): Likewise.
9747 * src/relation.h (relation_node): Likewise.
9748 * src/state.h (state_number, transitions, errs, reductions,
9749 struct state): Likewise.
9750 * src/symtab.h (symbol_number, struct symbol): Likewise.
9751 * src/tables.c (vector_number, tally, action_number,
9752 default_goto, goto_actions): Likewise.
9753 * tests/existing.at (GNU Cim Grammar): Likewise.
9754 * tests/regression.at (Web2c Actions): Likewise.
9755
9756 * src/output.c (muscle_insert_short_int_table): Renamed from
9757 muscle_insert_short_table. All uses changed.
9758
d6328241
PH
97592004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9760
9761 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
9762 (declaration): Replace expected_conflicts with expected_sr_conflicts.
9763 Add %expect-rr rule.
4f16766c 9764
d6328241
PH
9765 * src/scan-gram.l: Recognize %expect-rr.
9766
4f16766c 9767 * src/conflicts.h (expected_sr_conflicts): Rename from
d6328241 9768 expected_conflicts.
4f16766c 9769 (expected_rr_conflicts): Declare.
d6328241
PH
9770
9771 * src/conflicts.c (expected_sr_conflicts): Rename from
9772 expected_conflicts.
9773 (expected_rr_conflicts): Define.
9774 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
9775 for GLR parsers.
9776 Use expected_sr_conflicts in place of expected_conflicts.
9777 Warn if expected_rr_conflicts used in non-GLR parser.
4f16766c 9778
d6328241 9779 * doc/bison.texinfo: Add documentation for %expect-rr.
4f16766c 9780
1452af69
PE
97812004-03-08 Paul Eggert <eggert@gnu.org>
9782
9783 Add support for hex token numbers. Suggested by Odd Arild Olsen in
161a71f3 9784 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
1452af69
PE
9785
9786 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
9787 in lalr1.cc.
9788 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
9789 * src/scan-gram.l (scan_integer): New function.
9790 ({int}): Use it.
9791 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
9792 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
9793 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
9794 Say "long int", not "long", for uniformity with GNU style.
9795
006d217d
PE
97962004-02-25 Paul Eggert <eggert@twinsun.com>
9797
9798 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
9799 compilers. This fixes a problem with Intel's C++ compiler being
9800 chatty, reported by Guido Trentalancia in
161a71f3 9801 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
006d217d 9802
c2729758
ADL
98032004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
9804
9805 Support %destructor and merge error locations in lalr1.cc.
9806
9807 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
9808 (Parser::stos_): Define unconditionally.
9809 (Parser::destruct_): New method. Generate its body with
9810 b4_yydestruct_generate.
9811 (Parser::error_start_): New attribute.
9812 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
9813 token which are discarded.
9814 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
9815 error_start_ when erroneous token are discarded.
9816 (Parser::parse) <yyerrlab1>: Compute the location of the error
9817 token so that it covers all the discarded tokens.
9818 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
9819 it can be called with `%skeleton "lalr1.cc"', and do that.
9820
dd0e0635
PE
98212004-02-02 Paul Eggert <eggert@twinsun.com>
9822
9823 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
9824 $(top_srcdir)/lib and ../lib. This fixes a bug reported
9825 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
9826 There's no need to mention top_builddir since Automake does that
9827 for us.
9828 (INCLUDES): Remove, as Automake says it's obsolescent.
9829 Contents migrated into AM_CPPFLAGS as described above.
9830 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
9831
98322004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9833
9834 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
9835 (yyreportSyntaxError): Handle case where lookahead token is
9836 YYEMPTY.
9837
be16239b
PH
98382004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
9839
9840 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
9841 resulting parsers are compilable with C++.
9842
5fa90832
PE
98432003-12-23 Paul Eggert <eggert@twinsun.com>
9844
9845 * config/depcomp, config/install-sh: Sync with Automake 1.8.
9846 * src/output.c (output_skeleton): Rename local var.
9847 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
9848 Bison tokens, as this runs afoul of the 2003-10-07 change that
9849 disallowed NUL bytes in character constants or string literals.
9850
9851 * tests/local.at: Require Autoconf 2.59's Autotest.
9852 * tests/testsuite.at: Don't include local.at, since we now assume
9853 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
9854 including it.
9855 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
9856 multiple inclusion warnings.
dd0e0635 9857
b165c324
AD
98582003-12-02 Akim Demaille <akim@epita.fr>
9859
9860 * doc/bison.texinfo (How Can I Reset the Parser): More about start
9861 conditions.
9862 From Bruno Haible.
9863
26e06a21
ADL
98642003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
9865
9866 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
9867
92ac3705
PE
98682003-10-07 Paul Eggert <eggert@twinsun.com>
9869
6a5ecb38
PE
9870 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
9871 if testsuite doesn't exist.
9872
92ac3705
PE
9873 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
9874 literals, unfortunately.
9875 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
9876 Complain about NUL bytes in character constants or string literals.
9877
91d2c560
PE
98782003-10-05 Paul Eggert <eggert@twinsun.com>
9879
9880 * NEWS: Don't document %no-default-prec, as it's still
9881 too experimental.
9882 * doc/bison.texinfo: Document %no-default-prec only if
9883 the defaultprec flag is set. Normally it's not.
9884
0cc3da3a
PE
98852003-10-04 Paul Eggert <eggert@twinsun.com>
9886
9887 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
9888 non-modifiable lvalue, instead of a modifiable one.
9889 * doc/bison.texinfo (Actions): Document that $$ can
9890 be assigned to. Do not claim that $$ and $N are
9891 array element references: user code should not rely on this.
9892
22fccf95
PE
98932003-10-01 Paul Eggert <eggert@twinsun.com>
9894
9895 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
9896 (grammar_declaration): Use it.
9897 * src/scan-gram.l: New token %no-default-prec.
9898 * tests/conflicts.at: Revamp tests to use %no-default-prec.
9899 * NEWS, doc/bison.texinfo: Document the above.
9900
fc8f2965
AD
99012003-10-01 Akim Demaille <akim@epita.fr>
9902
9903 VCG no longer supports long_straight_phase.
9904
9905 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
9906 * src/print_graph.c (print_graph): Adjust.
9907
39a06c25
PE
99082003-09-30 Frank Heckenbach <frank@g-n-u.de>
9909 and Paul Eggert <eggert@twinsun.com>
9910
9911 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
9912 Table of Symbols): Document %default-prec.
9913 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
9914 (grammar_declaration): Set default_prec on %default-prec.
9915 * src/scan-gram.l (%default-prec): New token.
9916 * src/reader.h (default_prec): New flag.
9917 * src/reader.c: Likewise.
9918 (packgram): Handle it.
9919 * tests/conflicts.at (%default-prec without %prec,
9920 %default-prec with %prec, %default-prec 1): New tests.
fc8f2965 9921
39a06c25
PE
99222003-09-30 Paul Eggert <eggert@twinsun.com>
9923
9924 * tests/testsuite.at: Include local.at, not input.at, fixing
9925 a typo in the 2003-08-25 patch.
9926
62b6aef9
AD
99272003-08-27 Akim Demaille <akim@epita.fr>
9928
9929 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
9930 GCC warnings.
9931
89e1cc61
AD
99322003-08-26 Akim Demaille <akim@epita.fr>
9933
9934 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
9935 "<\#" to avoid magic from Gnus when posting parts of this script.
9936
a08460b0
AD
99372003-08-26 Akim Demaille <akim@epita.fr>
9938
9939 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
9940 (Parser::parse): here.
9941 Adjust: nerrs and errstatus is now replaced by...
9942 (Parser::nerrs_, Parser::errstatus_): New.
9943
603f1cfd
AD
99442003-08-25 Akim Demaille <akim@epita.fr>
9945
9946 * config/announce-gen, Makefile.cfg: New.
9947 * Makefile.am: Adjust.
9948 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
9949 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
9950
cd3684cf
AD
99512003-08-25 Akim Demaille <akim@epita.fr>
9952
9953 When reducing initial empty rules, Bison parser read an initial
9954 location that is not defined. This results in garbage, and that
9955 affects Bison's own parser. Therefore we need (i) to extend Bison
9956 to support a means to initialize this location, and (ii) to use
9957 this CVS Bison to fix CVS Bison's parser.
9958
9959 * src/reader.h, reader.c (epilogue_augment): Remove, replace
9960 with...
9961 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
9962 * src/parse-gram.y: Adjust.
9963 (%initial-action): New.
9964 (%error-verbose): Since we require CVS Bison, there is no reason
9965 not to use it.
9966 * src/scan-gram.l: Adjust.
9967 * src/Makefile.am (YACC): New, to make sure we use our own parser.
9968 * data/yacc.c (yyparse): Use b4_initial_action.
9969
4e03e201
AD
99702003-08-25 Akim Demaille <akim@epita.fr>
9971
9972 * doc/bison.texinfo: Don't promote stdout for error messages.
9973
8c182d05
AD
99742003-08-25 Akim Demaille <akim@epita.fr>
9975
9976 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
9977 From Alexandre Duret-Lutz.
9978
6a60c4cf
PE
99792003-08-25 Akim Demaille <akim@epita.fr>
9980
9981 Version 1.875c.
9982
25f66e1a
AD
99832003-08-25 Akim Demaille <akim@epita.fr>
9984
9985 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
9986 Use them.
9987
5348bfbe
AD
99882003-08-25 Akim Demaille <akim@epita.fr>
9989
9990 * data/lalr1.cc (Parser::reduce_print_): New.
9991 Use it.
9992
47301314
AD
99932003-08-25 Akim Demaille <akim@epita.fr>
9994
9995 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
9996 error recovery loops. This patch is based on
161a71f3 9997 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
47301314
AD
9998 Also, augment the similarity between lalr1.cc and yacc.c.
9999 Note: the locations of error recovery rules are not correct yet.
10000
10001 * data/lalr1.cc: Comment changes to augment the similarity between
10002 lalr1.cc and yacc.c.
10003 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
10004 (yyerrlab1): Remove, but where it used to be (now the bottom part of
10005 yyerrlab), when hitting EOF, pop the whole stack here instead of
10006 merely falling thru the default error handling mechanism.
10007 (yyerrorlab): New label, with the old contents of YYERROR,
10008 plus the following change: pop the stack of rhs corresponding
10009 to the production that invoked YYERROR. That is how Yacc
10010 behaves (required by POSIX).
10011 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
10012 fail.
10013
1f7a61ff
AD
100142003-08-25 Akim Demaille <akim@epita.fr>
10015
10016 Tune local.at so that people can "autom4te -l autotest calc.at -o
10017 calc" for instance, to extract a sub test suite.
10018
10019 * tests/testsuite.at: Move the initialization, Autotest version
10020 requirement, and AT_TESTED invocation into...
10021 * tests/local.at: here.
10022 * tests/testsuite.at: Include it for compatibility with Autoconf
10023 2.57.
10024 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
10025 be ignore.
10026
327b5b56
PE
100272003-08-04 Paul Eggert <eggert@twinsun.com>
10028
10029 Rework code slightly to avoid gcc -Wtraditional warnings.
10030 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
10031 The returned value is now stored in *YY0. All callers changed.
10032 * src/output.c (merge_output): Adjust to the above change.
10033
0051e3ed
PE
100342003-07-26 Paul Eggert <eggert@twinsun.com>
10035
10036 * data/glr.c (YYASSERT): New macro.
10037 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
10038 yyresolveStates, yyprocessOneStack):
10039 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
10040 Derived from a suggestion by Frank Heckenbach.
1f7a61ff 10041
137437c6
PE
100422003-07-25 Paul Eggert <eggert@twinsun.com>
10043
5b620e06
PE
10044 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
10045 for portability to K&R C (after ansi2knr, presumably). See
161a71f3 10046 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5b620e06
PE
10047 by Frank Heckenbach, though I have omitted the structure-initialization
10048 part of his glr-knr.diff patch since I recall that the Portable
10049 C Compiler didn't require that change.
10050
137437c6
PE
10051 Let the user specify how to allocate and free memory.
10052 Derived from a suggestion by Frank Heckenbach in
161a71f3 10053 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
137437c6
PE
10054 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
10055 All uses of free, malloc, realloc changed to use these macros,
10056 and unnecessary casts removed.
10057 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
10058
ddb85ca5
PE
100592003-07-06 Matthias Mann <MatthiasMann@gmx.de>
10060
10061 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
10062 use s.empty() rather than s == "" to test for empty string; see
161a71f3 10063 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
ddb85ca5
PE
10064 (trivial change)
10065
39910e09
AD
100662003-06-25 Akim Demaille <akim@epita.fr>
10067
10068 * config/depcomp, config/install-sh: Update from masters.
10069
0ae99356
PE
100702003-06-20 Paul Eggert <eggert@twinsun.com>
10071
10072 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
10073 and return properly parenthesized result.
10074 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
10075 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
10076 Remove unnecessary parentheses from uses.
10077 * doc/bison.texinfo (Location Default Action): Describe the
10078 conventions for parentheses.
10079
cd05d13c
PE
100802003-06-19 Paul Eggert <eggert@twinsun.com>
10081
81fd08ca
PE
10082 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
10083 yyreportTree): Do not assume that size_t is the same width as int,
10084 when printing sizes. Print sizes using an unsigned format.
10085 Problem reported by Frank Heckenbach in
161a71f3 10086 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
4dcf140b 10087
cd05d13c
PE
10088 Port to Forte Developer 7 C compiler.
10089 * data/glr.c (struct YYLTYPE): If locations are not being used,
10090 declare a single dummy member, as empty structs do not conform
10091 to the C standard.
10092 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
10093 the Forte Developer 7 C compiler complains that end-of-loop
10094 code is not reached.
10095
4dcf140b
PE
100962003-06-17 Paul Eggert <eggert@twinsun.com>
10097
10098 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
10099 avoid warnings from picky compilers about redefinition of PARAMS.
10100
8dd76bee
PE
101012003-06-17 Paul Eggert <eggert@twinsun.com>
10102
10103 Version 1.875b.
10104
10105 * NEWS: Document 1.875b.
10106
10107 * lib/bbitset.h: Do not include config.h; that's the includer's job.
10108 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
10109 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
10110 Don't use 'index' in comments, as it's a builtin fn on some hosts.
10111 * lib/bitset_stats.c: Include gettext.h unconditionally, as
10112 per recent gettext manual's suggestion.
10113 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
10114 Use prototypes, not old-style definitions.
10115 * lib/lbitset.c (lbitset_unused_clear): Likewise.
10116 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
10117 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
10118 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
10119 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
10120 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
10121 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
10122 vbitset_or_and_cmp, vbitset_copy): Likewise.
10123
10124 * lib/libiberty.h: Do not include config.h; that's the includer's job.
10125 Do not include <stdlib.h>.
10126 (PARAMS): Define unconditionally for C89.
10127 (ATTRIBUTE_NORETURN): Remove.
10128 (ATTRIBUTE_UNUSED): Define unconditionally.
10129
10130 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
161a71f3 10131 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
8dd76bee
PE
10132 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
10133 * lib/vbitset.c, lib/vbitset.h: New files.
10134 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
10135 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
10136 from libbitset.
10137
10138 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
10139 `How Can I Reset @code{yyparse}', since texinfo does not allow
10140 arbitrary @ in node names.
10141
10142 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
10143 shouldn't be needed according to the gettext 0.12.1 documentation
10144 but which seem to be needed anyway: codeset.m4 glibc21.m4
f8e8262e 10145 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
8dd76bee 10146 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
f8e8262e 10147 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
cd05d13c 10148
8dd76bee
PE
10149 * lib/.cvsignore: Add stdbool.h.
10150 * m4/.cvsignore: Add nls.m4, po.m4.
10151
10152 Upgrade to CVS gnulib.
10153 * stdbool_.h: File renamed from stdbool.h.in.
10154 * configure.ac (AM_STDBOOL_H): Invoke this instead of
10155 AC_HEADER_STDBOOL.
10156 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
10157 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
10158 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
10159 (MOSTLYCLEANFILES): New var.
10160 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
10161 (stdbool.h): New rule.
10162 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
10163 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
10164 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
10165 m4/quote.m4: Upgrade to today's gnulib.
10166
10167 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
10168 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
10169 the tests right now.
10170 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
10171 yyerror are declared before use; C99 requires this.
10172
25005f6a
PH
101732003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10174
10175 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
10176 first.
10177 (yyrecoverSyntaxError): Correct the logic for setting and testing
10178 yyerrState.
10179 Correct comment on handling EOF.
10180 Allow states with only a default reduction, rather than failing
8dd76bee 10181 (I can't quite reconstruct why these were not allowed before).
25005f6a 10182
137437c6 10183 Fixes to avoid problem that $-N rules in GLR parsers can cause
25005f6a 10184 buffer overruns, corrupting state.
8dd76bee
PE
10185
10186 * src/output.c (prepare_rules): Output max_left_semantic_context
25005f6a
PH
10187 definition.
10188 * src/reader.h (max_left_semantic_context): New variable declaration.
10189 * src/scan-gram.l (max_left_semantic_context): Define.
10190 (handle_action_dollar): Update max_left_semantic_context.
10191 * data/glr.c (YYMAXLEFT): New definition.
10192 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
10193 (yyresolveAction): Ditto.
10194
10195 Fixes to problems with location handling in GLR parsers reported by
10196 Frank Heckenbach (2003/06/05).
10197
10198 * data/glr.c (YYLTYPE): Make trivial if locations not used.
10199 (YYRHSLOC): Add parentheses, and define only if locations used.
10200 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
10201 locations not used.
10202 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
10203 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8dd76bee 10204
25005f6a
PH
10205 * tests/cxx-type.at: Exercise location information; update tests
10206 to differentiate output with and without locations.
8dd76bee 10207 Remove forward declarations of yylex and yyerror---caused errors
25005f6a
PH
10208 because default YYLTYPE not yet defined.
10209 Change semantic actions to compute strings, rather than printing
10210 them directly (to test proper passing of semantics values). Change
10211 output to prefix notation and update test data and expected results.
10212 (yylex): Track locations.
10213 (stmtMerge): Return value rather than printing, and include arguments
10214 in value.
8dd76bee 10215
711f40b7
PE
102162003-06-03 Paul Eggert <eggert@twinsun.com>
10217
10218 Avoid warnings generated by GCC 2.95.4 when Bison is
10219 configured with --enable-gcc-warnings.
10220 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
10221 yy::]b4_parser_class_name[::translate_,
10222 yy::Stack::operator[] (unsigned),
10223 yy::Stack::operator[] (unsigned) const,
10224 yy::Slice::operator[] (unsigned),
10225 yy::Slice::operator[] (unsigned) const):
10226 Rename local vars to avoid warnings.
10227 * tests/glr-regression.at (Improper handling of embedded actions
10228 and $-N in GLR parsers): Remove unused local variable from yylex.
10229 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
10230 (void) as arg when not pure, since we now assume C89 when building
10231 Bison. Pacify GCC by using parameter.
10232
ac695f7d
PE
102332003-06-02 Paul Eggert <eggert@twinsun.com>
10234
10235 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
10236 yy::Location::lines, yy::Location::columns): Rename arguments
10237 to avoid shadowing; this removes a warning generated by GCC 3.3.
10238
26ec81e0
PE
102392003-06-01 Paul Eggert <eggert@twinsun.com>
10240
10241 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
10242 to g++, as GCC 3.3 complains if you do it.
10243 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
10244 everything that WARNING_CFLAGS has, except omit warnings
10245 not suitable for C++.
10246 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
10247 * tests/atlocal.in (CXXFLAGS): New var.
10248 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
10249
10250 Fix a GLR parser bug I reported in February; see
161a71f3 10251 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
26ec81e0
PE
10252 The problem was that GLR parsers did not conform to the C standard,
10253 because actions like { $1 = $2 + $3; } expanded to expressions
10254 that invoked YYFILL in separate subexpressions, and YYFILL assigned
10255 to a local variable. The C standard says that expressions
10256 like (var = f ()) + (var = f ()) have undefined behavior.
10257 Another problem was that GCC sometimes issues warnings that
10258 yyfill and its parameters are unused.
10259
10260 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
10261 as possibly unused.
10262 (yyfill): New function.
10263 (YYFILL): Use it.
10264 (yyuserAction): Change type of yynormal to bool, so that it matches
10265 the new yyfill signature. Mark it as possibly unused.
10266
10267
10268 Follow up on a bug I reported in February, where a Bison-generated
10269 parser can loop. Provide a test case and a fix for yacc.c. I
10270 don't have a fix for lalr1.cc or for glr.c, unfortunately.
10271 The original bug report is in:
161a71f3 10272 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
26ec81e0
PE
10273
10274 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
10275 macro's size was becoming unwieldy.
10276 (yyerrlab): Do not discard an empty lookahead symbol, as this
10277 might destroy garbage.
10278 (yyerrorlab): New label, with the old contents of YYERROR,
10279 plus the following change: pop the stack of rhs corresponding
10280 to the production that invoked YYERROR. That is how Yacc
10281 behaves, and POSIX requires this behavior.
10282 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
10283 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
10284 Define 'alarm' to do nothing if unistd.h is not available.
10285 Add a new rule "exp: '-' error;" to test the above change to
10286 data/yacc.c. Use 'alarm' to abort any test taking longer than
10287 10 seconds, as it's probably looping.
10288 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
10289 Also, the new yacc.c generates two fewer diagnostics for an
10290 existing test.
10291
d0829076
PE
102922003-05-24 Paul Eggert <eggert@twinsun.com>
10293
c6ae27df
PE
10294 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
10295 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
10296 This fixes a problem reported by John Bowman when the Compaq/HP
10297 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
10298 -ansi -Wall -gall).
10299 * data/yacc.c (union yyalloc): Likewise.
10300 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
26ec81e0 10301
d0829076
PE
10302 Switch from 'int' to 'bool' where that makes sense.
10303
10304 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
10305 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
10306 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
10307 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
10308 Return or accept bool, not int. All callers changed.
10309 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
10310 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
10311 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
10312 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
10313 bitset_or_and_cmp_): Likewise.
10314 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
10315 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
10316 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
10317 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
10318 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
10319 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
10320 bitset_stats_or_and_cmp): Likewise.
10321 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
10322 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
10323 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
10324 ebitset_xor_cmp): Likewise.
10325 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
10326 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
10327 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
10328 lbitset_xor_cmp): Likewise.
10329 * lib/bbitset.h: Include <stdbool.h>.
10330 (struct bitset_vtable): The following members now return bool, not
10331 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
10332 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
10333 or_and_cmp).
10334 * src/conflicts.c (count_rr_conflicts): Likewise.
10335 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
10336 All uses changed.
10337 * lib/ebitset.c (ebitset_obstack_init): Likewise.
10338 * lib/lbitset.c (lbitset_obstack_init): Likewise.
10339 * src/getargs.c (debug_flag, defines_flag, locations_flag,
10340 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
10341 graph_flag): Likewise.
10342 * src/getargs.h (debug_flag, defines_flag, locations_flag,
10343 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
10344 graph_flag): Likewise.
10345 * src/output.c (error_verbose): Likewise.
10346 * src/output.h (error_verbose): Likewise.
10347 * src/reader.c (start_flag, typed): Likewise.
10348 * src/reader.h (typed): Likewise.
10349 * src/getargs.c (LOCATIONS_OPTION): New constant.
10350 (long_options, getargs): Use it.
10351 * src/lalr.c (build_relations): Use bool, not int.
10352 * src/nullable.c (nullable_compute): Likewise.
10353 * src/print.c (print_reductions): Likewise.
10354 * src/tables.c (action_row, pack_vector): Likewise.
10355 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
10356 * src/output.c (prepare): Use it.
10357 * src/output.c (token_definitions_output,
10358 symbol_destructors_output, symbol_destructors_output): Use string,
10359 not boolean integer, to keep track of whether to output separator.
10360 * src/print_graph.c (print_core): Likewise.
10361 * src/state.c (state_rule_lookaheads_print): Likewise.
10362
10363 * config/install-sh: Sync from automake 1.7.5.
10364
6b2584b7
PE
103652003-05-14 Paul Eggert <eggert@twinsun.com>
10366
10367 * src/parse-gram.y (rules_or_grammar_declaration): Require a
10368 semicolon after a grammar declaration, in the interest of possible
10369 future changes to the Bison input language.
10370 Do not allow a stray semicolon at the start of the grammar.
10371 (rhses.1): Allow one or more semicolons after any rule, including
10372 just before "|" as required by POSIX.
10373 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
10374 grammar.
10375
caf37a36
ADL
103762003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
10377
10378 %parse-param support for lalr1.cc.
10379
10380 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
10381 b4_cc_constructor_calls, b4_cc_constructor_call,
10382 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
10383 definitions.
10384 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
10385 parse-param arguments.
10386 (yy::b4_parser_class_name): Declare instance variables to
10387 hold parse-param arguments.
10388 * tests/calc.at: s/value/semantic_value/ because value clashes
10389 with a member of yy::b4_parser_class_name. Adjust C++ code
10390 to handle %parse-param. Enable %parse-param test in C++.
10391
3ab37077
PE
103922003-05-12 Paul Eggert <eggert@twinsun.com>
10393
10394 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
10395 English a bit. Fix fclose typo. Change "const char" to "char
10396 const", and use ANSI C rather than K&R for "main". Suggest
10397 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
10398 and suggest yy_switch_to_buffer.
10399
104002003-05-05 Paul Eggert <eggert@twinsun.com>
163ab321
PE
10401
10402 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
10403 C89. This avoids a diagnostic on compilers that define __STDC__
10404 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
161a71f3 10405 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
163ab321 10406
e743727f
PE
104072003-05-03 Paul Eggert <eggert@twinsun.com>
10408
10409 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
10410 Do not overrun array bounds.
10411 This should fix a bug reported today by Olatunji Oluwabukunmi in
161a71f3 10412 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
e743727f 10413
916708d5
AD
104142003-04-29 Akim Demaille <akim@epita.fr>
10415
10416 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
10417 * src/getargs.c, src/getargs.h: here, as bool, not int.
10418 (nondeterministic_parser): New.
10419 * src/parse-gram.y, src/scan-gram.l: Support
10420 %nondeterministic-parser.
10421 * src/output.c (prepare): Use nondeterministic_parser instead
10422 of glr_parser where appropriate.
10423 * src/tables.c (conflict_row, action_row, save_row)
10424 (token_actions, token_actions, pack_vector): Ditto.
10425
a06ea4aa
AD
104262003-04-29 Akim Demaille <akim@epita.fr>
10427
10428 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
10429
211074ca
AD
104302003-04-29 Akim Demaille <akim@epita.fr>
10431
10432 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
10433 with %pure-parser and %locations to exercise the patch from Yakov
10434 Markovitch below.
10435
6175ffe3
PE
104362003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
10437
10438 * data/yacc.c: (b4_lex_param): Corrected for the case where
10439 %lex-param is provided and %pure-parser isn't.
10440
b1e95857
PE
104412003-04-27 Paul Eggert <eggert@twinsun.com>
10442
10443 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
161a71f3 10444 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
b1e95857
PE
10445 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
10446 if it is not defined.
10447 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
10448
acda9df6
PE
104492003-04-26 Paul Eggert <eggert@twinsun.com>
10450
3470c57b
PE
10451 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
10452 Declare to be of type suitable for the ninf value itself, not of
10453 type suitable for the corresponding table, since the latter might
10454 be unsigned but the ninf value might be negative. This fixes a
10455 bug reported by Alexandre Duret-Lutz in
161a71f3 10456 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
3470c57b 10457
acda9df6
PE
10458 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
10459 invokes it. We shouldn't invoke it twice because it will attempt
10460 to put error.o in the archive twice. This fixes a glitch reported
10461 by Martin Mokrejs in
161a71f3 10462 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
acda9df6 10463
b5250f26
PE
104642003-04-21 Paul Eggert <eggert@twinsun.com>
10465
10466 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
10467 to gnulib.
10468
089ac0f1
PE
104692003-04-21 Yakov Markovitch <Markovitch@iso.ru>
10470
10471 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
10472 Fix obvious typo that results in uncompilable GLR parsers
10473 when both %pure-parser and %locations are used. (trivial change)
10474
5ededac6
PE
104752003-04-17 Paul Eggert <eggert@twinsun.com>
10476
1b8f2fff
PE
10477 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
10478 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
10479 Do not insert the expected token via unput, as this runs afoul
10480 of a POSIX-compatibility bug in flex 2.5.31.
10481 All uses changed to BEGIN the parent state,
10482 since we no longer insert the expected token via unput.
10483 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
10484 that is no longer emitted after the above change.
10485
5ededac6
PE
10486 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
10487 the first one. This change is from Paul Hilfinger, and it fixes
10488 regression reported by Werner Lemberg in
161a71f3 10489 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5ededac6
PE
10490
10491 (resolve_sr_conflict): Don't invoke state_errs_set
10492 unless one or more tokens have been explicitly made errors.
10493 Otherwise, the above change causes Bison to abort.
10494
10495 * tests/existing.at (GNU pic Grammar): New test case, taken from
10496 Lemberg's email.
10497
b8be9132
AD
104982003-03-31 Akim Demaille <akim@epita.fr>
10499
10500 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
10501
d423d460
AD
105022003-03-31 Akim Demaille <akim@epita.fr>
10503
10504 * src/output.c (prepare_symbols): Avoid trailing spaces in the
10505 output.
10506
c7e441b4
AD
105072003-03-31 Akim Demaille <akim@epita.fr>
10508
10509 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
10510 From Paul Hilfinger.
10511
231897ad
AD
105122003-03-29 Akim Demaille <akim@epita.fr>
10513
10514 * m4/error.m4: Do not put under dynamic conditions some code which
10515 expansion is under static control.
10516
5b066063
AD
105172003-03-29 Akim Demaille <akim@epita.fr>
10518
10519 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
10520
22a74fec
AD
105212003-03-29 Akim Demaille <akim@epita.fr>
10522
10523 * doc/bison.texinfo (Strings are Destroyed): New.
10524
0eee27e7
PE
105252003-03-13 Paul Eggert <eggert@twinsun.com>
10526
10527 * .cvsignore: Add configure.lineno.
10528 * src/.cvsignore: Add yacc.
10529 * tests/.cvsignore: Add testsuite.log.
10530 * doc/fdl.texi: Sync with latest FSF version.
10531
f61aad93
PE
105322003-03-12 Paul Eggert <eggert@twinsun.com>
10533
537636c7
PE
10534 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
10535 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
10536 cursor, instead of leaving it undefined. This fixes a bug
10537 reported by Tim Van Holder in
161a71f3 10538 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
537636c7
PE
10539 * tests/input.at (Torturing the Scanner): Test the scanner on
10540 an empty input file, which was Tim Van Holder's test case.
10541
10542 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
10543 <sys/resource.h> can be included, include sys/time.h and
10544 sys/times.h first, if available. This works around the SunOS
10545 4.1.4 porting bug reported by Bruce Becker in
161a71f3 10546 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
537636c7
PE
10547
10548 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
10549 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
10550 AC_HEADER_SYS_WAIT.
10551
f61aad93
PE
10552 Merge changes from gnulib. This was prompted because the CVS
10553 snapshot didn't build on Solaris 7 due to strnlen problems.
10554
10555 These changes need to be merged back into gnulib:
10556 * lib/hash.c: Include <stdbool.h> unconditionally.
10557 * m4/onceonly.m4 (m4_quote): New macro.
10558 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
10559 Quote AC_FOREACH variable-expansions properly.
10560 The 2003-01-03 obstack.h change also needs merging.
10561 {end of changes requiring merging}
5b066063 10562
f61aad93
PE
10563 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
10564 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
10565 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
10566 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
10567 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
10568 New files, imported from gnulib.
10569 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
10570 above.
10571
10572 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
10573 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
10574 gnulib sources.
10575
10576 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
10577 Add.
10578 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
10579 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
10580 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
10581 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
10582 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
10583 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
10584 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
10585 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
10586 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
10587 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
10588 (jm_PREREQ_ARGMATCH): Remove.
10589 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
10590 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
10591
10592 * src/system.h: Include <stdbool.h> unconditionally.
10593
10594 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
10595 assuming at least C89 in the bitset code for some time now.
10596
d2ffe116
AD
105972003-03-03 Akim Demaille <akim@epita.fr>
10598
10599 * ro.po: New.
10600
052826fd
AD
106012003-03-02 Akim Demaille <akim@epita.fr>
10602
10603 * doc/bison.texinfo (Table of Symbols): Reactivate the
10604 documentation for %lex-param, and %parse-param.
10605
c4749565
AD
106062003-03-02 Akim Demaille <akim@epita.fr>
10607
10608 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
10609 generate verbose error messages.
10610 Use the number of tokens as an upper bound in yytname, as it
10611 cannot be a non terminal.
10612
d5286af1
AD
106132003-03-02 Akim Demaille <akim@epita.fr>
10614
10615 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
10616 message.
10617
22e304a6
AD
106182003-03-02 Akim Demaille <akim@epita.fr>
10619
22e304a6
AD
10620 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
10621 Use them to exercise yycheck overrun.
10622 Based on Andrew Suffield's grammar.
10623
67a25fed
AD
106242003-03-02 Akim Demaille <akim@epita.fr>
10625
10626 Create tests/local.at for Bison generic testing macros.
10627
10628 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
10629 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
10630 This new file.
10631 * tests/calc.at (AT_CHECK_CALC): Adjust.
10632 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
10633 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
10634 * tests/local.at: here.
10635 (AT_COMPILE_CXX): Tags the tests using it as c++.
10636 Ignore the test if CXX is not functional.
10637
9c2b381f
PE
106382003-03-01 Paul Eggert <eggert@twinsun.com>
10639
10640 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
10641 not loc->end, since loc->end might contain garbage and this leads
10642 to undefined behavior on some platforms.
10643 (id_loc, token_start): Use (IF_LINTed) initial values that do not
10644 depend on *loc, so that the reader doesn't give the the false
10645 impression that *loc is initialized.
10646 (<INITIAL>"%%"): Do not bother setting code_start, since its value
10647 does not survive the return.
10648
0433ba88
AD
106492003-03-01 Akim Demaille <akim@epita.fr>
10650
10651 * src/scan-gram.l (code_start): Always initialize it when entering
10652 into yylex, as SC_EPILOGUE is activated *before* the corresponding
10653 yylex invocation. An alternative would be making it static, but
10654 then it starts with the second %%'s beginning, instead of its end.
10655
b305ea69
PE
106562003-02-28 Paul Eggert <eggert@twinsun.com>
10657
10658 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
10659 around a UnixWare 7.1.1 porting bug reported by John Hughes in
161a71f3 10660 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
b305ea69 10661
c3d25e01
PE
106622003-02-26 Paul Eggert <eggert@twinsun.com>
10663
10664 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
10665 Remove Sequent/Pyramid discussion (nobody uses them any more).
10666 Merge VMS and MS-DOS discussion; these ports may well be dead
10667 but let's keep mentioning them for now. Put <> around email
10668 addresses. Add copyright notice.
10669
c267ffbc
PE
106702003-02-24 Paul Eggert <eggert@twinsun.com>
10671
10672 * data/glr.c (yy_reduce_print): yylineno -> yylno,
10673 to avoid collision with flex use of yylineno.
10674 Problem reported by Bruce Lilly in
161a71f3 10675 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
c267ffbc
PE
10676 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
10677 * data/yacc.c (yy_reduce_print): Likewise.
10678
10679 * config/depcomp: Sync with Automake 1.7.3.
10680
f939fc12
AD
106812003-02-21 Akim Demaille <akim@epita.fr>
10682
10683 * data/lalr1.cc: Use temporary variables instead of casts to
10684 change integer types.
10685 Suggested by Paul Eggert.
10686
95923bd6
AD
106872003-02-21 Akim Demaille <akim@epita.fr>
10688
10689 * doc/bison.texinfo: Use "location" consistently to refer to @n,
10690 to avoid confusions with lalr1.cc's notion of Position.
10691 Suggested by Paul Eggert.
10692
2cdc240e
AD
106932003-02-20 Akim Demaille <akim@epita.fr>
10694
10695 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
10696 before initial_columns.
10697 (location.hh): Use consistent variable names when defining the
10698 operator<<.
10699 Use "last" so that we subtract from Positions, not from unsigned.
10700
5d003116
AD
107012003-02-20 Akim Demaille <akim@epita.fr>
10702
10703 * data/lalr1.cc (position.hh): New subfile, including the extended
10704 and Doxygen'ed documentation of class Position.
10705 (location.hh): Use it.
10706 Document a` la Doxygen.
ba1ecc07 10707 With the help of Benoit Perrot.
5d003116 10708
d02b25f9
AD
107092003-02-20 Akim Demaille <akim@epita.fr>
10710
10711 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
10712 AT_YACC_IF.
10713 Redefine AT_YYERROR_SEES_LOC_IF using it.
10714 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
10715 not defined.
10716 Don't use the location in yy::Parser::error_ and
10717 yy::Parser::print_ when not %locations.
10718 Activate more lalr1.cc tests.
10719
0d1c3a04
AD
107202003-02-19 Akim Demaille <akim@epita.fr>
10721
10722 * data/lalr1.cc: When displaying a line number, be sure to make it
10723 an int.
10724
60a777aa
AD
107252003-02-19 Akim Demaille <akim@epita.fr>
10726
10727 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
10728 Remove, useless.
10729 (YYABORT, YYACCEPT, YYERROR): New.
10730 * tests/calc.at: Renable the lalr1.cc test.
10731
0b86fc41
AD
107322003-02-19 Akim Demaille <akim@epita.fr>
10733
10734 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
10735 error recovery, mixing with/without pops and discarding of the
10736 lookahead.
10737 Exercise YYERROR.
10738 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
10739
da99a5dc
PE
107402003-02-17 Paul Eggert <eggert@twinsun.com>
10741
10742 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
10743 * tests/testsuite.at (AT_COMPILE): Use them.
10744 This fixes the testsuite problem reported by Robert Lentz in
161a71f3 10745 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
da99a5dc 10746
93b8c255
PE
107472003-02-12 Paul Eggert <eggert@twinsun.com>
10748
10749 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
10750 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
161a71f3 10751 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
93b8c255
PE
10752 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
10753 Check for malloc failure, for consistency with yacc.c.
10754 (yytname_size): Remove, for consistency with yacc.c.
10755
10756 The bug still remains in data/lalr1.cc, as I didn't have time
10757 to fix it there.
10758
7548fed2
AD
107592003-02-06 Akim Demaille <akim@epita.fr>
10760
10761 * configure.ac (GXX): Rename as...
10762 (CXX): this, to keep the original Autoconf semantics.
10763 Require 2.57.
10764 * data/lalr1.cc: Fix b4_copyright invocations.
10765 If YYDEBUG is not defined, don't depend upon name_ being defined.
10766 (location.hh): Include string and iostream.
10767 (Position::filename): New member.
10768 (Position::Position ()): New.
10769 (operator<< (Position)): New.
10770 (operator- (Position, int)): New.
10771 (Location::first, Location::last): Rename as...
10772 (Location::begin, Location::end): these, to mock the conventional
10773 iterator names.
10774 (operator<< (Location)): New.
10775 * tests/atlocal.in (CXX): New.
10776 * tests/testsuite.at (AT_COMPILE_CXX): New.
10777 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
10778 locations in a more synthetic way.
10779 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
10780 lalr1.cc is used.
10781 Adjust the C locations to match those from Emacs: first column is
10782 column 0.
10783 Change all the expected results.
10784 Conform to the GCS: simplify the locations when applicable.
10785 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
10786 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
10787 these CPP macros with the m4 macros new defined by...
10788 (AT_CHECK_PUSHDEFS): this, i.e.:
10789 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
d02b25f9 10790 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
7548fed2
AD
10791 New macros.
10792 (AT_CHECK_POPDEFS): Undefine them.
10793 (AT_CHECK_CALC_LALR1_CC): New.
10794 Use it for the first lalr1.cc test.
10795
43a176ef
AD
107962003-02-04 Akim Demaille <akim@epita.fr>
10797
10798 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
10799 Location as is defined.
10800
fc049e9c
AD
108012003-02-04 Akim Demaille <akim@epita.fr>
10802
10803 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
10804 name_ being defined.
10805
a737b216
PE
108062003-02-03 Paul Eggert <eggert@twinsun.com>
10807
10808 * src/gram.h (start_symbol): Remove unused decl.
10809
10810 Use more-consistent naming conventions for local vars.
10811
10812 * src/derives.c (derives_compute): Change type of local var from
10813 int to rule_number.
10814 * src/gram.c (grammar_rules_partial_print): Likewise.
10815 * src/print.c (print_core): Likewise.
10816 * src/reduce.c (reduce_grammar_tables): Likewise.
10817
10818 * src/gram.c (grammar_dump): Change name of item_number *
10819 local var from r to rp.
10820 * src/nullable.c (nullable_compute): Likewise.
10821
10822 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
10823
10824 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
10825 for symbol or symbol_number var.
10826 * src/reader.c (grammar_start_symbol_set): Likewise.
10827 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
10828 Likewise.
10829 * src/state.c (transitions_to): Likewise.
10830 * src/state.h: Likewise.
10831 * src/tables.c (symbol_number_to_vector_number): Likewise.
10832
10833 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
10834 char * var.
10835
10836 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
10837 var.
10838
10839 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
10840 var.
10841
10842 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
10843 Use str, not s, for char * var. Use ch, not c, for character var.
10844 Use size for size var.
10845
10846 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
10847 char * var.
10848 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
10849 uniqstr var.
10850 * src/uniqstr.h: Likewise.
10851
10852 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
10853 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
10854 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
10855 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
10856 param to have same name as that of enum, so that we don't use
10857 "s" to stand for a non-state.
10858
68e93ad5
AD
108592003-02-02 Akim Demaille <akim@epita.fr>
10860
10861 * src/scan-skel.l: Scan more than one inert character per yylex
10862 invocation.
10863
92898986
PE
108642003-02-01 Paul Eggert <eggert@twinsun.com>
10865
10866 Version 1.875a.
10867
1d9d5d71
PE
10868 * po/LINGUAS: Add ms.
10869
0435d061
AD
108702003-01-30 Akim Demaille <akim@epita.fr>
10871
10872 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
10873
6029a57f
PH
108742003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10875
10876 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
10877 of $1.
0435d061
AD
10878
10879 Changes in response to error report by S. Eken: GLR mode does not
6029a57f 10880 handle negative $ indices or $ indices in embedded rules correctly.
161a71f3 10881 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
0435d061 10882
6029a57f
PH
10883 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
10884 (b4_rhs_location): Ditto.
0435d061 10885 (yyfill): New function to copy from stack tree into array
6029a57f 10886 incrementally.
0435d061
AD
10887 (yyuserAction): Modify to allow incremental move of semantic values
10888 to rhs array when in GLR mode.
10889 Define YYFILL to use in user-defined actions to fill semantic array
6029a57f
PH
10890 as needed.
10891 Remove dummy use of yystack, as there is now a guaranteed use.
10892 (yydoAction): Modify to allow incremental move of semantic values
10893 to rhs array when in GLR mode.
10894 (yyresolveAction): Ditto.
10895 (yyglrShiftDefer): Update comment.
0435d061 10896 (yyresolveStates): Use X == NULL for pointers, not !X.
6029a57f
PH
10897 (yyglrReduce): Ditto.
10898 (yydoAction): Ditto
0435d061 10899
6029a57f
PH
10900 * tests/glr-regr1.at: Rename to ...
10901 * tests/glr-regression.at: Add new regression test for the problems
10902 described above (adapted from S. Eken).
10903 Update copyright notice.
10904 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
10905 * tests/Makefile.am: Ditto.
10906
6cee6297
PE
109072003-01-28 Paul Eggert <eggert@twinsun.com>
10908
10909 * data/lalr1.cc: Do not use @output_header_name@ unless
10910 b4_defines_flag is set. This fixes two bugs reported by
10911 Tim Van Holder in
161a71f3
PE
10912 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
10913 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6cee6297 10914
b2a836b5
PE
109152003-01-21 Paul Eggert <eggert@twinsun.com>
10916
10917 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
10918 we don't need to worry about yyerrlab1 being reported as an
10919 "unused label" by non-GCC C compilers. The downside is that if
10920 locations are used then a couple of statements are duplicated each
10921 time YYERROR is invoked, but the upside is that the warnings
10922 should vanish.
10923 (yyerrlab1): Move code to YERROR.
10924 (yyerrlab2): Remove. Change uses back to yyerrlab1.
10925 This reverts some of the 2002-12-27 change.
10926
4196b931
PE
109272003-01-17 Paul Eggert <eggert@twinsun.com>
10928
10929 * src/output.c (symbol_printers_output): Fix typo that led
10930 to core dump. Problem reported by Antonio Rus in
161a71f3 10931 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
4196b931 10932
3ae831b4
AD
109332003-01-13 Akim Demaille <akim@epita.fr>,
10934 Quoc Peyrot <chojin@lrde.epita.fr>,
10935 Robert Anisko <anisko_r@lrde.epita.fr>
10936
10937 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
10938 when the stacks contain one element, as the loop would otherwise
10939 free the last state, and then use the top state (the one we just
10940 popped). This means that the initial elements will not be freed
10941 explicitly, as is the case in yacc.c; it is not a problem, as
10942 these elements have fake values.
10943
e3aa65c5
PE
109442003-01-11 Paul Eggert <eggert@twinsun.com>
10945
10946 * NEWS: %expect-violations are now just warnings, reverting
10947 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
10948 bootstrapping problem reported by Matthias Klose; see
161a71f3 10949 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
e3aa65c5
PE
10950 * src/conflicts.c (conflicts_print): Likewise.
10951 * tests/conflicts.at (%expect not enough, %expect too much,
10952 %expect with reduce conflicts): Likewise.
10953 * doc/bison.texinfo (Expect Decl): Document this. Also mention
10954 that the warning is enabled if the number of conflicts changes
10955 (not necessarily increases).
10956
10957 * src/getargs.c (version): Update copyright year.
10958
f0057011
AD
109592003-01-09 Akim Demaille <akim@epita.fr>
10960
10961 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
10962
1ee6d2a0
PE
109632003-01-08 Paul Eggert <eggert@twinsun.com>
10964
10965 * Makefile.maint (WGETFLAGS):
10966 New macro, containing "-C off" to disable proxy caches.
10967 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
10968 (rel-check): Use $(WGET) instead of wget.
10969
d4fd77c4
PE
109702003-01-06 Paul Eggert <eggert@twinsun.com>
10971
10972 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
10973 the GLR paper of Scott, Johnstone and Hussain.
10974
464c6927
PE
109752003-01-04 Paul Eggert <eggert@twinsun.com>
10976
d600ee67
PE
10977 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
10978 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
10979 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
10980 (EXTRA_LIBRARIES): New var, for liby.a.
10981 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
10982 (EXTRA_SCRIPTS): New var, for yacc.
10983
464c6927
PE
10984 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
10985 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
10986 Problem reported by Nelson H. F. Beebe.
10987
109882003-01-03 Paul Eggert <eggert@twinsun.com>
10989
10990 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
10991 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
10992 when compiling Bison 1.875's `bitset bset = obstack_alloc
10993 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
10994
10995 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
10996 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
10997 grow to a huge size with typical invocation.
d600ee67 10998
464c6927
PE
10999 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
11000 Use the pattern recommended by Autoconf 2.57, except also protect
11001 against double-definition.
11002 * src/system.h: Likewise.
11003 Portability issues reported by Nelson H. F. Beebe.
d600ee67 11004
464c6927
PE
11005 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
11006 All uses changed. Provide a definition in both C and C++.
11007 (yytrue, yyfalse): Define even if defined (__cplusplus).
11008
11009 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
11010 Reported by Nelson H. F. Beebe.
d600ee67 11011
464c6927
PE
11012 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
11013
0f42c7d5
PE
110142003-01-02 Paul Eggert <eggert@twinsun.com>
11015
11016 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
11017 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
11018 Bug reported by Nelson H. F. Beebe.
11019
dc546b0f
PE
110202003-01-01 Paul Eggert <eggert@twinsun.com>
11021
11022 * Version 1.875.
11023
2c09b6a7
PE
110242002-12-30 Paul Eggert <eggert@twinsun.com>
11025
11026 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
11027 Moved here from...
11028 (<INITIAL>","): Here. This causes stray "," to be treated
11029 more uniformly.
11030
dc546b0f 11031 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
2c09b6a7
PE
11032 last brace in braced code when not in Yacc mode, for compatibility
11033 with Bison 1.35. This resurrects the 2001-12-15 patch to
11034 src/reader.c.
11035
11036 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
11037 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
11038
535c0f63
PE
110392002-12-28 Paul Eggert <eggert@twinsun.com>
11040
11041 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
11042 that of SYM's type. This fixes Debian bug 168069, reported by
11043 Thomas Olsson.
d600ee67 11044
963fcc17
PE
110452002-12-28 Paul Eggert <eggert@twinsun.com>
11046
11047 Version 1.75f.
11048
11049 Switch back to the Yacc style of conflict reports, undoing some
11050 of the 2002-07-30 change.
11051 * doc/bison.texinfo (Understanding): Use Yacc style for
11052 conflict reports. Also, use new way of locating rules.
11053 * src/conflicts.c (conflict_report):
11054 Renamed from conflict_report_yacc, removing the old
11055 'conflict_report'. Translate the entire conflict report at once,
11056 so that we don't assume that "," has the same interpretation in
11057 all languages.
11058 (conflicts_output): Use Yacc-style conflict report for each state,
11059 instead of our more-complicated style.
11060 (conflicts_print): Use Yacc-style conflict report, except print
11061 the input file name when not emulating Yacc.
11062 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
11063 Conflicted Reduction, %expect not enough, %expect too much,
11064 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
11065 * tests/existing.at (GNU Cim Grammar): Likewise.
11066 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
11067
11068 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
11069 fatal): Don't invoke fflush; it's not needed and it might even be
11070 harmful for stdout, as stdout might not be open.
11071 * src/reduce.c (reduce_print): Likewise.
11072
b1efe548
PE
110732002-12-27 Paul Eggert <eggert@twinsun.com>
11074
11075 Fix a bug where error locations were not being recorded correctly.
11076 This problem was originally reported by Paul Hilfinger in
161a71f3 11077 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
b1efe548
PE
11078
11079 * data/yacc.c (yyparse): New local var yylerrsp, to record the
11080 top of the location stack's error locations.
11081 (yyerrlab): Set it. When discarding a token, push its location
11082 onto yylerrsp so that we don't lose track of the error's end.
11083 (yyerrlab1): Now is only the target of YYERROR, so that we can
11084 properly record the location of the action that failed. For GCC
11085 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
11086 GCC warning about yyerrlab1 being unused if YYERROR is unused.
11087 (yyerrlab2): New label, which yyerrlab now falls through to.
11088 Compute the error's location by applying YYLLOC_DEFAULT to
11089 the locations of all the symbols that went into the error.
11090 * doc/bison.texinfo (Location Default Action): Mention that
11091 YYLLOC_DEFAULT is also invoked for syntax errors.
11092 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11093 Error locations include the locations of all the tokens that were
11094 discarded, not just the last token.
d600ee67 11095
983c5c2c
PE
110962002-12-26 Paul Eggert <eggert@twinsun.com>
11097
b1efe548
PE
11098 * src/files.c: Include quote.h.
11099 (compute_output_file_names): Warn if we detect conflicting
11100 outputs to the same file. This should catch the misunderstanding
11101 exemplified by Debian Bug 165349, reported by Bruce Stephens..
11102
11103 * src/conflicts.c (conflicts_print): If the user specifies
11104 "%expect N", report an error if there are any reduce/reduce
11105 conflicts. This is what the manual says should happen.
11106 This fixes Debian bug 130890, reported by Anthony DeRobertis.
11107 * tests/conflicts.at (%expect with reduce conflicts): New test.
11108
983c5c2c
PE
11109 Don't use m4_include on relative file names, as it doesn't work as
11110 desired if there happens to be a file with that name under ".".
d600ee67 11111
983c5c2c
PE
11112 * m4sugar/version.m4: Remove; it was included but it wasn't used.
11113 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
11114 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
11115 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
11116 * src/output.c (output_skeleton): Use full path names when
11117 specifying a file to include; don't rely on include path, as
11118 it's unreliable when the working file contains a file with
11119 that name.
d600ee67 11120
983c5c2c
PE
111212002-12-25 Paul Eggert <eggert@twinsun.com>
11122
11123 Remove obsolete references to bison.simple and bison.hairy.
11124 Problem mentioned by Aubin Mahe in
161a71f3 11125 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
983c5c2c
PE
11126 * data/glr.c: Comment fix.
11127 * doc/bison.1: Remove references. Also, mention "yacc".
11128
11129 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
11130 with -g option.
11131
11132 * src/parse-gram.y (declaration): Use enum "report_states" rather
11133 than its numeric value 1.
11134
11135 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
11136 opening a new one. This fixes Debian bug 165349, reported by
11137 Bruce Stephens.
11138
23f2d9dc
PE
111392002-12-24 Paul Eggert <eggert@twinsun.com>
11140
11141 Version 1.75e.
11142
11143 * Makefile.maint (cvs-update): Don't assume that the shell
11144 supports $(...), as Solaris sh doesn't.
11145
11146 * src/parse-gram.y (lloc_default): Remove test for empty
11147 nonterminals at the end, since it didn't change the result.
11148
111492002-12-24 Paul Eggert <eggert@twinsun.com>
33167b8b
PE
11150
11151 If the user does not define YYSTYPE as a macro, Bison now declares it
11152 using typedef instead of defining it as a macro. POSIX requires this.
11153 For consistency, YYLTYPE is also declared instead of defined.
11154
11155 %union directives can now have a tag before the `{', e.g., the
11156 directive `%union foo {...}' now generates the C code
11157 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
11158 The default union tag is `YYSTYPE', for compatibility with Solaris 9
11159 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
11160 instead of `yyltype'.
11161
11162 `yystype' and `yyltype' are now obsolescent macros instead of being
11163 typedefs or tags; they are no longer documented and will be
11164 withdrawn in a future release.
11165
11166 * data/glr.c (b4_location_type): Remove.
11167 (YYSTYPE): Renamed from yystype.
11168 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
11169 (struct YYLTYPE): Renamed from struct yyltype.
11170 (YYLTYPE): Renamed from yyltype.
11171 (yyltype, yystype): New (and obsolescent) macros,
11172 for backward compatibility.
11173 * data/yacc.c: Likewise.
11174
11175 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
11176 does not specify a union tag. This is for compatibility with
11177 Solaris 9 yacc.
11178
11179 * src/parse-gram.y (add_param): 2nd arg is now char * not char
11180 const *, since it is now modified by stripping surrounding { }.
11181 (current_braced_code): Remove.
11182 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
11183 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
11184 trailing " {...}". Now of type <chars>.
11185 (grammar_declaration): Adjust to bundled tokens.
11186 (code_content): Remove; stripping is now done by add_param.
11187 (print_token_value): Print contents of bundled tokens.
11188 (token_name): New function.
11189
11190 * src/reader.h (braced_code, current_braced_code): Remove.
11191 (token_name): New decl.
11192
11193 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
11194 token_type, not braced_code code_kind. All uses changed.
11195 (SC_PRE_CODE): New state, for scanning after a keyword that
11196 has (or usually has) an immediately-following braced code.
11197 (token_type): New local var, to keep track of which token type
11198 to return when scanning braced code.
11199 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
dc546b0f 11200 <INITIAL>"%parse-param", <INITIAL>"%printer",
33167b8b
PE
11201 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
11202 instead of returning a token type immediately.
11203 (<INITIAL>"{"): Set token type.
11204 (<SC_BRACED_CODE>"}"): Use it.
11205 (handle_action_dollar, handle_action_at): Now returns bool
11206 indicating success. Fail if ! current_rule; this prevents a core dump.
11207 (handle_symbol_code_dollar, handle_symbol_code_at):
11208 Remove; merge body into caller.
11209 (handle_dollar, handle_at): Complain in invalid contexts.
11210
11211 * NEWS, doc/bison.texinfo: Document the above.
11212 * NEWS: Fix years and program names in copyright notice.
11213
879ca4f8
PE
112142002-12-17 Paul Eggert <eggert@twinsun.com>
11215
11216 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
11217 Reporting, Table of Symbols): Omit mentions of %lex-param and
11218 %parse-param from the documentation for now.
11219
1c5fe69d
PE
112202002-12-15 Paul Eggert <eggert@twinsun.com>
11221
11222 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
11223 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
11224 lookahead symbol, and which sets yychar in parser actions) and it
7ea9026a
PE
11225 disagreed with the Bison documentation. Bug
11226 reported by Andrew Walrond.
d600ee67 11227
1c5fe69d
PE
11228 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
11229 as the caller now does that.
11230 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
11231 (YYEMPTY): Parenthesize right hand side, since others use it.
11232 (yyparse): Don't assume that our generated code is the only code
11233 that sets yychar.
11234
d1de5372
PE
112352002-12-13 Paul Eggert <eggert@twinsun.com>
11236
11237 Version 1.75d.
11238
11239 POSIX requires a "yacc" command.
11240 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
11241 (MOSTLYCLEANFILES): Add yacc.
11242 (yacc): New rule.
1c5fe69d 11243 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
d1de5372
PE
11244 as an alias for bison y.
11245
11246 * po/LINGUAS: Add da.
d600ee67 11247
d1de5372
PE
11248 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
11249 problem with latest <getopt.h>.
11250 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
11251
11252 * doc/fdl.texi: Upgrade to 1.2.
11253 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
11254 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
11255 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
11256 gnulib.
11257 * config/install-sh: Sync with autotools.
11258
11259 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
161a71f3 11260 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
d1de5372
PE
11261 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
11262 locations are requested.
11263 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
11264 locations are requested.
11265
d0f3fe23
PE
112662002-12-12 Paul Eggert <eggert@twinsun.com>
11267
11268 Remove unportable casts and storage allocation tricks.
11269 While we're at it, remove almost all casts, since they
11270 usually aren't needed and are a sign of trouble.
11271
11272 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
11273
11274 * src/derives.c (derives_compute): Do not subtract NTOKENS from
11275 the pointer DSET returned by malloc; this isn't portable.
11276 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
11277 Similarly for DERIVES.
11278 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
11279 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
11280 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
11281
11282 * src/derives.c (derives_compute): Do not bother invoking
11283 int_of_rule_number, since rule numbers are integers.
11284
11285 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
11286 rather than XMALLOC (char, N).
11287
11288 * src/files.c (filename_split): Rewrite to avoid cast.
11289
11290 * src/gram.h (symbol_number_as_item_number,
11291 item_number_as_symbol_number, rule_number_as_item_number,
11292 item_number_as_rule_number):
11293 Now inline functions rather than macros, to avoid casts.
11294 * src/state.h (state_number_as_int): Likewise.
11295 * src/tables.c (state_number_to_vector_number,
11296 symbol_number_to_vector_number): Likewise.
11297
11298 * src/gram.h (int_of_rule_number): Remove; no longer used.
11299
11300 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
11301 since the resulting storage is always stored into.
11302
11303 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
11304 where it's needed.
11305
11306 * src/muscle_tab.c (muscle_m4_output):
11307 Now inline. Return bool, not int.
11308 * src/state.c (state_compare): Likewise.
11309 * src/symtab.c (symbol_check_defined,
11310 symbol_check_alias_consistency, symbol_pack, symbol_translation,
11311 hash_compare_symbol, hash_symbol):
11312 Likewise.
11313 * src/uniqstr.c (uniqstr_print): Likewise.
11314 * src/muscle_tab.c (muscle_m4_output_processor):
11315 New function, to avoid casts.
11316 * src/state.c (state_comparator, stage_hasher): Likewise.
11317 * src/symtab.c (symbol_check_defined_processor,
11318 symbol_check_alias_consistency_processor, symbol_pack_processor,
11319 symbol_translation_processor, hash_symbol_comparator,
11320 hash_symbol_hasher): Likewise.
11321 * src/uniqstr.c (uniqstr_print_processor): Likewise.
11322 * src/muscle_tab.c (muscles_m4_output):
11323 Use new functions instead of casting old functions unportably.
11324 * src/state.c (state_hash_new): Likewise.
11325 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
11326 symbols_token_translations_init):
11327 Likewise.
11328 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
11329
11330 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
11331 var instead of casting to long, to avoid casts.
11332 (prepare_states): Use MALLOC rather than alloca, so that we don't
11333 have to worry about alloca.
11334 * src/state.c (state_hash_lookup): Likewise.
11335
11336 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
11337 local var instead of casting to unsigned char, to avoid casts.
11338
11339 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
11340 STATE_ALLOC): Remove.
11341 (transitions_new, errs_new, reductions_new, state_new): Use malloc
11342 rather than calloc, and use offsetof to avoid allocating slightly
11343 too much storage.
11344 (state_new): Initialize all members.
11345
11346 * src/state.c (state_hash): Use unsigned accumulator, not signed.
11347
11348 * src/symtab.c (symbol_free): Remove; unused.
11349 (symbol_get): Remove cast in lhs of assignment.
11350 (symbols_do): Now static. Accept generic arguments, not
11351 hashing-related ones.
11352
11353 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
11354 (symbol_processor): Remove.
11355 (symbols_do): Remove decl; now static.
11356
11357 * src/system.h (alloca): Remove; decl no longer needed.
11358 (<stddef.h>): Include, for offsetof.
11359 (<inttypes.>, <stdint.h>): Include if available.
11360 (uintptr_t): New type, if system lacks it.
11361 (CALLOC, MALLOC, REALLOC): New macros.
11362 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
11363 new macros.
11364
11365 * src/tables.c (table_size): Now int, to pacify GCC.
11366 (table_grow, table_ninf_remap): Use signed table size.
11367 (save_row): Don't bother initializing locals when not needed.
11368 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
11369 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
11370
11371 * src/vcg.h: Correct misspellings.
11372
11373 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
11374
11375
11376 * src/getargs.c (getargs): Don't assume EOF == -1.
11377
26b4a969
PE
113782002-12-09 Paul Eggert <eggert@twinsun.com>
11379
11380 Change identifier spellings to avoid collisions with names
11381 that are reserved by POSIX.
11382
11383 Don't use names ending in _t, since POSIX reserves them.
11384 For consistency, remove _e and _s endings -- they're weren't
11385 needed to remove ambiguity. All uses changed.
11386 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
11387 turn was just renamed from struniq_t.
11388 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
11389 which in turn was just renamed from struniq_processor_t.
11390 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
11391 in turn was renamed from hash_compare_struniq_t.
11392 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
11393 (state_list): Renamed from state_list_t.
11394 * src/assoc.h (assoc): Renamed from assoc_t.
11395 * src/conflicts.c (enum conflict_resolution): Renamed from
11396 enum conflict_resolution_e.
11397 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
11398 (rule_list): Renamed from rule_list_t.
11399 * src/getargs.h (enum trace): Renamed from enum trace_e.
11400 (enum report): Renamed from enum report_e.
11401 * src/gram.h (item_number): Renamed from item_number_t.
11402 (rule_number): Renamed from rule_number_t.
11403 (struct rule_s): Remove the "rule_s" part; not used.
11404 (rule): Renamed from rule_t.
11405 (rule_filter): Renamed from rule_filter_t.
11406 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
11407 (goto_list): Renamed from goto_list_t.
11408 * src/lalr.h (goto_number): Renamed from goto_number_t.
11409 * src/location.h (location): Renamed from location_t.
11410 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
11411 and moved here from:
11412 * src/muscle_tab.h (muscle_entry_t): here.
11413 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
11414 (rule_list): Renamed from rule_list_t.
11415 * src/print_graph.c (static_graph): Renamed from graph.
11416 * src/reader.h (braced_code): Renamed from braced_code_t.
11417 Remove brace_code_e tag.
11418 * src/relation.h (relation_node): Renamed from relation_node_t.
11419 (relation_nodes): Renamed from relation_nodes_t.
11420 (relation): Renamed from relation_t.
11421 * src/state.h (state_number): Renamed from state_number_t.
11422 (struct state): Renamed from struct state_s.
11423 (state): Renamed from state_t.
11424 (transitions): Renamed from transitions_t. Unused (and
11425 misspelled) transtion_s tag removed.
11426 (errs): Renamed from errs_t. Unused errs_s tag removed.
11427 (reductions): Renamed from reductions_t. Unused tag
11428 reductions_s removed.
11429 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
11430 (struct symbol_list): Renamed from struct symbol_list_s.
11431 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
11432 (struct symbol): Renamed from struct symbol_s.
11433 (symbol): Renamed from symbol_t.
11434 * src/tables.c (vector_number): Renamed from vector_number_t.
11435 (action_number): Renamed from action_t.
11436 * src/tables.h (base_number): Renamed from base_t.
11437 * src/vcg.h (enum color): Renamed from enum color_e.
11438 (enum textmode): Renamed from enum textmode_e.
11439 (enum shape): Renamed from enum shape_e.
11440 (struct colorentry): Renamed from struct colorentry_s.
11441 (struct classname): Renamed from struct classname_s.
11442 (struct infoname): Renamed from struct infoname_s.
11443 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
11444 (enum decision): Renamed from enum decision_e.
11445 (enum orientation): Renamed from enum orientation_e.
11446 (enum alignment): Renamed from enum alignment_e.
11447 (enum arrow_mode): Renamed from enum arrow_mode_e.
11448 (enum crossing_type): Renamed from enum crossing_type_e.
11449 (enum view): Renamed from enum view_e.
11450 (struct node): Renamed from struct node_s.
11451 (node): Renamed from node_t.
11452 (enum linestyle): Renamed from enum linestyle_e.
11453 (enum arrowstyle): Renamed from enum arrowstyle_e.
11454 (struct edge): Renamed from struct edge.
11455 (edge): Renamed from edge_t.
11456 (struct graph): Renamed from struct graph_s.
11457 (graph): Renamed from graph_t.
11458 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
11459 Rename value_t -> value.
11460 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
11461 value_t_as_yystype -> value_as_yystype.
11462
11463 Don't include <errno.h> in the mainstream code, since it
11464 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
11465 * lib/get-errno.c, lib/get-errno.h: New files.
11466 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
11467 get-errno.c.
11468 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
11469 * src/output.c (output_skeleton): Likewise.
11470 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
11471 instead of errno.
11472 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
11473 Likewise.
11474 (handle_action_dollar, handle_action_at): Likewise.
11475 * src/system.h: Do not include <errno.h>.
11476 (TAB_EXT): Renamed from EXT_TAB.
11477 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
11478
11479 Avoid str[a-z]*, since <string.h> reserves that name space.
11480 Change all instances of "struniq" in names to "uniqstr", and
11481 likewise for "STRUNIQ" and "UNIQSTR".
11482 * src/uniqstr.c: Renamed from src/struniq.c.
11483 * src/uniqstr.h: Renamed from src/struniq.h.
11484 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
11485 * src/files.c (strsuffix): Remove; unused.
11486 (concat2): Renamed from stringappend. Now static.
11487 * src/files.h (strsuffix, stringappend): Remove; unused.
11488 * src/parse-gram.y (<chars>): Renamed from <string>.
11489 (<uniqstr>): Renamed from <struniq>.
11490 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
11491 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
11492 (struct graph_s.expand): Renamed from struct graph_s.stretch.
11493 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
11494 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
11495 (N_EXPAND): Renamed from N_STRETCH.
11496
11497 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
11498 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
11499 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
11500 Remove; unused.
11501 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
11502 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
11503 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
11504 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
11505 (BASE_MAXIMUM): Renamed from BASE_MAX.
11506 (BASE_MINIMUM): Renamed from BASE_MIN.
11507 (ACTION_MAX): Remove; unused.
11508 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
11509 Unnecessary casts removed from above defines.
11510
11511
11512 Fix misspelling in names.
11513 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
11514 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
11515 G_NODE_ALIGNEMENT.
11516
11517
11518 * lib/timevar.c (timevar_report): Renamed from time_report,
11519 for consistency with other names.
11520 * lib/timevar.h (timevar_report): New decl.
11521 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
11522
11523
11524 Sort include-file uses.
11525
11526 Reorder all include files under src to be in the order "system.h".
11527 then the ../lib include files in angle brackets (alphabetized),
11528 then the . include files in double-quotes (alphabetized). Fix
11529 dependency breakages encountered in this process, as follows:
11530 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
11531 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
11532 * src/state.h: Include "symtab.h".
11533
996b1c7e
PE
115342002-12-08 Paul Eggert <eggert@twinsun.com>
11535
11536 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
11537 since this causes problems when __file__ contains character
11538 sequences like "@" that are treated specially by src/scan-skel.l.
11539 Instead, just use the file's basename. This fixes the bug
11540 reported by Martin Mokrejs in
161a71f3 11541 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
996b1c7e 11542
e19c4e5d
PE
115432002-12-06 Paul Eggert <eggert@twinsun.com>
11544
11545 Add support for rules that do not have trailing semicolons, as
11546 POSIX requires. Improve the quality of locations in Bison
11547 diagnostics.
26b4a969 11548
e19c4e5d
PE
11549 * src/location.c: Include <quotearg.h>.
11550 (empty_location): Now const.
11551 (location_print): New function. Follow the recommendation of the
11552 GNU Coding Standards for locations that span file boundaries.
11553 * src/location.h: Do not include <quotearg.h>; no longer needed.
11554 (boundary): New type.
11555 (location_t): Use it. This allows locations to span file boundaries.
11556 All member uses changed: file -> start.file or end.file (as needed),
11557 first_line -> start.line, first_column -> start.column,
11558 last_line -> end.line, last_column -> end.column.
11559 (equal_boundaries): New function.
11560 (LOCATION_RESET, LOCATION_STEP): Remove.
11561 (LOCATION_PRINT): Remove. All callers changed to use location_print.
11562 (empty_location): Now const.
11563 (location_print): New decl.
11564 * src/parse-gram.y (lloc_default): New function, which handles
11565 empty locations more accurately.
11566 (YYLLOC_DEFAULT): Use it.
11567 (%token COLON): Remove.
11568 (%token ID_COLON): New token.
26b4a969 11569 (rules): Use it.
e19c4e5d
PE
11570 (declarations, rules): Remove trailing semicolon.
11571 (declaration, rules_or_grammar_declaration):
11572 Allow empty (";") declaration.
11573 (symbol_def): Remove empty actions; no longer needed.
11574 (rules_or_grammar_declaration): Remove trailing semicolon.
11575 (semi_colon.opt): Remove.
11576 * src/reader.h: Include location.h.
11577 (scanner_cursor): New decl.
11578 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
11579 rolling our own.
11580 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
11581 of *loc.
11582 (STEP): Remove. No longer needed, now that adjust_location does
11583 the work. All uses removed.
11584 (scanner_cursor): New var.
11585 (adjust_location): Renamed from extend_location. It now sets
11586 *loc and adjusts the scanner cursor. All uses changed.
11587 Don't bother testing for CR.
11588 (handle_syncline): Remove location arg; now updates scanner cursor.
11589 All callers changed.
11590 (unexpected_end_of_file): Now accepts start boundary of token or
11591 comment, not location. All callers changed. Update scanner cursor,
11592 not the location.
11593 (SC_AFTER_IDENTIFIER): New state.
11594 (context_state): Renamed from c_context. All uses changed.
11595 (id_loc, code_start, token_start): New local vars.
11596 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
11597 processing of Yacc white space and equivalents here.
11598 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
11599 instead of returning ID immediately, since we need to search for
11600 a subsequent colon.
11601 (<INITIAL>"'", "\""): Save token_start.
11602 (<INITIAL>"%{", "{", "%%"): Save code_start.
11603 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
11604 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
11605 BEGIN context_state at end, not INITIAL.
11606 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
11607 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
11608 Return correct token start.
11609 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
11610 the start of a character, string or multiline comment is found.
11611 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
11612 Reduction): Adjust reported locations to match the more-precise
11613 results now expected.
11614 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
11615 * tests/reduce.at (Useless Rules, Reduced Automaton,
11616 Underivable Rules): Likewise.
11617 * tests/regression.at (Invalid inputs): No longer `expecting ";"
11618 or "|"' now that so many other tokens are allowed by the new grammar.
11619
11620 * src/complain.h (current_file): Remove duplicate decl;
11621 current_file is now owned by files.h.
11622 * src/complain.c, src/scan-gram.l: Include files.h.
11623
116242002-12-06 Paul Eggert <eggert@twinsun.com>
26b4a969 11625
e19c4e5d
PE
11626 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
11627 promotes to int; it might be unsigned int.
11628 * data/yacc.c (yy_reduce_print): Likewise.
11629
11630 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
11631 be #defined in the prologue, not in the Bison declarations.
11632 This fixes Debian Bug 102878, reported by Shaul Karl.
26b4a969 11633
b64755e3
PE
116342002-12-02 Paul Eggert <eggert@twinsun.com>
11635
11636 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
11637 * lib/strtoul.c: New file, from gnulib.
11638 This fixes a porting bug reported by Peter Klein in
161a71f3 11639 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
b64755e3 11640
6e746484
PE
116412002-11-30 Paul Eggert <eggert@twinsun.com>
11642
b64755e3
PE
11643 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
11644 and put only a forward declaration in the prologue. This is for
11645 consistency with the other scanner helper functions.
11646
6ba55592
PE
11647 Type clashes now generate warnings, not errors, since it
11648 appears that POSIX may allow some grammars with type clashes.
11649 * src/reader.c (grammar_current_rule_check): Warn about
11650 type clashes instead of complaining.
11651 * tests/input.at (Type Clashes): Expect warnings, not complaints.
11652
6e746484
PE
11653 Add Yacc library, since POSIX requires it.
11654 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
11655 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
11656 * lib/main.c, lib/yyerror.c: New files.
11657
11658 gram_error can be static; it need not be extern.
11659 * src/reader.h (gram_error): Remove decl.
11660 * src/parse-gram.y (gram_error): Now static. Add static decl.
11661 (print_token_value): Omit parameter names from forward decl,
11662 for consistency.
11663
88510f9c
PE
116642002-11-29 Paul Eggert <eggert@twinsun.com>
11665
6e746484
PE
11666 * doc/bison.texinfo: Emphasize that yylex and yyerror must
11667 be declared before being used. E.g., one should typically
11668 declare them in the prologue. Use GNU coding style in examples.
11669 Put "const" consistently after the type it modifies. Mention
11670 that C99 supports "inline". Mention that yyerror traditionally
11671 returns "int".
11672
88510f9c
PE
11673 %parse-param and %lex-param now take just one argument, the
11674 declaration; the argument name is deduced from the declaration.
11675
11676 * doc/bison.texinfo (Parser Function, Pure Calling, Error
11677 Reporting, Table of Symbols): Document this.
11678 * src/parse-gram.y (add_param): New function.
11679 (COMMA): Remove.
11680 (declaration): Implement new rule for %parse-param and %lex-param.
11681 * src/scan-gram.l: "," now elicits a warning, rather than being
11682 a token; this is more compatible with byacc.
11683 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
11684
bb92250c
PE
116852002-11-27 Paul Eggert <eggert@twinsun.com>
11686
11687 Rename identifiers to avoid real and potential collisions.
11688
11689 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
11690 to avoid collision with lex macro described by Bruce Lilly in
161a71f3 11691 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
bb92250c
PE
11692 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
11693 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
11694 * src/parse-gram.y (print_token_value): Renamed from yyprint.
11695 All uses changed.
11696 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
11697 The name "yycontrol" violates the name space rules, and this stuff
11698 wasn't being used anyway.
11699 (input): Remove action; this stuff wasn't being used.
11700 (gram_error): Rename local variable yylloc -> loc.
11701 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
11702 (YY_DECL): Don't use "yy" at start of local variables.
11703 All uses changed, e.g., yylloc -> loc.
11704 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
11705 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
11706 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
11707 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
11708
11709 * src/parse-gram.y (gram_error): loc is now const *.
11710 * src/reader.h (gram_error): Likewise.
11711
3af4feb2
PE
117122002-11-24 Paul Eggert <eggert@twinsun.com>
11713
11714 Version 1.75c.
11715
11716 * tests/actions.at (Actions after errors): Use an output format
11717 more similar to that of the Printers and Destructors test.
11718 Test the position of the ';' token too.
11719 (Printers and Destructors): Likewise.
11720 (Printers and Destructors: %glr-parser): Remove for now, to avoid
11721 unnecessarily alarming people when the test fails.
11722
11723 * data/yacc.c (yyerrlab1): Move this label down, so that the
11724 parser does not discard the lookahead token if the user code
11725 invokes YYERROR. This change is required for POSIX conformance.
11726
11727 * lib/error.c: Sync with gnulib.
11728
117292002-11-22 Paul Eggert <eggert@twinsun.com>
11730
11731 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
11732 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
11733 * lib/xmalloc.c: Likewise.
26b4a969 11734
58004308
PE
117352002-11-20 Paul Eggert <eggert@twinsun.com>
11736
11737 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
11738
117392002-11-20 Paul Eggert <eggert@twinsun.com>
26b4a969 11740
58004308
PE
11741 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
11742 should use `if (! x) abort ();' rather than `assert (x);', and
11743 anyway it's one less thing to worry about configuring.
11744
11745 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
11746 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
11747 and replace all instances of assert with abort.
11748 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
11749 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
11750
11751 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
11752 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
11753 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
11754 hash_find_entry, hash_rehash, hash_insert): Likewise.
11755 * src/conflicts.c (resolve_sr_conflict): Likewise.
11756 * src/lalr.c (set_goto_map, map_goto): Likewise.
11757 * src/nullable.c (nullable_compute): Likewise.
11758 * src/output.c (prepare_rules, token_definitions_output): Likewise.
11759 * src/reader.c (packgram, reader): Likewise.
11760 * src/state.c (state_new, state_free, state_transitions_set,
11761 state_reduction_find): Likewise.
11762 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
11763 symbol_pack): Likewise.
11764 * src/tables.c (conflict_row, pack_vector): Likewise.
11765 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
11766 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
11767 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
11768 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
11769
11770 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
11771 (ARGMATCH_CONSTRAINT): New macro.
11772 (ARGMATCH_ASSERT): Use it.
11773
11774 * src/system.h (verify): New macro.
11775 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
11776 rather than assert.
11777 * src/tables.c (tables_generate): Likewise.
11778
11779 * src/struniq.c (struniq_assert): Now returns void, and aborts
11780 if the assertion is false.
11781 (struniq_assert_p): Remove.
11782 * src/struniq.h: Likewise.
11783
76ae8198
PE
117842002-11-18 Paul Eggert <eggert@twinsun.com>
11785
11786 * data/glr.c (yygetLRActions): Replace `yyindex' with
11787 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
11788 This fixes the regression with Sun ONE Studio 7 cc that I reported in
161a71f3 11789 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
76ae8198 11790
d3c4e709
AD
117912002-11-18 Akim Demaille <akim@epita.fr>
11792
11793 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
11794 space.
11795 From Tim Van Holder.
11796
8d8a7238
PE
117972002-11-17 Paul Eggert <eggert@twinsun.com>
11798
11799 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
11800 to "SyntaxError" for consistency with my 2002-11-15 change.
11801
11802 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
11803 not define to {}, since this breaks the common use of `YYDPRINTF
11804 ((...));' if a single statement is desired (e.g. before `else').
11805 Work around GCC warnings by surrounding corresponding calls with
11806 {} if needed.
11807 (yyhasResolvedValue): Remove unused function.
11808 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
11809 loop body.
11810 (yyreportSyntaxError): Renamed from yyreportParseError.
11811 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
11812 All uses changed.
11813 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
11814 extern when possible. Remove unused initializations.
11815
b0937b22
AD
118162002-11-16 Akim Demaille <akim@epita.fr>
11817
11818 Augment the similarity between GLR and LALR traces.
11819
11820 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
11821 (YY_REDUCE_PRINT): New.
11822 (yyparse): Use them.
11823 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
11824 YYDPRINT here.
11825 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
11826 state reached after the reduction/recovery, since...
11827 (yyparse, yyprocessOneStack): Report the state we are entering in.
11828
c5e3e510
AD
118292002-11-16 Akim Demaille <akim@epita.fr>
11830
11831 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
11832 Add support for --trace=skeleton.
11833 * src/scan-skel.l: %option debug.
11834 Scan strings of non-@ or \n instead of character by character.
11835 (scan_skel): Handle trace_skeleton.
11836 (QPUTS): New.
11837 (@output_parser_name@, @output_header_name@): ``Restore'' their
11838 support (used to be M4 macros).
11839 * data/yacc.c: Quote larger chunks, a la glr.c.
11840 * data/lalr1.cc: Likewise.
11841 The header guards are no longer available, so use some other
11842 string than `YYLSP_NEEDED'.
11843
4c6cc1db
AD
118442002-11-16 Akim Demaille <akim@epita.fr>
11845
11846 Make the ``Printers and Destructors'' test more verbose, taking
11847 `yacc.c''s behavior as (possibly wrong) reference.
11848
11849 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
11850 instead of fprint on stdout.
11851 Set and report the last_line of the symbols.
11852 Consistently display values and locations.
11853
6d9e8019
PE
118542002-11-16 Paul Eggert <eggert@twinsun.com>
11855
11856 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
11857
6e649e65
PE
118582002-11-15 Paul Eggert <eggert@twinsun.com>
11859
b25d88f6
PE
11860 * tests/actions.at (Actions after errors): New test case.
11861
6e649e65
PE
11862 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
11863 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
11864 tests/action.at, tests/calc.at, tests/conflicts.at,
11865 tests/cxx-type.at, tests/regression.at:
11866 "parse error" -> "syntax error" for POSIX compatibility.
11867 "parsing stack overflow..." -> "parser stack overflow" so
11868 that code matches Bison documentation.
11869
0f39aab9
AD
118702002-11-15 Akim Demaille <akim@epita.fr>
11871
11872 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
11873 take two BRACED_CODE, not two string_content.
11874 Free the scanner's obstack when we are done.
11875 (code_content): New.
11876 * tests/calc.at: Adjust.
11877 * doc/bison.texinfo: Adjust.
11878 Also, make sure to include the `,' for these declarations.
11879
761c1926
AD
118802002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
11881
11882 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
11883 definition; avoids potential autoreconf problems.
11884
b0f98b10
AD
118852002-11-15 Akim Demaille <akim@epita.fr>
11886
11887 Always check the value returned by yyparse.
11888
11889 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
11890 returned by yyparse.
11891 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
11892 Adjust calls.
11893 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
11894 returned by yyparse.
11895
970785f1
PH
118962002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11897
11898 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
11899 on input.at test.
11900
8fcc7db1
PE
119012002-11-14 Paul Eggert <eggert@twinsun.com>
11902
7ec1b48e
PE
11903 * src/output.c (output_skeleton): Call xfopen instead of
11904 duplicating xfopen's body.
11905
cfff7583 11906 Fix bugs reported by Nelson H. F. Beebe in
161a71f3 11907 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
cfff7583 11908
8fcc7db1
PE
11909 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
11910 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
11911 Group compiler. Instead, use "$CC -E bar.c". Include the .h
11912 file twice in the grammar, as an extra check.
11913
11914 * tests/input.at (Torturing the Scanner): Surround the
11915 backslash-newline tests with "#if 0", to make it less likely that
11916 we'll run into compiler bugs. Bring back solitary \ inside
11917 comment, but add a closing comment to work around HP C bug. Don't
e3aa65c5 11918 test backslash-newline in C character constant.
8fcc7db1 11919
4e8d992c
AD
119202002-11-14 Akim Demaille <akim@epita.fr>
11921
11922 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
11923 status of the compiler.
f32b346d 11924 Calling `exit 1' is no longer needed.
4e8d992c
AD
11925 Reported by Nelson H. F. Beebe.
11926
9501dc6e
AD
119272002-11-14 Akim Demaille <akim@epita.fr>
11928
11929 * tests/atlocal.in (CPPFLAGS): We have config.h.
11930 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
11931 New.
11932 * tests/actions.at, tests/calc.at, tests/conflicts.at,
11933 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
11934 * tests/regression.at, tests/torture.at: Use them for all the
11935 grammars that are to be compiled.
11936 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
11937 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
11938 * doc/bison.texinfo (GLR Parsers): Document `inline'.
11939
18b519c0
AD
119402002-11-14 Akim Demaille <akim@epita.fr>
11941
11942 * doc/bison.texinfo: Various formatting changes (alignments in
11943 samples, additional @group/@end group, GCS in samples.
11944 Use @deffn instead of simple @table to define the directives,
11945 macros, variables etc.
11946
9a86cdb9
PE
119472002-11-13 Paul Eggert <eggert@twinsun.com>
11948
daa33def 11949 Fix some bugs reported by Albert Chin-A-Young in
161a71f3 11950 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
18b519c0 11951
daa33def 11952 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8fcc7db1 11953 -o c"; the HP C compiler chatters during compilation.
daa33def
PE
11954 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
11955 * tests/headers.at (export YYLTYPE): Likewise.
11956
11957 * tests/input.at (Torturing the Scanner): Remove lines containing
8fcc7db1 11958 solitary backslashes, as they tickle a bug in the HP C compiler.
daa33def 11959
9a86cdb9
PE
11960 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
11961 comments, since they're not portable. Use GNU coding style.
11962
9c1e26bd
AD
119632002-11-13 Akim Demaille <akim@epita.fr>
11964
11965 * data/yacc.c: Leave bigger chunks of quoted text.
11966 (YYDSYMPRINTF): New.
11967 Use it to report symbol activities.
11968 * data/glr.c (YYDSYMPRINTF): New.
11969 Use it.
11970
87f721cc
PE
119712002-11-12 Paul Eggert <eggert@twinsun.com>
11972
11973 Version 1.75b.
11974
11975 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
11976 (yyglrReduce): Return yyok, not 0.
11977 This should avoid the enumerated-type warnings reported
464c6927 11978 by Nelson H. F. Beebe in
161a71f3 11979 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
87f721cc
PE
11980
11981 * lib/bbitset.h (BITSET_INLINE): Remove.
11982 * lib/bitset.h [! BITSET_INLINE]: Remove.
11983 (bitset_set, bitset_reset, bitset_test): Rename local vars
11984 to avoid shadowing warnings by GCC.
11985
11986 * data/glr.c (inline): Remove #define. It's the user's
11987 responsibility to #define it away, just like 'const'.
464c6927 11988 This fixes one of the bugs reported by Nelson H. F. Beebe in
161a71f3 11989 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
18b519c0 11990
87f721cc
PE
11991 * Makefile.maint (po-check): Scan .l and .y files instead of the
11992 .c and the .h files that they generate. This fixes the bug
11993 reported by Tim Van Holder in:
161a71f3 11994 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
87f721cc
PE
11995 Look for N_ as well as for _. Try to avoid matching #define for
11996 N_ and _.
11997 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
11998 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
11999 * src/scan-gram.l: Revamp regular expressions so that " and '
12000 do not confuse xgettext.
12001
12002 * src/struniq.h (struniq_new): Do not declare the return type
12003 to be 'const'; this violates the C standard.
12004 * src/struniq.c (struniq_new): Likewise.
12005
be14ade5
AD
120062002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
12007
12008 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
12009 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
12010 linker.
12011
05291fbc
AD
120122002-11-12 Akim Demaille <akim@epita.fr>
12013
12014 * Makefile.maint: Sync with Autoconf:
12015 (local_updates): New.
12016
1f5fd52e
AD
120172002-11-12 Akim Demaille <akim@epita.fr>
12018
12019 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
12020
283f1e64
AD
120212002-11-12 Akim Demaille <akim@epita.fr>
12022
12023 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
12024 locations.
12025
886b69d1
AD
120262002-11-12 Akim Demaille <akim@epita.fr>
12027
12028 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
12029 not yyvalue.
12030
3df37415
AD
120312002-11-12 Akim Demaille <akim@epita.fr>
12032
12033 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
12034 Use it to test the GLR parser.
12035
7bd6c77e
AD
120362002-11-12 Akim Demaille <akim@epita.fr>
12037
12038 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
12039 defines it.
12040 * data/glr.c (yystos): New.
12041 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
12042 (YYDSYMPRINT): New.
12043 (yyval): Don't define it, it is handled via M4.
12044 (yyrecoverParseError): Free verbosely the discarded symbols.
12045 * data/yacc.c (yysymprint): Remove, rather...
12046 (b4_yysymprint_generate): invoke.
12047 * data/c.m4 (b4_yysymprint_generate): New.
12048 Accept pointers as arguments, as opposed to the version from
12049 yacc.c.
12050 (b4_yydestruct_generate): Likewise.
12051 * tests/cations.at (Printers and Destructors): Use Bison directives
12052 instead of CPP macros.
12053 Don't rely on internal details.
12054
b0400cc6
AD
120552002-11-12 Akim Demaille <akim@epita.fr>
12056
12057 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
12058 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
12059 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
12060 it against YYEMPTY and so forth), work on yytoken (i.e., set
12061 it to YYEMPTY etc.).
12062 (yydestruct): Replace with a b4_yydestruct_generate invocation.
12063 (b4_symbol_actions): Remove.
12064 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
12065 for 0, end-of-input.
12066
72f889cc
AD
120672002-11-12 Akim Demaille <akim@epita.fr>
12068
12069 * doc/bison.texinfo (Destructor Decl): New.
12070
b1ae9233
AD
120712002-11-12 Akim Demaille <akim@epita.fr>
12072
12073 * src/tables.c (tables_generate): Use free for pointers that
12074 cannot be NULL, not XFREE.
12075 (pack_vector): Use assert, not fatal, for bound violations.
12076 * src/state.c (state_new): Likewise.
12077 * src/reader.c (reader): Likewise.
12078 * src/lalr.c (set_goto_map): Likewise.
72f889cc 12079 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
b1ae9233
AD
12080 the file name.
12081
7ec2d4cd
AD
120822002-11-12 Akim Demaille <akim@epita.fr>
12083
12084 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
12085 Restore.
12086 * src/scan-gram.l (last_string): Is global to the file, not to
12087 yylex.
12088 * src/parse-gram.y (input): Don't append the epilogue here,
12089 (epilogue.opt): do it here, and free the scanner's obstack.
12090 * src/reader.c (epilogue_set): Rename as...
12091 (epilogue_augment): this.
12092 * data/c.m4 (b4_epilogue): Defaults to empty.
12093
573a6cd3
AD
120942002-11-12 Akim Demaille <akim@epita.fr>
12095
12096 * src/getargs.c (long_options): Remove duplicates.
12097 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
12098 Remove.
12099 * doc/bison.rnh: Remove.
12100 * doc/bison.texinfo (VMS Invocation): Remove.
12101
95612cfa
AD
121022002-11-12 Akim Demaille <akim@epita.fr>
12103
12104 * src/struniq.h, src/struniq.c (struniq_t): Is const.
12105 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
12106
12107 Use struniq for symbols.
12108
12109 * src/symtab.h (symbol_t): The tag member is a struniq.
12110 (symbol_type_set): Adjust.
12111 * src/symtab.c (symbol_new): Takes a struniq.
12112 (symbol_free): Don't free the tag member.
12113 (hash_compare_symbol_t, hash_symbol_t): Rename as...
12114 (hash_compare_symbol, hash_symbol): these.
12115 Use the fact that tags as struniqs.
12116 (symbol_get): Use struniq_new.
12117 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
12118 Returns a strniq.
12119 * src/reader.h (merger_list, grammar_currentmerge_set): The name
12120 and type members are struniqs.
12121 * src/reader.c (get_merge_function)
12122 (grammar_current_rule_merge_set): Adjust.
12123 (TYPE, current_type): Are struniq.
12124
12125 Use struniq for file names.
12126
12127 * src/files.h, src/files.c (infile): Split into...
12128 (grammar_file, current_file): these.
12129 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
12130 * src/reduce.c (reduce_print): Likewise.
12131 * src/getargs.c (getargs): Likewise.
12132 * src/complain.h, src/complain.c: Likewise.
12133 * src/main.c (main): Call struniqs_new early enough to use it for
12134 file names.
12135 Don't free the input file name.
12136
3e6656f9
AD
121372002-11-12 Akim Demaille <akim@epita.fr>
12138
12139 * src/symtab.c (symbol_free): Remove dead deactivated code:
12140 type_name are properly removed.
12141 Don't use XFREE to free items that cannot be NULL.
12142 * src/struniq.h, src/struniq.c: New.
12143 * src/main.c (main): Initialize/free struniqs.
12144 * src/parse-gram.y (%union): Add astruniq member.
12145 (yyprint): Adjust.
12146 * src/scan-gram.l (<{tag}>): Return a struniq.
12147 Free the obstack bit that used to store it.
12148 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
12149
7672019c
PE
121502002-11-11 Paul Eggert <eggert@twinsun.com>
12151
12152 Revamp to fix many (but not all) of the C- and M4-related quoting
12153 problems. Among other things, this fixes the Bison bug reported
12154 by Jan Hubicka when processing the Bash grammar; see:
161a71f3 12155 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7672019c
PE
12156
12157 Use new @ escapes consistently. Represent brackets with @{ and @}
12158 rather than @<:@ and @:>@, since this works a bit better with dumb
12159 editors like vi. Represent @ with @@, since @ is now consistently
12160 an escape. Use @oline@ and @ofile@ rather than __oline__ and
12161 __ofile__, to avoid unexpected expansions. Similarly, use @output
12162 rather than #output.
12163
12164 * data/c.m4 (b4_copyright): Omit file name from comment, since
12165 the file name could contain "*/".
12166 (b4_synclines_flag): Don't quote the 2nd argument; it should already
12167 be quoted. All uses changed.
12168
12169 * data/glr.c: Use new @ escapes consistently.
12170 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
12171 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
12172 Remove, since they couldn't handle arbitrary characters in file
12173 names.
12174 * data/lalr1.cc: Likewise.
12175 * data/yacc.c: Likewise.
12176
12177 * src/files.c (output_infix): Remove; all uses removed.
12178 * src/files.h: Likewise.
12179
12180 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
12181 mishandled funny characters in file names, and anyway it isn't
12182 needed any more.
12183 * data/yacc.c: Likewise.
12184 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
12185
12186 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
12187 * data/yacc.c: Likewise.
12188
12189 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
12190 strings now.
12191 (muscle_init): Quote filename as a C string.
12192 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
12193 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
12194 * src/output.c (escaped_file_name_output): New function.
12195 (prepare_symbols): Quote tokens for M4.
12196 (prepare): Don't insert output_infix, output_prefix,
12197 output_parser_name, output_header_name; this is now down by scan-skel.
12198 Insert skeleton as a C string.
12199
12200 * src/output.c (user_actions_output, symbol_destructors_output,
12201 symbol_printers_output): Quote filenames for C and M4.
12202 * src/reader.c (prologue_augment, epilogue_set): Likewise.
12203
12204 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
12205 escapes other than \\ and \'; this simplifies the code.
12206 (<SC_STRING>): Likewise, for \\ and \".
12207 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
12208 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
12209 Use new escapes @{ and @} for [ and ].
12210
12211 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
12212 them with auto vars.
12213 Switch to new escape scheme, where @ is the escape character uniformly.
12214 Abort if a stray escape character is found. Avoid unbounded input
12215 buffer when parsing non-escaped text.
12216
12217 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
12218 __oline__, #output, $@, and @{ do not have unintended meanings.
12219
acea4f3b
PE
122202002-11-09 Paul Eggert <eggert@twinsun.com>
12221
12222 Fix the test failure due to GCC warnings described in
161a71f3 12223 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
acea4f3b
PE
12224 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
12225 evaluate to 0 if it's impossible for NINF to be in the respective
12226 table.
12227 (yygetLRActions, yyrecoverParseError): Use them.
12228
12229 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
12230 counted in the token inserted at end of file. Now takes
12231 location_t *, not location_t, so that the location can be
12232 adjusted. All uses changed.
12233
12234 * tests/regression.at (Invalid inputs): Adjust wording in
12235 diagnostic to match the new behavior.
12236
12237 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
12238 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
12239 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
12240 abort ();'. This reduces the runtime of the "Many lookaheads"
12241 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
12242 GCC 3.2.
12243
20ef1ad5
PE
122442002-11-07 Paul Eggert <eggert@twinsun.com>
12245
12246 * src/parse-gram.y (CHARACTER): Remove unused token.
12247 All uses removed.
12248
12249 * src/scan-gram.l: Remove stack option. We no longer use the
12250 stack, since the stack was never deeper than 1; instead, use the
12251 new auto var c_context to record the stacked value.
12252
12253 Remove nounput option. At an unexpected end of file, we now unput
12254 the minimal input necessary to end cleanly; this simplifies the
12255 code.
12256
12257 Avoid unbounded token sizes where this is easy.
12258
12259 (unexpected_end_of_file): New function.
12260 Use it to systematize the error message on unexpected EOF.
12261 (last-string): Now auto, not static.
12262 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
12263 (scanner_last_string_free): Remove; not used.
12264 (percent_percent_count): Move decl to just before use.
12265 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
12266 not the (never otherwised-used) CHARACTER.
12267
93724f13
AD
122682002-11-07 Akim Demaille <akim@epita.fr>
12269
12270 Let yyerror always receive the msg as last argument, so that
12271 yyerror can be variadic.
12272
12273 * data/yacc.c (b4_yyerror_args): New.
12274 Use it when calling yyerror.
12275 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
12276 Use it when calling yyerror.
12277 * doc/bison.texinfo (Error Reporting): Adjust.
12278 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
12279 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
12280
6e40b4eb
AD
122812002-11-06 Akim Demaille <akim@epita.fr>
12282
12283 #line should have quoted strings.
12284 Ideally, this should be done by m4_quotearg.
12285
12286 * src/scan-skel.l: Include quotearg.h.
12287 Quote __ofile__.
12288 * src/output.c (symbol_printers_output)
12289 (symbol_destructors_output): Quote the file name.
12290
2dfbfc12
AD
122912002-11-06 Akim Demaille <akim@epita.fr>
12292
12293 * tests/regression.at (Invalid inputs): Adjust to the recent
12294 messages.
12295
437c2d80
AD
122962002-11-06 Akim Demaille <akim@epita.fr>
12297
12298 Restore --no-lines.
12299 Reported by Jim Kent.
12300
12301 * data/c.m4 (b4_syncline): New.
12302 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
12303 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
12304 * src/output.c (user_actions_output): Likewise.
12305 (prepare): Define 'b4_synclines_flag'.
2dfbfc12 12306 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
437c2d80 12307
900c5db5
AD
123082002-11-06 Akim Demaille <akim@epita.fr>
12309
12310 * src/main.c (main): Free `infile'.
12311 * src/scan-gram.l (handle_syncline): New.
12312 Recognize `#line'.
12313 * src/output.c (user_actions_output, symbol_destructors_output)
12314 (symbol_printers_output): Use the location's file name, not
12315 infile.
12316 * src/reader.c (prologue_augment, epilogue_set): Likewise.
12317
e183b123 123182002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
51b4a04c 12319
e183b123 12320 * src/tables.c (matching_state): Don't allow states to match if
51b4a04c 12321 either has GLR conflict entries.
e183b123 12322
193eb6b7
PE
123232002-11-05 Paul Eggert <eggert@twinsun.com>
12324
e183b123
PE
12325 * src/scan-gram.l: Use more accurate diagnostics, e.g.
12326 "integer out of range" rather than "invalid value".
12327 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
12328 accordingly.
12329
193eb6b7
PE
12330 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
12331 Also, remove one static variable in the scanner.
12332
12333 * src/scan-gram.l (braces_level): Now auto, not static.
12334 Initialize to zero if the compiler is being picky.
12335 (INITIAL): Clear braces_level instead of incrementing it.
12336 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
12337 as POSIX 1003.1-2001 requires.
12338 * src/system.h (IF_LINT): New macro, taken from coreutils.
12339 * configure.ac: Define "lint" if --enable-gcc-warnings.
12340
29c01725
AD
123412002-11-05 Akim Demaille <akim@epita.fr>
12342
12343 * src/scan-gram.l: When it starts with `%', complain about the
12344 whole directive, not just that `invalid character: %'.
12345
8aeac3ca
AD
123462002-11-04 Akim Demaille <akim@epita.fr>
12347
12348 * Makefile.maint: Update from Autoconf.
12349 (update, cvs-update, po-update, do-po-update): New.
12350
793a58bb
AD
123512002-11-04 Akim Demaille <akim@epita.fr>
12352
12353 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
12354 and yyerror.
12355 Have yyerror `use' its arguments.
12356 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
12357 returns true when location & yacc & pure & parse-param.
12358 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
12359
c4d720cd
AD
123602002-11-04 Akim Demaille <akim@epita.fr>
12361
12362 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
12363 clashes.
12364 * src/scan-gram.l: Use [\'] instead of ['] to pacify
12365 font-lock-mode.
12366 Use complain_at.
12367 Use quote, not quote_n since LOCATION_PRINT no longer uses the
12368 slot 0.
12369
613a0dc5
PE
123702002-11-03 Paul Eggert <eggert@twinsun.com>
12371
12372 * src/reader.c (get_merge_function, grammar_current_rule_check):
12373 Use consistent diagnostics for reporting type name clashes.
12374 Quote the types with <>, for consistency with Yacc.
12375 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
12376
2a8d363a
AD
123772002-11-03 Akim Demaille <akim@epita.fr>
12378
12379 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
12380 New.
12381 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
12382 (b4_parse_param): Remove.
12383 Use b4_identification.
12384 Propagate b4_pure_args where needed to pass them to yyerror.
12385 * data/glr.m4 (b4_parse_param): Remove.
12386 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
12387 (b4_lpure_formals): New.
12388 Use b4_identification.
12389 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
12390 b4_user_formals and b4_user_args.
12391 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
12392 (yyreportAmbiguity): When using a pure parser, also need
12393 the location, and the parse-params.
12394 Adjust callers.
12395 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
12396 When using a pure parser, also need the parse-params.
12397 Adjust callers.
12398 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
12399 (%pure-parser + %parse-param) LALR and GLR parsers.
12400 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
12401 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
12402 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
12403 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
12404 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
12405 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
12406 * doc/bison.texinfo: Untabify the whole file.
12407 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
12408 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
12409 (Error Reporting): Adjust to these new directives.
12410 Document %error-verbose, deprecate YYERROR_VERBOSE.
12411
9e32add8
AD
124122002-11-03 Akim Demaille <akim@epita.fr>
12413
12414 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
12415 AT_CHECK_CALC_GLR invocations to use % directives, instead of
12416 command line options.
12417 * tests/cxx-type.at: Formatting changes.
12418
b02d90a5
PE
124192002-11-03 Paul Eggert <eggert@twinsun.com>
12420
12421 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
12422 to count columns correctly, and to check for invalid inputs.
9e32add8 12423
b02d90a5
PE
12424 Use mbsnwidth to count columns correctly. Account for tabs, too.
12425 Include mbswidth.h.
12426 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
12427 (extend_location): New function.
12428 (YY_LINES): Remove.
12429
12430 Handle CRLF in C code rather than in Lex code.
12431 (YY_INPUT): New macro.
12432 (no_cr_read): New function.
12433
12434 Scan UCNs, even though we don't fully handle them yet.
12435 (convert_ucn_to_byte): New function.
12436
12437 Handle backslash-newline correctly in C code.
12438 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
12439 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
12440 all uses changed.
12441 (tag, splice): New EREs. Do not allow NUL or newline in tags.
12442 Use {splice} wherever C allows backslash-newline.
12443 YY_STEP after space, newline, vertical-tab.
12444 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
9e32add8 12445
b02d90a5
PE
12446 (letter, id): Don't assume ASCII; e.g., spell out a-z.
12447
12448 ({int}, handle_action_dollar, handle_action_at): Check for integer
12449 overflow.
9e32add8 12450
b02d90a5
PE
12451 (YY_STEP): Omit trailing semicolon, so that it's more like C.
12452
12453 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
12454 as well as \000. Check for UCHAR_MAX, not 255.
12455 Allow \x with an arbitrary positive number of digits, as in C.
12456 Check for overflow here.
12457 Allow \? and UCNs, for compatibility with C.
12458
12459 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
12460 with quote slot used by complain_at.
12461
12462 * tests/input.at: Add tests for backslash-newline, m4 quotes
12463 in symbols, long literals, and funny escapes in strings.
12464
12465 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
12466 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
12467 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
12468 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
12469 * m4/mbswidth.m4: New file, from GNU coreutils.
12470
12471 * doc/bison.texinfo (Grammar Outline): Document // comments.
12472 (Symbols): Document that trigraphs have no special meaning in Bison,
12473 nor is backslash-newline allowed.
12474 (Actions): Document that trigraphs have no special meaning.
12475
12476 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
12477 no longer used.
12478
124792002-11-02 Paul Eggert <eggert@twinsun.com>
12480
12481 * src/reader.c: Don't include quote.h; not needed.
12482 (get_merge_function): Reword warning to be consistent with
12483 type clash diagnostic in grammar_current_rule_check.
12484
12485 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
12486 bug in trigraph handling.
12487
12488 * src/output.c (prepare_symbols): When printing token names,
12489 escape "[" as "@<:@" and likewise for "]".
12490
12491 * src/system.h (errno): Remove declaration, as we are now
12492 assuming C89 or better, and C89 guarantees errno.
12493
762b212b
PE
124942002-10-30 Paul Eggert <eggert@twinsun.com>
12495
12496 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
12497 Check for close failures.
12498 * src/files.h (xfclose): Return void, not int, since it always
12499 returned zero.
12500 * src/files.c (xfclose): Likewise. Report I/O error if ferror
12501 indicates one.
12502 * src/output.c (output_skeleton): Use xfclose rather than fclose
12503 and ferror. xfclose now checks ferror.
12504
12505 * data/glr.c (YYLEFTMOST_STATE): Remove.
12506 (yyreportTree): Use a stack-based leftmost state. This avoids
12507 our continuing battles with bogus warnings about initializers.
12508
56100c60
AD
125092002-10-30 Akim Demaille <akim@epita.fr>
12510
12511 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
12512 #if.
12513
51b4a04c
PH
125142002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12515
12516 * tests/glr-regr1.at: New test for reported regressions.
12517 * tests/testsuite.at: Add glr-regr1.at test.
12518 * tests/Makefile.am: Add glr-regr1.at test.
e183b123 12519
bf1ebda2
PE
125202002-10-24 Paul Eggert <eggert@twinsun.com>
12521
5c16c6b1
PE
12522 Version 1.75a.
12523
bf1ebda2
PE
12524 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
12525 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
12526 we use malloc. Don't assume 'A' through 'Z' are contiguous.
12527 Don't assume strdup exists; POSIX says its an XSI extension.
12528 Check for buffer overflow on input.
12529
b526ee61
AD
125302002-10-24 Akim Demaille <akim@epita.fr>
12531
12532 * src/output.c (output_skeleton): Don't disable M4sugar comments
12533 too soon: it results in comments being expanded.
12534 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
12535 first output.
12536
f1886bb2
AD
125372002-10-24 Akim Demaille <akim@epita.fr>
12538
12539 * data/yacc.c (m4_int_type): New.
12540 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
12541 char' as only yacc.c wants K&R portability.
12542 * data/glr.c (yysigned_char): Remove.
12543 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
12544 Reported by Quoc Peyrot.
12545
c5576256
PE
125462002-10-23 Paul Eggert <eggert@twinsun.com>
12547
12548 * src/main.c (main): With --trace=time, report times even if a
12549 non-fatal error occurs. Formerly, the times were reported in some
12550 such cases but not in others.
12551 * src/reader.c (reader): Just return if a complaint has been issued,
12552 instead of exiting, so that 'main' can report times.
12553
27b0ffea
AD
125542002-10-22 Akim Demaille <akim@epita.fr>
12555
12556 * src/system.h: Include sys/types.
12557 Reported by Bert Deknuydt.
12558
223a7883
PE
125592002-10-23 Paul Eggert <eggert@twinsun.com>
12560
12561 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
12562 Suggested by Art Haas.
12563
125642002-10-22 Paul Eggert <eggert@twinsun.com>
12565
12566 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
12567 decl; not needed any more.
12568 * src/main.c (main): Use return to exit, undoing yesterday's change.
12569 The last OS that we could find where this wouldn't work is
12570 SunOS 3.5, and that's too old to worry about now.
12571
12572 * data/glr.c (struct yyltype): Define members even when not
12573 doing locations. This is more consistent with yacc.c, and it
12574 works around the following bug reports:
161a71f3
PE
12575 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
12576 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
27b0ffea 12577
223a7883
PE
12578 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
12579 @acronym consistently. Standardize on "Yacc" instead of "YACC",
12580 "Algol" instead of "ALGOL". Give a bit more history about BNF.
12581
8b76775a
AD
125822002-10-22 Akim Demaille <akim@epita.fr>
12583
12584 * data/README: New.
12585
6db10d14
PE
125862002-10-21 Paul Eggert <eggert@twinsun.com>
12587
12588 Be consistent about 'bool'; the old code used an enum in one
12589 module and an int in another, and this violates the C standard.
12590 * m4/stdbool.m4: New file, from coreutils 4.5.3.
12591 * configure.ac (AC_HEADER_STDBOOL): Add.
12592 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
12593 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
12594 * src/symtab.c (hash_compare_symbol_t): Likewise.
12595 * src/system.h (bool, false, true): Use a definition consistent
12596 with ../lib/hash.c. All uses changed.
12597
12598 * src/complain.c (warning_issued): Renamed from warn_message_count,
12599 so that we needn't worry about integer overflow (!).
12600 Now of type bool. All uses changed.
12601 (complaint_issued): Renamed from complain_message_count; likewise.
12602
12603 * src/main.c (main): Use exit to exit with failure.
27b0ffea 12604
6db10d14
PE
12605 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
12606 rather than 1 and 0.
12607 * src/main.c (main): Likewise.
12608 * src/getargs.c (getargs): Likewise.
12609 * src/reader.c (reader): Likewise.
12610
12611 * src/getarg.c (getargs): Remove duplicate code for
12612 "Try `bison --help'".
12613
12614 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
12615 What was that "2" for?
12616
12617 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
12618 * src/getargs.c (usage): Likewise.
12619
12620 * src/getargs.c (getargs): When there are too few operands, report
12621 the last one. When there are too many, report the first extra
12622 one. This is how diffutils does it.
12623
92a060fd
PE
126242002-10-20 Paul Eggert <eggert@twinsun.com>
12625
12626 Remove K&R vestiges.
12627 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
12628 * src/complain.c (VA_START): Remove. Assume prototypes.
12629 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
12630 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
12631 fatal): Assume prototypes.
12632 * src/complain.h: Assume prototypes.
12633 * src/system.h (PARAMS): Remove.
12634 Include <limits.h> unconditionally, since it's guaranteeed even
12635 for a freestanding C89 compiler.
12636 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
12637 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8b76775a 12638
e7cb57c0
AD
126392002-10-20 Akim Demaille <akim@epita.fr>
12640
12641 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
12642 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
12643 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
12644 (yyresolveStates, yyresolveAction, yyresolveStack)
12645 (yyprocessOneStack): Use them.
12646 (yy_reduce_print): New.
12647 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
12648
0245f82d
AD
126492002-10-20 Akim Demaille <akim@epita.fr>
12650
12651 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
12652 arguments and output `void'.
12653 (b4_c_function): Rename as...
12654 (b4_c_function_def): this.
12655 (b4_c_function_decl, b4_c_ansi_function_def)
12656 (b4_c_ansi_function_decl): New.
12657 Change the interpretation of the arguments: before `int, foo', now
12658 `int foo, foo'.
12659 * data/yacc.c (yyparse): Prototype and define thanks to these.
12660 Adjust b4_c_function_def uses.
12661 * data/glr.c (yyparse): Likewise, but ANSI only.
12662
39912f52
AD
126632002-10-20 Akim Demaille <akim@epita.fr>
12664
12665 * src/output.c (prepare): Move the definition of `tokens_number',
12666 `nterms_number', `undef_token_number', `user_token_number_max'
12667 to...
12668 (prepare_tokens): Here.
12669 (prepare_tokens): Rename as...
12670 (prepare_symbols): this.
12671 (prepare): Move the definition of `rules_number' to...
12672 (prepare_rules): here.
12673 (prepare): Move the definition of `last', `final_state_number',
12674 `states_number' to...
12675 (prepare_states): here.
12676 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
12677
20c1e2ad
AD
126782002-10-20 Akim Demaille <akim@epita.fr>
12679
12680 * src/tables.h, src/tables.c, src/output.c: Comment changes.
12681
21964f43
AD
126822002-10-20 Akim Demaille <akim@epita.fr>
12683
12684 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
12685 * data/c.m4: here.
12686
66d30cd4
AD
126872002-10-20 Akim Demaille <akim@epita.fr>
12688
12689 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
12690 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
12691 `pair'.
12692 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
12693 `name' to...
12694 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
12695 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
12696 These.
12697
95f2c9fe
PE
126982002-10-19 Paul Eggert <eggert@twinsun.com>
12699
12700 Do not create a temporary file, as that involves security and
12701 cleanup headaches. Instead, use a pair of pipes.
12702 Derived from a suggestion by Florian Krohm.
12703 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
12704 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
12705 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
12706 (BISON_PREREQ_SUBPIPE): Add.
12707 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
12708 Add subpipe.h, subpipe.c.
12709 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
12710 * po/POTFILES.in: Add lib/subpipe.c.
12711 * src/output.c: Include "subpipe.h".
12712 (m4_invoke): Remove decl.
12713 (scan_skel): New decl.
12714 (output_skeleton): Use pipe rather than temporary file for m4 input.
12715 Check that m4sugar.m4 is readable, to avoid deadlock.
12716 Check for pipe I/O error.
12717 * src/scan-skel.l (readpipe): Remove decl.
12718 (scan_skel): New function, to be used in place of m4_invoke.
12719 Read from stream rather than file.
66d30cd4 12720
95f2c9fe
PE
12721 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
12722 float, as this generates a warning on Solaris 8 + GCC 3.2 with
12723 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
12724 this generates a more-accurate value anyway.
12725
12726 * lib/timevar.c (timervar_accumulate): Rename locals to
12727 avoid confusion with similarly-named more-global.
12728 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
12729
12730 * src/output.c (prepare): Use xstrdup to convert char const *
12731 to char *, to avoid GCC warning.
12732
c19988b7
AD
127332002-10-19 Akim Demaille <akim@epita.fr>
12734
12735 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
12736 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
12737 Use them to have `calc.y' ready for %pure-parser.
12738 * data/yacc.c (YYLEX): Pass a yylex return type to
12739 b4_c_function_call.
12740
ae7453f2
AD
127412002-10-19 Akim Demaille <akim@epita.fr>
12742
12743 Prototype support of %lex-param and %parse-param.
12744
12745 * src/parse-gram.y: Add the definition of the %lex-param and
12746 %parse-param tokens, plus their rules.
12747 Drop the `_' version of %glr-parser.
12748 Add the "," token.
12749 * src/scan-gram.l (INITIAL): Scan them.
12750 * src/muscle_tab.c: Comment changes.
12751 (muscle_insert, muscle_find): Rename `pair' as `probe'.
12752 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
12753 (muscle_entry_s): The `value' member is no longer const.
12754 Adjust all dependencies.
12755 * src/muscle_tab.c (muscle_init): Adjust: use
12756 MUSCLE_INSERT_STRING.
12757 Initialize the obstack earlier.
12758 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
12759 (muscle_pair_list_grow): New.
12760 * data/c.m4 (b4_c_function_call, b4_c_args): New.
12761 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
12762 * tests/calc.at: Use %locations, not --locations.
12763 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
12764
0e575721
AD
127652002-10-19 Akim Demaille <akim@epita.fr>
12766
12767 * src/getargs.c (usage): Take status as argument and exit
12768 accordingly.
12769 Report the traditional `Try ... --help' message when status != 0.
12770 (usage, version): Don't take a FILE * as arg, it is pointless.
12771 (getargs): When there is an incorrect number of arguments, make it
12772 an error, and report it GNUlically thanks to `usage ()'.
12773
724ce7f5
PE
127742002-10-18 Paul Eggert <eggert@twinsun.com>
12775
3a781eb2
PE
12776 * data/glr.c (yyreportParseError): Don't assume that sprintf
12777 yields the length of the printed string, as this is not true
12778 on SunOS 4.1.4. Reported by Peter Klein.
12779
724ce7f5
PE
12780 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
12781 * tests/conflicts.at (%nonassoc and eof): Likewise.
12782 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
12783
473d0a75
AD
127842002-10-17 Akim Demaille <akim@epita.fr>
12785
12786 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
12787 * src/getargs.c (trace_types, trace_args): Adjust.
12788 * src/reader.c (grammar_current_rule_prec_set)
12789 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
12790 Standardize error messages.
12791 And s/@prec/%prec/!
12792 (reader): Use trace_flag to enable scanner/parser debugging,
12793 instead of an adhoc scheme.
12794 * src/scan-gram.l: Remove trailing debugging code.
12795
e76d2469
PE
127962002-10-16 Paul Eggert <eggert@twinsun.com>
12797
93e2236a
PE
12798 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
12799 MUSCLE_TAB_H.
12800
e76d2469
PE
12801 * NEWS: Officially drop support for building Bison with K&R C,
12802 since it didn't work anyway and it's not worth worrying about.
12803 * Makefile.maint (wget_files): Remove ansi2knr.c.
12804 (ansi2knr.c-url_prefix): Remove.
12805 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
12806 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
12807 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
12808
5bd1c419
PE
128092002-10-15 Paul Eggert <eggert@twinsun.com>
12810
12811 Stop using the "enum_" trick for K&R-style function definitions;
12812 it confused me, and I was the author! Instead, assume that people
12813 who want to use K&R C compilers (when using these modules in GCC,
12814 perhaps?) will run ansi2knr.
12815
12816 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
12817 All uses of "enum_" changed to "enum ".
12818 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
12819 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
e76d2469 12820
5bd1c419
PE
12821 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
12822 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
12823 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
12824 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
12825 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
12826 abitset_not, abitset_ones, abitset_or, abitset_or_and,
12827 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
12828 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
12829 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
12830 Use function prototypes; this removes the need for declaring
12831 static functions simply to provide their prototypes.
12832 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
12833 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
12834 bitset_count_, bitset_create, bitset_dump, bitset_first,
12835 bitset_free, bitset_init, bitset_last, bitset_next,
12836 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
12837 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
12838 bitset_print, bitset_release_memory, bitset_toggle_,
12839 bitset_type_choose, bitset_type_get, bitset_type_name_get,
12840 debug_bitset): Likewise.
12841 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
12842 * lib/bitset_stats.c (bitset_log_histogram_print,
12843 bitset_percent_histogram_print, bitset_stats_and,
12844 bitset_stats_and_cmp, bitset_stats_and_or,
12845 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
12846 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
12847 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
12848 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
12849 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
12850 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
12851 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
12852 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
12853 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
12854 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
12855 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
12856 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
12857 bitset_stats_zero): Likewise.
12858 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
12859 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
12860 bitsetv_dump, debug_bitsetv): Likewise.
12861 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
12862 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
12863 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
12864 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
12865 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
12866 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
12867 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
12868 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
12869 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
12870 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
12871 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
12872 Likewise.
12873 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
12874 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
12875 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
12876 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
12877 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
12878 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
12879 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
12880 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
12881 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
12882 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
12883 lbitset_xor_cmp, lbitset_zero): Likewise.
e76d2469 12884
ae26e1f0
AD
128852002-10-14 Akim Demaille <akim@epita.fr>
12886
12887 Version 1.75.
12888
d43baf71
AD
128892002-10-14 Akim Demaille <akim@epita.fr>
12890
12891 * tests/Makefile.am (maintainer-check-posix): New.
12892
7ebc83e3
AD
128932002-10-14 Akim Demaille <akim@epita.fr>
12894
12895 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
12896 member.
12897
05846dae
AD
128982002-10-14 Akim Demaille <akim@epita.fr>
12899
12900 * src/tables.c (table_ninf_remap): base -> tab.
12901 Reported by Matt Rosing.
12902
1318e37d
PE
129032002-10-14 Paul Eggert <eggert@twinsun.com>
12904
447fbb17
PE
12905 * tests/action.at, tests/calc.at, tests/conflicts.at,
12906 tests/cxx-type.at, tests/headers.at, tests/input.at,
12907 tests/regression.at, tests/synclines.at, tests/torture.at:
12908 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
12909 so that the tests still work even if POSIXLY_CORRECT is set.
12910 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
05846dae 12911
1318e37d
PE
12912 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
12913 for portability to K&R hosts. Fix typo: signed char is guaranteed
12914 only to 127, not to 128.
12915 * data/glr.c (yysigned_char): New type.
12916 * data/yacc.c (yysigned_char): Likewise.
12917 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
12918
cc0f0794
PE
129192002-10-13 Paul Eggert <eggert@twinsun.com>
12920
5038f418
PE
12921 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
12922 true due to limited range of data type" warning from GCC.
12923
cc0f0794
PE
12924 * data/c.m4 (b4_token_defines): Protect against double-inclusion
12925 by wrapping enum yytokentype's definition inside #ifndef
12926 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
12927
6fed0802
AD
129282002-10-13 Akim Demaille <akim@epita.fr>
12929
12930 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
12931 Un yy- yyrhs to avoid the name clash with the global YYRHS.
12932
32f0598d
AD
129332002-10-13 Akim Demaille <akim@epita.fr>
12934
12935 * Makefile.maint: Update from Autoconf 2.54.
12936 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
12937
7ea9a33f
AD
129382002-10-13 Akim Demaille <akim@epita.fr>
12939
12940 * src/print.c (print_state): Separate the list of solved conflicts
12941 from the other items.
12942 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
12943
ea99527d
AD
129442002-10-13 Akim Demaille <akim@epita.fr>
12945
12946 Let nondeterministic skeletons be usable with deterministic
12947 tables.
12948
12949 With the patch, GAWK compiled by GCC without -O2 passes its test
12950 suite using a GLR parser driven by LALR tables. It fails with -O2
12951 because `struct stat' gives two different answers on my machine:
12952 88 (definition of an auto var) and later 96 (memset on this var).
12953 Hence the stack is badly corrumpted. The headers inclusion is to
12954 blame: if I move the awk.h inclusion before GLR's system header
12955 inclusion, the two struct stat have the same size.
12956
12957 * src/tables.c (pack_table): Always create conflict_table.
12958 (token_actions): Always create conflict_list.
12959 * data/glr.c (YYFLAG): Remove, unused.
12960
f377f69f
AD
129612002-10-13 Akim Demaille <akim@epita.fr>
12962
12963 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
12964 (O0FLAGS): New.
12965 (VALGRIND, GXX): New.
12966 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
12967 * tests/bison.in: Run $PREBISON a pre-command.
12968 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
12969 (maintainer-check-g++): New.
12970 * Makefile.am (maintainer-check): New.
12971
2a1fe6ed
AD
129722002-10-13 Akim Demaille <akim@epita.fr>
12973
12974 * data/glr.c: Formatting changes.
12975 Tweak some trace messages to match yacc.c's.
12976
f50adbbd
AD
129772002-10-13 Akim Demaille <akim@epita.fr>
12978
12979 GLR parsers sometimes raise parse errors instead of performing the
12980 default reduction.
12981 Reported by Charles-Henry de Boysson.
12982
12983 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
ba0fe3c7 12984 check the length of the traces when %glr.
f50adbbd
AD
12985 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
12986 GLR's traces.
12987 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
12988 Test GLR parsers.
12989 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
12990 (yyltype): Remove the yy prefix from the member names.
12991 (yytable): Complete its comment.
12992 (yygetLRActions): Map error action number from YYTABLE from
12993 YYTABLE_NINF to 0.
12994 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
12995 (which was a bug: it should have been YYTABEL_NINF, and yet it was
12996 not satisfying as we could compare an YYACTION computed from
12997 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
12998 only value for error actions.
12999 (yyreportParseError): In verbose parse error messages, don't issue
13000 `error' in the list of expected tokens.
13001 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
13002 next action to perform to match glr.c's decoding.
13003 (yytable): Complete its comment.
13004
bcbad5b9
PE
130052002-10-13 Paul Eggert <eggert@twinsun.com>
13006
13007 Fix problem reported by Henrik Grubbstroem in
161a71f3 13008 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
bcbad5b9
PE
13009 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
13010 because the Bison parser reads the second action before reducing
13011 the first one.
13012 * src/scan-gram.l (rule_length): New static var.
13013 Use it to keep track of the rule length in the scanner, since
13014 we can't expect the parser to be in lock-step sync with the scanner.
13015 (handle_action_dollar, handle_action_at): Use this var.
13016 * tests/actions.at (Exotic Dollars): Test for the problem.
05846dae 13017
14904b89
PE
130182002-10-12 Paul Eggert <eggert@twinsun.com>
13019
1fe611e5
PE
13020 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
13021 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
13022 Include <sys/time.h> when checking for clock_t and struct tms.
13023 Use same include order as source.
13024 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
161a71f3 13025 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
05846dae 13026
1fe611e5
PE
13027 * lib/timevar.c: Update copyright date and clarify comments.
13028 (get_time) [IN_GCC]: Keep the GCC version for reference.
05846dae 13029
1fe611e5
PE
13030 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
13031 GCC version as of today, then merge Bison's changes.
13032 Change "GCC" to "Bison" in copyright notice. timevar.def's
13033 author is Akim, so change that too.
13034
98194095
PE
13035 * src/reader.c (grammar_current_rule_check):
13036 Don't worry about the default action if $$ is untyped.
13037 Prevents bogus warnings reported by Jim Gifford in
161a71f3 13038 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
98194095 13039
14904b89
PE
13040 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
13041 * data/glr.c, data/lalr1.cc, data/yacc.c:
13042 Output token definitions before the first part of user declarations.
13043 Fixes compatibility problem reported by Jim Gifford for kbd in
161a71f3 13044 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14904b89 13045
ff6dca18
PE
130462002-10-11 Paul Eggert <eggert@twinsun.com>
13047
13048 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
13049 (yyparse): here. This undoes some of the 2002-07-25 change.
13050 Compatibility problem reported by Ralf S. Engelschall with
13051 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
13052
eb714592
AD
130532002-10-11 Akim Demaille <akim@epita.fr>
13054
13055 * tests/regression.at Characters Escapes): New.
13056 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
13057 characters.
13058 Reported by Jan Nieuwenhuizen.
13059
b7195100
AD
130602002-10-11 Akim Demaille <akim@epita.fr>
13061
13062 * po/id.po: New.
13063
f28a0f2d
PE
130642002-10-10 Paul Eggert <eggert@twinsun.com>
13065
13066 Portability fixes for bitsets; this also avoids several GCC
13067 warnings.
13068
13069 * lib/abitset.c: Include <stddef.h>, for offsetof.
13070 * lib/lbitset.c: Likewise.
13071
13072 * lib/abitset.c (abitset_bytes): Return a size that is aligned
13073 properly for vectors of objects. Do not assume that adding a
13074 header size to a multiple of a word size yields a value that is
13075 properly aligned for the whole union.
13076 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13077
13078 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
13079 unique names for structures.
13080 * lib/ebitset.c (ebitset_bytes): Likewise.
13081 * lib/lbitset.c (lbitset_bytes): Likewise.
13082
13083 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
13084 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
13085 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
13086 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
13087 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
13088 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
13089 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
13090 to improve the type-checking that GCC can do.
13091 * lib/bitset.c (bitset_op4_cmp): Likewise.
13092 * lib/bitset_stats.c (bitset_stats_count,
13093 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
13094 bitset_stats_copy, bitset_stats_disjoint_p,
13095 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
13096 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
13097 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
13098 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
13099 bitset_stats_and_or_cmp, bitset_stats_andn_or,
13100 bitset_stats_andn_or_cmp, bitset_stats_or_and,
13101 bitset_stats_or_and_cmp): Likewise.
13102 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
13103 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
13104 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
13105 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
13106
13107 * lib/abitset.h: Include bitset.h, not bbitset.h.
13108 * lib/ebitset.h: Likewise.
13109 * lib/lbitset.h: Likewise.
13110
13111 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
13112 All instances of parameters of type enum bitset_opts are now of
13113 type enum_bitset_opts, to conform to the C Standard, and similarly
13114 for enum_bitset_type.
13115 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13116 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13117
13118 Do not use "struct bitset_struct" to mean different things in
13119 different modules. Not only is this confusing, it violates
13120 the C Standard, which requires that structure types in different
13121 modules must be compatible if one is to be passed to the other.
13122 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
13123 All instances of "struct bitset_struct *" replaced with "bitset".
13124 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
13125 (union bitset_union, struct abitset_struct, struct ebitset_struct,
13126 struct lbitset_struct, struct bitset_stats_struct): New types.
13127 All uses of struct bitset_struct changed to union bitset_union,
13128 etc.
ba0fe3c7 13129 * lib/abitset.c (struct abitset_struct, abitset,
f28a0f2d
PE
13130 struct bitset_struct): Remove.
13131 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
13132 struct bitset_struct): Remove.
13133 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
13134 bitset_struct): Remove.
13135 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
13136 Likewise.
13137
13138 Do not call a function of type T using a call that assumes the
13139 function is of a different type U. Standard C requires that a
13140 function must be called with a type that is compatible with its
13141 definition.
13142 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13143 New decls.
13144 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13145 New functions.
13146 * lib/ebitset.c (PFV): Remove.
13147 * lib/lbitset.c (PFV): Likewise.
13148 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
13149 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
13150 decls.
13151 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
13152 (ebitset_vtable): Use them.
13153 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
13154 lbitset_xor): New functions.
13155 (lbitset_vtable): Use them.
13156
13157 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
13158 Declare.
13159
13160 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
13161 GCC warning.
13162 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
13163 Use offsetof, for simplicity.
13164
6fbe4984
PE
131652002-10-06 Paul Eggert <eggert@twinsun.com>
13166
13167 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
13168 the same width as int. This reapplies a hunk of the 2002-08-12 patch
161a71f3 13169 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
6fbe4984
PE
13170 which was inadvertently undone by the 2002-09-30 patch.
13171 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
13172 the same width as int.
13173
420f93c8
PE
131742002-10-04 Paul Eggert <eggert@twinsun.com>
13175
13176 Version 1.50.
13177
13178 * configure.ac (AC_INIT), NEWS: Increment version number.
13179
13180 * doc/bison.texinfo: Minor spelling, grammar, and white space
13181 fixes.
13182 (Symbols): Mention that any negative value returned from yylex
13183 signifies end-of-input. Warn about negative chars. Mention
13184 the portable Standard C character set.
13185
13186 The GNU coding standard says CFLAGS and YFLAGS are reserved
13187 for the installer to set.
13188 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
13189 * src/Makefile.am (AM_CFLAGS): Likewise.
13190 (AM_YFLAGS): Renamed from YFLAGS.
13191
13192 Fix some MAX and MIN problems.
13193 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
13194 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
13195 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
13196 * src/reader.c (reader): Use it.
13197
13198 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
13199 POSIX 1003.1-2001 has removed fgrep.
13200
132012002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
13202
13203 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
13204 interpreted as signed.
13205 * lib/ebitset.c (ebitset_list): Fix bug.
13206
ff68026d
PE
132072002-10-01 Paul Eggert <eggert@twinsun.com>
13208
13209 More fixes for 64-bit hosts and large bitsets.
13210
13211 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
13212 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
13213 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
13214 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
13215 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
13216 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
13217 bitset_count_): Likewise.
13218 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
13219 bitset_first, bitset_last): Likewise.
13220 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
13221 bitset_stats_list_reverse, bitset_stats_size,
13222 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
13223 Likewise.
13224 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13225 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13226 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13227 bitsetv_reflexive_transitive_closure): Likewise.
13228 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
13229 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
13230 Likewise.
13231 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
13232 Likewise.
420f93c8 13233
ff68026d
PE
13234 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
13235 Use size_t, not unsigned int, to count bytes.
13236 * lib/abitset.h (abitset_bytes): Likewise.
13237 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
13238 Likewise.
13239 * lib/bitset.h (bitset_bytes): Likewise.
13240 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
13241 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
13242 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13243 * lib/ebitset.c (ebitset_bytes): Likewise.
13244 * lib/ebitset.h (ebitset_bytes): Likewise.
13245 * lib/lbitset.c (lbitset_bytes): Likewise.
13246 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 13247
ff68026d
PE
13248 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
13249 abitset_subset_p, abitset_disjoint_p, abitset_and,
13250 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
13251 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
13252 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
13253 abitset_or_and, abitset_or_and_cmp):
13254 Use bitset_windex instead of unsigned int.
13255 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
13256 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
13257 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
13258 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
13259 Likewise.
13260 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 13261
ff68026d
PE
13262 * lib/bitset.c (bitset_print):
13263 Use proper printf formats for widths of integer types.
13264 * lib/bitset_stats.c (bitset_percent_histogram_print,
13265 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
13266 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13267 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
13268 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 13269
ff68026d
PE
13270 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
13271 BITSET_SIZE_MAX): New macros.
13272 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
13273 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
13274 to BITSET_WINDEX_MAX.
13275
13276 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
13277 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
13278 since we now return the bitset_bindex type (not int).
13279
13280 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
13281 when computing sizes.
13282 * lib/ebitset.c (ebitset_elts_grow): Likewise.
13283
13284 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
13285 and avoid cast to unsigned.
13286
6aa452a6
AD
132872002-09-30 Akim Demaille <akim@epita.fr>
13288
13289 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
13290 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
13291 Updates from Michael Hayes.
13292
927f7817
AD
132932002-09-30 Art Haas <ahaas@neosoft.com>
13294
13295 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
13296 invocations.
13297 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
13298 defined.
13299
9738f41e
AD
133002002-09-27 Akim Demaille <akim@epita.fr>
13301
13302 Version 1.49c.
13303
a5c75d7f
AD
133042002-09-27 Akim Demaille <akim@epita.fr>
13305
13306 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
13307 (Because of AC_LIBSOURCE).
13308
8280e179
AD
133092002-09-27 Akim Demaille <akim@epita.fr>
13310
13311 Playing with Autoscan.
13312
13313 * configure.ac: Remove the old LIBOBJ tweaks.
13314 (AC_REPLACE_FUNCS): Add strrchr and strtol.
13315 * lib/strrchr.c: New.
13316 * lib/strtol.c: New, from the Coreutils 4.5.1.
13317
ae64af35
AD
133182002-09-27 Akim Demaille <akim@epita.fr>
13319
13320 Playing with Autoscan.
13321
13322 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
13323 * lib/Makefile.am (libbison_a_SOURCES): No longer include
13324 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
13325 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
13326 Coreutils 4.5.1.
13327
d1a1114f
AD
133282002-09-24 Akim Demaille <akim@epita.fr>
13329
13330 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
13331 (Frequently Asked Questions, Parser Stack Overflow): New.
13332
b906441c
AD
133332002-09-13 Akim Demaille <akim@epita.fr>
13334
13335 Playing with autoscan.
13336
13337 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
13338 * src/files.c (skeleton_find): Remove, unused.
13339 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
13340 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
13341
bd701811
AD
133422002-09-13 Akim Demaille <akim@epita.fr>
13343
13344 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
13345 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
13346
e0a13e7b
AD
133472002-09-13 Akim Demaille <akim@epita.fr>
13348
13349 * configure.ac: Require 2.54.
13350 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
13351 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
13352 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
13353 Remove, provided by Autoconf macros.
13354
c97011bf
AD
133552002-09-12 Akim Demaille <akim@epita.fr>
13356
13357 * m4/prereq.m4: Update, from Coreutils 4.5.1.
13358
d862b1be
AD
133592002-09-12 Akim Demaille <akim@epita.fr>
13360
13361 * m4/prereq.m4: Update, from Fileutils 4.1.5.
13362 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
13363 Reported by Martin Mokrejs.
13364
3d38c03a
AD
133652002-09-10 Akim Demaille <akim@epita.fr>
13366
13367 * src/parse-gram.y: Associate a human readable string to each
13368 token type.
13369 * tests/regression.at (Invalid inputs): Adjust.
13370
b6347355
AD
133712002-09-10 Gary V. Vaughan <gary@gnu.org>
13372
13373 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
13374 with an Autoconf-2.5x style configure.ac.
13375
09ba4ab2
PE
133762002-09-06 Paul Eggert <eggert@twinsun.com>
13377
13378 * doc/bison.texinfo (Conditions): Make explicit that the GPL
13379 exception applies only to yacc.c. This is a modification of a
13380 patch originally suggested by Akim Demaille.
13381
21846f69
AD
133822002-09-06 Akim Demaille <akim@epita.fr>
13383
09ba4ab2
PE
13384 * data/c.m4 (b4_copyright): Move the GPL exception comment from
13385 here to...
13386 * data/yacc.c: here.
13387
21846f69
AD
13388 * data/lalr1.cc (struct yyltype): Don't define it, since we use
13389 LocationType.
13390 (b4_ltype): Default to yy::Location from location.hh.
13391
c0ad8bf3
AD
133922002-09-04 Jim Meyering <jim@meyering.net>
13393
13394 * data/yacc.c: Guard the declaration of yytoknum also with
13395 `#ifdef YYPRINT', so it is declared only when used.
13396
3a93251e
AD
133972002-09-04 Akim Demaille <akim@epita.fr>
13398
13399 * configure.in: Rename as...
13400 * configure.ac: this.
13401 Bump to 1.49c.
13402
427c0dda
AD
134032002-09-04 Akim Demaille <akim@epita.fr>
13404
13405 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
13406 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
13407 translate maintainer only messages.
13408
6a254321
PE
134092002-08-12 Paul Eggert <eggert@twinsun.com>
13410
645e30d1
PE
13411 Version 1.49b.
13412
6a254321
PE
13413 * Makefile.am (SUBDIRS): Remove intl.
13414 (DISTCLEANFILES): Remove.
13415 * NEWS: Mention that GNU M4 is now required. Clarify what is
13416 meant by "larger grammars". Mention the pt_BR translation.
13417 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
13418 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
13419 Bump version from 0.11.2 to 0.11.5.
13420 (BISON_PREREQ_STAGE): Remove.
13421 (AM_GNU_GETTEXT): Use external gettext.
13422 (AC_OUTPUT): Remove intl/Makefile.
13423
13424 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
13425
13426 * data/glr.c: Include string.h, for strlen.
13427 (yyreportParseError): Use size_t for yysize.
13428 (yy_yypstack): No longer nested inside yypstates, as nested
13429 functions are not portable. Do not assume size_t is the
13430 same width as int.
13431 (yypstates): Do not assume that ptrdiff_t is the same width
13432 as int, and similarly for yyposn and YYINDEX.
13433
13434 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
13435
13436 * lib/Makefile.am (INCLUDES): Do not include from the intl
13437 directory, which has been removed.
13438 * src/Makefile.am (INCLUDES): Likewise.
13439
13440 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
13441 (bitsets_sources, additional_bitsets_sources, timevars_sources):
13442 New vars.
13443
13444 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
13445 * tests/Makefile.am (EXTRA_DIST): Likewise.
13446
13447 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
13448 Do not assume that bitset_windex is the same width as unsigned.
13449
13450 * lib/abitset.c (abitset_unused_clear): Do not assume that
13451 bitset_word is the same width as int.
13452 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
13453 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
13454 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
13455 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
13456 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
13457
13458 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
13459 portability to one's complement hosts!).
13460 * lib/ebitset.c (ebitset_op1): Likewise.
13461 * lib/lbitset.c (lbitset_op1): Likewise.
13462
13463 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
13464 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
13465 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
13466 Sync with fileutils.
13467 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
13468 lib/gettext.h: Sync with diffutils.
13469
13470 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
13471 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
13472
13473 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
13474 PROTOTYPES to check for prototypes, and "defined __STDC__" to
13475 check for void *.
13476
13477 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
13478 size_t; the old version tried to do this but casted improperly.
13479 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
13480 (bitset_test): Now returns int, not unsigned long.
13481
13482 * lib/bitset_stats.c: Include "gettext.h".
13483 (_): New macro.
13484 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
13485 name locals "index", as it generates unnecessary warnings on some
13486 hosts that have an "index" function.
13487
13488 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
13489 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
13490 they need translation.
13491 * src/LR0.c (state_list_append, new_itemsets, get_state,
13492 append_states, generate_states): Likewise.
13493 * src/assoc.c (assoc_to_string): Likewise.
13494 * src/closure.c (print_closure, set_firsts, closure): Likewise.
13495 * src/gram.c (grammar_dump): Likewise.
13496 * src/injections.c (injections_compute): Likewise.
13497 * src/lalr.c (lookaheads_print): Likewise.
13498 * src/relation.c (relation_transpose): Likewise.
13499 * src/scan-gram.l: Likewise.
13500 * src/tables.c (table_grow, pack_vector): Likewise.
13501
13502 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
13503 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
13504 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
13505 * m4/mbstate_t.m4: Sync with fileutils.
13506 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
13507
13508 * po/LINGUAS: Add pt_BR.
13509 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
13510 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
13511 lib/timevar.c.
13512 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
13513 manual recommends.
13514 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
13515
13516 * src/complain.c (strerror_r): Remove decl; not needed.
13517 (strerror): Use same pattern as ../lib/error.c.
13518
13519 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
13520
13521 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
13522
13523 * src/main.c (main): Cast result of bindtextdomain and textdomain
13524 to void, to avoid a GCC warning when --disable-nls is in effect.
13525
13526 * src/scan-gram.l: Use strings rather than escapes when possible,
13527 to minimize the number of warnings from xgettext.
13528 (handle_action_dollar, handle_action_at): Don't use isdigit,
13529 as it mishandles negative chars and it may not work as expected
13530 outside the C locale.
13531
13532 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
13533 this is a GCC extension and is not portable to other compilers.
13534
13535 * src/system.h (alloca): Use same pattern as ../lib/error.c.
13536 Do not include <ctype.h>; no longer needed.
13537 Do not include <malloc.h>; no longer needed (and generates
13538 warnings on OpenBSD 3.0).
13539
13540 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
13541 it's not portable.
13542
13543 * tests/regression.at: Do not use 'cc -c input.c -o input';
13544 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
13545
13546 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
13547 exit status as failure, not just exit status 1. Sun C exits
13548 with status 2 sometimes.
13549
13550 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
13551 Use it for the two large tests.
13552
c8f002c7
AD
135532002-08-02 Akim Demaille <akim@epita.fr>
13554
13555 * src/conflicts.c (conflicts_output): Don't output rules never
13556 reduced here, since anyway that computation doesn't work.
13557 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
13558 (rule_useless_p, rule_never_reduced_p): New.
13559 (grammar_rules_partial_print): Use a filter instead of a range.
13560 Display the title only if needed.
13561 (grammar_rules_print): Adjust.
13562 (grammar_rules_never_reduced_report): New.
13563 * src/tables.c (action_row): Move the computation of rules never
13564 reduced to...
13565 (token_actions): here.
13566 * src/main.c (main): Make the parser before making the report, so
13567 that rules never reduced are computed.
13568 Call grammar_rules_never_reduced_report.
13569 * src/print.c (print_results): Report rules never reduced.
13570 * tests/conflicts.at, tests/reduce.at: Adjust.
13571
cd08e51e
AD
135722002-08-01 Akim Demaille <akim@epita.fr>
13573
13574 Instead of attaching lookaheads and duplicating the rules being
13575 reduced by a state, attach the lookaheads to the reductions.
13576
13577 * src/state.h (state_t): Remove the `lookaheads',
13578 `lookaheads_rule' member.
13579 (reductions_t): Add a `lookaheads' member.
13580 Use a regular array for the `rules'.
13581 * src/state.c (reductions_new): Initialize the lookaheads member
13582 to 0.
13583 (state_rule_lookaheads_print): Adjust.
13584 * src/state.h, src/state.c (state_reductions_find): New.
13585 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
13586 (count_rr_conflicts): Adjust.
13587 * src/lalr.c (LArule): Remove.
13588 (add_lookback_edge): Adjust.
13589 (state_lookaheads_count): New.
13590 (states_lookaheads_initialize): Merge into...
13591 (initialize_LA): this.
13592 (lalr_free): Adjust.
13593 * src/main.c (main): Don't free nullable and derives too early: it
13594 is used by --verbose.
13595 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
13596
bb0027a9
AD
135972002-08-01 Akim Demaille <akim@epita.fr>
13598
13599 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
13600 `rule_number_t**'.
13601 (set_derives, free_derives): Rename as...
13602 (derives_compute, derives_free): this.
13603 Adjust all dependencies.
13604 * src/nullable.c (set_nullable, free_nullable): Rename as...
13605 (nullable_compute, nullable_free): these.
13606 (rule_list_t): Store rule_t *, not rule_number_t.
13607 * src/state.c (state_rule_lookaheads_print): Directly compare rule
13608 pointers, instead of their numbers.
13609 * src/main.c (main): Call nullable_free, and derives_free earlier,
13610 as they were lo longer used.
13611
3325ddc4
AD
136122002-08-01 Akim Demaille <akim@epita.fr>
13613
13614 * lib/timevar.c (get_time): Include children time.
13615 * src/lalr.h (LA, LArule): Don't export them: used with the
13616 state_t.
13617 * src/lalr.c (LA, LArule): Static.
13618 * src/lalr.h, src/lalr.c (lalr_free): New.
13619 * src/main.c (main): Call it.
13620 * src/tables.c (pack_vector): Check whether loc is >= to the
13621 table_size, not >.
13622 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
13623 (tables_generate): do it, since that's also it which allocates
13624 them.
13625 Don't free LA and LArule, main does.
13626
c6f1a33c
AD
136272002-07-31 Akim Demaille <akim@epita.fr>
13628
13629 Separate parser tables computation and output.
13630
13631 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
13632 (conflict_list, conflict_list_cnt, table, check, table_ninf)
13633 (yydefgoto, yydefact, high): Move to...
13634 * src/tables.h, src/tables.c: here.
13635 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
13636 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
13637 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
13638 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
13639 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
13640 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
13641 (action_row, save_row, token_actions, save_column, default_goto)
13642 (goto_actions, sort_actions, matching_state, pack_vector)
13643 (table_ninf_remap, pack_table, prepare_actions): Move to...
13644 * src/tables.c: here.
13645 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
13646 * src/output.c (token_actions, output_base, output_conflicts)
13647 (output_check): Merge into...
13648 (prepare_actions): this.
13649 (actions_output): Rename as...
13650 (user_actions_output): this.
13651 * src/main.c (main): Call tables_generate and tables_free.
13652
1509d42f
AD
136532002-07-31 Akim Demaille <akim@epita.fr>
13654
13655 Steal GCC's --time-report support.
13656
13657 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
13658 stolen/adjusted from GCC.
13659 * m4/stage.m4: Remove time related checks.
13660 * m4/timevar.m4: New.
13661 * configure.in: Adjust.
13662 * src/system.h: Adjust to using timevar.h.
13663 * src/getargs.h, src/getargs.c: Support trace_time for
13664 --trace=time.
13665 * src/main.c (stage): Remove.
13666 (main): Replace `stage' invocations with timevar calls.
13667 * src/output.c: Insert pertinent timevar calls.
13668
273a74fa
AD
136692002-07-31 Akim Demaille <akim@epita.fr>
13670
13671 Let --trace have arguments.
13672
13673 * src/getargs.h (enum trace_e): New.
13674 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
13675 (long_options, short_options): --trace/-T takes an optional
13676 argument.
13677 Change all the uses of trace_flag to reflect the new flags.
13678 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
13679
13680 Strengthen `stage' portability.
13681
13682 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
13683 * configure.in: Use it.
13684 Don't check for malloc.h and sys/times.h.
13685 * src/system.h: Include them when appropriate.
13686 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
13687 times and struct tms are available.
13688
217598da
AD
136892002-07-30 Akim Demaille <akim@epita.fr>
13690
13691 In verbose parse error message, don't report `error' as an
13692 expected token.
13693 * tests/actions.at (Printers and Destructors): Adjust.
13694 * tests/calc.at (Calculator $1): Adjust.
13695 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
13696 error message, do not report the parser accepts the error token in
13697 that state.
13698
52489d44
AD
136992002-07-30 Akim Demaille <akim@epita.fr>
13700
13701 Normalize conflict related messages.
13702
13703 * src/complain.h, src/complain.c (warn, complain): New.
13704 * src/conflicts.c (conflicts_print): Use them.
13705 (conflict_report_yacc): New, extracted from...
13706 (conflicts_print): here.
13707 * tests/conflicts.at, tests/existing.at: Adjust.
13708
e8832397
AD
137092002-07-30 Akim Demaille <akim@epita.fr>
13710
13711 Report rules which are never reduced by the parser: those hidden
13712 by conflicts.
13713
13714 * src/LR0.c (save_reductions): Don't make the final state too
13715 different: save its reduction (accept) instead of having a state
13716 without any action (no shift or goto, no reduce).
13717 Note: the final state is now a ``regular'' state, i.e., the
13718 parsers now contain `reduce 0' as default reduction.
13719 Nevertheless, since they decide to `accept' when yystate =
13720 final_state, they still will not reduce rule 0.
13721 * src/print.c (print_actions, print_reduction): Adjust.
13722 * src/output.c (action_row): Track reduced rules.
13723 (token_actions): Report rules never reduced.
13724 * tests/conflicts.at, tests/regression.at: Adjust.
13725
caf23d24
AD
137262002-07-30 Akim Demaille <akim@epita.fr>
13727
13728 `stage' was accidently included in a previous patch.
13729 Initiate its autoconfiscation.
13730
13731 * configure.in: Look for malloc.h and sys/times.h.
13732 * src/main.c (stage): Adjust.
13733 Report only when trace_flag.
13734
640748ee
AD
137352002-07-29 Akim Demaille <akim@epita.fr>
13736
13737 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
13738 state_number_t.
13739 (errs_t): symbol_t*, not symbol_number_t.
13740 (reductions_t): rule_t*, not rule_number_t.
13741 (FOR_EACH_SHIFT): New.
13742 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
13743 * src/print.c, src/print_graph.c: Adjust.
13744
88bce5a2
AD
137452002-07-29 Akim Demaille <akim@epita.fr>
13746
13747 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
13748
13749 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
13750 (endtoken, accept): these.
13751 * src/reader.c (reader): Set endtoken's default tag to "$end".
13752 Set undeftoken's tag to "$undefined" instead of "$undefined.".
13753 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
13754 Adjust.
13755
1bfb97db
AD
137562002-07-29 Akim Demaille <akim@epita.fr>
13757
13758 * src/reduce.c (reduce_grammar): When the language is empty,
13759 complain about the start symbol, not the axiom.
13760 Use its location.
13761 * tests/reduce.at (Empty Language): New.
13762
fc5734fe
AD
137632002-07-26 Akim Demaille <akim@epita.fr>
13764
13765 * src/reader.h, src/reader.c (gram_error): ... can't get
13766 yycontrol without making too strong assumptions on the parser
13767 itself.
13768 * src/output.c (prepare_tokens): Use the real 0th value of
13769 token_translations instead of `0'.
13770 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
13771 visible here.
13772 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
13773 for the time being: %locations ought to provide it to yyerror.
13774
3650b4b8
AD
137752002-07-25 Akim Demaille <akim@epita.fr>
13776
13777 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
13778 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
13779 * tests/regression.at (Web2c Actions): Adjust.
13780
4b3d3a8e
AD
137812002-07-25 Akim Demaille <akim@epita.fr>
13782
13783 Stop storing rules from 1 to nrules + 1.
13784
13785 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
13786 * src/nullable.c, src/output.c, src/print.c, src/reader.c
13787 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
13788 Iterate from 0 to nrules.
13789 Use rule_number_as_item_number and item_number_as_rule_number.
13790 Adjust to `derive' now containing possibly 0.
13791 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
13792 Handle the `- 1' part in rule numbers from/to item numbers.
13793 * src/conflicts.c (log_resolution): Fix the message which reversed
13794 shift and reduce.
13795 * src/output.c (action_row): Initialize default_rule to -1.
13796 (token_actions): Adjust.
13797 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
13798 expected output.
13799 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
13800
4a2a22f4
AD
138012002-07-25 Akim Demaille <akim@epita.fr>
13802
13803 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
13804 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
13805 (b4_c_knr_arg_decl): New.
13806 * data/yacc.c: Use it to define yysymprint, yydestruct, and
13807 yyreport_parse_error.
13808
b8df3223
AD
138092002-07-25 Akim Demaille <akim@epita.fr>
13810
13811 * data/yacc.c (yyreport_parse_error): New, extracted from...
13812 (yyparse): here.
13813 (yydestruct, yysymprint): Move above yyparse.
13814 Be K&R compliant.
13815
a762e609
AD
138162002-07-25 Akim Demaille <akim@epita.fr>
13817
13818 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
13819 replace...
13820 (b4_sint_type, b4_uint_type): these.
13821 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
13822 * tests/regression.at (Web2c Actions): Adjust.
13823
12b0043a
AD
138242002-07-25 Akim Demaille <akim@epita.fr>
13825
13826 * src/gram.h (TIEM_NUMBER_MAX): New.
13827 (item_number_of_rule_number, rule_number_of_item_number): Rename
13828 as...
13829 (rule_number_as_item_number, item_number_as_rule_number): these.
13830 Adjust dependencies.
13831 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
13832 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
13833 (symbol_number_to_vector_number): New.
13834 (order): Of vector_number_t* type.
13835 (base_t, BASE_MAX, BASE_MIN): New.
13836 (froms, tos, width, pos, check): Of base_t type.
13837 (action_number_t, ACTION_MIN, ACTION_MAX): New.
13838 (actrow): Of action_number_t type.
13839 (conflrow): Of unsigned int type.
13840 (table_ninf, base_ninf): New.
13841 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
13842 (muscle_insert_int_table, muscle_insert_base_table)
13843 (muscle_insert_rule_number_table): New.
13844 (prepare_tokens): Output `toknum' as int_table.
13845 (action_row): Returns a rule_number_t.
13846 Use ACTION_MIN, not SHRT_MIN.
13847 (token_actions): yydefact is rule_number_t*.
13848 (table_ninf_remap): New.
13849 (pack_table): Use it for `base' and `table'.
13850 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
13851 replaced with...
13852 (YYPACT_NINF, YYTABLE_NINF): these.
13853 (yypact, yytable): Compute their types instead of hard-coded
13854 `short'.
13855 * tests/regression.at (Web2c Actions): Adjust.
13856
5dde258a
AD
138572002-07-19 Akim Demaille <akim@epita.fr>
13858
13859 * src/scan-gram.l (id): Can start with an underscore.
13860
a945ec39
AD
138612002-07-16 Akim Demaille <akim@epita.fr>
13862
13863 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
13864 Adjust all former `associativity' dependencies.
13865 * src/symtab.c (symbol_new): Default associativity is `undef', not
13866 `right'.
13867 (symbol_check_alias_consistence): Adjust.
13868
fae437e8
AD
138692002-07-09 Akim Demaille <akim@epita.fr>
13870
13871 * doc/bison.texinfo: Properly set the ``header'' part.
13872 Use @dircategory ``GNU programming tools'' as per Texinfo's
13873 documentation.
13874 Use @copying.
13875
1a715ef2
AD
138762002-07-09 Akim Demaille <akim@epita.fr>
13877
13878 * lib/quotearg.h: Protect against multiple inclusions.
13879 * src/location.h (location_t): Add a `file' member.
13880 (LOCATION_RESET, LOCATION_PRINT): Adjust.
13881 * src/complain.c (warn_at, complain_at, fatal_at): Drop
13882 `error_one_per_line' support.
13883
a5d50994
AD
138842002-07-09 Akim Demaille <akim@epita.fr>
13885
13886 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
13887 * src/reader.c (lineno): Remove.
13888 Adjust all dependencies.
13889 (get_merge_function): Take a location and use complain_at.
13890 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
13891 * tests/regression.at (Invalid inputs, Mixing %token styles):
13892 Adjust.
13893
b275314e
AD
138942002-07-09 Akim Demaille <akim@epita.fr>
13895
13896 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
13897 recovery rule, and forbid extensions when --yacc.
13898 (gram_error): Use complain_at.
13899 * src/reader.c (reader): Exit if there were parse errors.
13900
865b9df1
AD
139012002-07-09 Akim Demaille <akim@epita.fr>
13902
13903 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
13904 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
13905 Reported by R Blake <blakers@mac.com>.
13906
c76e14da
AD
139072002-07-09 Akim Demaille <akim@epita.fr>
13908
13909 * data/yacc.c: Output the copyright notive in the header.
13910
7db2ed2d
AD
139112002-07-03 Akim Demaille <akim@epita.fr>
13912
13913 * src/output.c (froms, tos): Are state_number_t.
13914 (save_column): sp, sp1, and sp2 are state_number_t.
13915 (prepare): Rename `final' as `final_state_number', `nnts' as
13916 `nterms_number', `nrules' as `rules_number', `nstates' as
13917 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
13918 unused.
13919 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
13920 * data/lalr1.cc (nsym_): Remove, unused.
13921
e68e0410
AD
139222002-07-03 Akim Demaille <akim@epita.fr>
13923
13924 * src/lalr.h, src/lalr.c (goto_number_t): New.
13925 * src/lalr.c (goto_list_t): New.
13926 Propagate them.
13927 * src/nullable.c (rule_list_t): New.
13928 Propagate.
13929 * src/types.h: Remove.
13930
e1a4f3a4
AD
139312002-07-03 Akim Demaille <akim@epita.fr>
13932
13933 * src/closure.c (print_fderives): Use rule_rhs_print.
13934 * src/derives.c (print_derives): Use rule_rhs_print.
13935 (rule_list_t): New, replaces `shorts'.
13936 (set_derives): Add comments.
13937 * tests/sets.at (Nullable, Firsts): Adjust.
13938
536545f3
AD
139392002-07-03 Akim Demaille <akim@epita.fr>
13940
13941 * src/output.c (prepare_actions): Free `tally' and `width'.
13942 (prepare_actions): Allocate and free `order'.
13943 * src/symtab.c (symbols_free): Free `symbols'.
13944 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
13945 * src/output.c (m4_invoke): Move to...
13946 * src/scan-skel.l: here.
13947 (<<EOF>>): Close yyout, and free its name.
13948
8b752b00
AD
139492002-07-03 Akim Demaille <akim@epita.fr>
13950
13951 Fix some memory leaks, and fix a bug: state 0 was examined twice.
13952
13953 * src/LR0.c (new_state): Merge into...
13954 (state_list_append): this.
13955 (new_states): Merge into...
13956 (generate_states): here.
13957 (set_states): Don't ensure a proper `errs' state member here, do it...
13958 * src/conflicts.c (conflicts_solve): here.
13959 * src/state.h, src/state.c: Comment changes.
13960 (state_t): Rename member `shifts' as `transitions'.
13961 Adjust all dependencies.
13962 (errs_new): For consistency, also take the values as argument.
13963 (errs_dup): Remove.
13964 (state_errs_set): New.
13965 (state_reductions_set, state_transitions_set): Assert that no
13966 previous value was assigned.
13967 (state_free): New.
13968 (states_free): Use it.
13969 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
13970 temporary storage: use `errs' and `nerrs' as elsewhere.
13971 (set_conflicts): Allocate and free this `errs'.
13972
613f5e1a
AD
139732002-07-02 Akim Demaille <akim@epita.fr>
13974
13975 * lib/libiberty.h: New.
13976 * lib: Update the bitset implementation from upstream.
13977 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
13978 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
13979 * src/main.c: Adjust bitset stats calls.
13980
26e0cadc
PE
139812002-07-01 Paul Eggert <eggert@twinsun.com>
13982
13983 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
13984 char, so that negative chars don't collide with $.
13985
1154cced
AD
139862002-06-30 Akim Demaille <akim@epita.fr>
13987
13988 Have the GLR tests be `warning' checked, and fix the warnings.
13989
13990 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
13991 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
13992 (yyremoveDeletes): `yyi' and `yyj' are size_t.
13993 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
13994 (yyaddDeferredAction): static.
13995 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
13996 (yyreportParseError): yyprefix is const.
13997 yytokenp is used only when verbose.
13998 (yy__GNUC__): Replace with __GNUC__.
13999 (yypdumpstack): yyi is size_t.
14000 (yypreference): Un-yy local variables and arguments, to avoid
14001 clashes with `yyr1'. Anyway, we are not in the user name space.
14002 (yytname_size): be an int, as is compared with ints.
14003 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
14004 Use them.
14005 * tests/cxx-gram.at: Use quotation to protect $1.
14006 Use AT_COMPILE to enable warnings hunts.
14007 Prototype yylex and yyerror.
14008 `Use' argc.
14009 Include `string.h', not `strings.h'.
14010 Produce and prototype stmtMerge only when used.
14011 yylex takes a location.
14012
97650f4e
AD
140132002-06-30 Akim Demaille <akim@epita.fr>
14014
14015 We spend a lot of time in quotearg, in particular when --verbose.
14016
14017 * src/symtab.c (symbol_get): Store a quoted version of the key.
14018 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
14019 Adjust all callers.
14020
d2576365
AD
140212002-06-30 Akim Demaille <akim@epita.fr>
14022
14023 * src/state.h (reductions_t): Rename member `nreds' as num.
14024 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
14025 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
14026
ccaf65bc
AD
140272002-06-30 Akim Demaille <akim@epita.fr>
14028
14029 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
14030 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
14031 (shifts_to): Rename as...
14032 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
14033 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
14034 (TRANSITION_IS_DISABLED, transitions_to): these.
14035
87675353
AD
140362002-06-30 Akim Demaille <akim@epita.fr>
14037
14038 * src/print.c (print_shifts, print_gotos): Merge into...
14039 (print_transitions): this.
14040 (print_transitions, print_errs, print_reductions): Align the
14041 lookaheads columns.
14042 (print_core, print_transitions, print_errs, print_state,
14043 print_grammar): Output empty lines separator before, not after.
14044 (state_default_rule_compute): Rename as...
14045 (state_default_rule): this.
14046 * tests/conflicts.at (Defaulted Conflicted Reduction),
14047 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
14048 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
14049
ce4ccb4b
AD
140502002-06-30 Akim Demaille <akim@epita.fr>
14051
14052 Display items as we display rules.
14053
14054 * src/gram.h, src/gram.c (rule_lhs_print): New.
14055 * src/gram.c (grammar_rules_partial_print): Use it.
14056 * src/print.c (print_core): Likewise.
14057 * tests/conflicts.at (Defaulted Conflicted Reduction),
14058 (Unresolved SR Conflicts): Adjust.
14059 (Unresolved SR Conflicts): Adjust and rename as...
14060 (Resolved SR Conflicts): this, as was meant.
14061 * tests/regression.at (Web2c Report): Adjust.
14062
bc933ef1
AD
140632002-06-30 Akim Demaille <akim@epita.fr>
14064
14065 * src/print.c (state_default_rule_compute): New, extracted from...
14066 (print_reductions): here.
14067 Pessimize, but clarify the code.
14068 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
14069
53d4308d
AD
140702002-06-30 Akim Demaille <akim@epita.fr>
14071
14072 * src/output.c (action_row): Let default_rule be always a rule
14073 number.
14074
574fb2d5
AD
140752002-06-30 Akim Demaille <akim@epita.fr>
14076
14077 * src/closure.c (print_firsts, print_fderives, closure):
14078 Use BITSET_EXECUTE.
14079 * src/lalr.c (lookaheads_print): Likewise.
14080 * src/state.c (state_rule_lookaheads_print): Likewise.
14081 * src/print_graph.c (print_core): Likewise.
14082 * src/print.c (print_reductions): Likewise.
14083 * src/output.c (action_row): Likewise.
14084 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
14085
05811fd7
AD
140862002-06-30 Akim Demaille <akim@epita.fr>
14087
14088 * src/print_graph.c: Use report_flag.
14089
0e4d5753
AD
140902002-06-30 Akim Demaille <akim@epita.fr>
14091
14092 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
14093 to...
14094 * src/relation.h, src/relation.c (traverse, relation_digraph)
14095 (relation_print, relation_transpose): New.
14096
24c7d800
AD
140972002-06-30 Akim Demaille <akim@epita.fr>
14098
14099 * src/state.h, src/state.c (shifts_to): New.
14100 * src/lalr.c (build_relations): Use it.
14101
9222837b
AD
141022002-06-30 Akim Demaille <akim@epita.fr>
14103
14104 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
14105 (item_number_of_rule_number, rule_number_of_item_number): New.
14106 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
14107 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
14108 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
14109 Propagate their use.
14110 Much remains to be done, in particular wrt `shorts' from types.h.
14111
260008e5
AD
141122002-06-30 Akim Demaille <akim@epita.fr>
14113
14114 * src/symtab.c (symbol_new): Initialize the `printer' member.
14115
8a731ca8
AD
141162002-06-30 Akim Demaille <akim@epita.fr>
14117
14118 * src/LR0.c (save_reductions): Remove, replaced by...
14119 * src/state.h, src/state.c (state_reductions_set): New.
14120 (reductions, errs): Rename as...
14121 (reductions_t, errs_t): these.
14122 Adjust all dependencies.
14123
32e1e0a4
AD
141242002-06-30 Akim Demaille <akim@epita.fr>
14125
14126 * src/LR0.c (state_list_t, state_list_append): New.
14127 (first_state, last_state): Now symbol_list_t.
14128 (this_state): Remove.
14129 (new_itemsets, append_states, save_reductions): Take a state_t as
14130 argument.
14131 (set_states, generate_states): Adjust.
14132 (save_shifts): Remove, replaced by...
14133 * src/state.h, src/state.c (state_shifts_set): New.
14134 (shifts): Rename as...
14135 (shifts_t): this.
14136 Adjust all dependencies.
14137 * src/state.h (state_t): Remove the `next' member.
14138
e5fb6710
AD
141392002-06-30 Akim Demaille <akim@epita.fr>
14140
14141 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
14142 escaped in slot 0.
14143
c7ca99d4
AD
141442002-06-30 Akim Demaille <akim@epita.fr>
14145
14146 Use hash.h for the state hash table.
14147
14148 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
14149 (allocate_storage): Use state_hash_new.
14150 (free_storage): Use state_hash_free.
14151 (new_state, get_state): Adjust.
14152 * src/lalr.h, src/lalr.c (states): Move to...
14153 * src/states.h (state_t): Remove the `link' member, no longer
14154 used.
14155 * src/states.h, src/states.c: here.
14156 (state_hash_new, state_hash_free, state_hash_lookup)
14157 (state_hash_insert, states_free): New.
14158 * src/states.c (state_table, state_compare, state_hash): New.
14159 * src/output.c (output_actions): Do not free states now, since we
14160 still need to know the final_state number in `prepare', called
14161 afterwards. Do it...
14162 * src/main.c (main): here: call states_free after `output'.
14163
df0e7316
AD
141642002-06-30 Akim Demaille <akim@epita.fr>
14165
14166 * src/state.h, src/state.c (state_new): New, extracted from...
14167 * src/LR0.c (new_state): here.
14168 * src/state.h (STATE_ALLOC): Move to...
14169 * src/state.c: here.
14170 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
14171 * src/state.h, src/state.c: here.
14172
39f41916
AD
141732002-06-30 Akim Demaille <akim@epita.fr>
14174
14175 * src/reader.c (gensym): Rename as...
14176 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
14177 (getsym): Rename as...
14178 (symbol_get): this.
14179
d57650a5
AD
141802002-06-30 Akim Demaille <akim@epita.fr>
14181
14182 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
14183 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
14184 * src/output.c, src/print.c, src/print_graph.c: Propagate.
14185 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
14186
5a08f1ce
AD
141872002-06-30 Akim Demaille <akim@epita.fr>
14188
14189 Make the test suite pass with warnings checked.
14190
14191 * tests/actions.at (Printers and Destructors): Improve.
14192 Avoid unsigned vs. signed issues.
14193 * tests/calc.at: Don't exercise the scanner here, do it...
14194 * tests/input.at (Torturing the Scanner): here.
14195
720623af
PH
141962002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14197
88e7e941 14198 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
14199 reorganize first lines parallel to yacc.c.
14200
fb8135fa
AD
142012002-06-28 Akim Demaille <akim@epita.fr>
14202
14203 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
14204 (b4_token_enum, b4_token_defines): New, factored from...
14205 * data/lalr1.cc, data/yacc.c, glr.c: here.
14206
41442480
AD
142072002-06-28 Akim Demaille <akim@epita.fr>
14208
14209 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
14210 unused variables.
14211 * src/output.c (merger_output): static.
14212
e0e5bf84
AD
142132002-06-28 Akim Demaille <akim@epita.fr>
14214
ba0fe3c7 14215 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
e0e5bf84
AD
14216 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
14217 pacify GCC.
14218 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 14219
676385e2
PH
142202002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14221
14222 Accumulated changelog for new GLR parsing features.
14223
6a254321 14224 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
14225 conflicts_total_count.
14226 * src/conflicts.h: Ditto.
14227 * src/output.c (token_actions): Use the new name.
14228 (output_conflicts): Change conflp => conflict_list_heads, and
14229 confl => conflict_list for better readability.
14230 * data/glr.c: Use the new names.
14231 * NEWS: Add self to GLR announcement.
e0e5bf84 14232
676385e2
PH
14233 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
14234
14235 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
14236 Akim Demaille.
14237
14238 * data/bison.glr: Change name to glr.c
14239 * data/glr.c: Renamed from bison.glr.
14240 * data/Makefile.am: Add glr.c
e0e5bf84
AD
14241
14242 * src/getargs.c:
14243
676385e2 14244 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
ba0fe3c7 14245 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 14246
676385e2
PH
14247 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14248
14249 * data/bison.glr: Be sure to restore the
14250 current #line when returning to the skeleton contents after having
14251 exposed the input file's #line.
14252
14253 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14254
14255 * data/bison.glr: Bring up to date with changes to bison.simple.
14256
14257 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14258
14259 * data/bison.glr: Correct definitions that use b4_prefix.
14260 Various reformatting.
14261 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
14262 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
14263 yytokenp argument; now part of stack.
14264 (yychar): Define to behave as documented.
14265 (yyclearin): Ditto.
e0e5bf84 14266
676385e2
PH
14267 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14268
14269 * src/reader.h: Add declaration for free_merger_functions.
14270
14271 * src/reader.c (merge_functions): New variable.
14272 (get_merge_function): New function.
14273 (free_merger_functions): New function.
14274 (readgram): Check for %prec that is not followed by a symbol.
14275 Handle %dprec and %merge declarations.
14276 (packgram): Initialize dprec and merger fields in rules array.
14277
14278 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
14279 conflict_list_cnt, conflict_list_free): New variables.
14280 (table_grow): Also grow conflict_table.
e0e5bf84 14281 (prepare_rules): Output dprec and merger tables.
676385e2 14282 (conflict_row): New function.
e0e5bf84 14283 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
14284 default reduction in conflicted states for GLR parser so that there
14285 are spaces for the conflict lists.
14286 (save_row): Also save conflict information.
14287 (token_actions): Allocate conflict list.
14288 (merger_output): New function.
14289 (pack_vector): Pack conflict table, too.
14290 (output_conflicts): New function to output yyconflp and yyconfl.
14291 (output_check): Allocate conflict_tos.
14292 (output_actions): Output conflict tables, also.
14293 (output_skeleton): Output b4_mergers definition.
14294 (prepare): Output b4_max_rhs_length definition.
14295 Use 'bison.glr' as default skeleton for GLR parsers.
14296
14297 * src/gram.c (glr_parser): New flag.
14298 (grammar_free): Call free_merger_functions.
14299
14300 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
14301 all pairs of conflicting reductions, rather than just all tokens
14302 causing conflicts. Needed to size conflict tables.
e0e5bf84 14303 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
14304 interface.
14305 (conflicts_print): Ditto.
14306 (count_total_conflicts): New function.
14307
14308 * src/reader.h (merger_list): New type.
14309 (merge_functions): New variable.
14310
14311 * src/lex.h (tok_dprec, tok_merge): New token types.
14312
14313 * src/gram.h (rule_s): Add dprec and merger fields.
14314 (glr_parser): New flag.
14315
14316 * src/conflicts.h (count_total_conflicts): New function.
14317
14318 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
14319
14320 * doc/bison.texinfo (Generalized LR Parsing): New section.
14321 (GLR Parsers): New section.
14322 (Language and Grammar): Mention GLR parsing.
14323 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
14324 Correct typo ("tge" -> "the").
14325
14326 * data/bison.glr: New skeleton for GLR parsing.
14327
14328 * tests/cxx-gram.at: New tests for GLR parsing.
14329
14330 * tests/testsuite.at: Include cxx-gram.at.
14331
14332 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 14333
676385e2
PH
14334 * src/parse-gram.y:
14335
14336 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
14337
14338 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 14339
b5480d74 143402002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
14341
14342 * src/options.h, src/options.c: Remove.
14343 * src/getargs.c (short_options, long_options): New.
14344
60491a94
AD
143452002-06-27 Akim Demaille <akim@epita.fr>
14346
14347 * data/bison.simple, data/bison.c++: Rename as...
14348 * data/yacc.c, data/lalr1.cc: these.
14349 * doc/bison.texinfo (Environment Variables): Remove.
14350
9be0c25b
AD
143512002-06-25 Raja R Harinath <harinath@cs.umn.edu>
14352
14353 * src/getargs.c (report_argmatch): Initialize strtok().
14354
1ae72863
AD
143552002-06-20 Akim Demaille <akim@epita.fr>
14356
14357 * data/bison.simple (b4_symbol_actions): New, replaces...
14358 (b4_symbol_destructor, b4_symbol_printer): these.
14359 (yysymprint): Be sure to call YYPRINT only for tokens, and using
14360 user token numbers.
14361
87542d29
AD
143622002-06-20 Akim Demaille <akim@epita.fr>
14363
14364 * data/bison.simple (yydestructor): Rename as...
14365 (yydestruct): this.
14366
1a31ed21
AD
143672002-06-20 Akim Demaille <akim@epita.fr>
14368
14369 * src/symtab.h, src/symtab.c (symbol_type_set)
14370 (symbol_destructor_set, symbol_precedence_set): The location is
14371 the last argument.
14372 Adjust all callers.
14373
e776192e
AD
143742002-06-20 Akim Demaille <akim@epita.fr>
14375
14376 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
14377 internals.
14378 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
14379 Takes a location.
14380 * src/symtab.h, src/symtab.c (symbol_class_set)
14381 (symbol_user_token_number_set): Likewise.
14382 Adjust all callers.
14383 Promote complain_at.
14384 * tests/input.at (Type Clashes): Adjust.
14385
5c1180b3
AD
143862002-06-20 Akim Demaille <akim@epita.fr>
14387
14388 * data/bison.simple (YYLEX): Fix the declaration when
14389 %pure-parser.
14390
e3170060
AD
143912002-06-20 Akim Demaille <akim@epita.fr>
14392
14393 * data/bison.simple (yysymprint): Don't print the token number,
14394 just its name.
14395 * tests/actions.at (Destructors): Rename as...
14396 (Printers and Destructors): this.
14397 Also exercise %printer.
14398
253862fd
AD
143992002-06-20 Akim Demaille <akim@epita.fr>
14400
14401 * data/bison.simple (YYDSYMPRINT): New.
14402 Use it to remove many of the #if YYDEBUG/if (yydebug).
14403
366eea36
AD
144042002-06-20 Akim Demaille <akim@epita.fr>
14405
14406 * src/symtab.h, src/symtab.c (symbol_t): printer and
14407 printer_location are new members.
14408 (symbol_printer_set): New.
14409 * src/parse-gram.y (PERCENT_PRINTER): New token.
14410 Handle its associated rule.
14411 * src/scan-gram.l: Adjust.
14412 (handle_destructor_at, handle_destructor_dollar): Rename as...
14413 (handle_symbol_code_at, handle_symbol_code_dollar): these.
14414 * src/output.c (symbol_printers_output): New.
14415 (output_skeleton): Call it.
14416 * data/bison.simple (yysymprint): New. Cannot be named yyprint
14417 since there are already many grammar files with a user `yyprint'.
14418 Replace the calls to YYPRINT to calls to yysymprint.
14419 * tests/calc.at: Adjust.
14420 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
14421 taking advantage of parser very internal details (stack size!).
14422
4f25ebb0
AD
144232002-06-20 Akim Demaille <akim@epita.fr>
14424
14425 * src/scan-gram.l: Complete the scanner with the missing patterns
14426 to pacify Flex.
14427 Use `quote' and `symbol_tag_get' where appropriate.
14428
93b68a0e
AD
144292002-06-19 Akim Demaille <akim@epita.fr>
14430
14431 * tests/actions.at (Destructors): Augment to test locations.
14432 * data/bison.simple (yydestructor): Pass it the current location
14433 if locations are enabled.
14434 Prototype only when __STDC__ or C++.
14435 Change the argument names to move into the yy name space: there is
14436 user code here.
14437
58612f1d
AD
144382002-06-19 Akim Demaille <akim@epita.fr>
14439
74310291
AD
14440 * data/bison.simple (b4_pure_if): New.
14441 Use it instead of #ifdef YYPURE.
14442
144432002-06-19 Akim Demaille <akim@epita.fr>
14444
14445 * data/bison.simple (b4_location_if): New.
58612f1d
AD
14446 Use it instead of #ifdef YYLSP_NEEDED.
14447
f25bfb75
AD
144482002-06-19 Akim Demaille <akim@epita.fr>
14449
14450 Prepare @$ in %destructor, but currently don't bind it in the
14451 skeleton, as %location use is not cleaned up yet.
14452
14453 * src/scan-gram.l (handle_dollar, handle_destructor_at)
14454 (handle_action_at): New.
14455 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
14456 a braced_code_t and a location as additional arguments.
14457 (handle_destructor_dollar): Instead of requiring `b4_eval', just
14458 unquote one when outputting `b4_dollar_dollar'.
14459 Adjust callers.
14460 * data/bison.simple (b4_eval): Remove.
14461 (b4_symbol_destructor): Adjust.
14462 * tests/input.at (Invalid @n): Adjust.
14463
c732d2c6
AD
144642002-06-19 Zack Weinberg <zack@codesourcery.com>
14465
14466 * doc/bison.texinfo: Document ability to have multiple
14467 prologue sections.
14468
8c165d89
AD
144692002-06-18 Akim Demaille <akim@epita.fr>
14470
14471 * src/files.c (compute_base_names): When computing the output file
14472 names from the input file name, strip the directory part.
14473
ca98bf57
AD
144742002-06-18 Akim Demaille <akim@epita.fr>
14475
14476 * data/bison.simple.new: Comment changes.
14477 Reported by Andreas Schwab.
14478
0bfb02ff
AD
144792002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
14480
14481 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
14482 there are no `label `yyoverflowlab' defined but not used' warnings
14483 when yyoverflow is defined.
14484
24c0aad7
AD
144852002-06-18 Akim Demaille <akim@epita.fr>
14486
14487 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
14488 new member.
14489 (symbol_destructor_set): Adjust.
14490 * src/output.c (symbol_destructors_output): Output the destructor
14491 locations.
14492 Output the symbol name.
14493 * data/bison.simple (b4_symbol_destructor): Adjust.
14494
5719c109
AD
144952002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
14496 and Akim Demaille <akim@epita.fr>
14497
14498 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
14499 what's left on the stack when the error recovery hits EOF.
14500 * tests/actions.at (Destructors): Complete to exercise this case.
14501
9280d3ef
AD
145022002-06-17 Akim Demaille <akim@epita.fr>
14503
14504 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
14505 arguments is really empty, not only equal to `[]'.
14506 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
14507 member.
14508 (symbol_destructor_set): New.
14509 * src/output.c (symbol_destructors_output): New.
14510 * src/reader.h (brace_code_t, current_braced_code): New.
14511 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
14512 (handle_dollar): Rename as...
14513 (handle_action_dollar): this.
14514 (handle_destructor_dollar): New.
14515 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
14516 (grammar_declaration): Use it.
14517 * data/bison.simple (yystos): Is always defined.
14518 (yydestructor): New.
14519 * tests/actions.at (Destructors): New.
14520 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
14521
dafdc66f
AD
145222002-06-17 Akim Demaille <akim@epita.fr>
14523
14524 * src/symlist.h, src/symlist.c (symbol_list_length): New.
14525 * src/scan-gram.l (handle_dollar, handle_at): Compute the
14526 rule_length only when needed.
14527 * src/output.c (actions_output, token_definitions_output): Output
14528 the full M4 block.
14529 * src/symtab.c: Don't access directly to the symbol tag, use
14530 symbol_tag_get.
14531 * src/parse-gram.y: Use symbol_list_free.
14532
56c47203
AD
145332002-06-17 Akim Demaille <akim@epita.fr>
14534
14535 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
14536 (symbol_list_prepend, get_type_name): Move to...
14537 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
14538 (symbol_list_prepend, symbol_list_n_type_name_get): here.
14539 Adjust all callers.
14540 (symbol_list_free): New.
14541 * src/scan-gram.l (handle_dollar): Takes a location.
14542 * tests/input.at (Invalid $n): Adjust.
14543
1e0bab92
AD
145442002-06-17 Akim Demaille <akim@epita.fr>
14545
14546 * src/reader.h, src/reader.c (symbol_list_new): Export it.
14547 (symbol_list_prepend): New.
14548 * src/parse-gram.y (%union): `list' is a new member.
14549 (symbols.1): New, replaces...
14550 (terms_to_prec.1, nterms_to_type.1): these.
14551 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
14552 Take a location as additional argument.
14553 Adjust all callers.
14554
04e60654
AD
145552002-06-15 Akim Demaille <akim@epita.fr>
14556
14557 * src/parse-gram.y: Move %token in the declaration section so that
14558 we don't depend upon CVS Bison.
14559
10e5b8bd
AD
145602002-06-15 Akim Demaille <akim@epita.fr>
14561
14562 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
14563 * src/print.c (print_core): Use it.
14564
9801d40c
AD
145652002-06-15 Akim Demaille <akim@epita.fr>
14566
14567 * src/conflicts.c (log_resolution): Accept the rule involved in
14568 the sr conflicts instead of the lookahead number that points to
14569 that rule.
14570 (flush_reduce): Accept the current lookahead vector as argument,
14571 instead of the index in LA.
14572 (resolve_sr_conflict): Accept the current number of lookahead
14573 bitset to consider for the STATE, instead of the index in LA.
14574 (set_conflicts): Adjust.
14575 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
14576
c0263492
AD
145772002-06-15 Akim Demaille <akim@epita.fr>
14578
14579 * src/state.h (state_t): Replace the `lookaheadsp' member, a
14580 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
14581 Adjust all dependencies.
14582 * src/lalr.c (initialize_lookaheads): Split into...
14583 (states_lookaheads_count, states_lookaheads_initialize): these.
14584 (lalr): Adjust.
14585
9757c359
AD
145862002-06-15 Akim Demaille <akim@epita.fr>
14587
14588 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
14589 out of...
14590 (grammar_rules_print): here.
14591 * src/reduce.c (reduce_output): Use it.
14592 * tests/reduce.at (Useless Rules, Reduced Automaton)
14593 (Underivable Rules): Adjust.
14594
6b98e4b5
AD
145952002-06-15 Akim Demaille <akim@epita.fr>
14596
14597 Copy BYacc's nice way to report the grammar.
14598
14599 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
14600 New.
14601 Don't print the rules' location, it is confusing and useless.
14602 (rule_print): Use grammar_rhs_print.
14603 * src/print.c (print_grammar): Use grammar_rules_print.
14604
6b98e4b5
AD
146052002-06-15 Akim Demaille <akim@epita.fr>
14606
14607 Complete and rationalize `useless thing' warnings.
14608
14609 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
14610 (symbol_tag_print): New.
14611 Use them everywhere in place of accessing directly the tag member.
14612 * src/gram.h, src/gram.c (rule_print): New.
14613 Use it where a rule used to be printed `by hand'.
14614 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
14615 (reduce_grammar_tables): Report the useless rules.
14616 (reduce_print): Useless things are a warning, not an error.
14617 Report it as such.
14618 * tests/reduce.at (Useless Nonterminals, Useless Rules):
14619 (Reduced Automaton, Underivable Rules): Adjust.
14620 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
14621 * tests/conflicts.at (Unresolved SR Conflicts)
14622 (Solved SR Conflicts): Adjust.
14623
ee000ba4
AD
146242002-06-15 Akim Demaille <akim@epita.fr>
14625
14626 Let symbols have a location.
14627
14628 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
14629 (getsym): Adjust.
14630 Adjust all callers.
14631 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
14632 Use location_t, not int.
14633 * src/symtab.c (symbol_check_defined): Take advantage of the
14634 location.
14635 * tests/regression.at (Invalid inputs): Adjust.
14636
8efe435c
AD
146372002-06-15 Akim Demaille <akim@epita.fr>
14638
14639 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
14640 (input): Don't try to initialize yylloc here, do it in the
14641 scanner.
14642 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
14643 * src/gram.h (rule_t): Change line and action_line into location
14644 and action_location, of location_t type.
14645 Adjust all dependencies.
14646 * src/location.h, src/location.c (empty_location): New.
14647 * src/reader.h, src/reader.c (grammar_start_symbol_set)
14648 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
14649 (grammar_current_rule_symbol_append)
14650 (grammar_current_rule_action_append): Expect a location as argument.
14651 * src/reader.c (grammar_midrule_action): Adjust to attach an
14652 action's location as dummy symbol location.
14653 * src/symtab.h, src/symtab.c (startsymbol_location): New.
14654 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
14655 the line numbers.
14656
1921f1d7
AD
146572002-06-14 Akim Demaille <akim@epita.fr>
14658
14659 Grammar declarations may be found in the grammar section.
14660
14661 * src/parse-gram.y (rules_or_grammar_declaration): New.
14662 (declarations): Each declaration may end with a semicolon, not
14663 just...
14664 (grammar_declaration): `"%union"'.
14665 (grammar): Branch to rules_or_grammar_declaration.
14666
4515534c
AD
146672002-06-14 Akim Demaille <akim@epita.fr>
14668
14669 * src/main.c (main): Invoke scanner_free.
14670
f958596b
AD
146712002-06-14 Akim Demaille <akim@epita.fr>
14672
14673 * src/output.c (m4_invoke): Extracted from...
14674 (output_skeleton): here.
14675 Free tempfile.
14676
2c569025
AD
146772002-06-14 Akim Demaille <akim@epita.fr>
14678
14679 * src/parse-gram.y (directives, directive, gram)
14680 (grammar_directives, precedence_directives, precedence_directive):
14681 Rename as...
14682 (declarations, declaration, grammar, grammar_declaration)
14683 (precedence_declaration, precedence_declarator): these.
14684 (symbol_declaration): New.
14685
592e8d4d
AD
146862002-06-14 Akim Demaille <akim@epita.fr>
14687
14688 * src/files.c (action_obstack): Remove, unused.
14689 (output_obstack): Remove it, and all its dependencies, as it is no
14690 longer needed.
14691 * src/reader.c (epilogue_set): Build the epilogue in the
14692 muscle_obstack.
14693 * src/output.h, src/output.c (muscle_obstack): Move to...
14694 * src/muscle_tab.h, src/muscle_tab.h: here.
14695 (muscle_init): Initialize muscle_obstack.
14696 (muscle_free): New.
14697 * src/main.c (main): Call it.
14698
0c15323d
AD
146992002-06-14 Akim Demaille <akim@epita.fr>
14700
14701 * src/location.h: New, extracted from...
14702 * src/reader.h: here.
14703 * src/Makefile.am (noinst_HEADERS): Merge into
14704 (bison_SOURCES): this.
14705 Add location.h.
14706 * src/parse-gram.y: Use location_t instead of Bison's.
14707 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
14708 Use location_t instead of ints.
14709
e96c9728
AD
147102002-06-14 Akim Demaille <akim@epita.fr>
14711
14712 * data/bison.simple, data/bison.c++: Be sure to restore the
14713 current #line when returning to the skeleton contents after having
14714 exposed the input file's #line.
14715
75d1fe16
AD
147162002-06-12 Akim Demaille <akim@epita.fr>
14717
14718 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
14719 eager.
14720 * tests/actions.at (Exotic Dollars): New.
14721
6c35d22c
AD
147222002-06-12 Akim Demaille <akim@epita.fr>
14723
14724 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
14725 ['"/] too eagerly.
14726 * tests/input.at (Torturing the Scanner): New.
14727
1d6412ad
AD
147282002-06-11 Akim Demaille <akim@epita.fr>
14729
14730 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
14731 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
14732 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
14733 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
14734 * src/reader.c (reader): Use it.
14735
4cdb01db
AD
147362002-06-11 Akim Demaille <akim@epita.fr>
14737
14738 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
14739 Adjust all callers.
14740 (scanner_last_string_free): New.
14741
44995b2e
AD
147422002-06-11 Akim Demaille <akim@epita.fr>
14743
14744 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
14745 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
14746 (last_string, YY_OBS_FREE): New.
14747 Use them when returning an ID.
14748
e9955c83
AD
147492002-06-11 Akim Demaille <akim@epita.fr>
14750
14751 Have Bison grammars parsed by a Bison grammar.
14752
14753 * src/reader.c, src/reader.h (prologue_augment): New.
14754 * src/reader.c (copy_definition): Remove.
14755
14756 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
14757 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
14758 (grammar_current_rule_prec_set, grammar_current_rule_check)
14759 (grammar_current_rule_symbol_append)
14760 (grammar_current_rule_action_append): Export.
14761 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
14762 (symbol_list_action_append): Remove.
14763 Hook the routines from reader.
14764 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
14765 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
14766
14767 * src/reader.c (read_declarations): Remove, unused.
14768
14769 * src/parse-gram.y: Handle the epilogue.
14770 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
14771 (grammar_start_symbol_set): this.
14772 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
14773 * src/reader.c (readgram): Remove, unused.
14774 (reader): Adjust to insert eoftoken and axiom where appropriate.
14775
14776 * src/reader.c (copy_dollar): Replace with...
14777 * src/scan-gram.h (handle_dollar): this.
14778 * src/parse-gram.y: Remove `%thong'.
14779
14780 * src/reader.c (copy_at): Replace with...
14781 * src/scan-gram.h (handle_at): this.
14782
14783 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
14784 New.
14785
14786 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
14787 time being.
14788
14789 * src/reader.h, src/reader.c (grammar_rule_end): New.
14790
14791 * src/parse.y (current_type, current_class): New.
14792 Implement `%nterm', `%token' support.
14793 Merge `%term' into `%token'.
14794 (string_as_id): New.
14795 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
14796 type name.
14797
14798 * src/parse-gram.y: Be sure to handle properly the beginning of
14799 rules.
14800
14801 * src/parse-gram.y: Handle %type.
14802 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
14803
14804 * src/parse-gram.y: More directives support.
14805 * src/options.c: No longer handle source directives.
14806
14807 * src/parse-gram.y: Fix %output.
14808
14809 * src/parse-gram.y: Handle %union.
14810 Use the prologue locations.
14811 * src/reader.c (parse_union_decl): Remove.
14812
14813 * src/reader.h, src/reader.c (epilogue_set): New.
14814 * src/parse-gram.y: Use it.
14815
14816 * data/bison.simple, data/bison.c++: b4_stype is now either not
14817 defined, then default to int, or to the contents of %union,
14818 without `union' itself.
14819 Adjust.
14820 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
14821
14822 * src/output.c (actions_output): Don't output braces, as they are
14823 already handled by the scanner.
14824
14825 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
14826 characters to themselves.
14827
14828 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
14829 that the epilogue has a proper #line.
14830
14831 * src/parse-gram.y: Handle precedence/associativity.
14832
14833 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
14834 a terminal.
14835 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
14836 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
14837 at all to define terminals that cannot be emitted.
14838
14839 * src/scan-gram.l: Escape M4 characters.
14840
14841 * src/scan-gram.l: Working properly with escapes in user
14842 strings/characters.
14843
14844 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
14845 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
14846 grammar.
14847 Use more modest sizes, as for the time being the parser does not
14848 release memory, and therefore the process swallows a huge amount
14849 of memory.
14850
14851 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
14852 stricter %token grammar.
14853
14854 * src/symtab.h (associativity): Add `undef_assoc'.
14855 (symbol_precedence_set): Do nothing when passed an undef_assoc.
14856 * src/symtab.c (symbol_check_alias_consistence): Adjust.
14857
14858 * tests/regression.at (Invalid %directive): Remove, as it is now
14859 meaningless.
14860 (Invalid inputs): Adjust to the new error messages.
14861 (Token definitions): The new grammar doesn't allow too many
14862 eccentricities.
14863
14864 * src/lex.h, src/lex.c: Remove.
14865 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
14866 (copy_character, copy_string2, copy_string, copy_identifier)
14867 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
14868 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
14869 (parse_action): Remove.
14870 * po/POTFILES.in: Adjust.
14871
2e047461
AD
148722002-06-11 Akim Demaille <akim@epita.fr>
14873
cd05d13c 14874 * src/reader.c (parse_action): Don't store directly into the
2e047461
AD
14875 rule's action member: return the action as a string.
14876 Don't require `rule_length' as an argument: compute it.
14877 (grammar_current_rule_symbol_append)
14878 (grammar_current_rule_action_append): New, eved out from
14879 (readgram): here.
14880 Remove `action_flag', `rulelength', unused now.
14881
9af3fbce
AD
148822002-06-11 Akim Demaille <akim@epita.fr>
14883
14884 * src/reader.c (grammar_current_rule_prec_set).
14885 (grammar_current_rule_check): New, eved out from...
14886 (readgram): here.
14887 Remove `xaction', `first_rhs': useless.
14888 * tests/input.at (Type clashes): New.
14889 * tests/existing.at (GNU Cim Grammar): Adjust.
14890
1485e106
AD
148912002-06-11 Akim Demaille <akim@epita.fr>
14892
14893 * src/reader.c (grammar_midrule_action): New, Eved out from
14894 (readgram): here.
14895
da4160c3
AD
148962002-06-11 Akim Demaille <akim@epita.fr>
14897
14898 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
14899 New.
14900 (readgram): Use them as replacement of inlined code, crule and
14901 crule1.
14902
f6d0f937
AD
149032002-06-11 Akim Demaille <akim@epita.fr>
14904
14905 * src/reader.c (grammar_end, grammar_symbol_append): New.
14906 (readgram): Use them.
14907 Make the use of `p' as local as possible.
14908
69078d4b
AD
149092002-06-10 Akim Demaille <akim@epita.fr>
14910
14911 GCJ's parser requires the tokens to be defined before the prologue.
14912
14913 * data/bison.simple: Output the token definition before the user's
14914 prologue.
14915 * tests/regression.at (Braces parsing, Duplicate string)
14916 (Mixing %token styles): Check the output from bison.
14917 (Early token definitions): New.
14918
5e424082
AD
149192002-06-10 Akim Demaille <akim@epita.fr>
14920
14921 * src/symtab.c (symbol_user_token_number_set): Don't complain when
14922 assigning twice the same user number to a token, so that we can
14923 use it in...
14924 * src/lex.c (lex): here.
14925 Also use `symbol_class_set' instead of hand written code.
14926 * src/reader.c (parse_assoc_decl): Likewise.
14927
44536b35
AD
149282002-06-10 Akim Demaille <akim@epita.fr>
14929
14930 * src/symtab.c, src/symtab.c (symbol_class_set)
14931 (symbol_user_token_number_set): New.
14932 * src/reader.c (parse_token_decl): Use them.
14933 Use a switch instead of ifs.
14934 Use a single argument.
14935
8b9f2372
AD
149362002-06-10 Akim Demaille <akim@epita.fr>
14937
14938 Remove `%thong' support as it is undocumented, unused, duplicates
14939 `%token's job, and creates useless e-mail traffic with people who
14940 want to know what it is, why it is undocumented, unused, and
14941 duplicates `%token's job.
14942
14943 * src/reader.c (parse_thong_decl): Remove.
14944 * src/options.c (option_table): Remove "thong".
14945 * src/lex.h (tok_thong): Remove.
14946
3ae2b51f
AD
149472002-06-10 Akim Demaille <akim@epita.fr>
14948
14949 * src/symtab.c, src/symtab.c (symbol_type_set)
14950 (symbol_precedence_set): New.
14951 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
14952 (value_components_used): Remove, unused.
14953
2f1afb73
AD
149542002-06-09 Akim Demaille <akim@epita.fr>
14955
14956 Move symbols handling code out of the reader.
14957
14958 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
14959 (axiom): Move to...
14960 * src/symtab.h, src/symtab.c: here.
14961
14962 * src/gram.c (start_symbol): Remove: use startsymbol->number.
14963 * src/reader.c (startval): Rename as...
14964 * src/symtab.h, src/symtab.c (startsymbol): this.
14965 * src/reader.c: Adjust.
14966
14967 * src/reader.c (symbol_check_defined, symbol_make_alias)
14968 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
14969 (token_translations_init)
14970 Move to...
14971 * src/symtab.c: here.
14972 * src/reader.c (packsymbols): Move to...
14973 * src/symtab.h, src/symtab.c (symbols_pack): here.
14974 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
14975 argument.
14976
e9bca3ad
AD
149772002-06-03 Akim Demaille <akim@epita.fr>
14978
14979 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
14980 then statements.
14981
86eff183
AD
149822002-06-03 Akim Demaille <akim@epita.fr>
14983
14984 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
14985 structs with non literals.
14986 * src/scan-skel.l: never-interactive.
14987 * src/conflicts.c (enum conflict_resolution_e): No trailing
14988 comma.
14989 * src/getargs.c (usage): Split long literal strings.
14990 Reported by Hans Aberg.
14991
717be197
AD
149922002-05-28 Akim Demaille <akim@epita.fr>
14993
14994 * data/bison.c++: Use C++ ostreams.
14995 (cdebug_): New member.
14996
670ddffd
AD
149972002-05-28 Akim Demaille <akim@epita.fr>
14998
14999 * src/output.c (output_skeleton): Be sure to allocate enough room
15000 for `/' _and_ for `\0' in full_skeleton.
15001
769b430f
AD
150022002-05-28 Akim Demaille <akim@epita.fr>
15003
15004 * data/bison.c++: Catch up with bison.simple:
15005 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15006 and Paul Eggert <eggert@twinsun.com>: `error' handing.
15007 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
15008 and popping traces.
15009
7067cb36
PH
150102002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15011
15012 * src/output.c (output_skeleton): Put an explicit path in front of
15013 the skeleton file name, rather than relying on the -I directory,
15014 to partially alleviate effects of having a skeleton file lying around
15015 in the current directory.
769b430f 15016
4a713ec2
PH
150172002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15018
769b430f 15019 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
15020 obstack_printf should be obstack_fgrow1.
15021
b408954b
AD
150222002-05-26 Akim Demaille <akim@epita.fr>
15023
15024 * src/state.h (state_t): `solved_conflicts' is a new member.
15025 * src/LR0.c (new_state): Set it to 0.
15026 * src/conflicts.h, src/conflicts.c (print_conflicts)
15027 (free_conflicts, solve_conflicts): Rename as...
15028 (conflicts_print, conflicts_free, conflicts_solve): these.
15029 Adjust callers.
15030 * src/conflicts.c (enum conflict_resolution_e)
15031 (solved_conflicts_obstack): New, used by...
15032 (log_resolution): this.
15033 Adjust to attach the conflict resolution to each state.
15034 Complete the description with the precedence/associativity
15035 information.
15036 (resolve_sr_conflict): Adjust.
15037 * src/print.c (print_state): Output its solved_conflicts.
15038 * tests/conflicts.at (Unresolved SR Conflicts)
15039 (Solved SR Conflicts): Exercise --report=all.
15040
a49aecd5
AD
150412002-05-26 Akim Demaille <akim@epita.fr>
15042
15043 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
15044 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
15045 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
15046 (token_number_t, item_number_as_token_number)
15047 (token_number_as_item_number, muscle_insert_token_number_table):
15048 Rename as...
15049 (symbol_number_t, item_number_as_symbol_number)
15050 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
15051 these, since it is more appropriate.
15052
5504898e
AD
150532002-05-26 Akim Demaille <akim@epita.fr>
15054
15055 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
15056 `Error:' lines.
15057 * data/bison.simple (yystos) [YYDEBUG]: New.
15058 (yyparse) [YYDEBUG]: Display the symbols which are popped during
15059 error recovery.
15060 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
15061
ec3bc396
AD
150622002-05-25 Akim Demaille <akim@epita.fr>
15063
15064 * doc/bison.texinfo (Debugging): Split into...
15065 (Tracing): this new section, its former contents, and...
15066 (Understanding): this new section.
15067 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
15068 by...
15069 (report_flag): this.
15070 Adjust all dependencies.
15071 (report_args, report_types, report_argmatch): New.
15072 (usage, getargs): Report/support -r, --report.
15073 * src/options.h
15074 (struct option_table_struct): Rename as..,
15075 (struct option_table_s): this.
15076 Rename the `set_flag' member to `flag' to match with getopt_long's
15077 struct.
15078 * src/options.c (option_table): Split verbose into an entry for
15079 %verbose, and another for --verbose.
15080 Support --report/-r, so remove -r from the obsolete --raw.
15081 * src/print.c: Attach full item sets and lookaheads reports to
15082 report_flag instead of trace_flag.
15083 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
15084
78df8250
PE
150852002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15086 and Paul Eggert <eggert@twinsun.com>
769b430f 15087
78df8250
PE
15088 * data/bison.simple (yyparse): Correct error handling to conform to
15089 POSIX and yacc. Specifically, after syntax error is discovered,
15090 do not reduce further before shifting the error token.
15091 Clean up the code a bit by removing the labels yyerrdefault,
15092 yyerrhandle, yyerrpop.
15093 * NEWS: Document the above.
15094
c0c9ea05
PH
150952002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15096
15097 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
15098 type; it isn't always big enough, since it doesn't necessarily
15099 include non-terminals.
769b430f 15100 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
15101 the latter can be removed.
15102 (yy_token_number_type): Remove, only one use.
15103 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
15104 don't use TokenNumberType as element type.
769b430f 15105
c0c9ea05
PH
15106 * tests/regression.at: Modify expected output to agree with change
15107 to yyr1 and yytranslate.
769b430f 15108
6390a83f
FK
151092002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
15110
15111 * src/reader.c (parse_action): Use copy_character instead of
15112 obstack_1grow.
15113
db7c8e9a
AD
151142002-05-13 Akim Demaille <akim@epita.fr>
15115
15116 * tests/regression.at (Token definitions): Prototype yylex and
15117 yyerror.
15118
fcc61800
PH
151192002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15120
158c687b 15121 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
15122 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
15123 32-bit arithmetic.
15124 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
15125
5683e9b2
AD
151262002-05-07 Akim Demaille <akim@epita.fr>
15127
15128 * tests/synclines.at: Be sure to prototype yylex and yyerror to
15129 avoid GCC warnings.
15130
0c2d3f4c
AD
151312002-05-07 Akim Demaille <akim@epita.fr>
15132
15133 Kill GCC warnings.
15134
15135 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
15136 over the RHS of each rule.
15137 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
15138 * src/state.h (state_t): Member `nitems' is unsigned short.
15139 * src/LR0.c (get_state): Adjust.
15140 * src/reader.c (packgram): Likewise.
15141 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
15142 `Type'.
15143 (muscle_insert_int_table): Remove, unused.
15144 (prepare_rules): Remove `max'.
15145
1565b720
AD
151462002-05-06 Akim Demaille <akim@epita.fr>
15147
15148 * src/closure.c (print_firsts): Display of the symbol tags.
15149 (bitmatrix_print): Move to...
15150 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
15151 here.
15152 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
15153
cfaee611
AD
151542002-05-06 Akim Demaille <akim@epita.fr>
15155
15156 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
15157 hash_do_for_each.
15158
458be8e0
AD
151592002-05-06 Akim Demaille <akim@epita.fr>
15160
15161 * src/LR0.c (new_state, get_state): Instead of using the global
15162 `kernel_size' and `kernel_base', have two new arguments:
15163 `core_size' and `core'.
15164 Adjust callers.
15165
a900a624
AD
151662002-05-06 Akim Demaille <akim@epita.fr>
15167
15168 * src/reader.c (packgram): No longer end `ritem' with a 0
15169 sentinel: it is not used.
15170
d4e7d3a1
AD
151712002-05-05 Akim Demaille <akim@epita.fr>
15172
15173 New experimental feature: display the lookaheads in the report and
15174 graph.
15175
15176 * src/print (print_core): When --trace-flag, display the rules
15177 lookaheads.
15178 * src/print_graph.c (print_core): Likewise.
15179 Swap the arguments.
15180 Adjust caller.
15181
39ceb25b
AD
151822002-05-05 Akim Demaille <akim@epita.fr>
15183
15184 * tests/torture.at (Many lookaheads): New test.
15185
5372019f
AD
151862002-05-05 Akim Demaille <akim@epita.fr>
15187
15188 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
15189 (GENERATE_MUSCLE_INSERT_TABLE): this.
15190 (output_int_table, output_unsigned_int_table, output_short_table)
15191 (output_token_number_table, output_item_number_table): Replace with...
15192 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
15193 (muscle_insert_short_table, muscle_insert_token_number_table)
15194 (muscle_insert_item_number_table): these.
15195 Adjust all callers.
15196 (prepare_tokens): Don't free `translations', since...
15197 * src/reader.h, src/reader.c (grammar_free): do it.
15198 Move to...
15199 * src/gram.h, src/gram.c (grammar_free): here.
15200 * data/bison.simple, data/bison.c++: b4_token_number_max is now
15201 b4_translate_max.
15202
5df5f6d5
AD
152032002-05-05 Akim Demaille <akim@epita.fr>
15204
15205 * src/output.c (output_unsigned_int_table): New.
15206 (prepare_rules): `i' is unsigned.
15207 `prhs', `rline', `r2' are unsigned int.
15208 Rename muscle `rhs_number_max' as `rhs_max'.
15209 Output muscles `prhs_max', `rline_max', and `r2_max'.
15210 Free rline and r1.
15211 * data/bison.simple, data/bison.c++: Adjust to use these muscles
15212 to compute types instead of constant types.
15213 * tests/regression.at (Web2c Actions): Adjust.
15214
b87f8b21
AD
152152002-05-04 Akim Demaille <akim@epita.fr>
15216
15217 * src/symtab.h (SALIAS, SUNDEF): Rename as...
15218 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
15219 Adjust dependencies.
15220 * src/output.c (token_definitions_output): Be sure not to output a
15221 `#define 'a'' when fed with `%token 'a' "a"'.
15222 * tests/regression.at (Token definitions): New.
15223
8bb936e4
PE
152242002-05-03 Paul Eggert <eggert@twinsun.com>
15225
15226 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
15227 for K&R C.
15228
152292002-05-03 gettextize <bug-gnu-gettext@gnu.org>
15230
15231 * Makefile.am (SUBDIRS): Remove intl.
15232 (EXTRA_DIST): Add config/config.rpath.
15233
53c71a12
AD
152342002-05-03 Akim Demaille <akim@epita.fr>
15235
15236 * data/bison.simple (m4_if): Don't output empty enums.
15237 And actually, output valid enum definitions :(.
15238
289dd0cf
AD
152392002-05-03 Akim Demaille <akim@epita.fr>
15240
15241 * configure.bat: Remove, completely obsolete.
15242 * Makefile.am (EXTRA_DIST): Adjust.
15243 Don't distribute config.rpath...
15244 * config/Makefile.am (EXTRA_DIST): Do it.
15245
db85e524
AD
152462002-05-03 Akim Demaille <akim@epita.fr>
15247
15248 * configure.in (GETTEXT_VERSION): New.
15249 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
15250
83ccf991
AD
152512002-05-03 Akim Demaille <akim@epita.fr>
15252
15253 * data/bison.simple (b4_token_enum): New.
15254 (b4_token_defines): Use it to output tokens both as #define and
15255 enums.
15256 Suggested by Paul Eggert.
15257 * src/output.c (token_definitions_output): Don't output spurious
15258 white spaces.
15259
1f418995
AD
152602002-05-03 Akim Demaille <akim@epita.fr>
15261
15262 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
15263
45119f04
RA
152642002-05-02 Robert Anisko <robert@lrde.epita.fr>
15265
15266 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
15267 Update the stack class, give a try to deque as the default container.
15268
b2d52318
AD
152692002-05-02 Akim Demaille <akim@epita.fr>
15270
15271 * data/bison.simple (yyparse): Do not implement @$ = @1.
15272 (YYLLOC_DEFAULT): Adjust to do it.
15273 * doc/bison.texinfo (Location Default Action): Fix.
15274
3a8b4109
AD
152752002-05-02 Akim Demaille <akim@epita.fr>
15276
15277 * src/reader.c (parse_braces): Merge into...
15278 (parse_action): this.
15279
84614e13
AD
152802002-05-02 Akim Demaille <akim@epita.fr>
15281
15282 * configure.in (ALL_LINGUAS): Remove.
15283 * po/LINGUAS, hr.po: New.
15284
fdbcd8e2
AD
152852002-05-02 Akim Demaille <akim@epita.fr>
15286
15287 Remove the so called hairy (semantic) parsers.
15288
15289 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
15290 * src/gram.h, src/gram.c (semantic_parser): Remove.
15291 (rule_t): Remove the guard and guard_line members.
15292 * src/lex.h (token_t): remove tok_guard.
15293 * src/options.c (option_table): Remove %guard and %semantic_parser
15294 support.
15295 * src/output.c, src/output.h (guards_output): Remove.
15296 (prepare): Adjust.
15297 (token_definitions_output): Don't output the `T'
15298 tokens (???).
15299 (output_skeleton): Don't output the guards.
15300 * src/files.c, src/files.c (attrsfile): Remove.
15301 * src/reader.c (symbol_list): Remove the guard and guard_line
15302 members.
15303 Adjust dependencies.
15304 (parse_guard): Remove.
15305 * data/bison.hairy: Remove.
15306 * doc/bison.texinfo (Environment Variables): Remove occurrences of
15307 BISON_HAIRY.
15308
82b6cb3f
AD
153092002-05-02 Akim Demaille <akim@epita.fr>
15310
15311 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
15312 (parse_guard): Rename the formal argument `stack_offset' as
15313 `rule_length', which is more readable.
15314 Adjust callers.
15315 (copy_at, copy_dollar): Instead of outputting the hard coded
15316 values of $$, $n and so forth, output invocation to b4_lhs_value,
15317 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
15318 Note: this patch partially drops `semantic-parser' support: it
15319 always does `rule_length - n', where semantic parsers ought to
15320 always use `-n'.
82b6cb3f
AD
15321 * data/bison.simple, data/bison.c++ (b4_lhs_value)
15322 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
15323
6cbfbcc5
AD
153242002-05-02 Akim Demaille <akim@epita.fr>
15325
15326 * configure.in (AC_INIT): Bump to 1.49b.
15327 (AM_INIT_AUTOMAKE): Short invocation.
15328
b8548114
AD
153292002-05-02 Akim Demaille <akim@epita.fr>
15330
15331 Version 1.49a.
15332
c20cd1fa
AD
153332002-05-01 Akim Demaille <akim@epita.fr>
15334
15335 * src/skeleton.h: Remove.
15336
8a9566d4
AD
153372002-05-01 Akim Demaille <akim@epita.fr>
15338
15339 * src/skeleton.h: Fix the #endif.
15340 Reported by Magnus Fromreide.
15341
8c6d399a
PE
153422002-04-26 Paul Eggert <eggert@twinsun.com>
15343
15344 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
15345 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 15346 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 15347
2b7ed18a
RA
153482002-04-25 Robert Anisko <robert@lrde.epita.fr>
15349
15350 * src/scan-skel.l: Postprocess quadrigraphs.
15351
15352 * src/reader.c (copy_character): New function, used to output
15353 single characters while replacing `[' and `]' with quadrigraphs, to
15354 avoid troubles with M4 quotes.
15355 (copy_comment): Output characters with copy_character.
15356 (read_additionnal_code): Likewise.
15357 (copy_string2): Likewise.
15358 (copy_definition): Likewise.
15359
15360 * tests/calc.at: Exercise M4 quoting.
15361
34a89c50
AD
153622002-04-25 Akim Demaille <akim@epita.fr>
15363
15364 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
15365 between `!' and the command.
15366 Reported by Paul Eggert.
15367
0dd1580a
RA
153682002-04-24 Robert Anisko <robert@lrde.epita.fr>
15369
15370 * tests/calc.at: Exercise prologue splitting.
15371
15372 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
15373 `b4_post_prologue' instead of `b4_prologue'.
15374
15375 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
15376 muscles.
15377 (output): Free pre_prologue_obstack and post_prologue_obstack.
15378 * src/files.h, src/files.c (attrs_obstack): Remove.
15379 (pre_prologue_obstack, post_prologue_obstack): New.
15380 * src/reader.c (copy_definition): Add a parameter to specify the
15381 obstack to fill, instead of using attrs_obstack unconditionally.
15382 (read_declarations): Pass pre_prologue_obstack to copy_definition if
15383 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
15384
83c1796f
PE
153852002-04-23 Paul Eggert <eggert@twinsun.com>
15386
15387 * data/bison.simple: Remove unnecessary commentary and white
15388 space differences from 1_29-branch.
15389 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
15390
15391 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
15392 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
15393 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
15394 constructors or destructors.
15395
15396 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
15397
1207eeac
AD
153982002-04-23 Akim Demaille <akim@epita.fr>
15399
15400 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
15401 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
15402 location with columns.
15403 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
15404 All reported by Paul Eggert.
15405
78ab8f67
AD
154062002-04-22 Akim Demaille <akim@epita.fr>
15407
15408 * src/reduce.c (dump_grammar): Move to...
15409 * src/gram.h, src/gram.c (grammar_dump): here.
15410 Be sure to separate long item numbers.
15411 Don't read the members of a rule's prec if its nil.
15412
133c20e2
AD
154132002-04-22 Akim Demaille <akim@epita.fr>
15414
15415 * src/output.c (table_size, table_grow): New.
15416 (MAXTABLE): Remove, replace uses with table_size.
15417 (pack_vector): Instead of dying when the table is too big, grow it.
15418
9515e8a7
AD
154192002-04-22 Akim Demaille <akim@epita.fr>
15420
15421 * data/bison.simple (yyr1): Its type is that of a token number.
15422 * data/bison.c++ (r1_): Likewise.
15423 * tests/regression.at (Web2c Actions): Adjust.
15424
23c5a174
AD
154252002-04-22 Akim Demaille <akim@epita.fr>
15426
15427 * src/reader.c (token_translations_init): 256 is now the default
15428 value for the error token, i.e., it will be assigned another
15429 number if the user assigned 256 to one of her tokens.
15430 (reader): Don't force 256 to error.
15431 * doc/bison.texinfo (Symbols): Adjust.
15432 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
15433 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
15434 etc. instead of 10, 20, 30 (which was used to `jump' over error
15435 (256) and undefined (2)).
15436
5fbb0954
AD
154372002-04-22 Akim Demaille <akim@epita.fr>
15438
15439 Propagate more token_number_t.
15440
15441 * src/gram.h (token_number_as_item_number)
15442 (item_number_as_token_number): New.
15443 * src/output.c (GENERATE_OUTPUT_TABLE): New.
15444 Use it to create output_item_number_table and
15445 output_token_number_table.
15446 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
15447 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
15448 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
15449 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
15450
4f940944
AD
154512002-04-22 Akim Demaille <akim@epita.fr>
15452
15453 * src/output.h, src/output.c (get_lines_number): Remove.
15454
3ded9a63
AD
154552002-04-19 Akim Demaille <akim@epita.fr>
15456
15457 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
15458 as Lex/Flex'.
15459 (Debugging): More details about enabling the debugging features.
15460 (Table of Symbols): Describe $$, $n, @$, and @n.
15461 Suggested by Tim Josling.
15462
e0c471a9
AD
154632002-04-19 Akim Demaille <akim@epita.fr>
15464
15465 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
15466
fecc10cd
AD
154672002-04-10 Akim Demaille <akim@epita.fr>
15468
15469 * src/system.h: Rely on HAVE_LIMITS_H.
15470 Suggested by Paul Eggert.
15471
51dec47b
AD
154722002-04-09 Akim Demaille <akim@epita.fr>
15473
15474 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
15475 full stderr, and strip it according to the bison options, instead
15476 of composing the error message from different bits.
15477 This makes it easier to check for several error messages.
15478 Adjust all the invocations.
15479 Add an invocation exercising the error token.
15480 Add an invocation demonstrating a stupid error message.
15481 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
15482 Adjust the tests.
15483 Error message are for stderr, not stdout.
15484
007a50a4
AD
154852002-04-09 Akim Demaille <akim@epita.fr>
15486
15487 * src/gram.h, src/gram.c (error_token_number): Remove, use
15488 errtoken->number.
15489 * src/reader.c (reader): Don't specify the user token number (2)
15490 for $undefined, as it uselessly prevents using it.
15491 * src/gram.h (token_number_t): Move to...
15492 * src/symtab.h: here.
15493 (state_t.number): Is a token_number_t.
15494 * src/print.c, src/reader.c: Use undeftoken->number instead of
15495 hard coded 2.
15496 (Even though this 2 is not the same as above: the number of the
15497 undeftoken remains being 2, it is its user token number which
15498 might not be 2).
15499 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
15500 `user_token_number_max'.
15501 Output `undef_token_number'.
15502 * data/bison.simple, data/bison.c++: Use them.
15503 Be sure to map invalid yylex return values to
15504 `undef_token_number'. This saves us from gratuitous SEGV.
15505
15506 * tests/conflicts.at (Solved SR Conflicts)
15507 (Unresolved SR Conflicts): Adjust.
15508 * tests/regression.at (Web2c Actions): Adjust.
15509
06446ccf
AD
155102002-04-08 Akim Demaille <akim@epita.fr>
15511
15512 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
15513 Adding #line.
15514 Remove the duplicate `typedefs'.
15515 (RhsNumberType): Fix the declaration and various other typos.
15516 Use __ofile__.
15517 * data/bison.simple: Use __ofile__.
15518 * src/scan-skel.l: Handle __ofile__.
15519
62a3e4f0
AD
155202002-04-08 Akim Demaille <akim@epita.fr>
15521
15522 * src/gram.h (item_number_t): New, the type of item numbers in
15523 RITEM. Note that it must be able to code symbol numbers as
15524 positive number, and the negation of rule numbers as negative
15525 numbers.
15526 Adjust all dependencies (pretty many).
15527 * src/reduce.c (rule): Remove this `short *' pointer: use
15528 item_number_t.
15529 * src/system.h (MINSHORT, MAXSHORT): Remove.
15530 Include `limits.h'.
15531 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
15532 (shortcpy): Remove.
15533 (MAXTABLE): Move to...
15534 * src/output.c (MAXTABLE): here.
15535 (prepare_rules): Use output_int_table to output rhs.
15536 * data/bison.simple, data/bison.c++: Adjust.
15537 * tests/torture.at (Big triangle): Move the limit from 254 to
15538 500.
15539 * tests/regression.at (Web2c Actions): Ajust.
15540
15541 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
15542 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
15543 passes, but produces negative #line number, once fixed, GCC is
15544 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
15545 C), it passes.
15546 * src/state.h (state_h): Code input lines on ints, not shorts.
15547
bb88b0fc
AD
155482002-04-08 Akim Demaille <akim@epita.fr>
15549
15550 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
15551 and then the grammar.
15552
9a636f47
AD
155532002-04-08 Akim Demaille <akim@epita.fr>
15554
15555 * src/system.h: No longer using strndup.
15556
680e8701
AD
155572002-04-07 Akim Demaille <akim@epita.fr>
15558
15559 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
15560 * src/output.c (output_table_data): Return the longest number.
15561 (prepare_tokens): Output `token_number_max').
15562 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
15563 New.
15564 Use them to define yy_token_number_type/TokenNumberType.
15565 Use this type for yytranslate.
15566 * tests/torture.at (Big triangle): Push the limit from 124 to
15567 253.
15568 * tests/regression.at (Web2c Actions): Adjust.
15569
817e9f41
AD
155702002-04-07 Akim Demaille <akim@epita.fr>
15571
15572 * tests/torture.at (Big triangle): New.
15573 (GNU AWK Grammar, GNU Cim Grammar): Move to...
15574 * tests/existing.at: here.
15575
5123689b
AD
155762002-04-07 Akim Demaille <akim@epita.fr>
15577
15578 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
15579 nritems.
15580 Adjust dependencies.
15581
f3849179
AD
155822002-04-07 Akim Demaille <akim@epita.fr>
15583
15584 * src/reader.c: Normalize increments to prefix form.
15585
bd02036a
AD
155862002-04-07 Akim Demaille <akim@epita.fr>
15587
15588 * src/reader.c, symtab.c: Remove debugging code.
15589
db8837cb
AD
155902002-04-07 Akim Demaille <akim@epita.fr>
15591
15592 Rename all the `bucket's as `symbol_t'.
15593
15594 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
15595 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
15596 * src/symtab.c, src/symtab.h (bucket): Rename as...
15597 (symbol_t): this.
15598 (symbol_list_new, bucket_check_defined, bucket_make_alias)
15599 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
15600 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
15601 (buckets_new, buckets_free, buckets_do): Rename as...
15602 (symbol_list_new, symbol_check_defined, symbol_make_alias)
15603 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
15604 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
15605 (symbols_new, symbols_free, symbols_do): these.
15606
72a23c97
AD
156072002-04-07 Akim Demaille <akim@epita.fr>
15608
15609 Use lib/hash for the symbol table.
15610
15611 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
15612 EOF.
15613 * src/lex.c (lex): Set the `number' member of new terminals.
15614 * src/reader.c (bucket_check_defined, bucket_make_alias)
15615 (bucket_check_alias_consistence, bucket_translation): New.
15616 (reader, grammar_free, readgram, token_translations_init)
15617 (packsymbols): Adjust.
15618 (reader): Number the predefined tokens.
15619 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
15620 for predefined tokens.
15621 * src/symtab.h (bucket): Remove all the hash table related
15622 members.
15623 * src/symtab.c (symtab): Replace by...
15624 (bucket_table): this.
15625 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
15626 (buckets_new, buckets_do): New.
15627
280a38c3
AD
156282002-04-07 Akim Demaille <akim@epita.fr>
15629
15630 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
15631 (start_symbol, max_user_token_number, semantic_parser)
15632 (error_token_number): Initialize.
15633 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
15634 Initialize.
15635 (reader): Don't.
15636 (errtoken, eoftoken, undeftoken, axiom): Extern.
15637
03b31c0c
AD
156382002-04-07 Akim Demaille <akim@epita.fr>
15639
15640 * src/gram.h (rule_s): prec and precsym are now pointers
15641 to the bucket giving the priority/associativity.
15642 Member `associativity' removed: useless.
15643 * src/reduce.c, src/conflicts.c: Adjust.
15644
8b3df748
AD
156452002-04-07 Akim Demaille <akim@epita.fr>
15646
15647 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
15648 Properly escape the symbols' TAG when outputting them.
15649
e601aa1d
AD
156502002-04-07 Akim Demaille <akim@epita.fr>
15651
15652 * src/lalr.h (LA): Is a bitsetv, not bitset*.
15653
b0299a2e
AD
156542002-04-07 Akim Demaille <akim@epita.fr>
15655
15656 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
15657 (LArule): this, which is an array to rule_t*.
15658 * src/print.c, src/conflicts.c: Adjust.
15659
d7e1f00c
AD
156602002-04-07 Akim Demaille <akim@epita.fr>
15661
15662 * src/gram.h (rule_t): Rename `number' as `user_number'.
15663 `number' is a new member.
15664 Adjust dependencies.
15665 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
15666
cc9305dd
AD
156672002-04-07 Akim Demaille <akim@epita.fr>
15668
15669 As a result of the previous patch, it is no longer needed
15670 to reorder ritem itself.
15671
15672 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
15673
b0940840
AD
156742002-04-07 Akim Demaille <akim@epita.fr>
15675
15676 Be sure never to walk through RITEMS, but use only data related to
15677 the rules themselves. RITEMS should be banished.
15678
15679 * src/output.c (output_token_translations): Rename as...
15680 (prepare_tokens): this.
15681 In addition to `translate', prepare the muscles `tname' and
15682 `toknum', which were handled by...
15683 (output_rule_data): this.
15684 Remove, and move the remainder of its outputs into...
15685 (prepare_rules): this new routines, which also merges content from
15686 (output_gram): this.
15687 (prepare_rules): Be sure never to walk through RITEMS.
15688 (output_stos): Rename as...
15689 (prepare_stos): this.
15690 (output): Always invoke prepare_states, after all, just don't use it
15691 in the output if you don't need it.
15692
643a5994
AD
156932002-04-07 Akim Demaille <akim@epita.fr>
15694
15695 * src/LR0.c (new_state): Display `nstates' as the name of the
15696 newly created state.
15697 Adjust to initialize first_state and last_state if needed.
15698 Be sure to distinguish the initial from the final state.
15699 (new_states): Create the itemset of the initial state, and use
15700 new_state.
15701 * src/closure.c (closure): Now that the initial state has its
15702 items properly set, there is no need for a special case when
15703 creating `ruleset'.
15704
15705 As a result, now the rule 0, reducing to $axiom, is visible in the
15706 outputs. Adjust the test suite.
15707
15708 * tests/conflicts.at (Solved SR Conflicts)
15709 (Unresolved SR Conflicts): Adjust.
15710 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
15711 * tests/conflicts.at (S/R in initial): New.
15712
b4c4ccc2
AD
157132002-04-07 Akim Demaille <akim@epita.fr>
15714
15715 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
15716 the RHS of the rules.
15717 * src/output.c (output_gram): Likewise.
15718
bba97eb2
AD
157192002-04-07 Akim Demaille <akim@epita.fr>
15720
15721 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
15722 bucket.
15723 Adjust all dependencies.
15724 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
15725 `number' of the buckets too.
15726 * src/gram.h: Include `symtab.h'.
15727 (associativity): Move to...
15728 * src/symtab.h: here.
15729 No longer include `gram.h'.
15730
c3b407f4
AD
157312002-04-07 Akim Demaille <akim@epita.fr>
15732
15733 * src/gram.h, src/gram.c (rules_rhs_length): New.
15734 (ritem_longest_rhs): Use it.
15735 * src/gram.h (rule_t): `number' is a new member.
15736 * src/reader.c (packgram): Set it.
15737 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
15738 the end of `rules', and count them out of `nrules'.
15739 (reduce_output, dump_grammar): Adjust.
15740 * src/print.c (print_grammar): It is no longer needed to check for
15741 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
15742 * tests/reduce.at (Reduced Automaton): New test.
15743
11652ab3
AD
157442002-04-07 Akim Demaille <akim@epita.fr>
15745
15746 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
15747 lacking `+ 1' to nrules, Bison reported as useless a token if it
15748 was used solely to set the precedence of the last rule...
15749
26b23c1a
AD
157502002-04-07 Akim Demaille <akim@epita.fr>
15751
15752 * data/bison.c++, data/bison.simple: Don't output the current file
15753 name in #line, to avoid useless diffs between two identical
15754 outputs under different names.
15755
18bcecb0
AD
157562002-04-07 Akim Demaille <akim@epita.fr>
15757
15758 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
15759 Normalize loops to using `< nrules + 1', not `<= nrules'.
15760
fa770c86
AD
157612002-04-07 Akim Demaille <akim@epita.fr>
15762
15763 * TODO: Update.
15764
d9b739c3
AD
157652002-04-07 Akim Demaille <akim@epita.fr>
15766
15767 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
15768 bucket.value as bucket.number.
15769
99013900
AD
157702002-04-07 Akim Demaille <akim@epita.fr>
15771
15772 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
15773 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
15774 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
15775 RHS, instead of being an index in RITEMS.
15776
e966383b
PE
157772002-04-04 Paul Eggert <eggert@twinsun.com>
15778
15779 * doc/bison.texinfo: Update copyright date.
15780 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
15781 (Symbols): Warn about running Bison in one character set,
15782 but compiling and/or running in an incompatible one.
15783 Warn about character code 256, too.
15784
157852002-04-03 Paul Eggert <eggert@twinsun.com>
15786
15787 * src/bison.data (YYSTACK_ALLOC): Depend on whether
15788 YYERROR_VERBOSE is nonzero, not whether it is defined.
15789
15790 Merge changes from bison-1_29-branch.
c307773e 15791
8d6c48b9
PE
157922002-03-20 Paul Eggert <eggert@twinsun.com>
15793
15794 Merge fixes from Debian bison_1.34-1.diff.
15795
15796 * configure.in (AC_PREREQ): 2.53.
15797
e53c6322
AD
157982002-03-20 Akim Demaille <akim@epita.fr>
15799
15800 * src/conflicts.c (log_resolution): Argument `resolution' is const.
15801
9ffbeca7
PE
158022002-03-19 Paul Eggert <eggert@twinsun.com>
15803
21db0b2a
PE
15804 * src/bison.simple (YYCOPY): New macro.
15805 (YYSTACK_RELOCATE): Use it.
15806 Remove Type arg; no longer needed. All callers changed.
15807 (yymemcpy): Remove; no longer needed.
15808
9ffbeca7
PE
15809 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
15810 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
15811
642cb8f8
AD
158122002-03-19 Akim Demaille <akim@epita.fr>
15813
15814 Test and fix the #line outputs.
15815
15816 * tests/atlocal.at (GCC): New.
15817 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
0ffd4fd1 15818 (Prologue synch line, %union synch line, Postprologue synch line)
642cb8f8
AD
15819 (Action synch line, Epilogue synch line): New tests.
15820 * src/reader.c (parse_union_decl): Define the muscle stype_line.
15821 * data/bison.simple, data/bison.c++: Use it.
15822
3c31a486
AD
158232002-03-19 Akim Demaille <akim@epita.fr>
15824
15825 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
15826 (Solved SR Conflicts, %expect not enough, %expect right)
15827 (%expect too much): Move to...
15828 * tests/conflicts.at: this new file.
15829
0d8bed56
AD
158302002-03-19 Akim Demaille <akim@epita.fr>
15831
15832 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
15833 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
15834 that we can move to enums for instance.
15835 * src/output.c (token_definitions_output): Output a list of
15836 `token-name, token-number' instead of the #define.
15837 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
15838
9208d17f
AD
158392002-03-14 Akim Demaille <akim@epita.fr>
15840
15841 Use Gettext 0.11.1.
15842
af27eacb
RA
158432002-03-09 Robert Anisko <robert@lrde.epita.fr>
15844
15845 * data/bison.c++: Make the user able to add members to the generated
15846 parser by subclassing.
15847
9101a310
RA
158482002-03-05 Robert Anisko <robert@lrde.epita.fr>
15849
15850 * src/reader.c (read_additionnal_code): `c' should be an integer, not
15851 a character.
15852 Reported by Nicolas Tisserand and Nicolas Burrus.
15853
fff9bf0b
RA
158542002-03-04 Robert Anisko <robert@lrde.epita.fr>
15855
15856 * src/reader.c: Warn about lacking semi-colons, do not complain.
15857
64dba31e
RA
158582002-03-04 Robert Anisko <robert@lrde.epita.fr>
15859
15860 * data/bison.c++: Remove a debug line.
15861
374f5a14
RA
158622002-03-04 Robert Anisko <robert@lrde.epita.fr>
15863
15864 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
15865 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
15866 provide a default implementation.
15867
bfcf1f3a
AD
158682002-03-04 Akim Demaille <akim@epita.fr>
15869
15870 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
15871 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
15872 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
15873 * tests/semantic.at (Parsing Guards): Similarly.
15874 * src/reader.at (readgram): Complain if the last rule is not ended
15875 with a semi-colon.
15876
65ccf9fc
AD
158772002-03-04 Akim Demaille <akim@epita.fr>
15878
15879 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
15880 * src/closure.c: here.
15881 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
15882 RTC.
15883 * src/warshall.h, src/warshall.c: Remove.
15884 * tests/sets.at (Broken Closure): Adjust.
15885
d0039cbc
AD
158862002-03-04 Akim Demaille <akim@epita.fr>
15887
15888 * src/output.c (output_skeleton): tempdir is const.
15889 bytes_read is unused.
15890
345cea78
AD
158912002-03-04 Akim Demaille <akim@epita.fr>
15892
15893 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
15894 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
15895 Update.
15896 From Michael Hayes.
15897
564801f7
AD
158982002-03-04 Akim Demaille <akim@epita.fr>
15899
15900 * src/closure.c (closure): `r' is unused.
15901
e5352bc7
AD
159022002-03-04 Akim Demaille <akim@epita.fr>
15903
15904 * tests/sets.at (Broken Closure): Add the ending `;'.
15905 * src/reader.at (readgram): Complain if a rule is not ended with a
15906 semi-colon.
15907
914feea9
AD
159082002-03-04 Akim Demaille <akim@epita.fr>
15909
15910 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
15911 (count_sr_conflicts): Use bitset_count.
15912 * src/reduce.c (inaccessable_symbols): Ditto.
15913 (bits_size): Remove.
15914 * src/warshall.h, src/warshall.c: Convert to bitsetv.
15915
f0250de6
AD
159162002-03-04 Akim Demaille <akim@epita.fr>
15917
15918 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
15919 * src/reduce.c: Remove the `bitset_zero's following the
15920 `bitset_create's, as now it is performed by the latter.
15921
ef017502
AD
159222002-03-04 Akim Demaille <akim@epita.fr>
15923
15924 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
15925 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
15926 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
15927 latest sources from Michael.
15928
76514394
AD
159292002-03-04 Akim Demaille <akim@epita.fr>
15930
15931 * src/output.c (output): Don't free the grammar.
15932 * src/reader.c (grammar_free): New.
15933 * src/main.c (main): Call it and don't free symtab here.
15934
55024580
AD
159352002-03-04 Akim Demaille <akim@epita.fr>
15936
15937 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
15938 before returning.
15939 Reported by Benoit Perrot.
15940
f9abaa2c
AD
159412002-03-04 Akim Demaille <akim@epita.fr>
15942
15943 Use bitset operations when possible, not loops over bits.
15944
15945 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
15946 bitset_or.
15947 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
15948 * src/reduce.c (useless_nonterminals): Formatting changes.
15949 * src/warshall.c (TC): Use bitset_or.
15950
0e721e75
AD
159512002-03-04 Akim Demaille <akim@epita.fr>
15952
15953 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
15954 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
15955 Ditto.
15956
0fb1ffb1
AD
159572002-03-04 Akim Demaille <akim@epita.fr>
15958
15959 * src/lalr.c (F): Now a bitset*.
15960 Adjust all dependencies.
15961
b86796bf
AD
159622002-03-04 Akim Demaille <akim@epita.fr>
15963
15964 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
15965 Adjust all dependencies.
15966
602bbf31
AD
159672002-03-04 Akim Demaille <akim@epita.fr>
15968
15969 * src/L0.c, src/LR0.h (nstates): Be size_t.
15970 Adjust comparisons (signed vs unsigned).
15971 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
15972 bitset*.
15973 Adjust all dependencies.
15974
d8a0245c
AD
159752002-03-04 Akim Demaille <akim@epita.fr>
15976
15977 * src/closure.c (firsts): Now, also a bitset.
15978 Adjust all dependencies.
15979 (varsetsize): Remove, now unused.
15980 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
15981
34ba9743
AD
159822002-03-04 Akim Demaille <akim@epita.fr>
15983
15984 * src/print.c: Convert to use bitset.h, not hand coded iterations
15985 over ints.
15986
ed86e78c
AD
159872002-03-04 Akim Demaille <akim@epita.fr>
15988
15989 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
15990
dfdb1797
AD
159912002-03-04 Akim Demaille <akim@epita.fr>
15992
15993 * src/closure.c (ruleset): Be a bitset.
15994 (rulesetsize): Remove.
15995
7086e707
AD
159962002-03-04 Akim Demaille <akim@epita.fr>
15997
15998 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
15999 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
16000 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
16001 * src/closure.c (fderives): Be an array of bitsets.
16002
98254360
RA
160032002-02-28 Robert Anisko <robert@lrde.epita.fr>
16004
16005 * data/bison.c++: Merge the two generated headers. Insert a copyright
16006 notice in each output file.
16007
a75c057f
AD
160082002-02-28 Akim Demaille <akim@epita.fr>
16009
16010 * data/bison.c++: Copy the prologue of bison.simple to fetch
16011 useful M4 definitions, such as b4_header_guard.
16012
06b00abc
AD
160132002-02-25 Akim Demaille <akim@epita.fr>
16014
16015 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
16016 translator friendly scheme for the bgr
16017 copyright notice.
06b00abc 16018
70e7d534
AD
160192002-02-25 Akim Demaille <akim@epita.fr>
16020
16021 * src/output.c (header_output): Remove, now handled completely via
16022 M4.
16023
abe017f6
AD
160242002-02-25 Akim Demaille <akim@epita.fr>
16025
16026 * m4/m4.m4: New, from CVS Autoconf.
16027 * configure.in: Invoke it.
16028 * src/output.c (output_skeleton): Use its result instead of the
16029 hard coded name.
16030
381fb12e
AD
160312002-02-25 Akim Demaille <akim@epita.fr>
16032
16033 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
16034 Fileutils 4.1.5.
16035 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
16036 * src/output.c (output_skeleton): Use mkstemp to create a real
16037 temporary file.
16038 Move the filling of `skeleton' and its muscle to...
16039 (prepare): here.
16040 (output): Move the definition of the prologue muscle to...
16041 (prepare): here.
16042 * src/system.h (DEFAULT_TMPDIR): New.
16043
6f38107f
PE
160442002-02-14 Paul Eggert <eggert@twinsun.com>
16045
16046 Remove the support for C++ namespace cleanliness; it was
16047 causing more problems than it was curing, since it didn't work
16048 properly on some nonstandard C++ compilers. This can wait
16049 for a proper C++ parser.
16050
16051 * NEWS: Document this.
16052 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
16053 of C++, as it's treated like C now.
16054 * src/bison.simple (YYSTD): Remove.
16055 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
16056 Treat C++ just like Standard C instead of trying to support
16057 namespace cleanliness.
16058
80cce3da
AD
160592002-02-14 Akim Demaille <akim@epita.fr>
16060
16061 * tests/regression.at (else): Adjust to Andreas' change.
16062
842e8679
AD
160632002-02-14 Akim Demaille <akim@epita.fr>
16064
16065 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
16066
4bda3f10
AD
160672002-02-13 Andreas Schwab <schwab@suse.de>
16068
16069 * src/output.c (output_rule_data): Don't output NULL, it might
16070 not be defined yet.
16071
4162fa07 160722002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 16073
4162fa07
RA
16074 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
16075 (Copyright notice): Update.
b418ecd8 16076
bd16a5dc
AD
160772002-02-11 Akim Demaille <akim@epita.fr>
16078
16079 * tests/regression.at (%nonassoc and eof): Don't include
16080 nonportable headers.
16081
8d69a1a3
RA
160822002-02-08 Robert Anisko <robert@lrde.epita.fr>
16083
16084 * data/bison.c++: Correct error recovery. Make the user able to
16085 initialize the starting location.
16086
9b2d0677
AD
160872002-02-07 Akim Demaille <akim@epita.fr>
16088
16089 * tests/input.at: New.
16090
69e2658b
RA
160912002-02-07 Robert Anisko <robert@lrde.epita.fr>
16092
16093 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 16094 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
16095 directives around tables only needed for debugging.
16096
4aacc3a7
RA
160972002-02-07 Robert Anisko <robert@lrde.epita.fr>
16098
16099 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
16100 C++ parsers.
16101 (yy::b4_name::parse): Use print_.
16102
762a801e
RA
161032002-02-07 Robert Anisko <robert@lrde.epita.fr>
16104
16105 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
16106
4bb2bc3f
RA
161072002-02-07 Robert Anisko <robert@lrde.epita.fr>
16108
16109 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
16110 C++ parsers.
16111 (yy::b4_name::parse): Build verbose error messages, and use error_.
16112
6b45a3ca
RA
161132002-02-06 Robert Anisko <robert@lrde.epita.fr>
16114
16115 * data/bison.c++: Fix m4 quoting in comments.
16116
50997c6e
RA
161172002-02-06 Robert Anisko <robert@lrde.epita.fr>
16118
16119 * data/bison.c++: Adjust the parser code. Fix some muscles that were
16120 not expanded by m4.
16121
3f3eed27
AD
161222002-02-05 Akim Demaille <akim@epita.fr>
16123
16124 * data/bison.c++: Adjust to the M4 back end.
16125 More is certainly needed.
16126
be2a1a68
AD
161272002-02-05 Akim Demaille <akim@epita.fr>
16128
16129 Give a try to M4 as a back end.
16130
16131 * lib/readpipe.c: New, from wdiff.
16132 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
16133 BISON_HAIRY.
16134 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
16135 specific values. Now it is m4 that performs the lookup.
16136 * src/parse-skel.y: Remove.
16137 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
16138 * src/output.c (actions_output, guards_output)
16139 (token_definitions_output): No longer keeps track of the output
16140 line number, hence remove the second argument.
16141 (guards_output): Check against the guard member of a rule, not the
16142 action member.
16143 Adjust callers.
16144 (output_skeleton): Don't look for the skeleton location, let m4 do
16145 that.
16146 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
16147 file will be used.
16148 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
16149 (prepare): Given that for the time being changesyntax is not
16150 usable in M4, rename the muscles using `-' to `_'.
16151 Define `defines_flag', `output_parser_name' and `output_header_name'.
16152 * src/output.h (actions_output, guards_output)
16153 (token_definitions_output): Adjust prototypes.
16154 * src/scan-skel.l: Instead of scanning the skeletons, it now
16155 processes the output of m4: `__oline__' and `#output'.
16156 * data/bison.simple: Adjust to be used by M4(sugar).
16157 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
16158 to date.
16159 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
16160 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
16161 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
16162 shamelessly stolen from CVS Autoconf.
16163
beda758b
AD
161642002-02-05 Akim Demaille <akim@epita.fr>
16165
16166 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
16167 * configure.in: Check for the declarations of free and malloc.
16168 * src/muscle_tab.c: Adjust.
16169
5ece6d43
AD
161702002-02-05 Akim Demaille <akim@epita.fr>
16171
16172 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
16173 which have no values.
16174
5bb18f9a
AD
161752002-02-05 Akim Demaille <akim@epita.fr>
16176
16177 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
16178 * data/: here.
16179
894dd62e
PE
161802002-01-29 Paul Eggert <eggert@twinsun.com>
16181
16182 * src/bison.simple (YYSIZE_T): Do not define merely because
16183 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
16184 On some platforms, <alloca.h> does not declare YYSTD (size_t).
16185
82841af7
AD
161862002-01-27 Akim Demaille <akim@epita.fr>
16187
16188 Fix `%nonassoc and eof'.
16189
16190 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
16191 which were not properly copied! Replace
16192 memcpy (res->errs, src->errs, src->nerrs);
16193 with
16194 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
16195 !!!
16196 * tests/regression.at (%nonassoc and eof): Adjust to newest
16197 Autotest: `.' is not in the PATH.
16198
318b76e9
AD
161992002-01-27 Akim Demaille <akim@epita.fr>
16200
16201 * tests/sets.at (AT_EXTRACT_SETS): New.
16202 (Nullable): Use it.
16203 (Firsts): New.
16204
30d2f3d5
AD
162052002-01-26 Akim Demaille <akim@epita.fr>
16206
16207 * tests/actions.at, tests/calc.at, tests/headers.at,
16208 * tests/torture.at: Adjust to the newest Autotest which no longer
16209 forces `.' in the PATH.
16210
30f8c395
AD
162112002-01-25 Akim Demaille <akim@epita.fr>
16212
16213 * tests/regression.at (%nonassoc and eof): New.
16214 Suggested by Robert Anisko.
16215
29ae55f1
AD
162162002-01-24 Akim Demaille <akim@epita.fr>
16217
16218 Bison dumps core when trying to complain about broken input files.
16219 Reported by Cris van Pelt.
16220
16221 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
16222 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
16223 into...
16224 (Invalid inputs): Strengthen: exercise parse_percent_token.
16225
2b548aa6
RA
162262002-01-24 Robert Anisko <robert.anisko@epita.fr>
16227
16228 * src/Makefile.am: Add bison.c++.
16229 * src/bison.c++: New skeleton.
16230
bb0146c2
AD
162312002-01-21 Paolo Bonzini <bonzini@gnu.org>
16232
16233 * po/it.po: New.
16234
bec30531
AD
162352002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
16236
16237 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
16238
fc6edc45
MA
162392002-01-20 Marc Autret <marc@gnu.org>
16240
16241 * src/files.c (compute_output_file_names): Fix
16242
5e5d5415
MA
162432002-01-20 Marc Autret <marc@gnu.org>
16244
16245 * tests/output.at: New test.
16246 * src/files.c (compute_base_names): Don't map extensions when
16247 the YACC flag is set, use defaults.
16248 Reported by Evgeny Stambulchik.
16249
44ea3fbd
MA
162502002-01-20 Marc Autret <marc@gnu.org>
16251
ba0fe3c7
PE
16252 * src/system.h: Need to define __attribute__ away for non-GCC
16253 compilers as well (i.e., the vendor C compiler).
44ea3fbd
MA
16254 Suggested by Albert Chin-A-Young.
16255
338963d1
TVH
162562002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
16257
16258 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
16259 canonical definition.
16260 * src/system.h: Use the canonical definition for PARAMS (avoids
16261 a conflict with the macro from lib/hash.h).
16262
c57b2479
AD
162632002-01-11 Akim Demaille <akim@epita.fr>
16264
16265 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 16266 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 16267
b85810ae
AD
162682002-01-09 Akim Demaille <akim@epita.fr>
16269
16270 * src/files.c, src/files.h (output_infix): New.
16271 (tab_extension): Remove.
16272 (compute_base_names): Compute the former, drop the latter.
16273 * src/output.c (prepare): Insert the muscles `output-infix', and
16274 `output-suffix'.
16275 * src/parse-skel.y (string, string.1): New.
16276 (section.header): Use it.
16277 (section.yacc): Remove.
16278 (prefix): Remove too.
16279 * src/scan-skel.l: Adjust.
16280 * src/bison.simple, src/bison.hairy: Adjust.
16281
cae60122
AD
162822002-01-09 Akim Demaille <akim@epita.fr>
16283
16284 * configure.in (WERROR_CFLAGS): Compute it.
16285 * src/Makefile.am (CFLAGS): Pass it.
16286 * tests/atlocal.in (CFLAGS): Idem.
16287 * src/files.c: Fix a few warnings.
16288 (get_extension_index): Remove, unused.
16289
ae404801
AD
162902002-01-08 Akim Demaille <akim@epita.fr>
16291
16292 * src/getargs.c (AS_FILE_NAME): New.
16293 (getargs): Use it to convert DOSish file names.
16294 * src/files.c (base_name): Rename as full_base_name to avoid
16295 clashes with `base_name ()'.
16296 (filename_split): New.
16297 (compute_base_names): N-th rewrite, using filename_split.
16298
22312b71
AD
162992002-01-08 Akim Demaille <akim@epita.fr>
16300
16301 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
16302 New, stolen from the Fileutils 4.1.
16303 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
16304 * configure.in: Check for the presence of memrchr, and of its
16305 prototype.
16306
a67cef01
TVH
163072002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
16308
16309 * lib/hash.h (__P): Added definition for this macro.
16310 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
16311 BUILT_SOURCES, to ensure they are generated first.
16312 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
16313 %error-verbose to allow bootstrapping with bison 1.30x.
16314
2b25d624
AD
163152002-01-06 Akim Demaille <akim@epita.fr>
16316
16317 * src/reader.c (parse_braces): Don't fetch the next char, the
16318 convention is to fetch on entry.
16319 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
16320 'switch' without a following semicolon.
16321 * tests/regression.at (braces parsing): New.
16322
3460813b
AD
163232002-01-06 Akim Demaille <akim@epita.fr>
16324
16325 Bison is dead wrong in its RR conflict reports.
16326
16327 * tests/torture.at (GNU Cim Grammar): New.
16328 * src/conflicts.c (count_rr_conflicts): Fix.
16329
73784c64
AD
163302002-01-06 Akim Demaille <akim@epita.fr>
16331
16332 Creating package.m4 from configure.ac causes too many problems.
16333
16334 * tests/Makefile.am (package.m4): Create it by hand,
16335 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
16336
25d81090
AD
163372002-01-06 Akim Demaille <akim@epita.fr>
16338
16339 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
16340 skeleton.h.
16341
a9b8959e
PE
163422002-01-04 Paul Eggert <eggert@twinsun.com>
16343
16344 * doc/bison.texinfo (Debugging):
16345 Remove YYSTDERR; it's no longer defined or used.
16346 Also, s/cstdio.h/cstdio/.
16347
25d81090
AD
163482002-01-03 Akim Demaille <akim@epita.fr>
16349
16350 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
16351
1109455c
AD
163522002-01-03 Akim Demaille <akim@epita.fr>
16353
16354 * src/parse-skel.y (process_skeleton): Don't bind the parser's
16355 tracing code to --trace, wait for a better --trace option, with
16356 args.
16357
7ea5e977
AD
163582002-01-03 Akim Demaille <akim@epita.fr>
16359
16360 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
16361 The ISO C++ standard is extremely clear about it: stderr is
16362 considered a macro, not a regular symbol (see table 94 `Header
16363 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
16364 Therefore std:: does not apply to it. It still does with fprintf.
16365 Also, s/cstdio.h/cstdio/.
16366
fab5b110
AD
163672002-01-03 Akim Demaille <akim@epita.fr>
16368
16369 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
16370 for non system headers.
16371
aed7fd9b
AD
163722002-01-02 Akim Demaille <akim@epita.fr>
16373
16374 Equip the skeleton chain with location tracking, runtime trace,
16375 pure parser and scanner.
16376
16377 * src/parse-skel.y: Request a pure parser, locations, and prefix
16378 renaming.
16379 (%union): Having several members with the same type does not help
16380 type mismatches, simplify.
16381 (YYPRINT, yyprint): New.
16382 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
16383 (skel_error): this.
16384 Handle locations.
16385 * src/scan-skel.l: Adjust to these changes.
16386 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
16387 (LOCATION_PRINT, skel_control_t): New.
16388
24fad99e
AD
163892001-12-30 Akim Demaille <akim@epita.fr>
16390
16391 * src/parse-skel.y: Get rid of the shift/reduce conflict:
16392 replace `gb' with BLANKS.
16393 * src/scan-skel.l: Adjust.
16394
a4b36db4
AD
163952001-12-30 Akim Demaille <akim@epita.fr>
16396
16397 * src/system.h: We don't need nor want bcopy.
16398 Throw away MS-DOS crap: we don't need getpid.
16399 * configure.in: We don't need strndup. It was even causing
16400 problems: because Flex includes the headers *before* us,
16401 _GNU_SOURCE is not defined by config.h, and therefore strndup was
16402 not visible.
16403 * lib/xstrndup.c: New.
16404 * src/scan-skel.l: Use it.
16405 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
16406 * src/parse-skel.y: Use %directives instead of #defines.
16407
1239777d
AD
164082001-12-30 Akim Demaille <akim@epita.fr>
16409
16410 * src/skeleton.h: New.
16411 * src/output.c (output_parser, output_master_parser): Remove, dead
16412 code.
16413 * src/output.h (get_lines_number, actions_output, guards_output)
16414 (token_definitions_output): Prototype them.
16415 * src/parse-skel.y: Add the license notice.
16416 Include output.h and skeleton.h.
16417 (process_skeleton): Returns void, and takes a single parameter.
16418 * src/scan-skel.l: Add the license notice.
16419 Include skeleton.h.
16420 Don't use %option yylineno: it seems that then Flex imagines
16421 REJECT has been used, and therefore it won't reallocate its
16422 buffers (which makes no other sense to me than a bug). It results
16423 in warnings for `unused: yy_flex_realloc'.
16424
9b3add5b
RA
164252001-12-30 Robert Anisko <robert.anisko@epita.fr>
16426
16427 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
16428 (MUSCLE_INSERT_PREFIX): ...to there.
16429 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
16430 (MUSCLE_INSERT_PREFIX): Move from here...
16431
16432 * src/bison.hairy: Add a section directive. Put braces around muscle
16433 names. This parser skeleton is still broken, but Bison should not
16434 choke on a bad muscle 'syntax'.
16435 * src/bison.simple: Add a section directive. Put braces around muscle
16436 names.
16437
16438 * src/files.h (strsuffix, stringappend): Add declarations.
16439 (tab_extension): Add declaration.
16440 (short_base_name): Add declaration.
16441
16442 * src/files.c (strsuffix, stringappend): No longer static. These
16443 functions are used in the skeleton parser.
16444 (tab_extension): New.
16445 (compute_base_names): Use the computations done in this function
fab5b110 16446 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
16447 names.
16448 (short_base_name): No longer static.
16449
16450 * src/output.c (output_skeleton): New.
16451 (output): Disable call to output_master_parser, and give a try to
16452 a new skeleton handling system.
16453 (guards_output, actions_output): No longer static.
16454 (token_definitions_output, get_lines_number): No longer static.
16455
16456 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
16457
fab5b110 16458 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
16459 parse-skel.y.
16460
16461 * src/parse-skel.y: New file.
16462 * src/scan-skel.l: New file.
16463
b5b61c61
AD
164642001-12-29 Akim Demaille <akim@epita.fr>
16465
16466 %name-prefix is broken.
16467
16468 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
16469 Adjust all dependencies.
16470 * tests/headers.at (export YYLTYPE): Strengthen this test: use
16471 %name-prefix.
16472
16473 Renaming yylval but not yylloc is not consistent. Now we do.
16474
16475 * src/bison.simple: Prefix yylloc if used.
16476 * doc/bison.texinfo (Decl Summary): Document that.
16477
8c9a50be
AD
164782001-12-29 Akim Demaille <akim@epita.fr>
16479
16480 * doc/bison.texinfo: Promote `%long-directive' over
16481 `%long_directive'.
16482 Remove all references to fixed-output-files, yacc is enough.
16483
d99361e6
AD
164842001-12-29 Akim Demaille <akim@epita.fr>
16485
16486 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
16487 user prologue. These are defaults.
16488 * tests/actions.at (Mid-rule actions): Make sure the user can
16489 define YYDEBUG and YYERROR_VERBOSE.
16490
b9cecb91
AD
164912001-12-29 Akim Demaille <akim@epita.fr>
16492
16493 * src/output.c (header_output): Don't forget to export YYLTYPE and
16494 yylloc.
16495 * tests/headers.at (export YYLTYPE): New, make sure it does.
16496 * tests/regression.at (%union and --defines, Invalid CPP headers):
16497 Move to...
16498 * tests/headers.at: here.
16499
aea13e97
AD
165002001-12-29 Akim Demaille <akim@epita.fr>
16501
16502 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
16503
931394cb
AD
165042001-12-29 Akim Demaille <akim@epita.fr>
16505
16506 * tests/actions.at (Mid-rule actions): Output on a single line
16507 instead of several.
16508
704a47c4
AD
165092001-12-29 Akim Demaille <akim@epita.fr>
16510
16511 * doc/bison.texinfo: Formatting changes.
16512
091e20bb
AD
165132001-12-29 Akim Demaille <akim@epita.fr>
16514
16515 Don't store the token defs in a muscle, just be ready to output it
16516 on command. Now possible via `symbols'. Fixes a memory leak.
16517
16518 * src/output.c (token_definitions_output): New.
16519 (output_parser, header_output): Use it.
16520 * src/reader.c (symbols_save): Remove.
16521
cce71710
AD
165222001-12-29 Akim Demaille <akim@epita.fr>
16523
16524 * src/bison.simple: Do not provide a default for YYSTYPE and
16525 YYLTYPE before the user's prologue. Otherwise it's hardly... a
16526 default.
16527
82c035a8
AD
165282001-12-29 Akim Demaille <akim@epita.fr>
16529
16530 Mid-rule actions are simply... ignored!
16531
16532 * src/reader.c (readgram): Be sure to attach mid-rule actions to
16533 the empty-rule associated to the dummy symbol, not to the host
16534 rule.
16535 * tests/actions.at (Mid-rule actions): New.
16536
8419d367
AD
165372001-12-29 Akim Demaille <akim@epita.fr>
16538
16539 Memory leak.
16540
16541 * src/reader.c (reader): Free grammar.
16542
375d5806
AD
165432001-12-29 Akim Demaille <akim@epita.fr>
16544
16545 Memory leak.
16546
16547 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
16548 since it allocates it for each state, although only one is needed.
16549 (allocate_storage): Do it here.
16550
f51cb8ff
AD
165512001-12-29 Akim Demaille <akim@epita.fr>
16552
16553 * src/options.h, src/options.c (create_long_option_table): Rename
16554 as...
16555 (long_option_table_new): this, with a clearer prototype.
16556 (percent_table): Remove, unused,
16557 * src/getargs.c (getargs): Adjust.
16558
29e88316
AD
165592001-12-29 Akim Demaille <akim@epita.fr>
16560
16561 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
16562 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
16563 as states.
16564
b9f71f19
AD
165652001-12-29 Akim Demaille <akim@epita.fr>
16566
16567 * src/lalr.c (build_relations): Rename `states' as `states1'.
16568 Sorry, I don't understand exactly what it is, no better name...
16569
1a2b5d37
AD
165702001-12-29 Akim Demaille <akim@epita.fr>
16571
16572 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
16573 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
16574 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
16575 as rules.
16576
1cca533e
AD
165772001-12-29 Akim Demaille <akim@epita.fr>
16578
16579 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
16580 ago.
16581
c03ae966
AD
165822001-12-29 Akim Demaille <akim@epita.fr>
16583
16584 * src/reader.c, src/reader.h (user_toknums): Remove.
16585 Adjust all users to use symbols[i]->user_token_number.
16586
5a670b1e
AD
165872001-12-29 Akim Demaille <akim@epita.fr>
16588
16589 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
16590 Adjust all users to use symbols[i]->prec or ->assoc.
16591
ad949da9
AD
165922001-12-29 Akim Demaille <akim@epita.fr>
16593
16594 * src/reader.c, src/reader.h (tags): Remove.
16595 Adjust all users to use symbols[i]->tag.
16596
0e78e603
AD
165972001-12-29 Akim Demaille <akim@epita.fr>
16598
16599 * src/gram.h, src/gram.c (symbols): New, similar to state_table
16600 and rule_table.
16601 * src/reader.c (packsymbols): Fill this table.
16602 Drop sprec.
16603 * src/conflicts.c (resolve_sr_conflict): Adjust.
16604 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
16605 single table.
16606 Use symbols[i]->tag instead of tags[i].
16607
213e640e
AD
166082001-12-29 Akim Demaille <akim@epita.fr>
16609
16610 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
16611 In addition, put a comment in there, to replace...
16612 * tests/regression.at (%union and C comments): Remove.
16613
e7b8bef1
AD
166142001-12-29 Akim Demaille <akim@epita.fr>
16615
16616 * tests/regression.at (Web2c Actions): Blindly move the actual
16617 output as expected output. The contents *seem* right to me, but I
16618 can't pretend reading perfectly parser tables... Nonetheless, all
16619 the other tests pass correctly, the table look OK, even though the
16620 presence of `$axiom' is to be noted: AFAICS it is useless (but
16621 harmless).
16622
b68e7744
AD
166232001-12-29 Akim Demaille <akim@epita.fr>
16624
16625 * src/reader.c (readgram): Don't add the rule 0 if there were no
16626 rules read. In other words, add it _after_ having performed
16627 grammar sanity checks.
16628 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
16629
78d5bae9
AD
166302001-12-29 Akim Demaille <akim@epita.fr>
16631
16632 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
16633 visible, and some states have now a different number.
16634
ff442794
AD
166352001-12-29 Akim Demaille <akim@epita.fr>
16636
16637 * src/reader.c (readgram): Bind the initial rule's lineno to that
16638 of the first rule.
16639 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
16640 (Solved SR Conflicts): Adjust rule 0's line number.
16641
610ab194
AD
166422001-12-29 Akim Demaille <akim@epita.fr>
16643
16644 Fix the `GAWK Grammar' failure.
16645
16646 * src/LR0.c (final_state): Initialize to -1 so that we do compute
16647 the reductions of the first state which was mistakenly confused
16648 with the final state because precisely final_state was initialized
16649 to 0.
16650 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
16651 now noticed by Bison.
16652 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
16653 have a reduction on $default.
16654
29d29c8f
AD
166552001-12-29 Akim Demaille <akim@epita.fr>
16656
16657 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
16658 rule line numbers.
16659 * src/closure.c (print_closure): Likewise.
16660 * src/derives.c (print_derives): Likewise.
16661 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
16662 now.
16663
7c6b64d0
AD
166642001-12-29 Akim Demaille <akim@epita.fr>
16665
16666 * src/lalr.c (lookaheads_print): New.
16667 (lalr): Call it when --trace-flag.
16668 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
16669 are dumped.
16670
3d4daee3
AD
166712001-12-29 Akim Demaille <akim@epita.fr>
16672
16673 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
16674 when walking through ritem, even via rule->rhs.
16675 * src/reduce.c (dump_grammar, useful_production, reduce_output)
16676 (useful_production, useless_nonterminals): Likewise.
16677 (reduce_grammar_tables): Likewise, plus update nritems.
16678 * src/nullable.c (set_nullable): Likewise.
16679 * src/lalr.c (build_relations): Likewise.
16680 * tests/sets.at (Nullable): Adjust.
16681 Fortunately, now, the $axiom is no longer nullable.
16682
9e7f6bbd
AD
166832001-12-29 Akim Demaille <akim@epita.fr>
16684
16685 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
16686 the 0-sentinel.
16687 * src/gram.c (ritem_longest_rhs): Likewise.
16688 * src/reduce.c (nonterminals_reduce): Likewise.
16689 * src/print_graph.c (print_graph): Likewise.
16690 * src/output.c (output_rule_data): Likewise.
16691 * src/nullable.c (set_nullable): Likewise.
16692
255ef638
AD
166932001-12-29 Akim Demaille <akim@epita.fr>
16694
16695 * src/output.c: Comment changes.
16696
0d8a7363
AD
166972001-12-27 Paul Eggert <eggert@twinsun.com>
16698
16699 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
16700 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
16701 Sparc, as they were causing more porting problems than the
16702 (minor) performance improvement was worth.
16703
16704 Also, catch up with 1.31's YYSTD.
16705
3db472b9
AD
167062001-12-27 Akim Demaille <akim@epita.fr>
16707
16708 * src/output.c (output_gram): Rely on nritems, not the
16709 0-sentinel. See below.
16710 Use -1 as separator, not 0.
16711 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
16712 Rely on -1 as separator in yyrhs, instead of 0.
16713 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
16714 twice `Now at end of input', therefore there are two lines less to
16715 expect.
16716
b365aa05
AD
167172001-12-27 Akim Demaille <akim@epita.fr>
16718
16719 * tests/regression.at (Unresolved SR Conflicts):
16720 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
16721 below.
16722
30171f79
AD
167232001-12-27 Akim Demaille <akim@epita.fr>
16724
16725 * src/LR0.c (new_state): Recognize the final state by the fact it
16726 is reached by eoftoken.
16727 (insert_start_shifting_state, insert_eof_shifting_state)
16728 (insert_accepting_state, augment_automaton): Remove, since now
16729 these states are automatically computed from the initial state.
16730 (generate_states): Adjust.
16731 * src/print.c: When reporting a rule number to the user, substract
16732 1, so that the axiom rule is rule 0, and the first user rule is 1.
16733 * src/reduce.c: Likewise.
16734 * src/print_graph.c (print_core): For the time being, just as for
16735 the report, depend upon --trace-flags to dump the full set of
16736 items.
16737 * src/reader.c (readgram): Once the grammar read, insert the rule
16738 0: `$axiom: START-SYMBOL $'.
16739 * tests/set.at: Adjust: rule 0 is now displayed, and since the
16740 number of the states has changed (the final state is no longer
16741 necessarily the last), catch up.
16742
75142d45
AD
167432001-12-27 Akim Demaille <akim@epita.fr>
16744
16745 Try to make the use of the eoftoken valid. Given that its value
16746 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
16747 is used instead of > 0 where appropriate, (ii), depend upon nritems
16748 instead of the 0-sentinel.
16749
16750 * src/gram.h, src/gram.c (nritems): New.
16751 Expected to be duplication of nitems, but for the time being...
16752 * src/reader.c (packgram): Assert nritems and nitems are equal.
16753 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
16754 * src/closure.c (print_closure, print_fderives): Likewise.
16755 * src/gram.c (ritem_print): Likewise.
16756 * src/print.c (print_core, print_grammar): Likewise.
16757 * src/print_graph.c: Likewise.
16758
b7c49edf
AD
167592001-12-27 Akim Demaille <akim@epita.fr>
16760
16761 * src/main.c (main): If there are complains after grammar
16762 reductions, then output the report anyway if requested, then die.
16763 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
16764 * src/reader.c (eoftoken): New.
16765 (parse_token_decl): If the token being defined has value `0', it
16766 is the eoftoken.
16767 (packsymbols): No longer hack `tags' to insert `$' by hand.
16768 Be sure to preserve the value of the eoftoken.
16769 (reader): Make sure eoftoken is defined.
16770 Initialize nsyms to 0: now eoftoken is created just like the others.
16771 * src/print.c (print_grammar): Don't special case the eof token.
16772 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
16773 lie anyway, albeit pleasant.
16774 * tests/calc.at: Exercise error messages with eoftoken.
16775 Change the grammar so that empty input is invalid.
16776 Adjust expectations.
16777 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
16778
ec2da99f
AD
167792001-12-27 Akim Demaille <akim@epita.fr>
16780
16781 * configure.in: Check the protos of strchr ans strspn.
16782 Replace strchr if needed.
16783 * src/system.h: Provide the protos of strchr, strspn and memchr if
16784 missing.
16785 * lib/strchr.c: New.
16786 * src/reader.c (symbols_save): Use strchr.
16787
8adfa272
AD
167882001-12-27 Akim Demaille <akim@epita.fr>
16789
16790 * src/print.c, src/print_graph.c (escape): New.
16791 Use it to quote the TAGS outputs.
16792 * src/print_graph.c (print_state): Now errors are in red, and
16793 reductions in green.
16794 Prefer high to wide: output the state number on a line of its own.
16795
80dac38c
AD
167962001-12-27 Akim Demaille <akim@epita.fr>
16797
16798 * src/state.h, src/state.c (reductions_new): New.
16799 * src/LR0.c (set_state_table): Let all the states have a
16800 `reductions', even if reduced to 0.
16801 (save_reductions): Adjust.
16802 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
16803 * src/print.c (print_reductions, print_actions): Adjust.
16804 * src/output.c (action_row): Adjust.
16805
2cec70b9
AD
168062001-12-27 Akim Demaille <akim@epita.fr>
16807
16808 * src/state.h, src/state.c (errs_new, errs_dup): New.
16809 * src/LR0.c (set_state_table): Let all the states have an errs,
16810 even if reduced to 0.
16811 * src/print.c (print_errs, print_reductions): Adjust.
16812 * src/output.c (output_actions, action_row): Adjust.
16813 * src/conflicts.c (resolve_sr_conflict): Adjust.
16814
13ca549a
AD
168152001-12-27 Akim Demaille <akim@epita.fr>
16816
16817 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
16818
5092aba5
AD
168192001-12-27 Akim Demaille <akim@epita.fr>
16820
16821 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
16822 * src/print.c: here.
16823 (lookaheadset, shiftset): New, used as additional storage by
16824 print_reductions.
16825 (print_results): Adjust.
16826 (print_shifts, print_gotos, print_errs): New, extracted from...
16827 (print_actions): here.
16828 * src/print_graph.c (print_actions): Remove dead code.
16829
11e2beca
AD
168302001-12-27 Akim Demaille <akim@epita.fr>
16831
16832 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
16833 `$n' and `@n'.
16834
dac3c910
AD
168352001-12-27 Akim Demaille <akim@epita.fr>
16836
16837 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
16838 (build_relations): Adjust.
16839
d0b0fefa
AD
168402001-12-27 Akim Demaille <akim@epita.fr>
16841
16842 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
16843 duplication.
16844
adc8c848
AD
168452001-12-27 Akim Demaille <akim@epita.fr>
16846
16847 * src/reader.c (packgram): Catch nitems overflows.
16848
14d293ac
AD
168492001-12-27 Akim Demaille <akim@epita.fr>
16850
16851 * src/files.c, src/files.h (guard_obstack): Remove.
16852 * src/output.c (output): Adjust.
16853 * src/reader.c (parse_braces): New, factoring...
16854 (copy_action, copy_guard): these two which are renamed as...
16855 (parse_action, parse_guard): these.
16856 As a voluntary consequence, using braces around guards is now
16857 mandatory.
16858
f499b062
AD
168592001-12-27 Akim Demaille <akim@epita.fr>
16860
16861 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
16862 * src/reader.c (symbol_list): `guard' and `guard_line' are new
16863 members.
16864 (symbol_list_new): Adjust.
16865 (copy_action): action_line is the first line, not the last.
16866 (copy_guard): Just as for actions, store the `action' only, not
16867 the switch/case/break flesh.
16868 Don't parse the user action that might follow the guard, let...
16869 (readgram): do it, i.e., now, there can be an action after a
16870 guard.
16871 In other words the guard is just explicitly optional.
16872 (packgram): Adjust.
16873 * src/output.c (guards_output): New.
16874 (output_parser): Call it when needed.
16875 (output): Also free the guard and attrs obstacks.
16876 * src/files.c, src/files.h (obstack_save): Remove.
16877 (output_files): Remove.
16878 As a result, if one needs the former `.act' file, using an
16879 appropriate skeleton which requires actions and guards is now
16880 required.
16881 * src/main.c (main): Adjust.
16882 * tests/semantic.at: New.
16883 * tests/regression.at: Use `input.y' as input file name.
16884 Avoid 8+3 problems by requiring input.c when the test needs the
16885 parser.
16886
d945f5cd
AD
168872001-12-27 Akim Demaille <akim@epita.fr>
16888
16889 * src/reader.c (symbol_list_new): Be sure to initialize all the
16890 fields.
16891
d200e455
AD
168922001-12-27 Akim Demaille <akim@epita.fr>
16893
16894 All the hacks using a final pseudo state are now useless.
16895
16896 * src/LR0.c (set_state_table): state_table holds exactly nstates.
16897 * src/lalr.c (nLA): New.
16898 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
16899 instead of lookaheadsp from the pseudo state (nstate + 1).
16900
f9507c28
AD
169012001-12-27 Akim Demaille <akim@epita.fr>
16902
16903 * src/output.c (action_row, token_actions): Use a state_t instead
16904 of a integer, and nlookaheads instead of the following state's
16905 lookaheadsp.
16906
065fbd27
AD
169072001-12-27 Akim Demaille <akim@epita.fr>
16908
16909 * src/conflicts.c (log_resolution, flush_shift)
16910 (resolve_sr_conflict, set_conflicts, solve_conflicts)
16911 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
16912 (conflicts_print, print_reductions): Use a state_t instead of an
16913 integer when referring to a state.
16914 As much as possible, depend upon nlookaheads, instead of the
16915 `lookaheadsp' member of the following state (since lookaheads of
16916 successive states are successive, the difference between state n + 1
16917 and n served as the number of lookaheads for state n).
16918 * src/lalr.c (add_lookback_edge): Likewise.
16919 * src/print.c (print_core, print_actions, print_state)
16920 (print_results): Likewise.
16921 * src/print_graph.c (print_core, print_actions, print_state)
16922 (print_graph): Likewise.
16923 * src/conflicts.h: Adjust.
16924
1b177bd7
AD
169252001-12-27 Akim Demaille <akim@epita.fr>
16926
16927 * src/bison.hairy: Formatting/comment changes.
16928 ANSIfy.
16929 Remove `register' indications.
16930 Add plenty of `static'.
16931
7742ddeb
AD
169322001-12-27 Akim Demaille <akim@epita.fr>
16933
16934 * src/output.c (prepare): Drop the muscle `ntbase' which
16935 duplicates ntokens.
16936 * src/bison.simple: Formatting/comment changes.
16937 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
16938 is an undocumented synonym.
16939
1fa14068
AD
169402001-12-22 Akim Demaille <akim@epita.fr>
16941
16942 * src/output.c (output_table_data): Change the prototype to use
16943 `int' for array ranges: some invocations do pass an int, not a
16944 short.
16945 Reported by Wayne Green.
16946
b9752825
AD
169472001-12-22 Akim Demaille <akim@epita.fr>
16948
16949 Some actions of web2c.y are improperly triggered.
16950 Reported by Mike Castle.
16951
16952 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
16953 * tests/regression.at (Web2c): Rename as...
16954 (Web2c Report): this.
16955 (Web2c Actions): New.
16956
776209d6
AD
169572001-12-22 Akim Demaille <akim@epita.fr>
16958
16959 Reductions in web2c.y are improperly reported.
16960 Reported by Mike Castle.
16961
16962 * src/conflicts.c (print_reductions): Fix.
16963 * tests/regression.at (Web2c): New.
16964
275fc3ad
AD
169652001-12-18 Akim Demaille <akim@epita.fr>
16966
16967 Some host fail on `assert (!"foo")', which expands to
16968 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
16969 Reported by Nelson Beebee.
16970
16971 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
16972 `#define it_succeeded 0' and `assert (it_succeeded)'.
16973
897668ee
MA
169742001-12-17 Marc Autret <autret_m@epita.fr>
16975
16976 * src/bison.simple: Don't hard code the skeleton line and filename.
16977 * src/output.c (output_parser): Rename 'line' as 'output_line'.
16978 New line counter 'skeleton_line' (skeleton-line muscle).
16979
ab3399e0
PE
169802001-12-17 Paul Eggert <eggert@twinsun.com>
16981
16982 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
16983 YYDEBUG must be defined to a nonzero value.
16984
16985 * src/bison.simple (yytname): Do not assume that the user defines
16986 YYDEBUG to a properly parenthesized expression.
16987
3877f72b
AD
169882001-12-17 Akim Demaille <akim@epita.fr>
16989
16990 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
16991 nlookaheads is a new member.
16992 Adjust all users.
16993 * src/lalr.h (nlookaheads): Remove this orphan declaration.
16994 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
16995 state.
776209d6 16996
331dbc1b
AD
169972001-12-17 Akim Demaille <akim@epita.fr>
16998
16999 * src/files.h, src/files.c (open_files, close_files): Remove.
17000 * src/main.c (main): Don't open/close files, nor invoke lex_free,
17001 let...
17002 * src/reader.c (reader): Do it.
776209d6 17003
be750e4c
AD
170042001-12-17 Akim Demaille <akim@epita.fr>
17005
17006 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 17007
709ae8c6
AD
170082001-12-17 Akim Demaille <akim@epita.fr>
17009
17010 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
17011 (flush_reduce): New.
17012 (resolve_sr_conflict): Adjust.
776209d6 17013
f87685c3
AD
170142001-12-17 Akim Demaille <akim@epita.fr>
17015
17016 * src/output.c (output_obstack): Be static and rename as...
17017 (format_obstack): this, to avoid any confusion with files.c's
17018 output_obstack.
17019 * src/reader.h (muscle_obstack): Move to...
17020 * src/output.h: here, since it's defined in output.c.
17021
837491d8
AD
170222001-12-17 Akim Demaille <akim@epita.fr>
17023
17024 * src/output.c (action_row, save_column, default_goto)
17025 (sort_actions, matching_state, pack_vector): Better variable
17026 locality.
17027
796d61fb
AD
170282001-12-17 Akim Demaille <akim@epita.fr>
17029
17030 * src/output.c: Various formatting changes.
776209d6 17031
64d15509
AD
170322001-12-17 Akim Demaille <akim@epita.fr>
17033
17034 * src/files.c (output_files): Free the output_obstack.
17035 * src/main.c (main): Call print and print_graph conditionally.
17036 * src/print.c (print): Work unconditionally.
17037 * src/print_graph.c (print_graph): Work unconditionally.
17038 * src/conflicts.c (log_resolution): Output only if verbose_flag.
17039
fbc8ecb7
MA
170402001-12-16 Marc Autret <autret_m@epita.fr>
17041
17042 * src/output.c (actions_output): Fix. When we use %no-lines,
17043 there is one less line per action.
17044
f0440388
MA
170452001-12-16 Marc Autret <autret_m@epita.fr>
17046
17047 * src/bison.simple: Remove a useless #line directive.
17048 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
17049 * src/output.c (get_lines_number): New.
776209d6 17050 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
17051 output muscles.
17052 Fix line numbering.
17053 (actions_output): Computes the number of lines taken by actions.
17054 (output_master_parser): Insert new skeleton which is the name of
17055 the output parser file name.
17056
a79986b8
MA
170572001-12-15 Marc Autret <autret_m@epita.fr>
17058
17059 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
17060
4ec8e00f
MA
170612001-12-15 Marc Autret <autret_m@epita.fr>
17062
17063 * src/output.c (output_gram): Keep track of the hairy one.
17064
1a4648ff
AD
170652001-12-15 Akim Demaille <akim@epita.fr>
17066
17067 Make `make distcheck' work.
17068
17069 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
17070 system.h which uses libgettext.h.
17071
9c2c67e6
AD
170722001-12-15 Akim Demaille <akim@epita.fr>
17073
17074 * src/nullable.c (set_nullable): Useless rules must be skipped,
17075 otherwise, since we range over their symbols, we might look at a
17076 nonterminal which no longer ``exists'', i.e., it is not counted in
17077 `nvars', hence we overflow our arrays.
17078
93ede233
AD
170792001-12-15 Akim Demaille <akim@epita.fr>
17080
17081 The header can also be produced directly, without any obstack!
17082 Yahoo!
17083
17084 * src/files.c, src/files.h (defines_obstack): Remove.
17085 (compute_header_macro): Global.
17086 (defines_obstack_save): Remove.
17087 * src/reader.c (parse_union_decl): No longer output to
17088 defines_obstack: its content can be found in the `stype' muscle
17089 anyway.
17090 (output_token_translations): Merge into...
17091 (symbols_output): this.
17092 Rename as...
17093 (symbols_save): this.
17094 (reader): Adjust.
17095 * src/output.c (header_output): New.
17096 (output): Call it.
17097
2666f928
AD
170982001-12-15 Akim Demaille <akim@epita.fr>
17099
17100 * src/reader.c (parse_union_decl): Instead of handling two obstack
17101 simultaneously, use one to define the `stype' muscle, and use the
17102 value of the latter to fill defines_obstack.
17103 (copy_comment): Remove.
17104 (copy_comment2): Work for a single obstack.
17105 Rename as...
17106 (copy_comment): this.
17107
428046f8
AD
171082001-12-15 Akim Demaille <akim@epita.fr>
17109
17110 * src/lex.c, src/lex.h (xgetc): No longer static.
17111 * src/reader.c (parse_union_decl): Revamp.
17112
ea52d706
AD
171132001-12-15 Akim Demaille <akim@epita.fr>
17114
17115 Still making progress in separating Bison into (i) input, (ii)
17116 process, (iii) output: now we can directly output the parser file
17117 without using table_obstack at all.
17118
17119 * src/files.c, src/files.h (table_obstack): Bye bye.
17120 (parser_file_name): New.
17121 * src/files.c (compute_output_file_names): Compute it.
17122 * src/output.c (actions_output, output_parser)
17123 (output_master_parser): To a file instead of an obstack.
17124
3f96f4dc
AD
171252001-12-15 Akim Demaille <akim@epita.fr>
17126
17127 Attach actions to rules, instead of pre-outputting them to
17128 actions_obstack.
17129
17130 * src/gram.h (rule_t): action and action_line are new members.
17131 * src/reader.c (symbol_list): Likewise.
17132 (copy_action): Save the actions within the rule.
17133 (packgram): Save them in rule_table.
17134 * src/output.c (actions_output): New.
17135 (output_parser): Use it on `%%actions'.
17136 (output_rule_data): Don't free rule_table.
17137 (output): Do it.
17138 (prepare): Don't save the `action' muscle.
17139 * src/bison.simple: s/%%action/%%actions/.
17140
51576fb3
AD
171412001-12-15 Akim Demaille <akim@epita.fr>
17142
17143 * src/reader.c (copy_action): When --yacc, don't append a `;'
17144 to the user action: let it fail if lacking.
dee049eb 17145 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 17146
2648a72d
AD
171472001-12-14 Akim Demaille <akim@epita.fr>
17148
17149 * src/lex.c (literalchar): Simply return the char you decoded, non
17150 longer mess around with obstacks and int pointers.
17151 Adjust all callers.
17152
92790e5b
AD
171532001-12-14 Akim Demaille <akim@epita.fr>
17154
17155 * src/lex.c (literalchar): Don't escape the special characters,
17156 just decode them, and keep them as char (before, eol was output as
17157 the 2 char string `\n' etc.).
17158 * src/output.c (output_rule_data): Use quotearg to output the
17159 token strings.
17160
927c1557
PE
171612001-12-13 Paul Eggert <eggert@twinsun.com>
17162
17163 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
17164 Do not infringe on the global user namespace when using C++.
17165 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
17166 All uses of `fprintf' and `stderr' changed.
17167
17168 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
17169
ed8e1f68
AD
171702001-12-13 Akim Demaille <akim@epita.fr>
17171
17172 The computation of nullable is broken: it doesn't handle empty
17173 RHS's properly.
17174
17175 * tests/torture.at (GNU AWK Grammar): New.
17176 * tests/sets.at (Nullable): New.
17177 * src/nullable.c (set_nullable): Instead of blindly looping over
17178 `ritems', loop over the rules, and then over their rhs's.
17179
17180 Work around Autotest bugs.
17181
17182 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
17183 frame, because Autotest understand lines starting with a `+' as
17184 traces from the shell. Then, they are not processed properly.
17185 Admittedly an Autotest bug, but we don't have time to wait for
17186 Autotest to catch up.
17187 * tests/regression.at (Broken Closure): Adjust to the new table
17188 frames.
17189 Move to...
17190 * tests/sets.at: here.
17191
cb581495
AD
171922001-12-13 Akim Demaille <akim@epita.fr>
17193
17194 * src/closure.c (closure): Use nrules instead of playing tricks
17195 with BITS_PER_WORD.
17196
2e729273
AD
171972001-12-13 Akim Demaille <akim@epita.fr>
17198
17199 * src/print.c (print_actions): Output the handling of `$' as the
17200 traces do: shifting the token EOF. Before EOF was treated as a
17201 nonterminal.
17202 * tests/regression.at: Adjust some tests.
17203 * src/print_graph.c (print_core): Complete the set of items via
17204 closure. The next-to-final and final states are still unsatisfying,
17205 but that's to be addressed elsewhere.
17206 No longer output the rule numbers, but do output the state number.
17207 A single loop for the shifts + gotos is enough, but picked a
17208 distinct color for each.
17209 (print_graph): Initialize and finalize closure.
17210
107f7dfb
AD
172112001-12-13 Akim Demaille <akim@epita.fr>
17212
17213 * src/reader.c (readgram): Remove dead code, an strip useless
17214 braces.
17215 (get_type): Remove, unused.
17216
9b53a24f
AD
172172001-12-12 Akim Demaille <akim@epita.fr>
17218
17219 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
17220 on that of lib/error.c.
17221
dbfb6dcd
AD
172222001-12-12 Akim Demaille <akim@epita.fr>
17223
17224 Some hosts don't like `/' in includes.
17225
17226 * src/system.h: Include libgettext.h without qualifying the path.
17227 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
17228 $(top_srcdir).
17229
c25fb648
MA
172302001-12-11 Marc Autret <autret_m@epita.fr>
17231
17232 * src/output.c (output_parser): Remove useless muscle.
17233
710ddc4f
MA
172342001-12-11 Marc Autret <autret_m@epita.fr>
17235
17236 * src/bison.simple: Remove #line just before %%epilogue. It
17237 is now handled in ...
17238 * src/reader.c (read_additionnal_code): Add the output of a
17239 #line for the epilogue.
17240
e83d80b8
MA
172412001-12-10 Marc Autret <autret_m@epita.fr>
17242
927c1557 17243 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
17244 replace precedent remove.
17245 * src/bison.simple: Remove #line before %%prologue because
17246 %%input-line is wrong at this time.
17247
971d5158
MA
172482001-12-10 Marc Autret <autret_m@epita.fr>
17249
17250 * src/reader.c (symbols_output): Clean up.
927c1557 17251 * src/output.c (output_gram, output): Clean up.
971d5158 17252
5edafffd
AD
172532001-12-10 Akim Demaille <akim@epita.fr>
17254
17255 * src/lalr.c (initialize_lookaheads): New. Extracted from...
17256 * src/LR0.c (set_state_table): here.
17257 * src/lalr.c (lalr): Call it.
17258
0279f8e9
AD
172592001-12-10 Akim Demaille <akim@epita.fr>
17260
17261 * src/state.h (shifts): Remove the `number' member: shifts are
17262 attached to state, hence no longer need to be labelled with a
17263 state number.
17264
190c4f5f
AD
172652001-12-10 Akim Demaille <akim@epita.fr>
17266
17267 Now that states have a complete set of members, the linked list of
17268 shifts is useless: just fill directly the state's shifts member.
17269
17270 * src/state.h (shifts): Remove the `next' member.
17271 * src/LR0.c (first_state, last_state): Remove.
17272 Adjust the callers.
17273 (augment_automaton): Don't look for the shifts that must be added
17274 a shift on EOF: it is those of the state we looked for! But now,
17275 since shifts are attached, it is no longer needed to looking
17276 merely by its id: its number.
17277
2a73b93d
AD
172782001-12-10 Akim Demaille <akim@epita.fr>
17279
17280 * src/LR0.c (augment_automaton): Better variable locality.
17281 Remove an impossible branch: if there is a state corresponding to
17282 the start symbol being shifted, then there is shift for the start
17283 symbol from the initial state.
17284
74392f6a
AD
172852001-12-10 Akim Demaille <akim@epita.fr>
17286
17287 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
17288 only when appropriate: when insert_start_shifting_state' is not
17289 invoked.
17290 * tests/regression.at (Rule Line Numbers): Adjust.
17291
37c82725
AD
172922001-12-10 Akim Demaille <akim@epita.fr>
17293
17294 * src/LR0.c (augment_automaton): Now that all states have shifts,
17295 merge the two cases addition shifts to the initial state.
17296
6a164e0c
AD
172972001-12-10 Akim Demaille <akim@epita.fr>
17298
17299 * src/lalr.c (set_state_table): Move to...
17300 * src/LR0.c: here.
17301 * src/lalr.c (lalr): Don't call it...
17302 * src/LR0.c (generate_states): do it.
17303 * src/LR0.h (first_state): Remove, only the table is used.
17304
7215de24
AD
173052001-12-10 Akim Demaille <akim@epita.fr>
17306
17307 * src/LR0.h (first_shift, first_reduction): Remove.
17308 * src/lalr.c: Don't use first_shift: find shifts through the
17309 states.
17310
80e25d4d
AD
173112001-12-10 Akim Demaille <akim@epita.fr>
17312
17313 * src/LR0.c: Attach shifts to states as soon as they are
17314 computed.
17315 * src/lalr.c (set_state_table): Instead of assigning shifts to
17316 state, just assert that the mapping was properly done.
17317
0ab3728b
AD
173182001-12-10 Akim Demaille <akim@epita.fr>
17319
17320 * src/LR0.c (insert_start_shift): Rename as...
17321 (insert_start_shifting_state): this.
17322 (insert_eof_shifting_state, insert_accepting_state): New.
17323 (augment_automaton): Adjust.
17324 Better locality of the variables.
17325 When looking if the start_symbol is shifted from the initial
17326 state, using `while (... symbol != start_symbol ...)' sounds
17327 better than `while (... symbol < start_symbol ...)': If fail
17328 to see how the order between symbols could be relevant!
17329
78af9bbc
AD
173302001-12-10 Akim Demaille <akim@epita.fr>
17331
17332 * src/getargs.h: Don't declare `spec_name_prefix' and
17333 `spec_file_prefix', declared by src/files.h.
17334 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
17335 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
17336 * src/output.c (prepare): Adjust.
17337 * src/reader.c (symbols_output): Likewise.
17338 * src/vmsgetargs.c: Vaguely adjust, but who cares?
17339
bdef2a41
AD
173402001-12-10 Akim Demaille <akim@epita.fr>
17341
17342 * src/muscle_tab.c (muscle_init): NULL is a better default than
17343 `"0"'.
17344
3735969c
AD
173452001-12-10 Akim Demaille <akim@epita.fr>
17346
17347 * src/reader.c (reader): Calling symbols_output once is enough.
17348
49701457
AD
173492001-12-10 Akim Demaille <akim@epita.fr>
17350
17351 Now that states have a complete set of members, the linked list of
17352 reductions is useless: just fill directly the state's reductions
17353 member.
17354
17355 * src/state.h (struct reductions): Remove member `number' and
17356 `next'.
17357 * src/LR0.c (first_reduction, last_reduction): Remove.
17358 (save_reductions): Don't link the new reductions, store them in
17359 this_state.
17360 * src/lalr.c (set_state_table): No need to attach reductions to
17361 states, it's already done.
17362 * src/output.c (output_actions): No longer free the shifts, then
17363 the reductions, then the states: free all the states and their
17364 members.
17365
0edad749
AD
173662001-12-10 Akim Demaille <akim@epita.fr>
17367
17368 * src/options.c (OPTN, DRTV, BOTH): New.
17369 (option_table): Use them.
17370
0edad749
AD
17371 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
17372 the job of system.h.
17373 * src/options.c: Don't include stdio.h and xalloc.h for the same
17374 reasons.
17375
5449dd0f
AD
173762001-12-10 Akim Demaille <akim@epita.fr>
17377
17378 * src/output.c (output, prepare): Make sure the values of the
17379 muscles `action' and `prologue' are 0-terminated.
17380
a870c567
AD
173812001-12-10 Akim Demaille <akim@epita.fr>
17382
17383 Clean up GCC warnings.
17384
17385 * src/reader.c (copy_action): `buf' is not used.
17386 (parse_skel_decl): Be static.
17387 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
17388 * src/options.h (create_long_option_table): Have a real prototype.
17389 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
17390 (hash_delete_at): Return const void *.
17391 Adjust casts to preserve the const.
17392
80df8768
AD
173932001-12-10 Akim Demaille <akim@epita.fr>
17394
17395 * configure.in: Require 2.52g.
17396 M4 is not needed, but AUTOM4TE is.
17397 * m4/m4.m4: Remove.
17398 * tests/Makefile.am: Adjust.
17399
f693ad14
AD
174002001-12-10 Akim Demaille <akim@epita.fr>
17401
17402 One structure for states is enough, even though theoretically
17403 there are LR(0) states and LALR(1) states.
17404
17405 * src/lalr.h (state_t): Remove.
17406 (state_table): Be state_t **, not state_t *.
17407 * src/state.h (core, CORE_ALLOC): Rename as...
17408 (state_t, STATE_ALLOC): this.
17409 Add the LALR(1) members: shifts, reductions, errs.
17410 * src/LR0.c (state_table): Rename as...
17411 (state_hash): this, to avoid name clashes with the global
17412 `state_table'.
17413 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
17414 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
17415
74ffbcb6
AD
174162001-12-10 Akim Demaille <akim@epita.fr>
17417
17418 Bison dumps core on bash.y.
17419 Reported by Pascal Bart.
17420
17421 * src/warshall.c (bitmatrix_print): New.
17422 (TC): Use it.
ba0fe3c7 17423 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
74ffbcb6
AD
17424 j must be the outer loop.
17425 * tests/regression.at (Broken Closure): New.
17426
07708e19
AD
174272001-12-05 Akim Demaille <akim@epita.fr>
17428
17429 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
17430 its argument.
ba1ecc07 17431 Reported by Peter Hamorsky.
07708e19 17432
92b16366
AD
174332001-12-05 Akim Demaille <akim@epita.fr>
17434
17435 * src/conflicts.c (err_table): Remove.
17436 (resolve_sr_conflict): Adjust.
17437 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
17438 Rename as...
17439 (state_t.reductions, state_t.shifts): this.
17440
076ab033
AD
174412001-12-05 Akim Demaille <akim@epita.fr>
17442
17443 * src/reduce.c (reduce_grammar_tables): No longer disable the
17444 removal of useless rules via CPP but via `if (0)', so that the
17445 compiler still check the code is valid.
17446 For instance, it should have noticed `rline' no longer exists: use
17447 the `line' member of rule_t.
17448 * src/gram.c (dummy, rline): Remove, unused.
17449
3843c413
AD
174502001-12-05 Akim Demaille <akim@epita.fr>
17451
17452 * src/output.c (pack_vector): Use assert, not berror.
17453 * src/main.c (berror): Remove, unused.
17454
43168960
AD
174552001-12-05 Akim Demaille <akim@epita.fr>
17456
17457 New experimental feature: if --verbose --trace output all the
17458 items of a state, not only its kernel.
17459
17460 * src/print.c (print_core): If `trace_flag', then invoke closure
17461 before outputting the items of the state (print_core is no longer
17462 a correct name them).
17463 (print_results): Invoke new_closure/free_closure if needed.
17464
b2872512
AD
174652001-12-05 Akim Demaille <akim@epita.fr>
17466
17467 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
17468 * src/closure.c, src/closure.h (itemsetsize): Rename as...
17469 (nitemset): for consistency with the rest of the project.
17470
23cbcc6c
AD
174712001-12-05 Akim Demaille <akim@epita.fr>
17472
17473 * src/closure.c (print_closure): Improve.
17474 (closure): Use it for printing input and output.
17475
03ec521c
AD
174762001-12-05 Akim Demaille <akim@epita.fr>
17477
17478 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
17479 indexed by nonterminals.
17480
3a7456dd
AD
174812001-12-05 Akim Demaille <akim@epita.fr>
17482
17483 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
17484 what it was!).
17485 * src/warshall.h: Remove accidental duplication of the content.
17486
1cbcf2e7
AD
174872001-12-05 Akim Demaille <akim@epita.fr>
17488
17489 * src/closure.c (set_fderives): De-obfuscate.
17490
84182270
AD
174912001-12-05 Akim Demaille <akim@epita.fr>
17492
17493 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
17494
3f6f053c
AD
174952001-12-05 Akim Demaille <akim@epita.fr>
17496
17497 * src/closure.c (set_firsts): De-obfuscate.
17498
7a5350ba
AD
174992001-12-05 Akim Demaille <akim@epita.fr>
17500
17501 * src/output.c (action_row): De-obfuscate
17502 using the good o' techniques: arrays not pointers, variable
17503 locality, BITISSET, RESETBIT etc.
17504
d954473d
AD
175052001-12-05 Akim Demaille <akim@epita.fr>
17506
17507 Pessimize the code to simplify it: from now on, all the states
17508 have a valid SHIFTS, which NSHIFTS is possibly 0.
17509
17510 * src/LR0.c (shifts_new): Be global and move to..
17511 * src/state.c, src/state.h: here.
17512 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
17513 * src/print_graph: Adjust.
17514
9839bbe5
AD
175152001-12-05 Akim Demaille <akim@epita.fr>
17516
17517 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
17518 * src/conflicts.c: Use it.
17519 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
17520 incorrectly ``simplified''.
17521
9f136c07
AD
175222001-12-05 Akim Demaille <akim@epita.fr>
17523
17524 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
17525 using the good o' techniques: arrays not pointers, variable
17526 locality, BITISSET, RESETBIT etc.
17527
b608206e
AD
175282001-12-05 Akim Demaille <akim@epita.fr>
17529
17530 * src/state.h (SHIFT_SYMBOL): New.
17531 * src/conflicts.c: Use it to deobfuscate.
17532
52afa962
AD
175332001-12-05 Akim Demaille <akim@epita.fr>
17534
17535 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
17536 (print_reductions): De-obfuscate using the good o' techniques:
17537 arrays not pointers, variable locality, BITISSET.
17538
e74dc321
AD
175392001-12-05 Akim Demaille <akim@epita.fr>
17540
17541 * src/conflicts.c (print_reductions): Arrays, not pointers.
17542 Use BITISSET.
17543
768fca83
AD
175442001-12-05 Akim Demaille <akim@epita.fr>
17545
17546 * src/conflicts.c (print_reductions): Pessimize, but clarify.
17547
a17e599f
AD
175482001-12-05 Akim Demaille <akim@epita.fr>
17549
17550 * src/conflicts.c (print_reductions): Improve variable locality.
17551
a04bc341
AD
175522001-12-05 Akim Demaille <akim@epita.fr>
17553
17554 * src/conflicts.c (print_reductions): Pessimize, but clarify.
17555
c8ea038e
AD
175562001-12-05 Akim Demaille <akim@epita.fr>
17557
17558 * src/conflicts.c (print_reductions): Improve variable locality.
17559
aa2aab3c
AD
175602001-12-05 Akim Demaille <akim@epita.fr>
17561
17562 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
17563 * src/lalr.c: Use them.
17564
b178c8cc
AD
175652001-12-05 Akim Demaille <akim@epita.fr>
17566
17567 * src/LR0.c (augment_automaton): Formatting changes.
17568 Better variable locality.
17569
f67d13aa
AD
175702001-12-05 Akim Demaille <akim@epita.fr>
17571
17572 * src/lalr.c (matrix_print): New.
17573 (transpose): Use it.
17574 Use arrays instead of pointers.
17575
c2713865
AD
175762001-12-05 Akim Demaille <akim@epita.fr>
17577
17578 * src/lalr.c (maxrhs): Move to...
17579 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
17580 * src/lalr.c (build_relations): Adjust.
17581
9887c18a
AD
175822001-12-05 Akim Demaille <akim@epita.fr>
17583
17584 * src/lalr.c (transpose): Free the memory allocated to the
17585 argument, as it is replaced by the results by the unique caller.
17586 (build_relations): Merely invoke transpose: it handles the memory
17587 deallocation.
17588 Improve variable locality.
17589 Avoid variables used as mere abbreviations.
17590 (compute_lookaheads): Use arrays instead of pointers.
17591
4d4f699c
AD
175922001-12-05 Akim Demaille <akim@epita.fr>
17593
17594 * src/lalr.c (initialize_F): Improve variable locality.
17595 Avoid variables used as mere abbreviations.
17596
80a69750
AD
175972001-12-05 Akim Demaille <akim@epita.fr>
17598
17599 * src/derives.c (print_derives): Display the ruleno.
17600 * src/lalr.c (initialize_F, transpose): Better variable locality
17601 to improve readability.
17602 Avoid variables used as mere abbreviations.
17603
fe961097
AD
176042001-12-05 Akim Demaille <akim@epita.fr>
17605
17606 * src/lalr.c (traverse): Use arrays instead of pointers.
17607
e3e4e814
AD
176082001-12-05 Akim Demaille <akim@epita.fr>
17609
17610 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
17611 the handling of squeue.
17612 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
17613
630e182b
AD
176142001-12-05 Akim Demaille <akim@epita.fr>
17615
17616 Because useless nonterminals are now kept alive (instead of being
17617 `destroyed'), we now sometimes examine them, and store information
17618 related to them. Hence we need to know their number, and adjust
17619 memory allocations.
17620
17621 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
17622 static.
17623 * src/LR0.c (allocate_itemsets): The memory allocated to
17624 `symbol_count' was used for two different purpose: once to count
17625 the number of occurrences of each symbol, and later reassigned to
17626 `shift_symbol', containing the symbol that can be shifted from a
17627 given state.
17628 Deobfuscate, i.e., allocate, use and free `symbol_count' here
17629 only, and...
17630 (new_itemsets): Allocate `shift_symbol' here.
17631 (allocate_itemsets): symbol_count includes useless nonterminals.
17632 Make room for them.
17633 (free_storage): Use `free', not `XFREE', for pointers that cannot
17634 be null.
17635
81b51460
AD
176362001-12-05 Akim Demaille <akim@epita.fr>
17637
17638 * src/nullable.c (set_nullable): Deobfuscate the handling of
17639 ritem.
17640 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
17641
3067fbef
AD
176422001-12-05 Akim Demaille <akim@epita.fr>
17643
17644 * src/gram.c, src/gram.h (ritem_print): New.
17645 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
17646 (This useless function was defined only to work around VMS linkers
17647 that can't handle compilation units with variables only).
17648 * src/reduce.c (dump_grammar): Use it to trace the construction of
17649 ritem.
17650
c2bea5f9
PE
176512001-12-04 Paul Eggert <eggert@twinsun.com>
17652
7d27c823
PE
17653 * src/bison.simple (union yyalloc): Change member names
17654 to be the same as the stack names.
17655 (yyparse): yyptr is now union yyalloc *, not char *.
17656 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
17657 and may generate better code on some machines.
c2bea5f9
PE
17658 (yystpcpy): Use prototype if __STDC__ is defined, not just
17659 if __cplusplus is defined.
35687a9d 17660
2c8a9dfa
AD
176612001-11-30 Akim Demaille <akim@epita.fr>
17662
17663 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
17664 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
17665 Gettext doesn't compile cleanly, and dies with -Werror.
17666 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
17667 Include WARNING_CFLAGS here.
17668 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
17669 before being defined.
17670
f4e421e6
AD
176712001-11-27 Paul Eggert <eggert@twinsun.com>
17672
17673 * lib/quotearg.h (quotearg_n, quotearg_n_style):
17674 First arg is int, not unsigned.
17675 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
17676 (SIZE_MAX, UINT_MAX): New macros.
17677 (quotearg_n_options): Abort if N is negative.
17678 Avoid overflow check on hosts where size_t is 64 bits and int
17679 is 32 bits, as overflow is impossible there.
17680 Fix off-by-one typo that caused unnecessary reallocation.
17681
7093d0f5
AD
176822001-11-29 Paul Eggert <eggert@twinsun.com>
17683
17684 Name space cleanup in generated parser.
17685
17686 * doc/bison.texinfo (Bison Parser): Discuss system headers
17687 and their effect on the user name space.
17688
17689 * src/bison.simple:
17690 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
17691 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
17692 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
17693
17694 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
17695 on user names when possible.
17696
17697 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
17698 Simplify test for whather <alloca.h> exists.
17699
17700 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
17701
17702 (<stdio.h>): Include if YYDEBUG.
17703
17704 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
17705 ! defined (yyoverflow) && ! defined (yymemcpy).
17706
17707 (yymemcpy, yyparse): Rename local variables as needed so that
17708 they all begin with 'yy'.
17709
17710 (yystrlen, yystpcpy): New functions.
17711
17712 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
17713 All uses changed.
17714
17715 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
17716 instead of relying on string.h functions. Use YYSTACK_ALLOC
17717 and YYSTACK_FREE instead of malloc and free.
17718
fd51e5ff
AD
177192001-11-30 Akim Demaille <akim@epita.fr>
17720
17721 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
17722 before their first uses.
17723 (YYBISON, YYPURE): Move to the top of the output.
17724
7d13ff5f
AD
177252001-11-30 Akim Demaille <akim@epita.fr>
17726
17727 * tests/reduce.at (Useless Nonterminals): Fix.
17728
892a3995
AD
177292001-11-30 Akim Demaille <akim@epita.fr>
17730
17731 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
17732 if body instead of `;' to pacify GCC's warnings.
17733
68f1e3ed
AD
177342001-11-30 Akim Demaille <akim@epita.fr>
17735
17736 Instead of mapping the LHS of unused rules to -1, keep the LHS
17737 valid, but flag the rules as invalid.
17738
17739 * src/gram.h (rule_t): `useful' is a new member.
17740 * src/print.c (print_grammar): Adjust.
17741 * src/derives.c (set_derives): Likewise.
17742 * src/reader.c (packgram, reduce_output): Likewise.
17743 * src/reduce.c (reduce_grammar_tables): Likewise.
17744 * tests/reduce.at (Underivable Rules, Useless Rules): New.
17745
d2d1b42b
AD
177462001-11-30 Akim Demaille <akim@epita.fr>
17747
17748 * src/reduce.c (reduce_output): Formatting changes.
17749 * src/print.c (print_results, print_grammar): Likewise.
17750 * tests/regression.at (Rule Line Numbers)
17751 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
17752
760b53a8
AD
177532001-11-30 Akim Demaille <akim@epita.fr>
17754
17755 * src/reduce.c (nonterminals_reduce): Instead of throwing away
17756 useless nonterminals, move them at the end of the symbol arrays.
17757 (reduce_output): Adjust.
17758 * tests/reduce.at (Useless Nonterminals): Adjust.
17759
00238958
AD
177602001-11-30 Akim Demaille <akim@epita.fr>
17761
17762 * src/reduce.c: Various comment/formatting changes.
17763 (nonterminals_reduce): New, extracted from...
17764 (reduce_grammar_tables): here.
17765 (reduce_grammar): Call nonterminals_reduce.
17766
396452de
PE
177672001-11-29 Paul Eggert <eggert@twinsun.com>
17768
17769 * src/bison.simple (YYSTACK_REALLOC): Remove.
17770 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
17771 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
17772 New macros.
17773 (union yyalloc): New type.
17774 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
17775 an arbitrary restriction on hosts where size_t is wider than int.
17776
17777 (yyparse): Don't dump core if alloca or malloc fails; instead, report
17778 a parser stack overflow. Allocate just one block of memory for all
17779 three stacks, instead of allocating three blocks; this typically is
17780 faster and reduces fragmentation.
17781
17782 Do not limit the number of items in the stack to a value that fits
17783 in 'int', as this is an arbitrary limit on hosts with 64-bit
17784 size_t and 32-bit int.
17785
147e184c
MA
177862001-11-29 Marc Autret <autret_m@epita.fr>
17787
17788 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
17789 of defining YYERROR_VERBOSE.
17790 [AT_DATA]: $4 is now out of C declarations in the prologue.
17791
426cf563
MA
177922001-11-28 Marc Autret <autret_m@epita.fr>
17793
17794 * src/reader.c (parse_dquoted_param): New.
17795 (parse_skel_decl): Use it.
17796 * src/lex.h: Add its prototype.
17797 * src/lex.c (literalchar): Become not static.
17798
c7925b99
MA
177992001-11-28 Marc Autret <autret_m@epita.fr>
17800
17801 * src/output.h: And put its extern declaration here.
17802 * src/output.c (error_verbose): Define here.
17803 (prepare): Echo name modification.
17804 * src/getargs.h: Clean its extern declaration.
17805 * src/getargs.c (error_verbose_flag): Remove.
17806 (getargs): Remove case 'e'.
17807 * src/options.c (option_table): 'error-verbose' is now seen as simple
17808 percent option.
17809 Include output.h.
17810
17811 * src/reader.c (read_declarations): Remove case tok_include.
17812 (parse_include_decl): Remove.
17813 * src/lex.h (token_t): Remove tok_include.
17814 * src/options.c (option_table): 'include' is now a simple command line
17815 option.
17816
5b5d1929
MA
178172001-11-28 Marc Autret <autret_m@epita.fr>
17818
17819 * src/bison.simple: Adjust muscle names.
17820 * src/muscle_tab.c (muscle_init): Also rename the muscles.
17821 * src/output.c (prepare): s/_/-/ for the muscles names.
17822 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
17823
8850be4b
MA
178242001-11-28 Marc Autret <autret_m@epita.fr>
17825
17826 * src/bison.simple: Fix debug.
17827 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
17828
4a38e613
AD
178292001-11-28 Akim Demaille <akim@epita.fr>
17830
17831 * src/LR0.c (shifts_new): New.
17832 (save_shifts, insert_start_shift, augment_automaton): Use it.
17833
4b35e1c1
AD
178342001-11-28 Akim Demaille <akim@epita.fr>
17835
17836 * src/closure.c (closure): `b' and `ruleno' denote the same value:
17837 keep ruleno only.
17838
d2b04478
AD
178392001-11-28 Akim Demaille <akim@epita.fr>
17840
17841 * src/closure.c (closure): Instead of looping over word in array
17842 then bits in words, loop over bits in array.
17843
2c4c30aa
AD
178442001-11-28 Akim Demaille <akim@epita.fr>
17845
17846 * src/closure.c (closure): No longer optimize the special case
17847 where all the bits of `ruleset[r]' are set to 0, to make the code
17848 clearer.
17849
576890b7
AD
178502001-11-28 Akim Demaille <akim@epita.fr>
17851
17852 * src/closure.c (closure): `r' and `c' are new variables, used to
17853 de-obfuscate accesses to RULESET and CORE.
17854
cb487d7d
AD
178552001-11-28 Akim Demaille <akim@epita.fr>
17856
17857 * src/reduce.c (reduce_print): Use ngettext.
17858 (dump_grammar): Improve the trace accuracy.
17859
6013d43f
AD
178602001-11-28 Akim Demaille <akim@epita.fr>
17861
17862 * src/reduce.c (dump_grammar): Don't translate trace messages.
17863
cb4956ee
AD
178642001-11-28 Akim Demaille <akim@epita.fr>
17865
17866 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
17867 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
17868 as all tags are free'ed afterwards.
17869 From Enrico Scholz.
17870
648185ab
PE
178712001-11-27 Paul Eggert <eggert@twinsun.com>
17872
17873 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
17874 use alloca when we didn't want to, and vice versa.
17875
68254a03
MA
178762001-11-27 Marc Autret <autret_m@epita.fr>
17877
9113b58f
AD
17878 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
17879 initialization.
68254a03
MA
17880 * src/output.c (prepare): Remove its update.
17881
04d843a2
MA
178822001-11-27 Marc Autret <autret_m@epita.fr>
17883
17884 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
17885 Use %error-verbose.
17886
d2079671 178872001-11-27 Marc Autret <autret_m@epita.fr>
eeeb962b
MA
17888
17889 * src/bison.simple: Remove YYERROR_VERBOSE using.
17890 Use %%error_verbose.
17891 (yyparse): Likewise.
17892 * src/output.c (prepare): Give its final value.
17893 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
17894 * src/getargs.h: Add its extern declaration.
17895 * src/getargs.c (error_verbose_flag): New int.
17896 (getargs): Update to catch new case.
17897 * src/options.c (option_table): 'error-verbose' is a new option.
17898 (shortopts): Update.
17899
e0327bc8
AD
179002001-11-27 Akim Demaille <akim@epita.fr>
17901
17902 * src/system.h: Use intl/libgettext.h.
17903 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
17904
000f1a3c
AD
179052001-11-27 Akim Demaille <akim@epita.fr>
17906
17907 * tests/torture.at (Exploding the Stack Size with Malloc):
17908 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
17909
26cfe0be
AD
179102001-11-27 Akim Demaille <akim@epita.fr>
17911
17912 * src/files.c: Include error.h.
17913 Reported by Hans Aberg.
17914
f6bd5427
MA
179152001-11-26 Marc Autret <autret_m@epita.fr>
17916
d2079671 17917 * src/reader.c (parse_include_decl): New, not yet implemented.
f6bd5427
MA
17918 (read_declarations): Add case tok_include.
17919 * src/getargs.h (include): Add its extern definition.
17920 * src/getargs.c (include): New const char *.
17921 (getargs): Add case '-I'.
17922 * src/options.c (option_table): Add include as command line and
17923 percent option.
17924 * src/lex.h (token_t): Add tok_include.
17925
2ca209c1
AD
179262001-11-26 Akim Demaille <akim@epita.fr>
17927
17928 * src/reader.c (readgram): Make sure rules for mid-rule actions
17929 have a lineno equal to that of their host rule.
17930 Reported by Hans Aberg.
17931 * tests/regression.at (Rule Line Numbers): New.
17932
0e41b407
AD
179332001-11-26 Akim Demaille <akim@epita.fr>
17934
17935 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
17936 size_ts.
17937
179382001-11-26 Akim Demaille <akim@epita.fr>
17939
17940 * src/complain.c, src/complain.h (error): Remove, provided by
17941 lib/error.[ch].
17942
e0c40012
AD
179432001-11-26 Akim Demaille <akim@epita.fr>
17944
17945 * src/reader.c (read_declarations): Don't abort on tok_illegal,
17946 issue an error message.
17947 * tests/regression.at (Invalid %directive): New.
17948 Reported by Hans Aberg.
17949
5e147124
AD
179502001-11-26 Akim Demaille <akim@epita.fr>
17951
17952 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
17953 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
17954
a034c8b8
AD
179552001-11-26 Akim Demaille <akim@epita.fr>
17956
17957 * src/conflicts.c (conflicts_print): Don't complain at all when
17958 there are no reduce/reduce conflicts, and as many shift/reduce
17959 conflicts as expected.
17960 * tests/regression.at (%expect right): Adjust.
17961
c64a20f3
AD
179622001-11-23 Akim Demaille <akim@epita.fr>
17963
17964 * lib/alloca.c: Update, from fileutils.
17965
5b0d29bb
AD
179662001-11-23 Akim Demaille <akim@epita.fr>
17967
17968 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
17969
722c4bfe
AD
179702001-11-23 Akim Demaille <akim@epita.fr>
17971
17972 * src/system.h: Include alloca.h.
17973 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
17974
6255b435
AD
179752001-11-23 Akim Demaille <akim@epita.fr>
17976
17977 * src/print_graph.c (print_actions): Remove `rule', unused.
17978 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
17979 pacify GCC's signed < unsigned warnings.
17980 * src/closure.c (itemsetsize): Likewise.
17981 * src/reader.c (symbol_list_new): Static.
17982
b29b2ed5
AD
179832001-11-23 Akim Demaille <akim@epita.fr>
17984
17985 Attaching lineno to buckets is stupid, since only one copy of each
17986 symbol is kept, only the line of the first occurrence is kept too.
17987
17988 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
17989 * src/reader.c (rline_allocated): Remove, unused.
17990 (symbol_list): Have a `line' member.
17991 (symbol_list_new): New.
17992 (readgram): Use it.
17993 * src/print.c (print_grammar): Output the rule line numbers.
17994 * tests/regression.at (Solved SR Conflicts)
17995 (Unresolved SR Conflicts): Adjust.
17996 Reported by Hans Aberg.
17997
a81b1d4a
MA
179982001-11-22 Marc Autret <autret_m@epita.fr>
17999
18000 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
18001
c1ecb3c1
MA
180022001-11-22 Marc Autret <autret_m@epita.fr>
18003
18004 * src/muscle_tab.c (muscle_init): Remove initialization of
18005 skeleton muscle.
18006 * src/output.c (output_master_parser): Do it here.
18007
fbe01355
AD
180082001-11-20 Akim Demaille <akim@epita.fr>
18009
18010 * po/sv.po: New.
18011 * configure.in (ALL_LINGUAS): Adjust.
18012 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
18013 longer contains strings to translate.
18014
81e895c0
AD
180152001-11-19 Akim Demaille <akim@epita.fr>
18016
18017 * src/conflicts.c (conflicts_print): Add a missing \n.
18018
6bb1878b
AD
180192001-11-19 Akim Demaille <akim@epita.fr>
18020
18021 * src/nullable.c (nullable_print): New.
18022 (set_nullable): Call it when tracing.
18023 Better locality of variables.
18024
d9ec2d07
AD
180252001-11-19 Akim Demaille <akim@epita.fr>
18026
18027 * src/print.c (print_actions): Better locality of variables.
18028
720e5c1b
AD
180292001-11-19 Akim Demaille <akim@epita.fr>
18030
18031 * src/derives.c (print_derives): Fix and enrich.
18032 * src/closure.c (print_fderives): Likewise.
18033
fb908786
AD
180342001-11-19 Akim Demaille <akim@epita.fr>
18035
18036 * src/closure.c (itemsetend): Remove, replaced with...
18037 (itemsetsize): new.
18038
125ecb56
AD
180392001-11-19 Akim Demaille <akim@epita.fr>
18040
18041 * src/LR0.c (kernel_end): Remove, replaced with...
18042 (kernel_size): new.
18043
d8cf039f
AD
180442001-11-19 Akim Demaille <akim@epita.fr>
18045
18046 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
18047 to clarify.
18048
7bec0760
AD
180492001-11-19 Akim Demaille <akim@epita.fr>
18050
18051 * src/closure.c (closure): Use arrays instead of pointers to clarify.
18052
c87d4863
AD
180532001-11-19 Akim Demaille <akim@epita.fr>
18054
18055 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
18056 trace messages.
18057 * src/LR0.c: Likewise.
18058 (allocate_itemsets): Use arrays instead of pointers to clarify.
18059
9bfe901c
AD
180602001-11-19 Akim Demaille <akim@epita.fr>
18061
18062 * src/getargs.c (statistics_flag): Replace with...
18063 (trace_flag): New.
18064 (longopts): Accept --trace instead of --statistics.
18065 * src/getargs.h, src/options.c: Adjust.
18066 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
18067 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
18068
97db7bd4
AD
180692001-11-19 Akim Demaille <akim@epita.fr>
18070
cc72668c 18071 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
97db7bd4
AD
18072 pointers to clarify the code.
18073 (save_reductions, save_shifts): Factor common parts of alternatives.
18074
2c5f66ed
AD
180752001-11-19 Akim Demaille <akim@epita.fr>
18076
18077 * src/LR0.c (new_state, get_state): Complete TRACE code.
18078 * src/closure.c: Include `reader.h' to get `tags', needed by the
18079 trace code.
18080 Rename the conditional DEBUG as TRACE.
18081 Output consistently TRACEs to stderr, not stdout.
18082 * src/derives.c: Likewise.
18083 * src/reduce.c: (inaccessable_symbols): Using if is better style
18084 than goto.
18085 Use `#if TRACE' instead of `#if 0' for tracing code.
18086
300f275f
AD
180872001-11-19 Akim Demaille <akim@epita.fr>
18088
18089 * src/system.h (LIST_FREE, shortcpy): New.
18090 * src/LR0.c: Use them.
18091 * src/output.c (free_itemsets, free_reductions, free_shifts):
18092 Remove, replaced by LIST_FREE.
18093
f59c437a
AD
180942001-11-19 Akim Demaille <akim@epita.fr>
18095
18096 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
18097 (REDUCTIONS_ALLOC): New.
18098 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
18099 allocation.
18100
6986fd9e
AD
181012001-11-19 Akim Demaille <akim@epita.fr>
18102
18103 * src/LR0.c (new_state): Complete trace code.
18104 * src/nullable.c (set_nullable): Don't translate traces.
18105
4bc30f78
AD
181062001-11-19 Akim Demaille <akim@epita.fr>
18107
18108 * src/print_graph.c (print_core): Better locality of variables.
18109 * src/print.c (print_core): Likewise.
18110
08a946e0
AD
181112001-11-19 Akim Demaille <akim@epita.fr>
18112
18113 * src/vcg.c: You do the output, so you are responsible of the
18114 handling of VCG syntax, in particular: use quotearg.
18115 * src/print_graph.c: Don't.
18116 (print_actions): Don't output the actions as part of the nodes,
18117 since that's the job of the edges.
18118 (print_state): Don't output by hand: fill the node description,
9bfe901c 18119 and ask for its output.
08a946e0 18120
f0473484
AD
181212001-11-19 Akim Demaille <akim@epita.fr>
18122
cc72668c
AD
18123 * src/bison.simple (yyparse): When verbosely reporting an error,
18124 no longer put additional quotes around token names.
f0473484
AD
18125 * tests/calc.at: Adjust.
18126
e41dc700
AD
181272001-11-19 Akim Demaille <akim@epita.fr>
18128
18129 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
18130 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
18131 * src/output.c: Adjust.
18132
652a871c
AD
181332001-11-19 Akim Demaille <akim@epita.fr>
18134
18135 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
18136 (rule_t): this.
18137 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
18138
b2ed6e58
AD
181392001-11-19 Akim Demaille <akim@epita.fr>
18140
18141 * src/gram.h (rule_t): New.
18142 (rule_table): New.
18143 (rrhs, rlhs): Remove, part of state_t.
18144 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
18145 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
18146 * src/reader.c, src/reduce.c: Adjust.
18147
edad7067
AD
181482001-11-19 Akim Demaille <akim@epita.fr>
18149
18150 * src/reader.c (symbols_output): New, extracted from...
18151 (packsymbols): Here.
18152 (reader): Call it.
18153
3feec034
AD
181542001-11-19 Akim Demaille <akim@epita.fr>
18155
18156 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
18157 (maxrhs): this new function.
18158
ddcd5fdf
AD
181592001-11-19 Akim Demaille <akim@epita.fr>
18160
cc72668c 18161 * src/lalr.c (F): New macro to access the variable F.
ddcd5fdf
AD
18162 Adjust.
18163
bb527fc2
AD
181642001-11-19 Akim Demaille <akim@epita.fr>
18165
cc72668c 18166 * src/lalr.h (LA): New macro to access the variable LA.
bb527fc2
AD
18167 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18168 * src/lalr.c: Adjust.
18169
a845a697
AD
181702001-11-19 Akim Demaille <akim@epita.fr>
18171
18172 * src/lalr.c (initialize_LA): Only initialize LA. Let...
18173 (set_state_table): handle the `lookaheads' members.
18174
f004bf6a
AD
181752001-11-19 Akim Demaille <akim@epita.fr>
18176
cc72668c
AD
18177 * src/lalr.h (lookaheads): Removed array, whose contents is now
18178 a member of...
f004bf6a
AD
18179 (state_t): this structure.
18180 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18181 Adjust.
18182
de326cc0
AD
181832001-11-19 Akim Demaille <akim@epita.fr>
18184
cc72668c
AD
18185 * src/lalr.h (consistent): Removed array, whose contents is now
18186 a member of...
de326cc0
AD
18187 (state_t): this structure.
18188 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18189 Adjust.
18190
90b4416b
AD
181912001-11-19 Akim Demaille <akim@epita.fr>
18192
cc72668c
AD
18193 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
18194 contents are now members of...
90b4416b
AD
18195 (state_t): this structure.
18196 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18197 Adjust.
18198
9703cc49
AD
181992001-11-19 Akim Demaille <akim@epita.fr>
18200
18201 * src/lalr.h (state_t): New.
18202 (state_table): Be a state_t * instead of a core **.
18203 (accessing_symbol): Remove, part of state_t.
18204 * src/lalr.c: Adjust.
18205 (set_accessing_symbol): Merge into...
18206 (set_state_table): this.
18207 * src/print_graph.c, src/conflicts.c: Adjust.
18208
d803322e
AD
182092001-11-14 Akim Demaille <akim@epita.fr>
18210
18211 * tests/calc.at, tests/output.at, tests/regression.at,
18212 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
18213 now the tests are run in private dirs, therefore AC_CLEANUP and
18214 family can be simplified to 0-ary.
18215 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
18216 use abs. path to find config.h.
18217 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
18218 stderr, there can be way too much random noise.
18219 Instead pass -Werror to GCC and rely on the exit status.
18220 Reported by Wolfram Wagner.
18221
3d76b07d
AD
182222001-11-14 Akim Demaille <akim@epita.fr>
18223
18224 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
18225 defined only if yyoverflow is defined, to avoid `warning: unused
18226 variable `yyvs1''.
18227 Reported by The Test Suite.
18228
09b503c8
AD
182292001-11-14 Akim Demaille <akim@epita.fr>
18230
18231 * src/print.c: Include reduce.h.
18232 Reported by Hans Aberg.
18233
182342001-11-14 Akim Demaille <akim@epita.fr>
18235
18236 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
18237 Revert a previous patch: these are really const.
18238 * src/conflicts.c (conflict_report): Additional useless pair of
18239 braces to pacify GCC's warnings for `if () if () {} else {}'.
18240 * src/lex.c (parse_percent_token): Replace equal_offset with
18241 arg_offset.
18242 arg is const.
18243 Be sure to strdup `arg' when used, since there is no reason for
18244 token_buffer not to change.
18245
0f37a994
AD
182462001-11-14 Akim Demaille <akim@epita.fr>
18247
18248 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
18249 definition.
18250 * src/main.c (main): Use them.
18251 Suggested by Hans Aberg.
18252
d39d93b8
AD
182532001-11-12 Akim Demaille <akim@epita.fr>
18254
18255 * src/system.h (ngettext): Now that we use ngettext, be sure to
18256 provide a default definition when NLS are not used.
18257
9edcd895
AD
182582001-11-12 Akim Demaille <akim@epita.fr>
18259
18260 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
18261 Use @kbd to denote user input.
18262 (Language and Grammar): ANSIfy the example.
18263 Adjust its layout for info/notinfo.
18264 (Location Tracking Calc): Output error messages to stderr.
18265 Output locations in a more GNUtically correct way.
18266 Fix a couple of Englishos.
18267 Adjust @group/@end group pairs.
18268
7da99ede
AD
182692001-11-12 Akim Demaille <akim@epita.fr>
18270
e3aa65c5 18271 %expect was not functioning at all.
7da99ede
AD
18272
18273 * src/conflicts.c (expected_conflicts): Set to -1.
18274 (conflict_report): Use ngettext.
18275 (conflicts_print): Check %expect and make its violation an error.
18276 * doc/bison.texinfo (Expect Decl): Adjust.
18277 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
18278 * tests/regression.at (%expect not enough, %expect right)
18279 (%expect too much): New.
18280
ba9dda1a
AD
182812001-11-12 Akim Demaille <akim@epita.fr>
18282
18283 * tests/regression.at (Conflicts): Rename as...
18284 (Unresolved SR Conflicts): this.
18285 (Solved SR Conflicts): New.
18286
337c5bd1
AD
182872001-11-12 Akim Demaille <akim@epita.fr>
18288
18289 * src/reduce.c (print_results): Rename as...
18290 (reduce_output): This.
18291 Output to OUT, passed as argument, instead of output_obstack.
18292 (dump_grammar): Likewise.
18293 (reduce_free): New.
18294 Also free V1.
18295 (reduce_grammar): No longer call reduce_output, since...
18296 * src/print.c (print_results): do it.
18297 * src/main.c (main): Call reduce_free;
18298
c73a41af
AD
182992001-11-12 Akim Demaille <akim@epita.fr>
18300
18301 * src/conflicts.c (print_reductions): Accept OUT as argument.
18302 Output to it, not to output_obstack.
18303 * src/print.c (print_actions): Adjust.
18304
0df87bb6
AD
183052001-11-12 Akim Demaille <akim@epita.fr>
18306
18307 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
18308 the result instead of using...
18309 (src_total, rrc_total, src_count, rrc_count): Remove.
18310 (any_conflicts): Remove.
18311 (print_conflicts): Split into...
18312 (conflicts_print, conflicts_output): New.
18313 * src/conflicts.h: Adjust.
18314 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
0f37a994 18315 * src/print.c (print_grammar): Issue `\n' between two rules.
0df87bb6
AD
18316 * tests/regression.at (Conflicts): New.
18317 Reported by Tom Lane.
18318
e4d3d4de
AD
183192001-11-12 Akim Demaille <akim@epita.fr>
18320
18321 * tests/regression.at (Invalid input): Remove, duplicate with
18322 ``Invalid input: 1''.
18323
6d7d248e
AD
183242001-11-12 Akim Demaille <akim@epita.fr>
18325
18326 * tests/torture.at (AT_DATA_STACK_TORTURE)
18327 (Exploding the Stack Size with Alloca)
18328 (Exploding the Stack Size with Malloc): New.
18329
e9e4c321
AD
183302001-11-12 Akim Demaille <akim@epita.fr>
18331
18332 * src/bison.simple (YYSTACK_REALLOC): New.
18333 (yyparse) [!yyoverflow]: Use it and free the old stack.
0f37a994 18334 Reported by Per Allansson.
e9e4c321 18335
5f7e0832
AD
183362001-11-12 Pascal Bart <pascal.bart@epita.fr>
18337
18338 * src/bison.simple: Define type yystype instead of YYSTYPE, and
18339 define CPP macro, which substitute YYSTYPE by yystype.
18340 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
18341 with yyltype/YYLTYPE. This allows inclusion of the generated
18342 header within the parser if the compiler, such as GGC, accepts
18343 multiple equivalent #defines.
18344 From Akim.
18345
e3f1699f
AD
183462001-11-05 Akim Demaille <akim@epita.fr>
18347
18348 * src/reader.c (symbols_output): New, extracted from...
18349 (packsymbols): here.
18350 (reader): Adjust.
18351
65be0866
AD
183522001-11-05 Akim Demaille <akim@epita.fr>
18353
18354 * src/lex.c (parse_percent_token): s/quotearg/quote/.
18355
e4d910bf
AD
183562001-11-05 Akim Demaille <akim@epita.fr>
18357
18358 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
18359 pattern.
18360
951366c1
AD
183612001-11-05 Akim Demaille <akim@epita.fr>
18362
18363 * src/options.h (struct option_table_struct): set_flags is void*.
18364 * src/options.c (longopts): Support `--output' and `%output'.
18365 (usage): Adjust.
18366 * src/lex.h (tok_setopt): Remove, replaced with...
18367 (tok_intopt, tok_stropt): these new guys.
18368 * src/lex.c (getopt.h): Not needed.
18369 (token_buffer, unlexed_token_buffer): Not const.
18370 (percent_table): Promote `-' over `_' in directive names.
18371 Active `%name-prefix', `file-prefix', and `output'.
18372 (parse_percent_token): Accept possible arguments to directives.
18373 Promote `-' over `_' in directive names.
18374
d8988b2f
AD
183752001-11-04 Akim Demaille <akim@epita.fr>
18376
18377 * doc/bison.texinfo (Decl Summary): Split the list into
18378 `directives for grammars' and `directives for bison'.
18379 Sort'em.
18380 Add description of `%name-prefix', `file-prefix', and `output'.
18381 Promote `-' over `_' in directive names.
18382 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
18383 Simplify the description of `--name-prefix'.
18384 Promote `-' over `_' in directive names.
18385 Promote `--output' over `--output-file'.
18386 Fix the description of `--defines'.
18387 * tests/output.at: Exercise %file-prefix and %output.
18388
6468d18e
AD
183892001-11-02 Akim Demaille <akim@epita.fr>
18390
18391 * doc/refcard.tex: Update.
18392
6b7e85b9
AD
183932001-11-02 Akim Demaille <akim@epita.fr>
18394
18395 * src/symtab.h (SUNDEF): New.
18396 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
18397 stand for `uninitialized', instead of 0.
18398 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
18399 * src/lex.c (lex): Adjust.
18400
18401 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
18402 Number it 0.
18403 Let yylex return it instead of a plain 0.
18404 Reported by Dick Streefland.
18405
cd5aafcf
AD
184062001-11-02 Akim Demaille <akim@epita.fr>
18407
18408 * tests/regression.at (Mixing %token styles): New test.
18409
037ca2f1
AD
184102001-11-02 Akim Demaille <akim@epita.fr>
18411
18412 * src/reader.c (parse_thong_decl): Formatting changes.
18413 (token_translations_init): New, extracted from...
18414 (packsymbols): Here.
18415 Adjust.
18416
270a173c
AD
184172001-11-01 Akim Demaille <akim@epita.fr>
18418
18419 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
18420 Check that `9foo.y' produces correct cpp guards.
18421 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
18422 guards.
18423 Reported by Wwp.
18424
561f9a30
AD
184252001-11-01 Akim Demaille <akim@epita.fr>
18426
18427 * tests/regression.at (Invalid input: 2): New.
18428 * src/lex.c (unlexed_token_buffer): New.
18429 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
18430 too.
18431 Reported by Wwp.
18432
f987e9d2
AD
184332001-11-01 Akim Demaille <akim@epita.fr>
18434
18435 * tests/calc.at: Catch up with 1.30.
18436 * configure.in: Bump to 1.49a.
18437 Adjust to newer Autotest.
18438
0846f581
PB
184392001-10-19 Pascal Bart <pascal.bart@epita.fr>
18440
18441 * src/conflicts.c: Move global variables rrc_total and src_total ...
18442 (print_conflicts): here.
18443 * src/output.c (output): Free global variable user_toknums.
18444 * src/lex.c (token_obstack): Become static.
18445
3c1a79b3
AD
184462001-10-18 Akim Demaille <akim@epita.fr>
18447
18448 * tests/atlocal.in (GCC): Add.
18449 * tests/calc.at: s/m4_match/m4_bmatch/.
18450 s/m4_patsubst/m4_bpatsubst/.
18451 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
18452 * configure.in: AC_SUBST(GCC).
18453
5d52e7d0
MA
184542001-10-14 Marc Autret <autret_m@epita.fr>
18455
18456 * src/options.c (create_long_option_table): Fix.
18457
631aa1d3
AD
184582001-10-10 Akim Demaille <akim@epita.fr>
18459
18460 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
18461
f6ec6d13
AD
184622001-10-04 Akim Demaille <akim@epita.fr>
18463
18464 * src/reader.c (parse_union_decl): Push the caracters in
18465 union_obstack, not attrs_obstack.
18466
342b8b6e
AD
184672001-10-04 Akim Demaille <akim@epita.fr>
18468
18469 Merge in the branch 1.29.
18470
18471 * src/reader.c (packsymbols): Use a temporary obstack for
18472 `%%tokendef', since output_stack is already used elsewhere.
18473
18474 2001-10-02 Akim Demaille <akim@epita.fr>
18475
18476 Bump 1.29d.
18477
18478 2001-10-02 Akim Demaille <akim@epita.fr>
18479
18480 Version 1.29c.
18481
18482 2001-10-02 Akim Demaille <akim@epita.fr>
18483
18484 * tests/regression.at (Invalid CPP headers): New.
18485 From Alexander Belopolsky.
18486 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
18487
18488 2001-10-02 Akim Demaille <akim@epita.fr>
18489
18490 * tests/regression.at (Invalid input): New.
18491 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
18492 Reported by Shura.
18493
18494 2001-10-02 Akim Demaille <akim@epita.fr>
18495
18496 * tests/calc.at: Now that --debug works, the tests must be adjusted.
18497
18498 2001-10-02 Akim Demaille <akim@epita.fr>
18499
18500 * src/output.c (output_parser): Assert `skeleton'.
18501 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
18502 systems.
18503 From Shura.
18504
18505 2001-10-01 Marc Autret <autret_m@epita.fr>
18506
18507 * src/lex.h: Echo modifications.
18508 * src/lex.c (unlex): Parameter is now token_t.
18509 From Hans Aberg.
18510
18511 2001-10-01 Marc Autret <autret_m@epita.fr>
18512
18513 * src/main.c: Include lex.h.
18514 From Hans Aberg.
18515
18516 2001-09-29 Akim Demaille <akim@epita.fr>
18517
18518 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
18519
18520 2001-09-28 Akim Demaille <akim@epita.fr>
18521
18522 * tests/testsuite.at: Update to newer Autotest.
18523 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
18524
18525 2001-09-27 Akim Demaille <akim@epita.fr>
18526
18527 Position independent wrapper.
18528
18529 * tests/bison: Remove.
18530 * tests/bison.in: New.
18531 * configure.in: Adjust.
18532
18533 2001-09-27 Paul Eggert <eggert@twinsun.com>
18534
18535 Port quotearg fixes from tar 1.13.24.
18536
18537 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
18538 tm to be declared.
18539 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
18540 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
18541
18542 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
18543 * m4/mbrtowc.m4: New file.
18544 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
18545 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
18546
18547 2001-09-27 Akim Demaille <akim@epita.fr>
18548
18549 Bump to 1.29c.
18550
18551 2001-09-27 Akim Demaille <akim@epita.fr>
18552
18553 Version 1.29b.
18554
18555 2001-09-25 Akim Demaille <akim@epita.fr>
18556
18557 * src/system.h: Include `xalloc.h'.
18558 Remove it from the C files.
18559 * src/files.c (output_files): Free the obstacks.
18560 * src/lex.c (init_lex): Rename as...
18561 (lex_init): this.
18562 (lex_free): New.
18563 * src/main.c (main): Use it.
18564
18565 2001-09-24 Marc Autret <autret_m@epita.fr>
18566
18567 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
18568 to output informations in fout (FILE*).
18569 (open_graph, close_graph): Likewise.
18570 (output_graph, output_edge, output_node): Likewise.
18571 * src/vcg.h: Update function prototypes.
18572 * src/print_graph.c (print_graph): Open output graph file.
18573 (print_actions): Adjust.
18574 * src/files.h: Remove extern declaration.
18575 * src/files.c: Remove graph_obstack declaration.
18576 (open_files): Remove graph_obstack initialization.
18577 (output_files): Remove graph_obstack saving.
18578
18579 2001-09-24 Marc Autret <autret_m@epita.fr>
18580
18581 * src/files.c (compute_output_file_names): Fix.
18582
18583 2001-09-24 Marc Autret <autret_m@epita.fr>,
18584 Akim Demaille <akim@epita.fr>
18585
18586 * src/reader.c (reader): Remove call to free_symtab ().
18587 * src/main.c (main): Call it here.
18588 Include symtab.h.
18589 * src/conflicts.c (initialize_conflicts): Rename as...
18590 (solve_conflicts): this.
18591 * src/print.c (print_core, print_actions, print_state)
18592 (print_grammar): Dump to a file instead a `output_obstack'.
18593 (print_results): Dump `output_obstack', and then proceed with the
18594 FILE *.
18595 * src/files.c (compute_output_file_names, close_files): New.
18596 (output_files): Adjust.
18597 * src/main.c (main): Adjust.
18598
18599 2001-09-23 Marc Autret <autret_m@epita.fr>
18600
18601 * src/files.c (compute_header_macro): Computes header macro name
18602 from spec_defines_file when given.
18603
18604 2001-09-23 Marc Autret <autret_m@epita.fr>
18605
18606 * src/files.c (output_files): Add default extensions.
18607
18608 2001-09-22 Akim Demaille <akim@epita.fr>
18609
18610 * src/conflicts.c (finalize_conflicts): Rename as...
18611 (free_conflicts): this.
18612
18613 2001-09-22 Akim Demaille <akim@epita.fr>
18614
18615 * src/gram.c (gram_free): Rename back as...
18616 (dummy): this.
18617 (output_token_translations): Free `token_translations'.
18618 * src/symtab.c (free_symtab): Free the tag field.
18619
18620 2001-09-22 Akim Demaille <akim@epita.fr>
18621
18622 Remove `translations' as it is always set to true.
18623
18624 * src/gram.h: Adjust.
18625 * src/reader.c (packsymbols, parse_token_decl): Adjust
18626 * src/print.c (print_grammar): Adjust.
18627 * src/output.c (output_token_translations): Adjust.
18628 * src/lex.c (lex): Adjust.
18629 * src/gram.c: Be sure the set pointers to NULL.
18630 (dummy): Rename as...
18631 (gram_free): this.
18632
18633 2001-09-22 Akim Demaille <akim@epita.fr>
18634
18635 * configure.in: Invoke AM_LIB_DMALLOC.
18636 * src/system.h: Use dmalloc.
18637 * src/LR0.c: Be sure to have pointers initialized to NULL.
18638 (allocate_itemsets): Allocate kernel_items only if needed.
18639
18640 2001-09-22 Akim Demaille <akim@epita.fr>
18641
18642 * configure.in: Bump to 1.29b.
18643 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
18644 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
18645 need xmalloc.c in calc.y.
18646 From Pascal Bart.
18647
18648 2001-09-21 Akim Demaille <akim@epita.fr>
18649
18650 Version 1.29a.
18651 * Makefile.maint, config/config.guess, config/config.sub,
18652 * config/missing: Update from masters.
18653 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
18654 upon package.m4.
18655 * configure.in (ALL_LINGUAS): Add `tr'.
18656
18657 2001-09-21 Akim Demaille <akim@epita.fr>
18658
18659 * tests/Makefile.am (package.m4): Move to...
18660 ($(srcdir)/$(TESTSUITE)): here.
18661
18662 2001-09-20 Akim Demaille <akim@epita.fr>
18663
18664 * src/complain.c: No longer try to be standalone: use system.h.
18665 Don't assume __STDC__ is defined to 1. Just test if it is defined.
18666 * src/complain.h: Likewise.
18667 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
18668 Remove the unused variable `n'.
18669 From Albert Chin-A-Young.
18670
18671 2001-09-18 Marc Autret <autret_m@epita.fr>
18672
18673 * doc/bison.1: Update.
18674 * doc/bison.texinfo (Bison Options): Update --defines and --graph
18675 descriptions.
18676 (Option Cross Key): Update.
18677 Add --graph.
18678
18679 2001-09-18 Marc Autret <autret_m@epita.fr>
18680
18681 * tests/regression.at: New test (comment in %union).
18682
18683 2001-09-18 Marc Autret <autret_m@epita.fr>
18684
18685 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
18686 do that.
18687 Reported by Keith Browne.
18688
18689 2001-09-18 Marc Autret <autret_m@epita.fr>
18690
18691 * tests/output.at: Add tests for --defines and --graph.
18692
18693 2001-09-18 Marc Autret <autret_m@epita.fr>
18694
18695 * tests/output.at: Removes tests of %{header,src}_extension features.
18696
18697 2001-09-18 Akim Demaille <akim@epita.fr>
18698
18699 * tests/Makefile.am (package.m4): New.
18700 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
18701 (_AT_CHECK_CALC_ERROR): Likewise.
18702 Factor the `, ' part of verbose error messages.
18703
18704 2001-09-18 Marc Autret <autret_m@epita.fr>
18705
18706 * src/getargs.c (longopts): Declare --defines and --graph as options
18707 with optional arguments.
18708 * src/files.h: Add extern declarations.
18709 * src/files.c (spec_graph_file, spec_defines_file): New.
18710 (output_files): Update.
18711 Remove CPP-outed code.
18712
18713 2001-09-18 Marc Autret <autret_m@epita.fr>
18714
18715 Turn off %{source,header}_extension feature.
18716
18717 * src/files.c (compute_exts_from_gf): Update.
18718 (compute_exts_from_src): Update.
18719 (output_files): CPP-out useless code.
18720 * src/files.h: Remove {header,source}_extension extern declarations.
18721 * src/reader.c (parse_dquoted_param): CPP-out.
18722 (parse_header_extension_decl): Remove.
18723 (parse_source_extension_decl): Remove.
18724 (read_declarations): Remove cases tok_{hdrext,srcext}.
18725 * src/lex.c (percent_table): Remove {header,source}_extension entries.
18726 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
18727
18728 2001-09-10 Akim Demaille <akim@epita.fr>
18729
18730 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
18731 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
18732 (AT_CHECK_OUTPUT): this.
18733 Merely check ls' exit status, its output is useless.
18734
18735 2001-09-10 Akim Demaille <akim@epita.fr>
18736
18737 * tests/calc.at: Use m4_match.
18738 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
18739
18740 2001-09-10 Marc Autret <autret_m@epita.fr>,
18741 Akim Demaille <akim@epita.fr>
18742
18743 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
18744 enum color_e.
18745 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
18746 to `normal'.
18747 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
18748 * src/lex.h: Adjust prototype.
18749 (token_t): Add `tok_undef'.
18750 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
18751 (parse_percent_token): Now returns token_t.
18752 Add default statement in switch.
18753 (lex): Separate `c' as an input variable, from the token_t result
18754 part.
18755 (unlexed): Is a token_t.
18756
18757 2001-09-10 Akim Demaille <akim@epita.fr>
18758
18759 * configure.in: Bump to 1.29a.
18760
18761 2001-09-07 Akim Demaille <akim@epita.fr>
18762
18763 Version 1.29.
18764
18765 2001-08-30 Akim Demaille <akim@epita.fr>
18766
18767 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
18768 * m4/atconfig.m4: Remove.
18769 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
18770 * tests/bison: New.
18771 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
18772 m4_if, m4_patsubst, and m4_regexp.
18773 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
18774 `input' file instead of echo.
18775
18776 2001-08-29 Akim Demaille <akim@epita.fr>
18777
18778 Bump to 1.28e.
18779
18780 2001-08-29 Akim Demaille <akim@epita.fr>
18781
18782 Version 1.28d.
18783
18784 2001-08-29 Paul Eggert <eggert@twinsun.com>
18785
18786 * src/bison.simple (yyparse): Don't take the address of an
18787 item before the start of an array, as that doesn't conform to
18788 the C Standard.
18789
18790 2001-08-29 Robert Anisko <anisko_r@epita.fr>
18791
18792 * doc/bison.texinfo (Location Tracking Calc): New node.
18793
18794 2001-08-29 Paul Eggert <eggert@twinsun.com>
18795
18796 * src/output.c (output): Do not define const, as this now
18797 causes more problems than it cures.
18798
18799 2001-08-29 Akim Demaille <akim@epita.fr>
18800
18801 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
18802 the nodes.
18803 Be sure to tag the `detailmenu'.
18804
18805 2001-08-29 Akim Demaille <akim@epita.fr>
18806
18807 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
18808 download in a tmp dir.
18809
18810 2001-08-28 Marc Autret <autret_m@epita.fr>
18811
18812 * config/depcomp: New file.
18813
18814 2001-08-28 Marc Autret <autret_m@epita.fr>
18815
18816 * doc/bison.1 (mandoc): Adjust.
18817 From Juan Manuel Guerrero.
18818
18819 2001-08-28 Marc Autret <autret_m@epita.fr>
18820
18821 * src/print_graph.c (print_state): Fix.
18822
18823 2001-08-27 Marc Autret <autret_m@epita.fr>
18824
18825 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
18826 char * members.
18827 Echo modifications to the functions prototypes.
18828 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
18829
18830 2001-08-27 Marc Autret <autret_m@epita.fr>
18831
18832 * src/vcg.c: Include `xalloc.h'.
18833 (add_colorentry): New.
18834 (add_classname): New.
18835 (add_infoname): New.
18836 * src/vcg.h: Add new prototypes.
18837
18838 2001-08-27 Akim Demaille <akim@epita.fr>
18839
18840 * Makefile.maint: Sync. again with CVS Autoconf.
18841
18842 2001-08-27 Akim Demaille <akim@epita.fr>
18843
18844 * Makefile.maint: Formatting changes.
18845 (po-update, cvs-update, update): New targets.
18846 (AMTAR): Remove.
18847
18848 2001-08-27 Akim Demaille <akim@epita.fr>
18849
18850 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
18851 * Makefile.maint: Sync. with CVS Autoconf.
18852
18853 2001-08-27 Marc Autret <autret_m@epita.fr>
18854
18855 * src/vcg.h (struct infoname_s): New.
18856 (struct colorentry_s): New.
18857 (graph_s): New fields {vertical,horizontal}_order in structure.
18858 Add `infoname' field.
18859 Add `colorentry' field;
18860 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
18861 (G_HORIZONTAL_ORDER): New.
18862 (G_INFONAME): New.
18863 (G_COLORENTRY): New.
18864 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
18865 Add output of `infoname'.
18866 Add output of `colorentry'.
18867
18868 2001-08-27 Marc Autret <autret_m@epita.fr>
18869
18870 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
18871 This one shadowed a global parameter.
18872
18873 2001-08-24 Marc Autret <autret_m@epita.fr>
18874
18875 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
18876 instead of `unsigned'.
18877 (print_state): Do not call obstack_object_size () in obstack_grow ()
18878 to avoid macro variables shadowing.
18879
18880 2001-08-23 Marc Autret <autret_m@epita.fr>
18881
18882 * src/lex.c (percent_table): Typo: s/naem/name/.
18883 Add graph option.
18884 Normalize new options declarations.
18885
18886 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
18887
18888 * tests/suite.at: Exercise %header_extension and %source_extension.
18889
18890 2001-08-16 Marc Autret <autret_m@epita.fr>
18891
18892 * src/reader.c (parse_dquoted_param): New.
18893 (parse_header_extension_decl): Use it.
18894 (parse_source_extension_decl): Likewise.
18895
18896 2001-08-16 Marc Autret <autret_m@epita.fr>
18897
18898 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
18899 (get_xxxx_str): Use assert () instead of complain ().
18900 Remove return invokations in default cases.
18901 (get_decision_str): Modify default behaviour. Remove second argument.
18902 Echo modifications on calls.
18903 (output_graph): Fix.
18904
18905 2001-08-16 Marc Autret <autret_m@epita.fr>
18906
18907 * src/getargs.c (usage): Update with ``-g, --graph''.
18908
18909 2001-08-16 Marc Autret <autret_m@epita.fr>
18910
18911 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
18912 (Option Cross Key): Likewise.
18913 * doc/bison.1: Update.
18914
1c8c2190
PB
189152001-09-25 Pascal Bart <pascal.bart@epita.fr>
18916
18917 * src/output.c (output_master_parser): Don't finish action_obstack.
18918 (output_parser): Don't care about the muscle action, here.
18919 (prepare): Copy the action_obstack in the action muscle.
18920 (output): Free action_obstack.
18921
180d45ba
PB
189222001-09-23 Pascal Bart <pascal.bart@epita.fr>
18923
18924 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
18925 will contain `%union' declaration.
18926 (parse_union_decl): Delete #line directive output.
18927 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
18928 informations about %union.
18929 (parse_union_decl): Copy the union_obstack in the muscle stype.
18930 * src/bison.simple: Add new #line directive.
18931 Add typdef %%stype YYSTYPE.
18932
c51d1a19
PB
189332001-09-23 Pascal Bart <pascal.bart@epita.fr>
18934
18935 * src/bison.simple: Add new `#line' directive.
18936
6f9344da
PB
189372001-09-22 Pascal Bart <pascal.bart@epita.fr>
18938
18939 * src/bison.simple: New `#line' directive.
18940 * src/output.c (output_parser): Support new dynamic muscle input_line.
18941
652def80
MA
189422001-09-22 Marc Autret <autret_m@epita.fr>
18943
18944 * src/output.c (output_master_parser): New.
18945 (output_parser): Be more re-entrant.
18946
25b222fa
MA
189472001-09-21 Marc Autret <autret_m@epita.fr>
18948
18949 * src/reader.c (copy_definition, parse_union_decl): Update and use
18950 `linef' muscle.
18951 (copy_action): Likewise.
18952 Use obstack_1grow ().
18953 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
18954
6bc35ae5
MA
189552001-09-21 Marc Autret <autret_m@epita.fr>
18956
18957 * src/options.c (option_table): Adjust.
18958 * src/lex.c (parse_percent_token): Fix.
18959
c0629aa1
PB
189602001-09-20 Pascal Bart <pascal.bart@epita.fr>
18961
18962 * src/options.c (symtab.h): Include it, need by lex.h.
342b8b6e 18963
82b6d266
PB
189642001-09-20 Pascal Bart <pascal.bart@epita.fr>
18965
18966 * src/lex.c (parse_percent_token): Change type of variable `tx', which
18967 is now an option_table_struct*.
18968 (option_strcmp): New function option_strcmp.
18969 (parse_percent_token): Call option_strcmp.
18970 * src/getargs.c (xalloc.h, options.h): Include it.
18971 (getargs): Call create_long_option_table.
18972 (getargs): Free longopts at the end of the function.
18973 (shortopts): Move in options.c.
18974 * src/options.c (create_long_option_table): New function. Convert
18975 information from option_table to option structure.
18976 * src/reader.c (options.h): Include it.
18977
18978 * src/Makefile.am: Adjust.
18979 * src/options.c (option_table): Create from longopts and percent_table.
18980 * src/getargs.c (longopts): Delete.
18981 * src/lex.c (struct percent_table_struct): Delete.
18982 (percent_table): Delete.
18983 (options.h): Include it.
18984 * src/options.c: Create.
18985 * src/options.h: Create.
18986 Declare enum opt_access_e.
18987 Define struct option_table_struct.
18988
75f5aaea
MA
189892001-09-20 Marc Autret <autret_m@epita.fr>
18990
18991 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
18992 sections of Bison.
18993
f508cb0a
PB
189942001-09-19 Pascal Bart <pascal.bart@epita.fr>
18995
18996 * src/bison.simple: s/%%filename/%%skeleton.
18997 * src/muscle_tab.c (getargs.h): Include it.
18998 (muscle_init): Insert new muscle skeleton.
18999
13105fc1
PB
190002001-09-18 Pascal Bart <pascal.bart@epita.fr>
19001
19002 * src/output.c (output_parser): Delete unused variable actions_dumped.
19003
b0c4483e
PB
190042001-09-07 Pascal Bart <pascal.bart@epita.fr>
19005
19006 * src/output.c (output): Delete call to reader_output_yylsp.
19007 * src/reader.c (reader): Likewise.
ba0fe3c7 19008 * src/reader.h: Delete declaration of reader_output_yylsp.
342b8b6e 19009
11d82f03
MA
190102001-09-02 Marc Autret <autret_m@epita.fr>
19011
19012 * src/reader.c: Include muscle_tab.h.
19013 (parse_union_decl): Update.
19014 (parse_macro_decl): Rename parse_muscle_decl.
19015 Update to use renamed functions and variable.
19016 (read_declarations, copy_action, read_additionnal_code, : Updated
19017 with correct variables and functions names.
19018 (packsymbols, reader): Likewise.
342b8b6e 19019
11d82f03 19020 * src/reader.h (muscle_obstack): Extern declaration update.
342b8b6e 19021
11d82f03
MA
19022 * src/output.c: Include muscle_tab.h
19023 In all functions using macro_insert, change by using muscle_insert ().
19024 (macro_obstack): Rename muscle_obstack.
19025 Echo modifications in the whole file.
19026 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
19027 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
19028 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
19029
19030 * src/muscle_tab.h: Update double inclusion macros.
19031 (macro_entry_s): Rename muscle_entry_s.
19032 Update prototypes.
342b8b6e 19033
11d82f03
MA
19034 * src/muscle_tab.c: Include muscle_tab.h.
19035 Rename macro_tabble to muscle_table.
19036 (mhash1, mhash2, mcmp): Use muscle_entry.
19037 (macro_init): Rename muscle_init. Update.
19038 (macro_insert): Rename muscle_insert. Update.
19039 (macro_find): Rename muscle_find. Update.
19040
19041 * src/main.c: Include muscle_tab.h.
19042 (main): Call muscle_init ().
19043 * src/Makefile.am (bison_SOURCES): Echo modifications.
19044
93a37297
MA
190452001-09-02 Marc Autret <autret_m@epita.fr>
19046
f753cd62 19047 Now the files macro_tab.[ch] are named muscle_tab.[ch].
342b8b6e 19048
f753cd62
MA
19049 * src/muscle_tab.c, src/muscle_tab.h: Add files.
19050
190512001-09-02 Marc Autret <autret_m@epita.fr>
19052
19053 * src/macrotab.c, src/macrotab.h: Remove.
93a37297 19054
682d48cd
PB
190552001-09-01 Pascal Bart <pascal.bart@epita.fr>
19056
342b8b6e 19057 * src/reader.c (copy_guard): Use muscle to specify the `#line'
682d48cd
PB
19058 filename.
19059
087c8fda
MA
190602001-09-01 Marc Autret <autret_m@epita.fr>
19061
19062 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
19063 to an explicit value to activate the feature. We do it here.
19064
dda680cb
PB
190652001-08-31 Pascal Bart <pascal.bart@epita.fr>
19066
19067 * src/output.c (prepare): Delete the `filename' muscule insertion.
19068 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
19069 (parse_union_decl): Likewise.
19070 * src/macrotab.c (macro_init): Initialize filename by infile.
19071
9e644e64
MA
190722001-08-31 Marc Autret <autret_m@epita.fr>
19073
19074 * src/bison.simple (YYLSP_NEEDED): New definition.
19075 * src/output.c (prepare): Add macro insertion of `locations_flag'
19076
17da6427
PB
190772001-08-31 Pascal Bart <pascal.bart@epita.fr>
19078
19079 * src/output.c (prepare): Delete insertion of previous muscles,
19080 and insert the `prefix' muscles.
19081 * src/macrotab.c (macro_init): Likewise.
19082 (macro_init): Initialization prefix directive by `yy'.
342b8b6e 19083 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17da6427
PB
19084 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
19085 yylval, yydebug, yyerror, yynerrs and yyparse.
342b8b6e 19086 New directive `#define' to substitute yydebug, ... with option
17da6427
PB
19087 name_prefix.
19088
e8cb70b9
PB
190892001-08-31 Pascal Bart <pascal.bart@epita.fr>
19090
19091 * src/main.c (main): Standardize.
19092 * src/output.c (output_table_data, output_parser): Likewise.
19093 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
19094
63c2d5de
MA
190952001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
19096
342b8b6e 19097 * src/reader.c (read_additionnal_code): Rename %%user_code to
63c2d5de
MA
19098 %%epilogue.
19099 * src/output.c (output): Rename %%declarations to %%prologue.
19100 * src/bison.simple: Echo modifications.
342b8b6e 19101
d8cb5183
MA
191022001-08-31 Marc Autret <autret_m@epita.fr>
19103
19104 * src/reader.c (readgram): CleanUp.
19105 (output_token_defines): Likewise.
19106 (packsymbols): Likewise.
19107 (reader): Likewise.
19108 * src/output.c (output): CPP-out useless code.
19109
6c686258
PB
191102001-08-31 Pascal Bart <pascal.bart@epita.fr>
19111
342b8b6e 19112 * src/reader.c (reader): Delete obsolete call to function
6c686258
PB
19113 output_trailers and output_headers.
19114 * src/output.h: Remove obsolete functions prototypes of output_headers
19115 and output_trailers.
19116
8f451ef7
PB
191172001-08-30 Pascal Bart <pascal.bart@epita.fr>
19118
19119 * src/main.c: Include macrotab.h.
342b8b6e 19120 * src/macrotab.h (macro_entry_s): Constify fields.
8f451ef7
PB
19121 Adjust functions prototypes.
19122 * src/macrotab.c (macro_insert): Constify key and value.
19123 (macro_find): Constify key.
19124 (macro_insert): Include 'xalloc.h'
19125 (macro_insert): Use XMALLOC.
19126 (macro_find): Constify return value.
19127 * src/output.c (output_table_data): Rename table to table_data.
19128 (output_parser): Constify macro_key, macro_value.
19129
997b6fd0 191302001-08-30 Marc Autret <autret_m@epita.fr>
2ba3b73c
MA
19131
19132 * src/reader.c (parse_skel_decl): New.
342b8b6e 19133 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
2ba3b73c
MA
19134 * src/lex.h (token_t): New token `tok_skel'.
19135 * src/lex.c (percent_table): Add skeleton option entry.
19136 Standardize.
19137
ff48177d
MA
191382001-08-29 Marc Autret <autret_m@epita.fr>
19139
19140 * src/bison.simple: Add %%user_code directive at the end.
19141 * src/reader.c (read_additionnal_code): New.
19142 (reader): Use it.
19143 * src/output.c (output_program): Remove.
19144 (output): Update.
19145
b33160bf
MA
191462001-08-28 Marc Autret <autret_m@epita.fr>
19147
19148 * src/output.c (output_actions): Clean up.
4e5caae2 19149 (output_gram): CPP-out useless code.
b33160bf
MA
19150 * src/reader.c (reader): Clean up, CPP-out useless code.
19151
d1a2daf7
PB
191522001-08-28 Pascal Bart <pascal.bart@epita.fr>
19153
342b8b6e 19154 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
535c0e75 19155 directive.
d1a2daf7
PB
19156 * src/bison.simple: Add `%%definitions'.
19157
2b763dfe
MA
191582001-08-28 Marc Autret <autret_m@epita.fr>
19159
19160 * config/depcomp: New file.
19161
f1a87ef6
PE
191622001-08-27 Paul Eggert <eggert@twinsun.com>
19163
19164 * src/bison.simple (yyparse): Don't take the address of an
19165 item before the start of an array, as that doesn't conform to
19166 the C Standard.
19167
82e236e2
RA
191682001-08-27 Robert Anisko <robert.anisko@epita.fr>
19169
f1a87ef6 19170 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
19171 obstack. It was done too late here.
19172
19173 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
19174 completely wrong.
19175 (reader): Initialize the macro obstack here, since we need it to grow
19176 '%define' directives.
19177
19178 * src/reader.h: Declare the macro obstack as extern.
19179
b0cfa28a
RA
191802001-08-27 Robert Anisko <robert.anisko@epita.fr>
19181
19182 * src/output.c (output_parser): Fix. Store single '%' characters in
19183 the output obstack instead of throwing them away.
19184
6fc74234
AD
191852001-08-27 Akim Demaille <akim@epita.fr>
19186
19187 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19188
9c76d118
RA
191892001-08-25 Robert Anisko <robert.anisko@epita.fr>
19190
19191 * lib/Makefile.am: Adjust.
19192
a8289c62
RA
191932001-08-25 Robert Anisko <robert.anisko@epita.fr>
19194
19195 * src/bison.simple: Update and add '%%' directives.
19196
b6610515
RA
191972001-08-25 Robert Anisko <robert.anisko@epita.fr>
19198
19199 * src/reader.c (reader): Remove calls to 'output_headers' and
19200 'output_trailers'. Remove some C output.
19201 (readgram): Disable a piece of code that was writing a default
19202 definition for 'YYSTYPE'.
19203 (reader_output_yylsp): Remove.
19204 (packsymbols): Output token defintions to a macro.
19205 (copy_definition): Disable C output.
6fc74234 19206
b6610515
RA
19207 * src/reader.c (parse_macro_decl): New function used to parse macro
19208 declarations.
19209 (copy_string2): Put the body of copy_string into this new function.
19210 Add a parameter to let the caller choose whether he wants to copy the
19211 string delimiters or not.
19212 (copy_string): Be a simple call to copy_string2 with the last argument
19213 bound to true.
19214 (read_declarations): Add case for macro definition.
19215 (copy_identifier): New.
6fc74234 19216 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
19217 rather than lex.
19218
26f609ff
RA
192192001-08-25 Robert Anisko <robert.anisko@epita.fr>
19220
19221 * src/output.c (prepare): Add prefixed names.
19222 (output_parser): Output semantic actions.
19223 (output_parser): Fix bug on '%%line' directives.
6fc74234 19224
26f609ff
RA
19225 * src/output.c (output_headers): Remove. The C code printed by this
19226 function should now be in the skeletons.
19227 (output_trailers): Remove.
19228 (output): Disable call to 'reader_output_yylsp'.
19229 (output_rule_data): Do not output tables to the table obstack.
19230
19231 * src/output.c: Remove some C dedicated output.
19232 Improve the use of macro and output obstacks.
19233 (output_defines): Remove.
6fc74234 19234
26f609ff
RA
19235 * src/output.c (output_token_translations): Associate 'translate'
19236 table with a macro. No output to the table obstack.
19237 (output_gram): Same for 'rhs' and 'prhs'.
19238 (output_stos): Same for 'stos'.
19239 (output_rule_data): Same for 'r1' and 'r2'.
19240 (token_actions): Same for 'defact'.
19241 (goto_actions): Same for 'defgoto'.
19242 (output_base): Same for 'pact' and 'pgoto'.
19243 (output_table): Same for 'table'.
19244 (output_check): Same for 'check'.
6fc74234 19245
26f609ff
RA
19246 * src/output.c (output_table_data): New function.
19247 (output_short_table): Remove.
19248 (output_short_or_char_table): Remove.
6fc74234 19249
26f609ff
RA
19250 * src/output.c (output_parser): Replace most of the skeleton copy code
19251 with something new. Skeletons are now processed character by character
19252 rather than line by line, and Bison looks for '%%' macros. This is the
19253 first step in making Bison's output process (a lot) more flexible.
19254 (output_parser): Use the macro table.
19255
6f43b113
RA
192562001-08-25 Robert Anisko <robert.anisko@epita.fr>
19257
19258 * src/main.c (main): Initialize the macro table.
19259
dd3127cf
RA
192602001-08-25 Robert Anisko <robert.anisko@epita.fr>
19261
19262 * src/lex.c (percent_table): Add tok_define.
19263 * src/lex.h: Add tok_define.
19264
aa321494
RA
192652001-08-25 Robert Anisko <robert.anisko@epita.fr>
19266
19267 * src/macrotab.c: New file.
19268 * src/macrotab.h: New file.
19269 * src/Makefile.am: Update.
19270
68bd3b6b
RA
192712001-08-25 Robert Anisko <robert.anisko@epita.fr>
19272
19273 * lib/hash.c: New file.
19274 * lib/hash.h: New file.
19275 * lib/Makefile.am: Update.
19276
45f8dd1e
AD
192772001-08-15 Akim Demaille <akim@epita.fr>
19278
19279 Version 1.28c.
19280
40a64a7a 192812001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
19282
19283 * src/reader.c (readgram): Indent output macro YYSTYPE.
19284 (packsymbols): Likewise.
19285 (output_token_defines): Likewise.
19286 * src/files.c: Standardize.
19287 (compute_header_macro): New.
19288 (defines_obstack_save): New. Use compute_header_macro.
19289 (output_files): Update. Use defines_obstack_save.
19290
f9a8293a
AD
192912001-08-15 Akim Demaille <akim@epita.fr>
19292
19293 * doc/bison.texinfo (Table of Symbols): Document
19294 YYSTACK_USE_ALLOCA.
19295
150ca7a7
AD
192962001-08-15 Akim Demaille <akim@epita.fr>
19297
19298 * missing: Update from CVS Automake.
19299 * config/config.guess, config/config.sub, config/texinfo.tex:
19300 Update from gnu.org.
19301
69b5cec4
AD
193022001-08-15 Akim Demaille <akim@epita.fr>
19303
19304 * Makefile.maint: Sync with CVS Autoconf.
19305
f2b5126e
PB
193062001-08-14 Pascal Bart <pascal.bart@epita.fr>
19307
69b5cec4 19308 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
19309 `fdl.texi'.
19310 * doc/fdl.texi: Add to package.
19311
4ecbf796
MA
193122001-08-14 Marc Autret <autret_m@epita.fr>
19313
19314 Turn on %{source,header}_extension features.
19315
69b5cec4 19316 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
19317 source_extension.
19318 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 19319 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
19320 between options.
19321
95fb5662
MA
193222001-08-14 Marc Autret <autret_m@epita.fr>
19323
19324 * src/files.c (compute_base_names): Add extensions computing when
19325 `--file-prefix' used.
19326 Standardize function calls.
19327
78d09da9
MA
193282001-08-13 Marc Autret <autret_m@epita.fr>
19329
69b5cec4 19330 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
19331 defining it (defined but null disables alloca).
19332
5a009f2c
MA
193332001-08-13 Marc Autret <autret_m@epita.fr>
19334
19335 * src/bison.simple (_yy_memcpy): CPP reformat.
19336
1e41465a
PB
193372001-08-13 Pascal Bart <pascal.bart@epita.fr>
19338
19339 * tests/atconfig.in (CPPFLAGS): Fix.
19340
c67a198d
PB
193412001-08-10 Pascal Bart <pascal.bart@epita.fr>
19342
79282c6c 19343 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
19344 `gpl.texi'.
19345 * doc/gpl.texi: Add to package.
19346
09a6de7e
MA
193472001-08-10 Marc Autret <autret_m@epita.fr>
19348
19349 * src/print_graph.h: Fix.
19350 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
19351
b77b9ee0
AD
193522001-08-10 Akim Demaille <akim@epita.fr>
19353
19354 * src/system.h: Provide default declarations for stpcpy, strndup,
19355 and strnlen.
19356
3e259915
MA
193572001-08-10 Robert Anisko <anisko_r@epita.fr>
19358
19359 * doc/bison.texinfo (Locations): Update @$ stuff.
19360
ca96bc2d
MA
193612001-08-09 Robert Anisko <anisko_r@epita.fr>
19362
19363 * src/bison.simple (YYLLOC_DEFAULT): Update.
19364 (yyparse): Adjust.
19365
fdc6758b
MA
193662001-08-08 Marc Autret <autret_m@epita.fr>
19367
b77b9ee0 19368 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
19369 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
19370 Reported by Fabrice Bauzac.
957d4dbf 19371
600cad3b
MA
193722001-08-08 Marc Autret <autret_m@epita.fr>
19373
19374 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
19375 * src/vcg.c (output_node): Fix.
19376 * src/vcg.h: Cleanup.
19377 * src/print_graph.c: Add comments.
b77b9ee0 19378 (node_output_size): New global variable. Simplify the formatting of
600cad3b 19379 the VCG graph output.
b77b9ee0 19380 (print_actions): Unused code is now used. It notifies the final state
600cad3b 19381 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 19382 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
19383 blue.
19384 Get the current node name and node_obstack by argument.
19385 (node_obstack): New variable.
19386 (print_state): Manage node_obstack.
19387 (print_core): Use node_obstack given by argument.
19388 A node is not only computed here but in print_actions also.
19389 (print_graph): CPP out useless code instead of commenting it.
19390
976e528f
AD
193912001-08-07 Pascal Bart <pascal.bart@epita.fr>
19392
19393 * tests/atconfig.in (CPPFLAGS): Fix.
19394
20e8e5ca
AD
193952001-08-07 Akim Demaille <akim@epita.fr>
19396
19397 * src/print_graph.c (quote): New.
19398 (print_core): Use it.
19399
957d4dbf 194002001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 19401
3e3da797
AD
19402 * src/vcg.c (complain.h): Include it.
19403 Unepitaize `return' invocations.
c4b66126 19404 [NDEBUG] (main): Remove.
79282c6c 19405 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
19406 * src/files.c (open_files): Initialize graph_obstack.
19407 * src/print_graph.c (print_actions): CPP out useless code.
19408 (print_core): Don't output the last `\n' in labels.
19409 Use `quote'.
19410 * src/files.c (output_files): Output the VCG file.
19411 * src/main.c (main): Invoke print_graph ();
3e3da797 19412
957d4dbf 194132001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
19414
19415 Automaton VCG graph output.
19416 Using option ``-g'' or long option ``--graph'', you can generate
19417 a gram_filename.vcg file containing a VCG description of the LALR (1)
19418 automaton of your grammar.
19419
19420 * src/main.c: Call to print_graph() function.
19421 * src/getargs.h: Update.
19422 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
19423 (graph_flag): New flag.
19424 (longopts): Update.
19425 (getargs): Add case `g'.
19426 * src/files.c (graph_obstack): New obstack struct.
19427 (open_files): Initialize new obstack.
19428 (output_files): Saves graph_obstack if required.
19429 * src/files.h (graph_obstack): New extern declaration.
19430 * src/Makefile.am: Add new source files.
19431
927c1557 194322001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
19433
19434 * src/print_graph.c, src/print_graph.h (graph): New.
19435 * src/vcg.h: New file.
19436 * src/vcg.c: New file, VCG graph handling.
19437
7333d403
AD
194382001-08-06 Marc Autret <autret_m@epita.fr>
19439
19440 Add of %source_extension and %header_extension which specify
19441 the source or/and the header output file extension.
19442
19443 * src/files.c (compute_base_names): Remove initialisation of
19444 src_extension and header_extension.
19445 (compute_exts_from_gf): Update.
19446 (compute_exts_from_src): Update.
19447 (output_files): Update.
19448 * src/reader.c (parse_header_extension_decl): New.
19449 (parse_source_extension_decl): New.
19450 (read_declarations): New case statements for the new tokens.
19451 * src/lex.c (percent_table): Add entries for %source_extension
19452 and %header_extension.
19453 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
19454
84163231
AD
194552001-08-06 Marc Autret <autret_m@epita.fr>
19456
19457 * configure.in: Bump to 1.28c.
19458 * doc/bison.texinfo: Texinfo thingies.
19459
8303fc42
AD
194602001-08-04 Pascal Bart <pascal.bart@epita.fr>
19461
19462 * tests/atconfig.in (CPPFLAGS): Add.
19463 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
19464
70a84437
AD
194652001-08-03 Akim Demaille <akim@epita.fr>
19466
19467 Version 1.28b.
19468
2ce10144
AD
194692001-08-03 Akim Demaille <akim@epita.fr>
19470
19471 * tests/Makefile.am (check-local): Ship testsuite.
19472 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
19473 Include `string.h'.
19474
1e3e4bc1
AD
194752001-08-03 Akim Demaille <akim@epita.fr>
19476
19477 * configure.in: Try using -Wformat when compiling.
19478
42b45b7f
AD
194792001-08-03 Akim Demaille <akim@epita.fr>
19480
19481 * configure.in: Bump to 1.28b.
19482
8f13fe33
AD
194832001-08-03 Akim Demaille <akim@epita.fr>
19484
19485 * src/complain.c: Adjust strerror_r portability issues.
19486
b37ba92c
AD
194872001-08-03 Akim Demaille <akim@epita.fr>
19488
19489 Version 1.28a.
19490
b0ce6046
AD
194912001-08-03 Akim Demaille <akim@epita.fr>
19492
19493 * src/getargs.c, src/getarg.h (skeleton)): Constify.
19494 * src/lex.c (literalchar): Avoid name clashes on `buf'.
19495 * src/getargs.c: Include complain.h.
19496 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
19497 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
19498
d01c415b
AD
194992001-08-03 Akim Demaille <akim@epita.fr>
19500
19501 * src/reader.c (readgram): Display hidden chars in error messages.
19502
459dd1a6
AD
195032001-08-03 Akim Demaille <akim@epita.fr>
19504
19505 Update to gettext 0.10.39.
19506
53b74c0c
AD
195072001-08-03 Akim Demaille <akim@epita.fr>
19508
19509 * lib/strspn.c: New.
19510
234a3be3
AD
195112001-08-01 Marc Autret <autret_m@epita.fr>
19512
19513 * doc/bison.texinfo: Update.
19514 * doc/bison.1 (mandoc): Update.
19515 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
19516 * src/files.c: Support output files extensions computing.
19517 (src_extension): New static variable.
19518 (header_extension): New static variable.
19519 (tr): New function.
19520 (get_extension_index): New function, gets the index of an extension
19521 filename in a string.
19522 (compute_exts_from_gf): New function, computes extensions from the
19523 grammar file extension.
19524 (compute_exts_from_src): New functions, computes extensions from the
19525 C source file extension, file given by ``-o'' option.
19526 (compute_base_names): Update.
19527 (output_files): Update.
19528
847bf1f5
AD
195292001-08-01 Robert Anisko <anisko_r@epita.fr>
19530
d995fee7 19531 * doc/bison.texi: Document @$.
847bf1f5
AD
19532 (Locations): New section.
19533
d074a105
AD
195342001-07-18 Akim Demaille <akim@epita.fr>
19535
19536 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
19537 * config/prev-version.txt, config/move-if-change: New.
19538 * Makefile.am: Adjust.
19539
3419715d
AD
195402001-07-08 Pascal Bart <pascal.bart@epita.fr>
19541
19542 * src/bison.simple (yyparse): Suppress warning `comparaison
19543 between signed and unsigned'.
19544
62ab6972
AD
195452001-07-05 Pascal Bart <pascal.bart@epita.fr>
19546
19547 * src/getargs.h (raw_flag): Remove.
19548 * src/getargs.c: Die on `-r'/`--raw'.
19549 * src/lex.c (parse_percent_token): Die on `%raw'.
19550 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
19551 * tests/calc.at: Suppress test with option `--raw'.
19552
1e24cc5b
AD
195532001-07-14 Akim Demaille <akim@epita.fr>
19554
19555 * config/: New.
19556 * configure.in: Require Autoconf 2.50.
19557 Update to gettext 0.10.38.
19558
32dfccf8
AD
195592001-03-16 Akim Demaille <akim@epita.fr>
19560
19561 * doc/bison.texinfo: ANSIfy the examples.
19562
cd5bd6ac
AD
195632001-03-16 Akim Demaille <akim@epita.fr>
19564
19565 * getargs.c (skeleton): New variable.
19566 (longopts): --skeleton is a new option.
19567 (shortopts, getargs): -S is a new option.
19568 * getargs.h: Declare skeleton.
19569 * output.c (output_parser): Use it.
19570
5141b016
AD
195712001-03-16 Akim Demaille <akim@epita.fr>
19572
19573 * m4/strerror_r.m4: New.
19574 * m4/error.m4: Run AC_FUNC_STRERROR_R.
19575 * lib/error.h, lib/error.c: Update.
19576
447992b9
AD
195772001-03-16 Akim Demaille <akim@epita.fr>
19578
19579 * src/getargs.c (longopts): Clean up.
19580
274d42ce
AD
195812001-02-21 Akim Demaille <akim@epita.fr>
19582
19583 * src/reader.c (gensym): `gensym_count' is your own.
19584 Use a static buf to create the symbol name, as token_buffer is no
19585 longer a buffer.
19586
22c821f3
AD
195872001-02-08 Akim Demaille <akim@epita.fr>
19588
19589 * src/conflicts.c (conflict_report): Be sure not to append to res
19590 between two calls, which could happen if both first sprintf were
19591 skipped, but not the first cp += strlen.
19592
18569462
AD
195932001-02-08 Akim Demaille <akim@epita.fr>
19594
19595 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
19596 New, from fileutils 4.0.37.
19597 * configure.in: Require Autoconf 2.49c. I took some time before
19598 making this decision. This is the only way out for portability
19599 issues in Bison, it would mean way too much duplicate effort to
19600 import in Bison features implemented in 2.49c since 2.13.
19601 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
19602
0d8f3c8a
AD
196032001-02-02 Akim Demaille <akim@epita.fr>
19604
19605 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 19606 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 19607
f17bcd1f
AD
196082001-01-19 Akim Demaille <akim@epita.fr>
19609
19610 Get rid of the ad hoc handling of token_buffer in the scanner: use
19611 the obstacks.
19612
19613 * src/lex.c (token_obstack): New.
19614 (init_lex): Initialize it. No longer call...
19615 (grow_token_buffer): this. Remove it.
19616 Adjust all the places which used it to use the obstack.
19617
511e79b3
AD
196182001-01-19 Akim Demaille <akim@epita.fr>
19619
19620 * src/lex.h: Rename all the tokens:
19621 s/\bENDFILE\b/tok_eof/g;
19622 s/\bIDENTIFIER\b/tok_identifier/g;
19623 etc.
19624 Let them be enums, not #define, to ease debugging.
19625 Adjust all the code.
19626
0d6508ef
AD
196272001-01-18 Akim Demaille <akim@epita.fr>
19628
19629 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
19630 * src/lex.c (maxtoken, grow_token_buffer): Static.
19631
6deb4447
AD
196322001-01-18 Akim Demaille <akim@epita.fr>
19633
19634 Since we now use obstacks, more % directives can be enabled.
19635
19636 * src/lex.c (percent_table): Also accept `%yacc',
19637 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
19638 `%debug'.
19639 Handle the actions for `%semantic_parser' and `%pure_parser' here,
19640 instead of returning a token.
19641 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
19642 * src/reader.c (read_declarations): Adjust.
19643 * src/files.c (open_files): Don't call `compute_base_names', don't
19644 compute `attrsfile' since they depend upon data which might be
19645 *in* the input file now.
19646 (output_files): Do it here.
19647 * src/output.c (output_headers): Document the fact that this patch
19648 introduces a guaranteed SEGV for semantic parsers.
19649 * doc/bison.texinfo: Document them.
19650 * tests/suite.at: Exercise these %options.
19651
ff4423cc
AD
196522000-12-20 Akim Demaille <akim@epita.fr>
19653
19654 Also handle the output file (--verbose) with obstacks.
19655
19656 * files.c (foutput): Remove.
19657 (output_obstack): New.
19658 Adjust all dependencies.
19659 * src/conflicts.c: Return a string.
19660 * src/system.h (obstack_grow_string): Rename as...
19661 (obstack_sgrow): this. Be ready to work with non literals.
19662 (obstack_fgrow4): New.
19663
956dba3a
AD
196642000-12-20 Akim Demaille <akim@epita.fr>
19665
19666 * src/files.c (open_files): Fix the computation of short_base_name
19667 in the case of `-o foo.tab.c'.
19668
337bab46
AD
196692000-12-20 Akim Demaille <akim@epita.fr>
19670
19671 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
19672 (copy_dollar): Now that everything uses obstacks, get rid of the
19673 FILE * parameters.
19674
5d3214b8
AD
196752000-12-20 Akim Demaille <akim@epita.fr>
19676
19677 * src/files.c (open_files): Actually the `.output' file is based
19678 on the short_base_name, not base_name.
19679 * tests/suite.at (Checking output file names): Adjust.
19680
29092a57
AD
196812000-12-20 Akim Demaille <akim@epita.fr>
19682
19683 * src/bison.s1: Remove, we now use directly...
19684 * src/bison.simple: this.
19685 * src/Makefile.am: Use pkgdata instead of data.
19686
ea5607fd
AD
196872000-12-20 Akim Demaille <akim@epita.fr>
19688
19689 * src/files.c (guard_obstack): New.
19690 (open_files): Initialize it.
19691 (output_files): Dump it...
19692 * src/files.h: Export it.
19693 * src/reader.c (copy_guard): Use it.
19694
27110317
AD
196952000-12-19 Akim Demaille <akim@epita.fr>
19696
19697 * src/files.c (outfile, defsfile, actfile): Removed as global
19698 vars.
19699 (open_files): Don't compute them.
19700 (output_files): Adjust.
19701 (base_name, short_base_name): Be global.
19702 Adjust dependencies.
19703
19c50364
AD
197042000-12-19 Akim Demaille <akim@epita.fr>
19705
19706 * src/files.c (strsuffix): New.
19707 (stringappend): Be just like strcat but allocate.
19708 (base_names): Eve out from open_files.
19709 Try to simplify the rather hairy computation of base_name and
19710 short_base_name.
19711 (open_files): Use it.
19712 * tests/suite.at (Checking output file names): New test.
19713
573c1d9f
AD
197142000-12-19 Akim Demaille <akim@epita.fr>
19715
19716 * src/system.h (obstack_grow_literal_string): Rename as...
19717 (obstack_grow_string): this.
19718 * src/output.c (output_parser): Recognize `%% actions' instead of
19719 `$'.
19720 * src/bison.s1: s/$/%% actions/.
19721 * src/bison.hairy: Likewise.
19722
ef7ddedd
AD
197232000-12-19 Akim Demaille <akim@epita.fr>
19724
19725 * src/output.c (output_parser): Compute the `#line' lines when
19726 there are.
19727 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
19728 Suggested by Hans Aberg.
19729
ff61dabd
AD
197302000-12-19 Akim Demaille <akim@epita.fr>
19731
19732 Let the handling of the skeleton files be local to the procedures
19733 that use it.
19734
19735 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
19736 longer static.
19737 (fparser, open_extra_files): Remove.
19738 (open_files, output_files): Don't take care of fparser.
19739 * src/files.h: Adjust.
19740 * src/output.c (output_parser): Open and close the file to the
19741 skeleton.
19742 * src/reader.c (read_declarations): When %semantic_parser, open
19743 fguard.
19744
55b96341
AD
197452000-12-19 Akim Demaille <akim@epita.fr>
19746
19747 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
19748 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
19749
358c15b7
AD
197502000-12-19 Akim Demaille <akim@epita.fr>
19751
19752 * src/files.c (open_files): Yipee! We no longer need all the code
19753 looking for `/tmp' since we have no tmp file.
19754
7de3329e
AD
197552000-12-19 Akim Demaille <akim@epita.fr>
19756
19757 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
19758 New macros.
19759 * src/files.c (open_files): Less dependency on MSDOS etc.
19760
3abcd459
AD
197612000-12-14 Akim Demaille <akim@epita.fr>
19762
19763 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
19764 Provide a default definition.
19765 Use it when executing the default @ action.
19766 * src/reader.c (reader_output_yylsp): No longer include
19767 `timestamp' and `text' in the default YYLTYPE.
19768
2a91a95e
AD
197692000-12-12 Akim Demaille <akim@epita.fr>
19770
19771 * src/reader.c (copy_definition, parse_union_decl, copy_action)
19772 (copy_guard): Quote the file names.
19773 Reported by Laurent Mascherpa.
19774
14d3eb9b
AD
197752000-12-12 Akim Demaille <akim@epita.fr>
19776
19777 * src/output.c (output_headers, output_program, output): Be sure
19778 to escape special characters when outputting filenames.
19779 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
19780 (output_headers): Don't depend on them, Use ACTSTR.
19781
d7045ec6
AD
197822000-11-17 Akim Demaille <akim@epita.fr>
19783
19784 * lib/obstack.h: Formatting changes.
19785 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
19786 prevents type checking.
19787 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
19788 cast the value to (void *): assigning a `foo *' to a `void *'
19789 variable is valid.
19790 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
19791 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
19792 append characters.
19793
6fd54b73
AD
197942000-11-17 Akim Demaille <akim@epita.fr>
19795
19796 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
19797 as...
19798 (suite.m4, regression.m4, calc.m4): these.
19799 * tests/atgeneral.m4: Update from CVS Autoconf.
19800
4c50eae6
AD
198012000-11-17 Akim Demaille <akim@epita.fr>
19802
19803 * tests/regression.m4 (%union and --defines): New test,
19804 demonstrating a current bug in the obstack implementation.
19805
a35f64ea
AD
198062000-11-17 Akim Demaille <akim@epita.fr>
19807
19808 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
19809 macros.
19810 Use them to declare the variables which are global or local to
19811 `yyparse'.
19812
7de23534
AD
198132000-11-17 Akim Demaille <akim@epita.fr>
19814
19815 * acconfig.h: Remove, no longer used.
19816
aa7815f5
AD
198172000-11-07 Akim Demaille <akim@epita.fr>
19818
19819 * src: s/Copyright (C)/Copyright/g.
19820
5af1f549
AD
198212000-11-07 Akim Demaille <akim@epita.fr>
19822
19823 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
19824 defining.
19825 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
19826
553e2b22
AD
198272000-11-07 Akim Demaille <akim@epita.fr>
19828
19829 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
19830 Merge in a single CPP if/else.
19831
8a4f41d6
AD
198322000-11-07 Akim Demaille <akim@epita.fr>
19833
19834 * src/output.c (output): Remove useless variables.
19835 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
19836 argument `data' for consistency with the prototypes.
19837 Qualify it `const'.
19838 (obstack_copy, obstack_copy0): Rename the second argument as
19839 `address' for consistency. Qualify it `const'.
19840 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
19841 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
19842 `const' their input argument (`data' or `address').
19843 Adjust the corresponding macros to include `const' in casts.
19844
095a3fb5
AD
198452000-11-03 Akim Demaille <akim@epita.fr>
19846
19847 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
19848 s/PFILE1/BISON_HAIRY/.
19849 Adjust dependencies.
19850
d1cdce7c
AD
198512000-11-03 Akim Demaille <akim@epita.fr>
19852
090c5ebf 19853 For some reason, this was not applied.
d1cdce7c
AD
19854
19855 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
19856 `unlink': it's no longer used.
19857
9311529b
AD
198582000-11-03 Akim Demaille <akim@epita.fr>
19859
19860 * src/files.c (skeleton_find): New function, eved out of...
19861 (open_files, open_extra_files): here.
19862
d8880f69
AD
198632000-11-03 Akim Demaille <akim@epita.fr>
19864
19865 Don't use `atexit'.
19866
19867 * src/files.c (obstack_save): New function.
19868 (done): Rename as...
19869 (output_files): this.
19870 Use `obstack_save'.
19871 * src/main.c (main): Don't use `atexit' to register `done', since
19872 it no longer has to remove tmp files, just call `output_files'
19873 when there are no errors.
19874
0dbb648e
AD
198752000-11-02 Akim Demaille <akim@epita.fr>
19876
19877 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
19878 `unlink': it's no longer used.
19879 * src/files.h: Formatting changes.
19880
896fe5c1
AD
198812000-11-02 Akim Demaille <akim@epita.fr>
19882
19883 Remove the last uses of mktemp and unlink/delete.
19884
19885 * src/files.c (fdefines, ftable): Removed.
19886 (defines_ostack, table_obstack): New.
19887 Adjust dependencies of the former into uses of the latter.
19888 * src/output.c (output_short_or_char_table, output_short_table):
19889 Convert to using obstacks.
19890 * src/reader.c (copy_comment2): Accept one FILE * and two
19891 obstacks.
19892 (output_token_defines, reader_output_yylsp): Use obstacks.
19893 * src/system.h (obstack_fgrow3): New.
1f65350a 19894 * po/POTFILES.in: Adjust.
896fe5c1 19895
dd60faec
AD
198962000-11-01 Akim Demaille <akim@epita.fr>
19897
19898 Change each use of `fattrs' into a use of `attrs_obstack'.
19899
19900 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
19901 * src/files.c (fattrs): Remove.
19902 (attrs_obstack): New.
19903 Adjust all dependencies.
19904 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
19905
8c7ebe49
AD
199062000-11-01 Akim Demaille <akim@epita.fr>
19907
19908 Introduce obstacks.
19909 Change each use of `faction' into a use of `action_obstack'.
19910
19911 * lib/obstack.h, lib/obstack.c: New files.
19912 * src/files.c (faction): Remove.
19913 (action_obstack): New.
19914 Adjust all dependencies.
19915
77aee789
AD
199162000-10-20 Akim Demaille <akim@epita.fr>
19917
19918 * lib/quote.h (PARAMS): New macro. Use it.
19919
43591cec
AD
199202000-10-16 Akim Demaille <akim@epita.fr>
19921
19922 * src/output.c (output_short_or_char_table): New function.
19923 (output_short_table, output_token_translations): Use it.
19924 (goto_actions): Use output_short_table.
19925
1e9798d5
AD
199262000-10-16 Akim Demaille <akim@epita.fr>
19927
19928 * src/symtab.c (bucket_new): New function.
19929 (getsym): Use it.
19930
19931 * src/output.c (output_short_table): New argument to display the
19932 comment associated with the table.
19933 Adjust dependencies.
19934 (output_gram): Use it.
19935 (output_rule_data): Nicer output layout for YYTNAME.
19936
f282676b
AD
199372000-10-16 Akim Demaille <akim@epita.fr>
19938
19939 * src/lex.c (read_typename): New function.
19940 (lex): Use it.
19941 * src/reader.c (copy_dollar): Likewise.
19942
550a72a3
AD
199432000-10-16 Akim Demaille <akim@epita.fr>
19944
19945 * src/reader.c (copy_comment2): Expect the input stream to be on
19946 the `/' which is suspected to open a comment, instead of being
19947 called after `//' or `/*' was read.
19948 (copy_comment, copy_definition, parse_union_decl, copy_action)
19949 (copy_guard): Adjust.
19950
131e2fef
AD
199512000-10-16 Akim Demaille <akim@epita.fr>
19952
19953 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
19954 `read_signed_integer'.
19955
79282c5a
AD
199562000-10-16 Akim Demaille <akim@epita.fr>
19957
19958 * src/reader.c (copy_dollar): New function.
19959 (copy_guard, copy_action): Use it.
19960
ff4a34be
AD
199612000-10-16 Akim Demaille <akim@epita.fr>
19962
19963 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
19964 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
19965 New files, from Fileutils 4.0.27.
19966 * src/main.c (printable_version): Remove.
19967 * src/lex.c, src/reader.c: Use `quote'.
19968
199692000-10-04 Akim Demaille <akim@epita.fr>
19970
19971 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
19972
14ded682
AD
199732000-10-04 Akim Demaille <akim@epita.fr>
19974
19975 * doc/bison.texinfo: Various typos spotted by Neil Booth.
19976
8e03724b
AD
199772000-10-04 Akim Demaille <akim@epita.fr>
19978
19979 When a literal string is used to define two different tokens,
19980 `bison -v' segfaults.
19981 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
19982
19983 * tests/regression.m4: New file.
19984 Include the core of the sample provided by Piotr Gackiewicz.
19985 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
19986 properly.
19987
a9e64249
AD
199882000-10-04 Akim Demaille <akim@epita.fr>
19989
19990 * src/reader.c (parse_expect_decl): Keep `count' within the size
19991 of `buffer'.
19992 From Neil Booth.
19993
da9abf43
AD
199942000-10-02 Paul Eggert <eggert@twinsun.com>
19995
19996 * bison.s1 (yyparse): Assign the default value
19997 unconditionally, to avoid a GCC warning and make the parser a
19998 tad smaller.
19999
c33638bb
AD
200002000-10-02 Akim Demaille <akim@epita.fr>
20001
20002 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
20003 options.
20004
444c570a
AD
200052000-10-02 Akim Demaille <akim@epita.fr>
20006
20007 * src/derives.c, src/print.c, src/reduce.c: To ease the
20008 translation, move some `\n' out of the translated strings.
20009
89cab50d
AD
200102000-10-02 Akim Demaille <akim@epita.fr>
20011
20012 The location tracking mechanism is precious for parse error
20013 messages. Nevertheless, it is enabled only when `@n' is used in
20014 the grammar, which is a different issue (you can use it in error
20015 message, but not in the grammar per se). Therefore, there should
20016 be another means to enable it.
20017
20018 * src/getargs.c (getargs): Support `--locations'.
20019 (usage): Report it.
20020 * src/getargs.h (locationsflag): Export it.
20021 * src/lex.c (percent_table): Support `%locations'.
20022 * src/reader.c (yylsp_needed): Remove this variable, now replaced
20023 with `locationsflag'.
20024 * doc/bison.texinfo: Document `--locations' and `%locations'.
20025 Sort the options.
20026 * tests/calc.m4: Test it.
20027
20028 For regularity of the names, replace each
20029 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
20030 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
20031 In addition replace each `flag' with `_flag'.
20032
d6c2cba0
AD
200332000-10-02 Akim Demaille <akim@epita.fr>
20034
20035 Also test parse error messages, including with YYERROR_VERBOSE.
20036
20037 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
20038 associative).
20039 Use it to check the computations.
20040 Use it to check `nonassoc' is honored.
20041 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
20042 `--yyerror-verbose'.
20043 (_AT_CHECK_CALC): Adjust to this option.
20044 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
20045
5a35a6cb
AD
200462000-10-02 Akim Demaille <akim@epita.fr>
20047
20048 Test also `--verbose', `--defines' and `--name-prefix'. Testing
20049 the latter demonstrates a flaw in the handling of non debugging
20050 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
20051 was used in order to simplify:
20052
20053 #if YYDEBUG
20054 if (yydebug)
20055 {
20056 ...
20057 }
20058 #endif
20059
20060 into
20061
20062 if (yydebug)
20063 {
20064 ...
20065 }
20066
20067 unfortunately this leads to a CPP conflict when
20068 `--name-prefix=foo' is used since it produces `#define yydebug
20069 foodebug'.
20070
20071 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
20072 (YYDPRINTF): New macro.
20073 Spread its use.
20074 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
20075 the bison options.
20076 Also test `--verbose', `--defines' and `--name-prefix'.
20077
71da9eea
AD
200782000-10-02 Akim Demaille <akim@epita.fr>
20079
20080 Improve the readability of the produced parsers.
20081
20082 * src/bison.s1: Formatting changes.
20083 Improve the comment related to the `$' mark.
20084 (yydefault): Don't fall through to `yyresume': `goto' there.
20085 * src/output.c (output_parser): When the `$' is met, skip the end
20086 of its line.
20087 New variable, `number_of_dollar_signs', to check there's exactly
20088 one `$' in the parser skeleton.
20089
95e36146
AD
200902000-10-02 Akim Demaille <akim@epita.fr>
20091
20092 * lib/xstrdup.c: New file, from the fileutils.
20093 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
20094 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
20095 instead of strlen + xmalloc + strcpy.
20096 * src/symtab.c (copys): Remove, use xstrdup instead.
20097
d7020c20
AD
200982000-10-02 Akim Demaille <akim@epita.fr>
20099
20100 * src/gram.h (associativity): New enum type which replaces the
20101 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
20102 `right_assoc', `left_assoc' and `non_assoc'.
20103 Adjust all dependencies.
20104 * src/reader.c: Formatting changes.
20105 (LTYPESTR): Don't define it, use it as a literal in
20106 `reader_output_yylsp'.
20107 * src/symtab.h (symbol_class): New enum type which replaces the
20108 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
20109 `sunknown', `stoken and `snterm'.
20110
1916f98e
AD
201112000-10-02 Akim Demaille <akim@epita.fr>
20112
20113 * src/getargs.c (fixed_outfiles): Rename as...
20114 (yaccflag): for consistency and accuracy.
20115 Adjust dependencies.
20116
d7913476
AD
201172000-10-02 Akim Demaille <akim@epita.fr>
20118
20119 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
20120 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
20121 difficult and introduced a lot of core dump. It turns out that
20122 Bison used an implementation of `xmalloc' based on `calloc', and
20123 at various places it does depend upon the initialization to 0. I
20124 have not tried to isolate the pertinent places, and all the former
20125 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
20126 someone should address this issue.
20127
20128 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
20129 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
20130 files.
20131 Adjust dependencies.
20132 * src/warshall.h: New file.
20133 Propagate.
20134
340ef489
AD
201352000-10-02 Akim Demaille <akim@epita.fr>
20136
20137 Various anti-`extern in *.c' changes.
20138
20139 * src/system.h: Include `assert.h'.
20140
b2ca4022
AD
201412000-10-02 Akim Demaille <akim@epita.fr>
20142
20143 * src/state.h (nstates, final_state, first_state, first_shift)
20144 (first_reduction): Move their exportation from here...
20145 * src/LR0.h: to here.
20146 Adjust dependencies.
20147 * src/getargs.c (statisticsflag): New variable.
20148 Add support for `--statistics'.
20149 Adjust dependencies.
20150
20151 Remove a lot of now useless `extern' statements in most files.
20152
403b315b
AD
201532000-10-02 Akim Demaille <akim@epita.fr>
20154
20155 * src/LR0.h: New file.
20156 Propagate its use.
20157
07a58c13
AD
201582000-10-02 Akim Demaille <akim@epita.fr>
20159
20160 * src/print.h: New file.
20161 Propagate its use.
20162 * src/print.c: Formatting and ordering changes.
20163 (verbose, terse): Replace with...
20164 (print_results): this new function.
20165 Adjust dependencies.
20166
0619caf0
AD
201672000-10-02 Akim Demaille <akim@epita.fr>
20168
20169 * src/conflicts.c (conflict_report): New function.
20170 (conflict_log, verbose_conflict_log): Replace with...
20171 (print_conflicts): this function.
20172 Adjust dependencies.
20173 * src/conflicts.h: New file.
20174 Propagate its inclusion.
20175
3519ec76
AD
201762000-10-02 Akim Demaille <akim@epita.fr>
20177
20178 * src/nullable.h: New file.
20179 Propagate its inclusion.
20180 * src/nullable.c: Formatting changes.
20181
015acc48
AD
201822000-10-02 Akim Demaille <akim@epita.fr>
20183
20184 * src/reduce.h: New file.
20185 Propagate its inclusion.
20186 * src/reduce.c: Topological sort and other formatting changes.
20187 (bool, TRUE, FALSE): Move their definition to...
20188 * src/system.h: here.
20189
8963a27b
AD
201902000-10-02 Akim Demaille <akim@epita.fr>
20191
20192 * src/files.c: Formatting changes.
20193 (tryopen, tryclose, openfiles): Rename as...
20194 (xfopen, xfclose, open_files): this.
20195 (stringappend): static.
20196 * src/files.h: Complete the list of exported symbols.
20197 Propagate its use.
20198
a70083a3
AD
201992000-10-02 Akim Demaille <akim@epita.fr>
20200
20201 * src/reader.h: New file.
20202 Propagate its use instead of tedious list of `extern' and
20203 prototypes.
20204 * src/reader.c: Formatting changes, topological sort,
20205 s/register//.
20206
abadc117
AD
202072000-10-02 Akim Demaille <akim@epita.fr>
20208
20209 * src/lex.h: Prototype `lex.c' exported functions.
20210 * src/reader.c: Adjust.
20211 * src/lex.c: Formatting changes.
20212 (safegetc): Rename as...
20213 (xgetc): this.
20214
720d742f
AD
202152000-10-02 Akim Demaille <akim@epita.fr>
20216
20217 * src/lalr.h: New file.
20218 Propagate its inclusion instead of prototypes and `extern'.
20219 * src/lalr.c: Formatting changes, topological sorting etc.
20220
f2acea59
AD
202212000-10-02 Akim Demaille <akim@epita.fr>
20222
20223 * src/output.c (token_actions): Introduce a temporary array,
20224 YYDEFACT, that makes it possible for this function to use
20225 output_short_table.
20226
d019d655
AD
202272000-10-02 Akim Demaille <akim@epita.fr>
20228
20229 `user_toknums' is output as a `short[]' in `output.c', while it is
20230 defined as a `int[]' in `reader.c'. For consistency with the
20231 other output tables, `user_toknums' is now defined as a table of
20232 shorts.
20233
20234 * src/reader.c (user_toknums): Be a short table instead of an int
20235 table.
20236 Adjust dependencies.
20237
20238 Factor the short table outputs.
20239
20240 * src/output.c (output_short_table): New function.
20241 * src/output.c (output_gram, output_stos, output_rule_data)
20242 (output_base, output_table, output_check): Use it.
20243
6c89f1c1
AD
202442000-10-02 Akim Demaille <akim@epita.fr>
20245
20246 * src/output.c (output): Topological sort of the functions, in
20247 order to get rid of the `static' prototypes.
20248 No longer use `register'.
20249 * src/output.h: New file.
20250 Propagate its inclusion in files explicitly prototyping functions
20251 from output.c.
20252
d9efd181
AD
202532000-09-21 Akim Demaille <akim@epita.fr>
20254
20255 * src/atgeneral.m4: Update from Autoconf.
20256
c29240e7 202572000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
20258
20259 * src/closure.h: New file.
20260 * src/closure.c: Formatting changes, topological sort over the
20261 functions, use of closure.h.
20262 (initialize_closure, finalize_closure): Rename as...
20263 (new_closure, free_closure): these. Adjust dependencies.
20264 * src/LR0.c: Formatting changes, topological sort, use of
20265 cloture.h.
20266 (initialize_states): Rename as...
20267 (new_states): this.
20268 * src/Makefile.am (noinst_HEADERS): Adjust.
20269
499daa50
AD
202702000-09-20 Akim Demaille <akim@epita.fr>
20271
20272 * src/acconfig.h: Don't protect config.h against multiple
20273 inclusion.
20274 Don't define PARAMS.
20275 * src/system.h: Define PARAMS.
20276 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
20277 purpose of config.h. system.h must not try to fix wrong
20278 definitions in config.h.
20279
cc84fd5d
AD
202802000-09-20 Akim Demaille <akim@epita.fr>
20281
20282 * src/derives.h: New file.
20283 * src/main.c, src/derives.h: Use it.
20284 Formatting changes.
20285 * src/Makefile.am (noinst_HEADERS): Adjust.
20286
db5b3a89
AD
202872000-09-20 Akim Demaille <akim@epita.fr>
20288
20289 * tests/atgeneral.m4: Update from Autoconf.
20290 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
20291 (AT_CHECK_CALC): New macros.
20292 Use these macros to test bison with options `', `--raw',
20293 `--debug', `--yacc', `--yacc --debug'.
20294
ceed8467
AD
202952000-09-19 Akim Demaille <akim@epita.fr>
20296
20297 * src/output.c: Formatting changes.
20298 * src/machine.h: Remove, leaving its contents in...
20299 * src/system.h: here.
20300 Include stdio.h.
20301 Adjust all dependencies on stdio.h and machine.h.
20302 * src/getargs.h: New file.
20303 Let all `extern' declarations about getargs.c be replaced with
20304 inclusion of `getargs.h'.
20305 * src/Makefile.am (noinst_HEADERS): Adjust.
20306
20307 * tests/calc.m4 (yyin): Be initialized in main, not on the global
20308 scope.
20309 (yyerror): Returns void, not int.
20310 * doc/bison.texinfo: Formatting changes.
20311
05a1d24b
AD
203122000-09-19 Akim Demaille <akim@epita.fr>
20313
20314 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
20315 portable.
20316
cbd25751
AD
203172000-09-18 Akim Demaille <akim@epita.fr>
20318
20319 * configure.in: Append WARNING_CFLAGS to CFLAGS.
20320 * src/Makefile.am (INCLUDES): Don't.
20321 Be ready to fetch headers in lib/.
20322
13863333
AD
203232000-09-18 Akim Demaille <akim@epita.fr>
20324
20325 * doc/bison.texinfo: Update the copyright.
20326 ANSIfy and GNUify the examples.
20327 Remove the old menu.
20328
0d533154
AD
203292000-09-18 Akim Demaille <akim@epita.fr>
20330
20331 First set of tests: use the `calc' example from the documentation.
20332
20333 * src/bison.s1 (yyparse): Condition the code using `yytname' which
20334 is defined only when YYDEBUG is.
20335 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
20336 * src/files.c (tryopen, tryclose): Formatting changes.
20337 Move to the top and be static.
20338 * src/reader.c (read_signed_integer): Likewise.
20339 * tests/calc.m4: New file.
20340 * Makefile.am, suite.m4: Adjust.
20341 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
20342
e79137ac
AD
203432000-09-18 Akim Demaille <akim@epita.fr>
20344
20345 Add support for an Autotest test suite for Bison.
20346
20347 * m4/m4.m4, m4/atconfig.m4: New files.
20348 * m4/Makefile.am (EXTRA_DIST): Adjust.
20349 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
20350 files.
20351 * src/getargs.c: Display a more standard --version message.
20352 * src/reader.c (reader): Formatting changes.
20353 No longer depend upon VERSION_STRING.
20354 * configure.in: No longer use `dnl'.
20355 Set up the test suite and the new directory `tests/.
20356 (VERSION_STRING): Remove.
20357
27821bff
AD
203582000-04-14 Akim Demaille <akim@epita.fr>
20359
20360 * src/reader.c (copy_comment2): New function, same as former
20361 `copy_comment', but outputs into two FILE *.
20362 (copy_comment): Use it.
20363 (parse_union_decl): Use it.
20364 (get_type, parse_start_decl): Use the same `invalid' message.
20365 (parse_start_decl, parse_union_decl): Use the same `multiple'
20366 message.
20367 (parse_union_decl, copy_guard, copy_action): Use the same
20368 `unmatched' message.
20369 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
20370
cfe5fbc0
AD
203712000-03-31 Akim Demaille <akim@epita.fr>
20372
20373 * src/files.c (tryopen, tryclose): Move to the top.
20374 Be static.
20375
cb7db13e
AD
203762000-03-31 Akim Demaille <akim@epita.fr>
20377
20378 * src/main.c (main): Don't call `done', exit does it.
20379
a0f6b076
AD
203802000-03-31 Akim Demaille <akim@epita.fr>
20381
36281465
AD
20382 * allocate.c: s/return (foo)/return foo/.
20383 * lalr.c: Likewise.
20384 * LR0.c: Likewise.
20385 * output.c: Likewise.
20386 * reader.c: Likewise.
20387 * symtab.c: Likewise.
20388 * vmsgetargs.c: Likewise.
20389
203902000-03-31 Akim Demaille <akim@epita.fr>
20391
20392 Clean up the error reporting functions.
a0f6b076
AD
20393
20394 * src/report.c: New file.
20395 * src/report.h: Likewise.
20396 * src/Makefile.am: Adjust.
20397 * m4/error.m4: New file.
20398 * m4/Makefile.am: Adjust.
20399 * configure.in (jm_PREREQ_ERROR): Call it.
20400 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
20401 Remove.
20402 (fatal, fatals): Remove. All callers use complain.c::fatal.
20403 (warn, warni, warns, warnss, warnss): Remove. All callers use
20404 complain.c::complain.
20405 (toomany): Remove, use fatal instead.
20406 * src/files.c (done): No argument, use complain_message_count.
20407 * src/main.c (main): Register `done' to `atexit'.
20408
20409 * src/getargs.c (usage): More `fputs', less `fprintf'.
20410
18539825
AD
204112000-03-28 Akim Demaille <akim@epita.fr>
20412
20413 * lib/: New directory.
20414 * Makefile.am (SUBDIRS): Adjust.
20415 * configure.in: Adjust.
20416 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
20417 useless.
20418 * src/alloca.c: Moved to lib/.
20419 * src/getopt.c: Likewise.
20420 * src/getopt1.c: Likewise.
20421 * src/getopt.h: Likewise.
20422 * src/ansi2knr.c: Likewise.
20423 * src/ansi2knr.1: Likewise.
20424 * src/Makefile.am: Adjust.
20425 * lib/Makefile.am: New file.
20426
9f306f2a
AD
204272000-03-28 Akim Demaille <akim@epita.fr>
20428
20429 * src/getargs.c (usage): Refresh the help message.
20430
0ba347b6
AD
204312000-03-17 Akim Demaille <akim@epita.fr>
20432
20433 * src/getopt1.c: Updated from textutils 2.0e
20434 * src/getopt.c: Likewise.
20435 * src/getopt.h: Likewise.
20436
dbe7f271
AD
204372000-03-17 Akim Demaille <akim@epita.fr>
20438
20439 * src/Makefile.am (bison.simple): Fix the awk program: quote only
20440 the file name, not the whole `#line LINE FILE'.
20441
75bbe78d
AD
204422000-03-17 Akim Demaille <akim@epita.fr>
20443
20444 On syntax errors, report the token on which we choked.
20445
aa5fd0ee
AD
20446 * src/bison.s1 (yyparse): In the label yyerrlab, when
20447 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 20448
7b306f52
AD
204492000-03-17 Akim Demaille <akim@epita.fr>
20450
aa5fd0ee 20451 * src/reader.c (copy_at): New function.
7b306f52
AD
20452 (copy_guard): Use it.
20453 (copy_action): Use it.
20454
e87b5700
AD
204552000-03-17 Akim Demaille <akim@epita.fr>
20456
20457 Be kind to translators, save some useless translations.
20458
aa5fd0ee 20459 * src/main.c (banner): New function.
e87b5700
AD
20460 (fatal_banner): Use it.
20461 (warn_banner): Use it.
20462
ae3c3164
AD
204632000-03-17 Akim Demaille <akim@epita.fr>
20464
aa5fd0ee
AD
20465 * src/reader.c (copy_definition): Use copy_string and
20466 copy_comment. Removed now unused `match', `ended',
20467 `cplus_comment'.
ae3c3164
AD
20468 (copy_comment, copy_string): Moved, to be visible from
20469 copy_definition.
20470
4dc58e7c
AD
204712000-03-17 Akim Demaille <akim@epita.fr>
20472
aa5fd0ee
AD
20473 * src/reader.c (copy_string): Declare `static inline'. No
20474 problems with inline, since it is checked by configure.
4dc58e7c
AD
20475 (copy_comment): Likewise.
20476
0a6384c4
AD
204772000-03-17 Akim Demaille <akim@epita.fr>
20478
aa5fd0ee 20479 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 20480
3cef001a
AD
204812000-03-17 Akim Demaille <akim@epita.fr>
20482
aa5fd0ee 20483 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
20484 (copy_action): Use it. Removed now unused `match', `ended',
20485 `cplus_comment'.
20486 (copy_guard): Likewise.
20487
ca36d2ef
AD
204882000-03-17 Akim Demaille <akim@epita.fr>
20489
aa5fd0ee 20490 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
20491 (copy_action): Use it.
20492 (copy_guard): Likewise.
20493
6666f98f
AD
204942000-03-17 Akim Demaille <akim@epita.fr>
20495
20496 Change the handling of @s so that they behave exactly like $s.
20497 There is now a pseudo variable @$ (readble and writable), location
20498 of the lhs of the rule (by default ranging from the location of
20499 the first symbol of the rhs, to the location of the last symbol,
20500 or, if the rhs is empty, YYLLOC).
20501
20502 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
20503 yyval.
20504 (yyparse): When providing a default semantic action, provide a
20505 default location action.
20506 (after the $): No longer change `*YYLSP', just stack YYLOC the
20507 same way you stack YYVAL.
20508 * src/reader.c (read_declarations): Use warns.
20509 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
20510 (copy_action, case '@'): Likewise.
20511 Use a standard error message, to save useless work from
20512 translators.
20513
41aca2e0
AD
205142000-03-17 Akim Demaille <akim@epita.fr>
20515
aa5fd0ee
AD
20516 * src/bison.s1: Formatting and cosmetics changes.
20517 * src/reader.c: Likewise.
41aca2e0
AD
20518 Update the Copyright notice.
20519
dc08c1d5
AD
205202000-03-17 Akim Demaille <akim@epita.fr>
20521
aa5fd0ee
AD
20522 * src/bison.s1 (#line): All set to `#line' only, since the
20523 Makefile now handles them.
dc08c1d5 20524
9ee3c97b
AD
205252000-03-16 Akim Demaille <akim@epita.fr>
20526
20527 * src/output.c (output_rule_data): Output the documentation of
20528 some of the tables.
20529 (Copyright notice): Update.
20530 Formatting changes.
20531
0de741ca
AD
205322000-03-16 Akim Demaille <akim@epita.fr>
20533
20534 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
20535 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
20536 One `#if YYDEBUG' remains, since it uses variables which are
20537 defined only if `YYDEBUG != 0'.
20538
bb10be54
AD
205392000-03-16 Akim Demaille <akim@epita.fr>
20540
20541 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
20542 and related variables so that the similarities are highlighted.
20543
b07b484a
AD
205442000-03-16 Akim Demaille <akim@epita.fr>
20545
20546 * src/bison.s1: Properly indent CPP directives.
20547
361f60b3
AD
205482000-03-16 Akim Demaille <akim@epita.fr>
20549
20550 * src/bison.s1: Properly indent the `alloca' CPP section.
20551
8c44d3ec
AD
205522000-03-16 Akim Demaille <akim@epita.fr>
20553
20554 Do not hard code values of directories in `configure.in'.
20555 Update the `configure' tool chain.
20556
20557 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
20558 src/makefile.am.
20559 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
20560 (AC_OUTPUT): Add m4/Makefile.
20561 Bump to bison 1.28a, 1.29 has never been released.
20562 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
20563 handled via src/Makefile.am.
20564 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
20565 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
20566 autoheader.
20567 * Makefile.am (SUBDIRS): Add m4.
20568 (ACLOCAL_AM_FLAGS): New variable.
20569 (AUTOMAKE_OPTIONS): Add check-news.
20570 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
20571 the proper line number and file name.
20572 (DEFS): Propagate the location of bison library files and of the
20573 locale files.
20574 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
20575 builddir.
20576 * acinclude.m4: Remove, replaced by the directory m4.
20577 * m4/Makefile.am (EXTRA_DIST): New variable.
20578 * m4/gettext.m4: New file, from the fileutils.
20579 * m4/lcmessage.m4: Likewise
20580 * m4/progtest.m4: Likewise.
20581 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
20582
f95997e7
AD
205832000-03-10 Akim Demaille <akim@epita.fr>
20584
20585 * src/closure.c:
20586 Formatting changes of various comments.
20587 Respect the GNU coding standards at various places.
20588 Don't use `_()' when no translation is needed.
20589
205901999-12-13 Jesse Thilo <jthilo@gnu.org>
20591
20592 * src/files.c:
20593 OS/2 honors TMPDIR environment variable.
20594
205951999-12-13 Jesse Thilo <jthilo@gnu.org>
20596
20597 * doc/bison.texinfo: Tweaked spelling and grammar.
20598 Updated ISBN.
20599 Removed reference to price of printed copy.
20600 Mention BISON_SIMPLE and BISON_HAIRY.
20601
206021999-12-13 Jesse Thilo <jthilo@gnu.org>
20603
20604 * configure.in, NEWS:
20605 Bison 1.29 released.
20606
206071999-10-27 Jesse Thilo <jthilo@gnu.org>
20608
20609 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
20610 Added reference card.
20611
206121999-07-26 Jesse Thilo <jthilo@gnu.org>
20613
20614 * po/ru.po: Added Russian translation.
20615
206161999-07-26 Jesse Thilo <jthilo@gnu.org>
20617
20618 * configure.in: Added Russian translation.
20619
206201999-07-06 Jesse Thilo <jthilo@gnu.org>
20621
20622 * configure.in, NEWS, README:
20623 Released version 1.28.
20624
206251999-06-14 Jesse Thilo <jthilo@gnu.org>
20626
20627 * src/system.h:
20628 Squashed redefinition warning on some systems.
20629
20630 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
20631 Have configure build version string instead of relying on ANSI string
20632 concatentation.
20633
206341999-06-14 Jesse Thilo <jthilo@gnu.org>
20635
20636 * po/POTFILES.in: Got rid of version.c.
20637
206381999-06-14 Jesse Thilo <jthilo@gnu.org>
20639
20640 * acconfig.h, configure.in:
20641 Have configure build version string instead of relying on ANSI string
20642 concatentation.
20643
206441999-06-08 Jesse Thilo <jthilo@gnu.org>
20645
20646 * doc/bison.1:
20647 Dropped mention of `+' for long-named options.
20648
206491999-05-30 Jesse Thilo <jthilo@gnu.org>
20650
20651 * src/files.c: Added <unistd.h> for unlink().
20652
20653 * src/Makefile.am, src/system.h:
20654 I18n fixes.
20655
206561999-05-30 Jesse Thilo <jthilo@gnu.org>
20657
20658 * README: Added a FAQ list.
20659
20660 * configure.in, acconfig.h:
20661 I18n fixes.
20662
206631999-05-30 Jesse Thilo <jthilo@gnu.org>
20664
20665 * doc/FAQ, doc/Makefile.am:
20666 Added a FAQ list.
20667
206681999-05-19 Jesse Thilo <jthilo@gnu.org>
20669
20670 * src/alloc.h, src/symtab.h, src/version.c:
20671 Protected inclusion of "config.h" with HAVE_CONFIG_H.
20672
206731999-04-18 Jesse Thilo <jthilo@gnu.org>
20674
20675 * src/.cvsignore, src/Makefile.am:
20676 Reorganized: sources in `src', documentation in `doc'.
20677
20678 * src/lex.c (literalchar):
20679 fixed the code for escaping double quotes (thanks
20680 Jonathan Czisny.)
20681
206821999-04-18 Jesse Thilo <jthilo@gnu.org>
20683
20684 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
20685 Adjusted paths to reflect directory reorganization.
20686
206871999-04-18 Jesse Thilo <jthilo@gnu.org>
20688
20689 * doc/.cvsignore, doc/Makefile.am:
20690 Reorganized: sources in `src', documentation in `doc'.
20691
206921999-04-18 Jesse Thilo <jthilo@gnu.org>
20693
20694 * configure.in:
20695 Updated AC_INIT file to reflect directory reorganization.
20696
20697 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
20698 Reorganized: sources in `src', documentation in `doc'.
20699
207001999-04-13 Jesse Thilo <jthilo@gnu.org>
20701
20702 * src/allocate.c:
20703 Don't declare calloc() and realloc() if not necessary.
20704
207051999-04-13 Jesse Thilo <jthilo@gnu.org>
20706
20707 * configure.in, acconfig.h, acinclude.m4:
20708 Don't declare calloc() and realloc() if not necessary.
20709
207101999-03-23 Jesse Thilo <jthilo@gnu.org>
20711
20712 * po/.cvsignore: Added i18n support.
20713
207141999-03-23 Jesse Thilo <jthilo@gnu.org>
20715
20716 * acconfig.h, configure.in, Makefile.am:
20717 Added i18n support.
20718
207191999-03-22 Jesse Thilo <jthilo@gnu.org>
20720
20721 * src/bison.s1: Fixed #line numbers.
20722
207231999-03-15 Jesse Thilo <jthilo@gnu.org>
20724
20725 * po/es.po, po/fr.po, po/nl.po, po/de.po:
20726 Added PO files from Translation Project.
20727
207281999-03-03 Jesse Thilo <jthilo@gnu.org>
20729
20730 * Makefile.am:
20731 Added support for non-ANSI compilers (ansi2knr).
20732
207331999-02-16 Jesse Thilo <jthilo@gnu.org>
20734
20735 * configure.in: Bumped version number to 1.27.
20736
20737 * Makefile.am:
20738 Added `bison.simple' to list of files removed by `make distclean'.
20739
207401999-02-12 Jesse Thilo <jthilo@gnu.org>
20741
20742 * src/files.c, src/files.h:
20743 Defined locations of parser files in config.h instead of Makefile.
20744
207451999-02-12 Jesse Thilo <jthilo@gnu.org>
20746
20747 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
20748 Defined locations of parser files in config.h instead of Makefile.
20749
207501999-02-09 Jesse Thilo <jthilo@gnu.org>
20751
20752 * Makefile.am:
20753 Removed inappropriate use of $< macro.
20754
207551999-02-05 Jesse Thilo <jthilo@gnu.org>
20756
20757 * po/Makefile.in.in, po/POTFILES.in:
20758 Add `po' directory skeleton.
20759
207601999-01-27 Jesse Thilo <jthilo@gnu.org>
20761
20762 * README: Document help-bison list.
20763
20764 * configure.in: Add check for mkstemp().
20765
207661999-01-20 Jesse Thilo <jthilo@gnu.org>
20767
20768 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
20769 Hush a few compiler warnings.
20770
20771 * src/files.c:
20772 Add tryclose(), which verifies that fclose was successful.
20773 Hush a couple of compiler warnings.
20774
207751999-01-20 Jesse Thilo <jthilo@gnu.org>
20776
20777 * Makefile.am, OChangeLog:
20778 ChangeLog is now automatically generated. Include the old version as
20779 OChangeLog.
20780
207811999-01-14 Jesse Thilo <jthilo@gnu.org>
20782
20783 * 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:
20784 Update FSF address.
20785
207861999-01-14 Jesse Thilo <jthilo@gnu.org>
20787
20788 * doc/bison.texinfo: Fix formatting glitch.
20789
20790 * doc/bison.texinfo: Update FSF address.
20791
207921999-01-14 Jesse Thilo <jthilo@gnu.org>
20793
20794 * acconfig.h: Update FSF address.
20795
207961999-01-08 Jesse Thilo <jthilo@gnu.org>
20797
20798 * src/system.h:
20799 Don't define PACKAGE here, since config.h defines it.
20800
208011998-12-30 Jesse Thilo <jthilo@gnu.org>
20802
20803 * src/reader.c: Update copyright date.
20804
20805 * src/main.c:
20806 Ditch sprintf to statically-sized buffers in fatal/warn functions in
20807 favor of output directly to stderr (avoids buffer overruns).
20808
20809 * src/reader.c: Some checks for premature EOF.
20810
20811 * 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:
20812 Use prototypes if the compiler understands them.
20813
20814 * src/files.c: Honor TMPDIR on Unix hosts.
20815 Use prototypes if the compiler understands them.
20816
20817 * src/reader.c:
20818 Fix a couple of buffer overrun bugs.
20819 Use prototypes if the compiler understands them.
20820
20821 * src/system.h: Include unistd.h and ctype.h.
20822 Use #ifdef instead of #if for NLS symbols.
20823
208241998-12-30 Jesse Thilo <jthilo@gnu.org>
20825
20826 * doc/bison.texinfo:
20827 Delete comment "consider using @set for edition number, etc..." since
20828 we now are doing so.
20829
208301998-12-30 Jesse Thilo <jthilo@gnu.org>
20831
20832 * configure.in:
20833 Use prototypes if the compiler understands them.
20834
20835 * NEWS: Document 1.26 highlights.
20836
20837 * Makefile.am: Require Automake 1.3 or later.
20838
20839 * acconfig.h:
20840 Use prototypes if the compiler understands them.
20841
208421998-12-29 Jesse Thilo <jthilo@gnu.org>
20843
20844 * src/version.c:
20845 Use VERSION symbol from automake for version number.
20846
208471998-12-29 Jesse Thilo <jthilo@gnu.org>
20848
20849 * acconfig.h, configure.in, version.cin:
20850 Use VERSION symbol from automake for version number.
20851
208521998-11-28 Jesse Thilo <jthilo@gnu.org>
20853
20854 * Makefile.am:
20855 Distribute original version of simple parser (bison.s1), not built
20856 version (bison.simple).
20857
208581998-11-28 Jesse Thilo <jthilo@gnu.org>
20859
20860 * doc/bison.texinfo: Add info dir entry.
20861
20862 * doc/bison.texinfo:
20863 Let automake put version number into documentation.
20864
208651998-11-26 Jesse Thilo <jthilo@gnu.org>
20866
20867 * src/bison.cld, src/build.com, src/vmshlp.mar:
20868 Add non-RCS files from /gd/gnu/bison.
20869
208701998-11-26 Jesse Thilo <jthilo@gnu.org>
20871
20872 * doc/bison.1:
20873 Document the BISON_HAIRY and BISON_SIMPLE variables.
20874
208751998-11-25 Jesse Thilo <jthilo@gnu.org>
20876
20877 * src/version.c: Build version.c automatically.
20878
20879 * src/reader.c:
20880 Fix token numbering (used to start at 258, not 257).
20881
20882 * src/system.h: Include config.h.
20883
20884 * src/getargs.c: Update bug report address.
20885
20886 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
20887 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
20888
208891998-11-25 Jesse Thilo <jthilo@gnu.org>
20890
20891 * Makefile.am:
20892 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
20893
20894 * configure.in, version.cin:
20895 Build version.c automatically.
20896
20897 * AUTHORS: Add AUTHORS file.
20898
20899 * README: Update bug report address.
20900
20901 * bison.simple:
20902 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
20903
20904 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
20905 Add automake stuff.
20906
209071998-11-25 Jesse Thilo <jthilo@gnu.org>
20908
20909 * doc/bison.texinfo: Clean up some formatting.
20910
209111998-05-05 Richard Stallman <rms@gnu.org>
20912
20913 * doc/bison.texinfo:
20914 Explain better why to make a pure parser.
20915
209161998-01-05 Richard Stallman <rms@gnu.org>
20917
20918 * src/files.c (openfiles):
20919 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
20920 find a temporary directory, if possible. Do not unlink files while
20921 they are open.
20922
209231997-08-25 Richard Stallman <rms@gnu.org>
20924
20925 * src/reader.c (stack_offset;):
20926 Change some warni to warns.
20927
20928 * src/lex.c (literalchar): Use warns, not warni.
20929
209301997-06-28 Richard Stallman <rms@gnu.org>
20931
20932 * src/bison.s1: Add a Bison version comment.
20933
20934 * src/main.c (fatal, warn, berror):
20935 Use program_name.
20936
209371997-06-28 Richard Stallman <rms@gnu.org>
20938
20939 * Makefile.in (bison_version): New variable.
20940 (dist): Use that variable.
20941 (bison.s1): Substitute the Bison version into bison.simple.
20942
20943 * bison.simple: Add a Bison version comment.
20944
209451997-06-18 Richard Stallman <rms@gnu.org>
20946
20947 * src/main.c (fatal, warn, berror):
20948 Make error messages standard.
20949 (toomany): Improve error message text.
20950
20951 * 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:
20952 new.h renamed to alloc.h.
20953
209541997-06-18 Richard Stallman <rms@gnu.org>
20955
20956 * Makefile.in: new.h renamed to alloc.h.
20957
209581997-05-24 Richard Stallman <rms@gnu.org>
20959
20960 * src/lex.c (literalchar):
20961 Fix the code for escaping \, " and '.
20962
20963 (lex): Avoid trouble when there are many chars
20964 to discard in a char literal with just several chars in it.
20965
209661997-05-17 Richard Stallman <rms@gnu.org>
20967
20968 * src/bison.s1:
20969 Use malloc, if using alloca is troublesome.
20970 (YYSTACK_USE_ALLOCA): New flag macro.
20971 Define it for some systems and compilers.
20972 (YYSTACK_ALLOC): New macro.
20973 (yyparse): Use YYSTACK_ALLOC to allocate stack.
20974 If it was malloc'd, free it.
20975
209761997-05-17 Richard Stallman <rms@gnu.org>
20977
20978 * bison.simple:
20979 Use malloc, if using alloca is troublesome.
20980 (YYSTACK_USE_ALLOCA): New flag macro.
20981 Define it for some systems and compilers.
20982 (YYSTACK_ALLOC): New macro.
20983 (yyparse): Use YYSTACK_ALLOC to allocate stack.
20984 If it was malloc'd, free it.
20985
209861997-04-23 Richard Stallman <rms@gnu.org>
20987
20988 * src/bison.s1:
20989 (alloca) [__hpux]: Always define as __builtin_alloca.
20990
209911997-04-23 Richard Stallman <rms@gnu.org>
20992
20993 * bison.simple:
20994 (alloca) [__hpux]: Always define as __builtin_alloca.
20995
209961997-04-22 Richard Stallman <rms@gnu.org>
20997
20998 * src/bison.s1:
20999 [__hpux]: Include alloca.h (right for HPUX 10)
21000 instead of declaring alloca (right for HPUX 9).
21001
21002 * src/bison.s1 (__yy_memcpy):
21003 Declare arg `count' as unsigned int.
21004 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21005
210061997-04-22 Richard Stallman <rms@gnu.org>
21007
21008 * bison.simple:
21009 [__hpux]: Include alloca.h (right for HPUX 10)
21010 instead of declaring alloca (right for HPUX 9).
21011
21012 * bison.simple (__yy_memcpy):
21013 Declare arg `count' as unsigned int.
21014 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21015
210161997-01-03 Richard Stallman <rms@gnu.org>
21017
21018 * src/allocate.c: [__STDC__ or _MSC_VER]:
21019 Declare calloc and realloc to return void *.
21020
210211997-01-02 Richard Stallman <rms@gnu.org>
21022
21023 * src/system.h:
21024 [_MSC_VER]: Include stdlib.h and process.h.
21025 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
21026
21027 * src/main.c (main): Return FAILURE as a value.
21028 (printable_version): Declare arg as int, not char.
21029
210301997-01-02 Richard Stallman <rms@gnu.org>
21031
21032 * Makefile.in (dist):
21033 Explicitly check for symlinks, and copy them.
21034
210351996-12-19 Richard Stallman <rms@gnu.org>
21036
21037 * src/files.c:
21038 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
21039
210401996-12-18 Paul Eggert <eggert@gnu.org>
21041
21042 * src/bison.s1 (yyparse):
21043 If __GNUC__ and YYPARSE_PARAM are both defined,
21044 declare yyparse to have a void * argument.
21045
210461996-12-18 Paul Eggert <eggert@gnu.org>
21047
21048 * bison.simple (yyparse):
21049 If __GNUC__ and YYPARSE_PARAM are both defined,
21050 declare yyparse to have a void * argument.
21051
210521996-12-17 Richard Stallman <rms@gnu.org>
21053
21054 * src/reduce.c (nbits): Add some casts.
21055
210561996-08-12 Richard Stallman <rms@gnu.org>
21057
21058 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
21059
210601996-08-12 Richard Stallman <rms@gnu.org>
21061
21062 * bison.simple: Test _MSDOS as well as _MSDOS_.
21063
210641996-07-31 Richard Stallman <rms@gnu.org>
21065
21066 * src/bison.s1:
21067 [__sun && __i386]: Include alloca.h.
21068
210691996-07-31 Richard Stallman <rms@gnu.org>
21070
21071 * bison.simple:
21072 [__sun && __i386]: Include alloca.h.
21073
210741996-07-30 Richard Stallman <rms@gnu.org>
21075
21076 * src/bison.s1: Comment change.
21077
21078 * src/bison.s1: Test _MSDOS_, not MSDOS.
21079
210801996-07-30 Richard Stallman <rms@gnu.org>
21081
21082 * bison.simple: Comment change.
21083
21084 * bison.simple: Test _MSDOS_, not MSDOS.
21085
210861996-06-01 Richard Stallman <rms@gnu.org>
21087
21088 * 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:
21089 Insert `_' macro around many string constants.
21090
21091 * src/main.c:
21092 Insert `_' macro around many string constants.
21093
21094 (main): Call setlocale, bindtextdomain and textdomain.
21095
21096 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
21097 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
21098 [ENABLE_NLS]: Include libintl.h.
21099 [ENABLE_NLS] (gettext): Define.
21100 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
21101 (N_, PACKAGE, LOCALEDIR): New macros.
21102
211031996-06-01 Richard Stallman <rms@gnu.org>
21104
21105 * POTFILES.in: New file.
21106
21107 * Makefile.in (allocate.o):
21108 Define target explicitly.
21109
21110 * Makefile.in (CFLAGS): Set to @CFLAGS@.
21111 (LDFLAGS): Set to @LDFLAGS@.
21112 (configure): Run autoconf only if preceding `cd' succeeds.
21113 (bison.s1): Redirect output to temporary file then move the
21114 temporary to the target, rather than redirecting directly to bison.s1.
21115 (clean): Remove config.status and config.log.
21116 (distclean): Don't remove config.status here.
21117
211181996-05-12 Richard Stallman <rms@gnu.org>
21119
21120 * src/bison.s1:
21121 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21122
211231996-05-12 Richard Stallman <rms@gnu.org>
21124
21125 * bison.simple:
21126 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21127
211281996-05-11 Richard Stallman <rms@gnu.org>
21129
21130 * src/bison.s1 (__yy_memcpy):
21131 Really reorder the args, as was supposedly done on Feb 14 1995.
21132 (yyparse): Calls changed accordingly.
21133
211341996-05-11 Richard Stallman <rms@gnu.org>
21135
21136 * Makefile.in (dist): Don't use $(srcdir).
21137
21138 * bison.simple (__yy_memcpy):
21139 Really reorder the args, as was supposedly done on Feb 14 1995.
21140 (yyparse): Calls changed accordingly.
21141
211421996-01-27 Richard Stallman <rms@gnu.org>
21143
21144 * src/output.c (output_rule_data):
21145 Test YYERROR_VERBOSE in the conditional
21146 around the definition of ttyname.
21147
211481995-12-29 Richard Stallman <rms@gnu.org>
21149
21150 * src/bison.s1:
21151 Fix line numbers in #line commands.
21152
211531995-12-29 Richard Stallman <rms@gnu.org>
21154
21155 * bison.simple:
21156 Fix line numbers in #line commands.
21157
211581995-12-27 Richard Stallman <rms@gnu.org>
21159
21160 * src/bison.s1 (YYPARSE_PARAM_DECL):
21161 In C++, make it always null.
21162 (YYPARSE_PARAM_ARG): New macro.
21163 (yyparse): Use YYPARSE_PARAM_ARG.
21164
211651995-12-27 Richard Stallman <rms@gnu.org>
21166
21167 * bison.simple (YYPARSE_PARAM_DECL):
21168 In C++, make it always null.
21169 (YYPARSE_PARAM_ARG): New macro.
21170 (yyparse): Use YYPARSE_PARAM_ARG.
21171
211721995-11-29 Richard Stallman <rms@gnu.org>
21173
21174 * doc/bison.texinfo:
21175 Describe literal string tokens, %raw, %no_lines, %token_table.
21176
211771995-11-29 Daniel Hagerty <hag@gnu.org>
21178
21179 * doc/bison.texinfo: Fixed update date
21180
211811995-10-16 Richard Stallman <rms@gnu.org>
21182
21183 * src/version.c: Version 1.25.
21184
211851995-10-16 Richard Stallman <rms@gnu.org>
21186
21187 * NEWS: *** empty log message ***
21188
211891995-10-16 Richard Stallman <rms@gnu.org>
21190
21191 * doc/bison.1, doc/bison.rnh:
21192 Add new options.
21193
211941995-10-15 Richard Stallman <rms@gnu.org>
21195
21196 * src/vmsgetargs.c, src/getargs.c:
21197 Added -n, -k, and -raw switches.
21198 (noparserflag, toknumflag, rawtoknumflag): New variables.
21199
21200 * src/symtab.h (SALIAS):
21201 New #define for adding aliases to %token.
21202 (struct bucket): Added `alias' field.
21203
21204 * src/reduce.c (reduce_grammar):
21205 Revise error message.
21206 (print_notices): Remove final `.' from error message.
21207
21208 * src/reader.c (reader_output_yylsp):
21209 New function.
21210 (readgram): Use `#if 0' around code that accepted %command
21211 inside grammar rules: The documentation doesn't allow it,
21212 and it will fail since the %command processors scan for the next %.
21213 (parse_token_decl): Extended the %token
21214 declaration to allow a multi-character symbol as an alias.
21215 (parse_thong_decl): New function.
21216 (read_declarations): Added %thong declarations.
21217 (read_declarations): Handle NOOP to deal with allowing
21218 % declarations as another means to specify the flags.
21219 (readgram): Allow %prec prior to semantics embedded in a rule.
21220 (skip_to_char, read_declarations, copy_definition)
21221 (parse_token_decl, parse_start_decl, parse_type_decl)
21222 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
21223 (get_type_name, copy_guard, copy_action, readgram)
21224 (get_type, packsymbols): Revised most error messages.
21225 Changed `fatal' to `warnxxx' to avoid aborting for error.
21226 Revised and use multiple warnxxx functions to avoid using VARARGS1.
21227 (read_declarations): Improve the error message for
21228 an invalid character. Do not abort.
21229 (read_declarations, copy_guard, copy_action): Use
21230 printable_version to avoid unprintable characters in printed output.
21231 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
21232 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
21233 Allow the type of a non-terminal can be given
21234 more than once, as long as all specifications give the same type.
21235
21236 * src/output.c:
21237 (output_headers, output_trailers, output, output_gram)
21238 (output_rule_data): Implement noparserflag variable.
21239 Implement toknumflag variable.
21240 (output): Call reader_output_yylsp to output LTYPESTR.
21241
21242 * src/main.c (main):
21243 If reader sees an error, don't process the grammar.
21244 (fatals): Updated to not use VARARGS1.
21245 (printable_version, int_to_string, warn, warni, warns, warnss)
21246 (warnsss): New error reporting functions. Avoid abort for error.
21247
21248 * src/lex.h:
21249 Added THONG and NOOP for alias processing.
21250 Added SETOPT for the new code that allows setting options with %flags.
21251
21252 * src/lex.c:
21253 Include getopt.h. Add some extern decls.
21254 (safegetc): New function to deal with EOF gracefully.
21255 (literalchar); new function to deal with reading \ escapes.
21256 (lex): Use literalchar.
21257 (lex): Implemented "..." tokens.
21258 (literalchar, lex, parse_percent_token): Made tokenbuffer
21259 always contain the token. This includes growing the token
21260 buffer while reading an integer.
21261 (parse_percent_token): Replaced if-else statement with percent_table.
21262 (parse_percent_token): Added % declarations as another
21263 way to specify the flags -n, -l, and -r. Also added hooks for
21264 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
21265 major changes to files.c.
21266 (lex) Retain in the incoming stream a character following
21267 an incorrect '/'.
21268 (skip_white_space, lex): Revised most error messages
21269 and changed fatal to warn to avoid aborting.
21270 (percent_table): Added %thong declarations.
21271
21272 * src/gram.h: Comment changes.
21273
21274 * src/files.c (openfiles, open_extra_files, done):
21275 Add faction flag
21276 and actfile file. Handle noparserflag. Both for -n switch.
21277
21278 * src/conflicts.c (resolve_sr_conflict):
21279 Remove use of alloca.
21280
212811995-06-01 Jim Meyering <meyering@gnu.org>
21282
21283 * doc/bison.texinfo: *** empty log message ***
21284
212851995-05-06 Richard Stallman <rms@gnu.org>
21286
21287 * src/bison.s1: Comment change.
21288
212891995-05-06 Richard Stallman <rms@gnu.org>
21290
21291 * bison.simple: Comment change.
21292
212931995-05-03 Richard Stallman <rms@gnu.org>
21294
21295 * src/version.c: Version now 1.24.
21296
21297 * src/bison.s1: Change distribution terms.
21298
21299 * src/version.c: Version now 1.23.
21300
213011995-05-03 Richard Stallman <rms@gnu.org>
21302
21303 * doc/bison.texinfo:
21304 Rewrite "Conditions for Using Bison".
21305 Update version to 1.24.
21306
213071995-05-03 Richard Stallman <rms@gnu.org>
21308
21309 * bison.simple: Change distribution terms.
21310
213111995-02-23 Richard Stallman <rms@gnu.org>
21312
21313 * src/files.c: Test __VMS_POSIX as well as VMS.
21314
213151995-02-14 Jim Meyering <meyering@gnu.org>
21316
21317 * src/bison.s1 (__yy_memcpy):
21318 Renamed from __yy_bcopy to avoid
21319 confusion. Reverse FROM and TO arguments to be consistent with
21320 those of memcpy.
21321
213221995-02-14 Jim Meyering <meyering@gnu.org>
21323
21324 * bison.simple (__yy_memcpy):
21325 Renamed from __yy_bcopy to avoid
21326 confusion. Reverse FROM and TO arguments to be consistent with
21327 those of memcpy.
21328
213291994-11-10 David J. MacKenzie <djm@gnu.org>
21330
21331 * NEWS: reformat
21332
21333 * NEWS: New file.
21334
21335 * Makefile.in (DISTFILES): Include NEWS.
21336
21337 * Makefile.in (DISTFILES):
21338 Include install-sh, not install.sh.
21339
21340 * configure.in: Update to Autoconf v2 macro names.
21341
213421994-10-05 David J. MacKenzie <djm@gnu.org>
21343
21344 * Makefile.in: fix typo
21345
21346 * Makefile.in (prefix, exec_prefix):
21347 Let configure set them.
21348
213491994-09-28 David J. MacKenzie <djm@gnu.org>
21350
21351 * Makefile.in: Set datadir to $(prefix)/share.
21352
213531994-09-15 Richard Stallman <rms@gnu.org>
21354
21355 * src/bison.s1:
21356 Update copyright notice and GPL version.
21357
213581994-09-15 Richard Stallman <rms@gnu.org>
21359
21360 * bison.simple:
21361 Update copyright notice and GPL version.
21362
213631994-07-12 Richard Stallman <rms@gnu.org>
21364
21365 * src/reduce.c, src/reader.c:
21366 entered into RCS
21367
213681994-05-05 David J. MacKenzie <djm@gnu.org>
21369
21370 * Makefile.in: entered into RCS
21371
213721994-03-26 Richard Stallman <rms@gnu.org>
21373
21374 * src/bison.s1: entered into RCS
21375
213761994-03-26 Richard Stallman <rms@gnu.org>
21377
21378 * bison.simple: entered into RCS
21379
213801994-03-25 Richard Stallman <rms@gnu.org>
21381
21382 * src/main.c: entered into RCS
21383
213841994-03-24 Richard Stallman <rms@gnu.org>
21385
21386 * src/conflicts.c: entered into RCS
21387
213881994-01-02 Richard Stallman <rms@gnu.org>
21389
21390 * Makefile.in: *** empty log message ***
21391
213921993-11-21 Richard Stallman <rms@gnu.org>
21393
21394 * src/bison.s1: *** empty log message ***
21395
213961993-11-21 Richard Stallman <rms@gnu.org>
21397
21398 * doc/bison.texinfo: entered into RCS
21399
21400 * doc/bison.texinfo: *** empty log message ***
21401
214021993-11-21 Richard Stallman <rms@gnu.org>
21403
21404 * bison.simple: *** empty log message ***
21405
214061993-10-25 David J. MacKenzie <djm@gnu.org>
21407
21408 * doc/bison.texinfo: *** empty log message ***
21409
214101993-10-19 Richard Stallman <rms@gnu.org>
21411
21412 * src/bison.s1: *** empty log message ***
21413
214141993-10-19 Richard Stallman <rms@gnu.org>
21415
21416 * bison.simple: *** empty log message ***
21417
214181993-10-14 Richard Stallman <rms@gnu.org>
21419
21420 * src/bison.s1: *** empty log message ***
21421
214221993-10-14 Richard Stallman <rms@gnu.org>
21423
21424 * bison.simple: *** empty log message ***
21425
214261993-09-14 David J. MacKenzie <djm@gnu.org>
21427
21428 * doc/bison.texinfo: *** empty log message ***
21429
214301993-09-13 Noah Friedman <friedman@gnu.org>
21431
21432 * Makefile.in: *** empty log message ***
21433
214341993-09-10 Richard Stallman <rms@gnu.org>
21435
21436 * src/conflicts.c: *** empty log message ***
21437
21438 * src/system.h: entered into RCS
21439
214401993-09-10 Richard Stallman <rms@gnu.org>
21441
21442 * doc/bison.1: entered into RCS
21443
214441993-09-06 Noah Friedman <friedman@gnu.org>
21445
21446 * src/version.c: entered into RCS
21447
214481993-09-06 Noah Friedman <friedman@gnu.org>
21449
21450 * Makefile.in: *** empty log message ***
21451
214521993-07-30 David J. MacKenzie <djm@gnu.org>
21453
21454 * Makefile.in: *** empty log message ***
21455
214561993-07-24 Richard Stallman <rms@gnu.org>
21457
21458 * src/bison.s1: *** empty log message ***
21459
214601993-07-24 Richard Stallman <rms@gnu.org>
21461
21462 * bison.simple: *** empty log message ***
21463
214641993-07-08 David J. MacKenzie <djm@gnu.org>
21465
21466 * Makefile.in: *** empty log message ***
21467
214681993-07-04 Richard Stallman <rms@gnu.org>
21469
21470 * src/bison.s1: *** empty log message ***
21471
214721993-07-04 Richard Stallman <rms@gnu.org>
21473
21474 * bison.simple: *** empty log message ***
21475
214761993-06-26 David J. MacKenzie <djm@gnu.org>
21477
21478 * src/getargs.c: entered into RCS
21479
214801993-06-26 David J. MacKenzie <djm@gnu.org>
21481
21482 * doc/bison.texinfo: *** empty log message ***
21483
21484 * doc/bison.1: New file.
21485
214861993-06-25 Richard Stallman <rms@gnu.org>
21487
21488 * src/getargs.c: New file.
21489
214901993-06-16 Richard Stallman <rms@gnu.org>
21491
21492 * src/bison.s1: *** empty log message ***
21493
214941993-06-16 Richard Stallman <rms@gnu.org>
21495
21496 * bison.simple: *** empty log message ***
21497
214981993-06-03 Richard Stallman <rms@gnu.org>
21499
21500 * src/bison.s1: New file.
21501
215021993-06-03 Richard Stallman <rms@gnu.org>
21503
21504 * doc/bison.texinfo: *** empty log message ***
21505
215061993-06-03 Richard Stallman <rms@gnu.org>
21507
21508 * bison.simple: New file.
21509
215101993-05-19 Richard Stallman <rms@gnu.org>
21511
21512 * doc/bison.texinfo: New file.
21513
215141993-05-07 Noah Friedman <friedman@gnu.org>
21515
21516 * Makefile.in: *** empty log message ***
21517
215181993-04-28 Noah Friedman <friedman@gnu.org>
21519
21520 * src/reader.c: *** empty log message ***
21521
215221993-04-23 Noah Friedman <friedman@gnu.org>
21523
21524 * src/alloc.h: entered into RCS
21525
215261993-04-20 David J. MacKenzie <djm@gnu.org>
21527
21528 * src/version.c: *** empty log message ***
21529
21530 * src/files.c, src/allocate.c:
21531 entered into RCS
21532
21533 * src/reader.c: *** empty log message ***
21534
21535 * src/lex.c: entered into RCS
21536
21537 * src/conflicts.c: New file.
21538
21539 * src/symtab.c: entered into RCS
21540
21541 * src/alloc.h: New file.
21542
21543 * src/LR0.c: entered into RCS
21544
215451993-04-18 Noah Friedman <friedman@gnu.org>
21546
21547 * src/reader.c: New file.
21548
21549 * src/version.c: *** empty log message ***
21550
215511993-04-18 Noah Friedman <friedman@gnu.org>
21552
21553 * Makefile.in: *** empty log message ***
21554
215551993-04-17 Noah Friedman <friedman@gnu.org>
21556
21557 * Makefile.in: *** empty log message ***
21558
215591993-04-15 Richard Stallman <rms@gnu.org>
21560
21561 * src/main.c, src/files.c:
21562 New file.
21563
215641993-04-15 Noah Friedman <friedman@gnu.org>
21565
21566 * configure.in: entered into RCS
21567
21568 * configure.in: *** empty log message ***
21569
21570 * configure.in: New file.
21571
215721993-04-14 Richard Stallman <rms@gnu.org>
21573
21574 * Makefile.in: New file.
21575
215761993-04-13 Richard Stallman <rms@gnu.org>
21577
21578 * src/version.c: New file.
21579
215801993-03-25 Richard Stallman <rms@gnu.org>
21581
21582 * src/output.c: entered into RCS
21583
215841992-09-25 Richard Stallman <rms@gnu.org>
21585
21586 * configure.bat: entered into RCS
21587
215881992-06-22 Richard Stallman <rms@gnu.org>
21589
21590 * src/vmsgetargs.c: entered into RCS
21591
215921992-06-22 Richard Stallman <rms@gnu.org>
21593
21594 * doc/bison.rnh: entered into RCS
21595
215961992-04-20 David J. MacKenzie <djm@gnu.org>
21597
21598 * README: entered into RCS
21599
216001992-01-22 Richard Stallman <rms@gnu.org>
21601
21602 * src/machine.h: entered into RCS
21603
216041991-12-21 Richard Stallman <rms@gnu.org>
21605
21606 * src/lalr.c, src/closure.c:
21607 entered into RCS
21608
216091991-12-20 Richard Stallman <rms@gnu.org>
21610
21611 * src/state.h: entered into RCS
21612
216131991-12-18 Richard Stallman <rms@gnu.org>
21614
21615 * src/print.c, src/nullable.c, src/derives.c:
21616 entered into RCS
21617
216181991-11-03 David J. MacKenzie <djm@gnu.org>
21619
21620 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
21621 entered into RCS
21622
216231988-09-09 Richard Stallman <rms@gnu.org>
21624
21625 * src/bison.hairy: entered into RCS
21626
216271987-12-16 Richard Stallman <rms@gnu.org>
21628
21629 * REFERENCES: entered into RCS
dc546b0f 21630
f294a2c2 21631
04098407 21632 -----
f294a2c2 21633
219c26ea
JD
21634 Copyright (C) 1987-1988, 1991-2010 Free Software Foundation,
21635 Inc.
f294a2c2 21636
04098407
PE
21637 Copying and distribution of this file, with or without
21638 modification, are permitted provided the copyright notice and this
21639 notice are preserved.