]> git.saurik.com Git - bison.git/blame - ChangeLog
Prepare for 2.5 release.
[bison.git] / ChangeLog
CommitLineData
44173502
JD
12011-05-01 Joel E. Denny <joeldenny@joeldenny.org>
2
3 Prepare for 2.5 release.
4 * NEWS (2.5_rc1): Rename back to...
5 (2.5): ... this, and unset date.
6
1e811aac
JD
72011-05-01 Joel E. Denny <joeldenny@joeldenny.org>
8
9 Version 2.5_rc1.
10 * NEWS (2.5): Rename to...
11 (2.5_rc1): ... this, and set date.
12
d143e9c3
JD
132011-05-01 Joel E. Denny <joeldenny@joeldenny.org>
14
15 Pacify -DGNULIB_POSIXCHECK.
16 * bootstrap.conf (gnulib_modules): Add all modules suggested by
17 -DGNULIB_POSIXCHECK.
18 * src/files.c (file_name_split)
19 * src/getargs.c (getargs)
20 * src/location.c (boundary_set_from_string)
21 * src/output.c (token_definitions_output, output_skeleton)
22 * src/parse-gram.y (prologue_declaration)
23 * src/scan-gram.l (handle_syncline)
24 * src/symtab.c (symbol_new): Use mbschr and mbsrchr instead of
25 strchr and strrchr. In the cases of command-line options, file
26 names, and thus locations, functionality may be improved. In the
27 case of symbol names, there should be no functional difference as
28 all characters are ASCII, so the intended benefit is just warning
29 suppression.
30
723206df
JD
312011-05-01 Joel E. Denny <joeldenny@joeldenny.org>
32
33 * NEWS (2.5): Fix minor typos.
34
ac3297d5
JD
352011-05-01 Joel E. Denny <joeldenny@joeldenny.org>
36
37 doc: clean up quotation style in NEWS.
38 * NEWS (2.5): For multi-character tokens in example grammar rules,
39 use "token" not 'token'. In English, use a consistent quotation
40 style; we might as well follow the precedent seen in info pages:
41 `quote' not "quote".
42
c9e2da4f
JD
432011-04-16 Joel E. Denny <joeldenny@joeldenny.org>
44
45 tests: pacify gcc 4.6.0's -Wunused-but-set-variable.
46 Reported by Jim Meyering at
47 <http://lists.gnu.org/archive/html/bug-bison/2011-04/msg00002.html>.
48 * tests/actions.at
49 (Default %printer and %destructor for mid-rule values): Define
50 YYLLOC_DEFAULT so that it uses its Rhs argument.
51
55dd3563
JD
522011-04-16 Joel E. Denny <joeldenny@joeldenny.org>
53
54 glr.c: omit yyresolveLocations when locations are disabled.
55 This prevents gcc 4.6.0's -Wunused-but-set-variable from warning
56 about yyresolveLocations's local yyrhsloc. When locations are
57 enabled, there's no such warning because YYLLOC_DEFAULT then uses
58 yyrhsloc. Reported by Jim Meyering at
59 <http://lists.gnu.org/archive/html/bug-bison/2011-04/msg00002.html>.
60 * data/glr.c (yyresolveLocations): Omit definition when locations
61 are disabled.
62 (yyresolveValue): Omit yyresolveLocations invocation when
63 locations are disabled.
64
a898435b
JD
652011-04-16 Joel E. Denny <joeldenny@joeldenny.org>
66
67 gnulib, autoconf: update.
68 * README-hacking (Updating a submodule): Give advice on how to
69 determine the versions of gnulib and autoconf to which we should
70 update.
71 (Release Procedure): Note that submodules should be updated.
72 * bootstrap.conf (gnulib_modules): Rename pipe to spawn-pipe as
73 suggested in updated gnulib NEWS.
74 * gnulib: Choose a stable snapshot according to advice in Bison's
75 README-hacking.
76 * po/POTFILES.in (lib/pipe.c): Rename to...
77 (lib/spawn-pipe.c): ... this.
78 * src/output.c: Update to include spawn-pipe.h.
79 * submodules/autoconf: Update to latest for improvement in m4.m4
80 that excludes M4 with buggy strstr. The only other changes to
81 files that we use are copyright updates.
82
fea2d6b0
JD
832011-04-09 Joel E. Denny <joeldenny@joeldenny.org>
84
85 Fix missing updates to GPLv3.
86 Reported by Tys Lefering at
87 <http://lists.gnu.org/archive/html/bison-patches/2011-04/msg00000.html>.
88 * src/print-xml.c, src/print-xml.h: In these files.
89
6f8bdce2
JD
902011-03-27 Joel E. Denny <joeldenny@joeldenny.org>
91
92 Add -Wconflicts-sr and -Wconflicts-rr.
93 Thus, conflict reports are now affected by -Werror and -Wnone
94 (unless %expect or %expect-rr is specified). Reported by George
95 Neuner at
96 <http://lists.gnu.org/archive/html/bug-bison/2010-08/msg00002.html>.
97 * NEWS (2.5): Document.
98 * doc/bison.texinfo (Bison Options): Document.
99 * src/complain.c, src/complain.h (set_warning_issued): Export
100 function.
101 * src/conflicts.c (conflicts_print): Suppress conflict report
102 based on -Wno-conflicts-sr and -Wno-conflicts-rr, and treat
103 conflicts as errors if -Werror.
104 * src/getargs.c (warnings_flag): Initialize with
105 warnings_conflicts_sr and warnings_conflicts_rr as well.
106 (warnings_args, warnings_types): Add entries for
107 warnings_conflicts_sr and warnings_conflicts_rr.
108 (usage): Update.
109 * src/getargs.h (enum warnings): Add entries for
110 warnings_conflicts_sr and warnings_conflicts_rr.
111 * tests/conflicts.at (-W versus %expect and %expect-rr): New test
112 group.
113 * tests/local.at (AT_BISON_CHECK_NO_XML): Update now that the
114 conflict report can produce a "warnings being treated as errors"
115 message. Also, check that stderr is now fully scrubbed by -Wnone
116 when the exit status is 0.
117
fc7ce997
JD
1182011-03-27 Joel E. Denny <joeldenny@joeldenny.org>
119
120 Pacify maintainer-check-posix.
121 Adding command-line options after the grammar file name is not
122 permitted, so disable checks that do that when
123 maintainer-check-posix is running.
124 * tests/local.at (AT_BISON_CHECK_NO_XML): Don't run the
125 problematic checks when POSIXLY_CORRECT=1. Also, for readability,
126 remove an unnecessary m4_if.
127
8ffd7912
JD
1282011-03-27 Joel E. Denny <joeldenny@joeldenny.org>
129
130 Add -Wother so -Wnone suppresses all warnings.
131 Reported by George Neuner at
132 <http://lists.gnu.org/archive/html/bug-bison/2010-08/msg00002.html>.
133 * NEWS (2.5): Document.
134 * THANKS (George Neuner): Add.
135 * doc/bison.texinfo (Bison Options): Document.
136 * src/complain.c, src/complain.h
137 (warn_at, warn_at_indent, warn): Suppress warning if -Wno-other.
138 (midrule_value_at): New warning function, similar to yacc_at in
139 that it's controlled by its own warning category.
140 * src/getargs.c (warnings_flag): Initialize to warnings_other.
141 (warnings_args, warnings_types): Add entry for warnings_other.
142 (usage): Update.
143 * src/getargs.h (enum warnings): Add entry for warnings_other.
144 * src/gram.c (grammar_rules_useless_report): If -Wno-other, then
145 don't print useless rules.
146 * src/reader.c (symbol_should_be_used): Rather than adjusting the
147 return value based on whether midrule value warnings are enabled,
148 accept a new parameter for telling the caller whether true is
149 being returned for a potential midrule warning.
150 (grammar_rule_check): Use midrule_value_at for midrule value
151 warnings, and continue to use warn_at for all other warnings. Let
152 them check whether the warnings are enabled.
153 * tests/local.at (AT_BISON_CHECK): Update documentation.
154 (AT_BISON_CHECK_NO_XML): Check that -Wnone and --warnings=none
155 disable all warnings exercised in the test suite.
156
dab96632
JD
1572011-03-27 Joel E. Denny <joeldenny@joeldenny.org>
158
159 Don't let -Wnone disable -Werror.
160 Discussed at
161 <http://lists.gnu.org/archive/html/bison-patches/2010-08/msg00009.html>.
162 * NEWS (2.5): Document.
163 * src/getargs.c (flags_argmatch): Accept a new argument that
164 specifies what flags "all" and thus "none" affect.
165 (FLAGS_ARGMATCH): Update flags_argmatch invocation.
166 * tests/input.at (-Werror is not affected by -Wnone and -Wall):
167 New test group.
168
248dba53
JD
1692011-03-27 Joel E. Denny <joeldenny@joeldenny.org>
170
171 * NEWS (2.5): Document fix for -Wno-CATEGORY.
172
20cc7149
DJ
1732008-11-21 Di-an Jan <dianj@freeshell.org>
174
175 Implement no-XXX arguments for --warnings, --report, --trace.
176 * src/getargs.c (flags_argmatch): Handles no-XXX.
177 Fix typo in doxygen comment.
178
56706c61
JD
1792011-03-20 Joel E. Denny <joeldenny@joeldenny.org>
180
181 doc: fix confusing citation of LAC publication.
182 Suggested by Akim Demaille.
183 * doc/bison.texinfo (LAC): Here.
184
a6e5a280
JD
1852011-03-20 Joel E. Denny <joeldenny@joeldenny.org>
186
187 lr.default-reductions: rename "full" value to "most".
188 Unlike "consistent" and "accepting", "full" doesn't answer the
189 question of "which states".
190 * doc/bison.texinfo (%define Summary): Update.
191 (Default Reductions): Update.
192 * src/print.c (print_reductions): Update.
193 * src/reader.c (prepare_percent_define_front_end_variables):
194 Update.
195 * src/tables.c (action_row): Update.
196 * tests/input.at (%define enum variables): Update.
197 * tests/reduce.at (%define lr.default-reductions): Update.
198
49e8e901
JD
1992011-03-13 Joel E. Denny <joeldenny@joeldenny.org>
200
201 * src/parse-gram.c, src/parse-gram.h: Regenerate.
202
8f462efe
AD
2032011-03-09 Akim Demaille <akim@lrde.epita.fr>
204
205 named references: fix double free.
206 In `rhs[name]: "a" | "b"', do not free "name" twice.
207 Reported by Tys Lefering.
208 <http://lists.gnu.org/archive/html/bug-bison/2010-06/msg00002.html>
209 * src/named-ref.h, src/named-ref.c (named_ref_copy): New.
210 * src/parse-gram.y (current_lhs): Rename as...
211 (current_lhs_symbol): this.
212 (current_lhs): New function. Use it to free the current lhs
213 named reference.
214 * src/reader.c: Bind lhs to a copy of the current named reference.
215 * src/symlist.c: Rely on free (0) being valid.
216 * tests/named-refs.at: Test this.
217
686e83e3
AD
2182011-03-09 Akim Demaille <akim@lrde.epita.fr>
219
220 tests: style changes.
221 * tests/named-refs.at (Redundant words in LHS brackets)
222 (Unresolved references): here.
223
f0e2c228
JD
2242011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
225
226 java: fix parser tracing bug.
227 * NEWS (2.5): Document.
228 * data/lalr1.java (YYParser::YYStack::print): Don't skip top
229 element.
230
4c2a6e42
JD
2312011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
232
233 java: finish fixing parser stack popping bug.
234 * NEWS (2.5): Document.
235 * data/lalr1.java (YYParser::YYStack::pop): Fix off-by-one error
236 in clearing the location stack. Also fix pop function that
237 accepts no arguments.
238
6f75992b
AB
2392011-03-06 Angelo Borsotti <angelo.borsotti@gmail.com> (tiny change)
240
241 java: fix parser stack popping bug.
242 Reported at
243 <http://lists.gnu.org/archive/html/bug-bison/2011-02/msg00005.html>.
244 * THANKS (Angelo Borsotti): Add.
245 * data/lalr1.java (YYParser::YYStack::pop): Fix off-by-one error
246 in clearing the value stack. Previously, the top element of the
247 stack wasn't cleared and so the value was not garbage collected.
248
121c4982
JD
2492011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
250
251 doc: cite publication for LAC.
252 * doc/bison.texinfo (LAC): Here.
253
5da0355a
JD
2542011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
255
256 doc: clean up terminology for mysterious conflicts.
257 * doc/bison.texinfo (Mystery Conflicts): Rename node to...
258 (Mysterious Conflicts): ... this, which is already the section
259 title and the name used in the index. Update all cross-references
260 to this node. Also, don't imply that R/R conflicts are the only
261 kind of mysterious conflict.
262
d815ec4a
JD
2632011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
264
265 lr.default-reductions: rename "all" value to "full".
266 States that shift the error token do not have default reductions,
267 and GLR disables some default reductions, so "all" was a misnomer.
268 * doc/bison.texinfo (%define Summary): Update.
269 (Default Reductions): Update.
270 * src/print.c (print_reductions): Update.
271 * src/reader.c (prepare_percent_define_front_end_variables):
272 Update.
273 * src/tables.c (action_row): Update.
274 * tests/input.at (%define enum variables): Update.
275 * tests/reduce.at (%define lr.default-reductions): Update.
276
6f04ee6c
JD
2772011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
278
279 doc: create a new Tuning LR section in the manual.
280 And clean up all other documentation of the features described
281 there.
282 * NEWS (2.5): Tweak wording of lr.type and parse.lac entries a
283 bit, update the cross-references to the manual, and point out that
284 LAC has caveats. Don't be so adamant that IELR+LAC=canonical LR.
285 That is, as the referenced section in the manual documents, LAC
286 does not fix infinite parsing loops on syntax errors.
287 * doc/bison.texinfo: Consistently drop the "(1)" suffix from LALR,
288 IELR, and LR in @cindex.
289 (%define Summary): Condense the entries for lr.default-reductions,
290 lr.keep-unreachable-states, lr.type, and parse.lac into brief
291 summaries, and cross-reference the appropriate subsections of
292 Tuning LR. For parse.lac, mention that it's only implemented for
293 deterministic parsers in C.
294 (Error Reporting): When mentioning %error-verbose, mention LAC,
295 and add cross-reference to the LAC section.
296 (Tuning LR): New section with an extended version of the
297 documentation removed from %define Summary. Change all
298 cross-references in the manual to point here instead of there.
299 (Calc++ Parser): When mentioning %error-verbose, mention LAC, and
300 add cross-reference to the LAC section.
301 (Table of Symbols): In %error-verbose and YYERROR_VERBOSE entries,
302 add cross-references to Error Reporting.
303 (Glossary): Capitalize entry titles consistently. Add definitions
304 for "defaulted state" and "unreachable state". Expand IELR
305 acronym in IELR's entry.
306
71caec06
JD
3072011-02-20 Joel E. Denny <joeldenny@joeldenny.org>
308
309 doc: add bibliography to manual.
310 * doc/bison.texinfo (Mystery Conflicts): Cross-reference
311 bibliography instead of citing publications directly.
312 (Generalized LR Parsing): Likewise.
313 (Bibliography): New section. Not all entries are cross-referenced
314 yet, but that will come in future patches.
315
77768165
JD
3162011-02-19 Joel E. Denny <joeldenny@joeldenny.org>
317
318 java: test and document previous bug fix.
319 * NEWS (2.5): Document it.
320 * tests/java.at (_AT_DATA_JAVA_CALC_Y): To one of the yyerror
321 invocations, pass a location that spans multiple tokens. Change
322 yyerror to report all of a location rather than just the begin
323 position. Extend yylex and Position to count tokens on a line.
324 Remove getHashCode as it's unused. Update all expected output.
325
8db68289
BK
3262011-02-19 Bernd Kiefer <kiefer@dfki.de> (tiny change)
327
328 java: fix location handling bug.
329 Reported at
330 <http://lists.gnu.org/archive/html/bison-patches/2011-02/msg00005.html>.
331 * data/lalr1.java (YYParser::yylloc): For non-empty RHS, fix
332 reversed access to location stack.
333 * THANKS (Bernd Kiefer): Add.
334
f3103c5b
AD
3352010-05-11 Akim Demaille <demaille@gostai.com>
336
337 doc: please Emacs.
338 * doc/bison.texinfo (Local Variables): Move this after the
339 LocalWords, since the latter are looked for in the whole document,
340 while the former are looked for only at its end.
341 Require american spell checking.
342
406dec82
JD
3432011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
344
345 doc: clean up new subsections in manual.
346 * doc/bison.texinfo (%define Summary): Reword so it reads well as
347 a separate section. For example, add an intro, and move most of
348 the text outside of the @deffn so it is not indented so far.
349 (%code Summary): Likewise.
350 (Table of Symbols): Reword %code entry to match the %code entry in
351 Decl Summary.
352
2f4518a1
JD
3532011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
354
355 doc: finish splitting apart the manual's Decl Summary section.
356 Suggested by Akim Demaille at
357 <http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00013.html>.
358 * doc/bison.texinfo (Decl Summary): Extract most of the %define
359 entry into...
360 (%define Summary): ... this new subsection, and update all
361 cross-references. For readability of the patches, rewriting of
362 the text so it makes sense as a separate subsection will come in a
363 later patch. Moreover, the majority of the text describing the
364 various new LR features should likely move to another new section
365 somewhere.
366
8e6f2266
JD
3672011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
368
369 doc: begin to split apart the manual's Decl Summary section.
370 Discussed in thread starting at
371 <http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00013.html>.
372 * doc/bison.texinfo (Decl Summary): Extract most of the %code
373 entry into...
374 (%code Summary): ... this new subsection, and update all
375 cross-references. For readability of the patches, rewriting of
376 the text so it makes sense as a separate subsection will come in a
377 later patch.
378
9913d6e4
JD
3792011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
380
381 doc: clean up naming of various Bison files.
382 The Bison manual's names for various files associated with a Bison
383 parser has devolved into inconsistency. This patch makes the
384 naming consistent for the most important files. First, it chooses
385 "grammar file" over "input file". The former appears to be more
386 traditional in the Bison manual, and Bison has other input
387 files (skeletons). Second, it chooses "parser implementation
388 file" over names like "parser file", "parser source file", "parser
389 source code file", and "parser output file". The new name makes
390 it clearer where Bison generates the main parser implementation,
391 and it is easily distinguishable from "parser header file".
392 * doc/bison.texinfo: Implement throughout.
393
840341d6
JD
3942011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
395
396 doc: give credit to more of Bison's developers.
397 * doc/bison.texinfo (Introduction): Don't imply that only Robert
398 Corbett, Richard Stallman, and Wilfred Hansen have contributed to
399 Bison. However, I don't have time to write a full history, so
400 just point readers to THANKS and ChangeLog.
401
d89e48b3
JD
4022011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
403
404 doc: document experimental features better.
405 * doc/bison.texinfo (Introduction): Say that IELR(1) and canonical
406 LR(1) are experimental. Mention Java. Normally experimental
407 features probably shouldn't be mentioned in the introduction.
408 However, if Bison's limitations to LALR(1), C, and C++ are so
409 important that they should be mentioned here, then it's important
410 to point out that Bison is beginning to escape those limitations.
411 Moreover, these particular experimental features have very little
412 chance of being removed.
413 * src/getargs.c (usage): Say that IELR(1) and canonical LR(1) are
414 experimental.
415
eb8c66bb
JD
4162011-01-29 Joel E. Denny <joeldenny@joeldenny.org>
417
418 Do not allow identifiers that start with a dash.
419 This cleans up our previous fixes for a bug whereby Bison
420 discarded `.field' in `$-1.field'. The previous fixes were less
421 restrictive about where a dash could appear in an identifier, but
422 the restrictions were hard to explain. That bug was reported and
423 this final fix was originally suggested by Paul Hilfinger. This
424 also fixes a remaining bug reported by Paul Eggert whereby Bison
425 parses `%token ID -123' as `%token ID - 123' and handles `-' as an
426 identifier. Now, `-' cannot be an identifier. Discussed in
427 threads beginning at
428 <http://lists.gnu.org/archive/html/bug-bison/2011-01/msg00000.html>,
429 <http://lists.gnu.org/archive/html/bug-bison/2011-01/msg00004.html>.
430 * NEWS (2.5): Update entry describing the dash extension to
431 grammar symbol names. Also, move that entry before the named
432 references entry because the latter mentions the former.
433 * doc/bison.texinfo (Symbol): Update documentation for symbol
434 names. As suggested by Paul Eggert, mention the effect of periods
435 and dashes on named references.
436 (Decl Summary): Update documentation for unquoted %define values,
437 which, as a side effect, can no longer start with dashes either.
438 * src/scan-code.l (id): Implement.
439 * src/scan-gram.l (id): Implement.
440 * tests/actions.at (Exotic Dollars): Extend test group to exercise
441 bug reported by Paul Hilfinger.
442 * tests/input.at (Symbols): Update test group, and extend to
443 exercise bug reported by Paul Eggert.
444 * tests/named-refs.at (Stray symbols in brackets): Update test
445 group.
446 ($ or @ followed by . or -): Likewise.
447 * tests/regression.at (Invalid inputs): Likewise.
448
448dc38b
JD
4492011-01-24 Joel E. Denny <joeldenny@joeldenny.org>
450
451 * data/yacc.c: Fix last apostrophe warning from xgettext.
452
7e5ef706
PE
4532011-01-09 Paul Eggert <eggert@cs.ucla.edu>
454
455 Fix minor problems encountered by a fresh bootstrap.
456 * data/glr.c, data/yacc.c: Do not use apostrophes in '#' comments,
457 as they confuse xgettext, which tries to parse them as C character
458 constants in a preprocessor directive.
459 * data/yacc.c (yy_lac): Don't use printf %d format on *yyesp, as
460 that expression might not promote to int on some platforms.
461 * src/parse-gram.c, src/parse-gram.h: Regenerate.
462
8cbbf178
JD
4632011-01-09 Joel E. Denny <joeldenny@joeldenny.org>
464
465 Improve error messages for `$' or `@' followed by `.' or `-'.
466 Previously, for this special case of an invalid reference, the
467 usual "symbol not found in production:" was printed. However,
468 because the symbol name was parsed as the empty string, that
469 message was followed immediately by a newline instead of a symbol
470 name. In reality, this is a syntax error, so the reference is
471 invalid regardless of the symbols actually appearing in the
472 production. Discussed at
473 <http://lists.gnu.org/archive/html/bison-patches/2011-01/msg00012.html>.
474 * src/scan-code.l (parse_ref): Report the above case as a syntax
475 error. Other than that, continue to handle this case like any
476 other invalid reference that Bison manages to parse because
477 "possibly meant" messages can still be helpful to the user.
478 * tests/named-refs.at ($ or @ followed by . or -): New test group.
479
35430378
JD
4802011-01-08 Joel E. Denny <joeldenny@joeldenny.org>
481
482 doc: don't use @acronym.
483 Lately, many GNU packages are dropping it. See
484 <http://lists.gnu.org/archive/html/bison-patches/2011-01/msg00003.html>.
485 * doc/bison.texinfo: Remove all uses.
486
d236ad94
AR
4872011-01-05 Alex Rozenman <rozenman@gmail.com>
488
489 Do not allow identifiers that start with a negative number.
490 Reported by Paul Hilfinger as a side effect of named references
491 support at
492 <http://lists.gnu.org/archive/html/bug-bison/2011-01/msg00000.html>.
493 Suggested by Paul Eggert.
494 * src/scan-code.l ({letter}, {id}): Adjust lexical definitions.
495 * src/scan-gram.l ({letter}, {id}): Likewise.
496
9a4292e5
JD
4972011-01-03 Joel E. Denny <joeldenny@joeldenny.org>
498
499 * ChangeLog (2011-01-02): improve description.
500
17300e83
JD
5012011-01-03 Joel E. Denny <joeldenny@joeldenny.org>
502
503 maint: don't update copyright years in bootstrap.
504 * .x-update-copyright: Add entry for bootstrap.
505 * bootstrap: Remove 2011 from copyright years. The bootstrap
506 version we're currently using comes from an older version of
507 gnulib.
508 * bootstrap.conf (bootstrap_sync): Add comments explaining this
509 issue.
510
ea0a7676
JD
5112011-01-02 Joel E. Denny <joeldenny@joeldenny.org>
512
513 maint: run "make update-copyright".
514
f52e1e5e
JD
5152011-01-02 Joel E. Denny <joeldenny@joeldenny.org>
516
9a4292e5 517 maint: prepare to use year ranges in copyright notices.
f52e1e5e 518 * README (Copyright statements): New section explaining the range
9a4292e5
JD
519 notation. The GNU maintainers document requires this explanation:
520 <http://www.gnu.org/prep/maintain/maintain.html#Copyright-Notices>.
521 I copied our explanation from coreutils.
f52e1e5e
JD
522 * build-aux/update-b4-copyright: Revert 2010-06-17 changes that
523 disabled Bison's automated use of ranges.
524 * cfg.mk (update-copyright-env): Likewise.
525
210c1eef
JD
5262011-01-02 Joel E. Denny <joeldenny@joeldenny.org>
527
528 Correct my email address.
529 * ChangeLog: In all recent entries.
530 * THANKS (Joel E. Denny): Here.
531
5322010-12-19 Joel E. Denny <joeldenny@joeldenny.org>
6ee881f6
JD
533
534 doc: cleanup.
535 * NEWS (2.5): Try to sort entries according to how interesting
536 users might find them.
537
210c1eef 5382010-12-19 Joel E. Denny <joeldenny@joeldenny.org>
3b1977ea
JD
539
540 doc: cleanup.
541 * NEWS (2.5): Make some minor improvements to wording, and format
542 entries more consistently.
543 * doc/bison.texinfo (Language and Grammar): Point out that IELR
544 and canonical LR are experimental features.
545 (Decl Summary): In list of %define variables, make wording more
546 consistent. Improve discussion of using LALR for GLR.
547
210c1eef 5482010-12-19 Joel E. Denny <joeldenny@joeldenny.org>
4c38b19e
JD
549
550 parse.lac: document.
551 * NEWS (2.5): Add entry for LAC, and mention LAC in entry for
552 other corrections to verbose syntax error messages.
553 * doc/bison.texinfo (Decl Summary): Rewrite entries for
554 lr.default-reductions and lr.type to be clearer, to mention
555 %nonassoc's effect on canonical LR, and to mention LAC. Add entry
556 for parse.lac.
557 (Glossary): Add entry for LAC.
558
210c1eef 5592010-12-11 Joel E. Denny <joeldenny@joeldenny.org>
723fe7d1
JD
560
561 parse.lac: implement exploratory stack reallocations.
562 * data/yacc.c: Rename %define variable parse.lac.es-capacity to
563 parse.lac.es-capacity-initial. Accept parse.lac.memory-trace
564 with values of "failures" (default) or "full".
565 (b4_declare_parser_state_variables): Add yyesa, yyes, and
566 yyes_capacity variables.
567 (YYSTACK_USE_ALLOCA): Ignore it if LAC requested.
568 (YYSTACK_ALLOC, YYSTACK_FREE, YYSTACK_ALLOC_MAXIMUM): Define if
569 LAC requested.
570 (YYCOPY_NEEDED): New cpp macro.
571 (YYCOPY): Define if LAC requested.
572 (yy_lac_stack_realloc): New function implementing stack
573 reallocations. Use YYMAXDEPTH for maximum stack size given that
574 the stack should never need to grow larger than the main state
575 stack needs to grow without LAC.
576 (YY_LAC_ESTABLISH): Update yy_lac invocation.
577 (yy_lac): Add arguments for exploratory stack memory data
578 recorded in the main parser. Invoke yy_lac_stack_realloc when
579 reallocation is necessary.
580 (yysyntax_error): Add the same new arguments and pass them to
581 yy_lac.
582 (yypstate_delete): Free yyes if necessary.
583 (yyesa, yyes, yyes_capacity): #define these to yypstate members
584 in the case of push parsing.
585 (yyparse, yypush_parse): Initialize yyes and yyes_capacity.
586 Update yysyntax_error invocations. At yyreturn, free yyes if
587 necessary.
588 * src/parse-gram.y: %define parse.lac full.
589 * tests/input.at (LAC: errors for %define): Extend for
590 parse.lac-memory-trace.
591 * tests/regression.at (LAC: Exploratory stack): Extend to check
592 that stack reallocs happen when expected.
593 (LAC: Memory exhaustion): Update to use YYMAXDEPTH and
594 parse.lac.es-capacity-initial.
595
210c1eef 5962010-12-11 Joel E. Denny <joeldenny@joeldenny.org>
ea13bea8
JD
597
598 parse.lac: implement as %define variable.
599 LAC = lookahead correction. See discussion at
600 <http://lists.gnu.org/archive/html/bison-patches/2009-09/msg00034.html>.
601 However, one point there must be corrected: because of %nonassoc,
602 LAC is *not* always redundant for lr.type=canonical-lr.
603 * data/yacc.c: Accept values of "none" (default) or "full" for
604 parse.lac. Accept %define parse.lac.es-capacity to specify
605 capacity of LAC's temporary exploratory stack. It defaults to 20
606 and, for now, will not grow dynamically.
607 (b4_lac_flag, b4_lac_if): New m4 macros. Evaluate as true for
608 parse.lac!=none.
609 (YYBACKUP): Invoke YY_LAC_DISCARD.
610 (YY_LAC_ESTABLISH, YY_LAC_DISCARD): New cpp macros that invoke
611 yy_lac and track when it needs to be invoked
612 (yy_lac): New function that, given the current stack, determines
613 whether a token can eventually be shifted. Return status mimics
614 yyparse return status.
615 (yysyntax_error): Change yystate argument to yyssp so stack top
616 can be passed to yy_lac. If LAC is requested, build expected
617 token list by invoking yy_lac for every token instead of just
618 checking the current state for lookaheads. Return 2 if yy_lac
619 exhausts memory.
620 (yyparse, yypush_parse): Use local variable yy_lac_established and
621 cpp macros YY_LAC_ESTABLISH and YY_LAC_DISCARD to implement LAC.
622 Update yysyntax_error invocation. Add yyexhaustedlab code if LAC
623 is requested.
624 * tests/conflicts.at (%nonassoc and eof): Extend to check the
625 effect of each of -Dlr.type=canonical-lr and -Dparse.lac=full.
626 (%error-verbose and consistent errors): Likewise.
627 (LAC: %nonassoc requires splitting canonical LR states): New test
628 group demonstrating how LAC can fix canonical LR.
629 * tests/input.at (LAC: Errors for %define): New test group.
630 * tests/regression.at (LAC: Exploratory stack): New test group.
631 (LAC: Memory exhaustion): New test group.
632
210c1eef 6332010-11-21 Joel E. Denny <joeldenny@joeldenny.org>
dcd39f1d
JD
634
635 build: use gnulib's new bootstrap_sync option.
636 Now, whenever we update bison's copy of gnulib, bootstrap will
637 update itself the next time it's run.
638 * bootstrap: Copy from latest gnulib for bootstrap_sync support.
639 * bootstrap.conf (bootstrap_sync): Set to true.
640 * gnulib: Update to latest so bootstrap is in sync now.
641
210c1eef 6422010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
3b837882
JD
643
644 yysyntax_error: adjust prior fixes for branch-2.5's lalr1.cc.
645 On master, there is no yychar in lalr1.cc, but there is on
646 branch-2.5, and the prior cherry-pick of "Fix handling of yychar
647 manipulation in user semantic actions" wasn't adjusted for that
648 difference.
649 * data/lalr1.cc (yy::parser::parse): Translate yychar before
650 every use of yytoken, and add comments explaining this approach.
651 * tests/conflicts.at (%error-verbose and consistent errors):
652 Extend to test yychar manipulation with lalr1.cc.
653
210c1eef 6542010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
095a1d11
JD
655
656 yysyntax_error: fix for consistent error with lookahead.
657 * NEWS (2.5): Document.
658 * data/yacc.c (yysyntax_error): In a verbose syntax error
659 message while in a consistent state with a default action (which
660 must be an error action given that yysyntax_error is being
661 invoked), continue to drop the expected token list, but don't
662 drop the unexpected token unless there actually is no lookahead.
663 Moreover, handle that internally instead of returning 1 to tell
664 the caller to do it. With that meaning of 1 gone, renumber
665 return codes more usefully.
666 (yyparse, yypush_parse): Update yysyntax_error usage. Most
667 importantly, set yytoken to YYEMPTY when there's no lookahead.
668 * data/glr.c (yyreportSyntaxError): As in yacc.c, don't drop the
669 unexpected token unless there actually is no lookahead.
670 * data/lalr1.cc (yy::parser::parse): If there's no lookahead,
671 set yytoken to yyempty_ before invoking yysyntax_error_.
672 (yy::parser::yysyntax_error_): Again, don't drop the unexpected
673 token unless there actually is no lookahead.
674 * data/lalr1.java (YYParser::parse): If there's no lookahead,
675 set yytoken to yyempty_ before invoking yysyntax_error.
676 (YYParser::yysyntax_error): Again, don't drop the unexpected
677 token unless there actually is no lookahead.
678 * tests/conflicts.at (%error-verbose and consistent
679 errors): Extend test group to further reveal how the previous
680 use of the simple "syntax error" message was too general. Test
681 yacc.c, glr.c, lalr1.cc, and lalr1.java. No longer an expected
682 failure.
683 * tests/java.at (AT_JAVA_COMPILE, AT_JAVA_PARSER_CHECK): Move
684 to...
685 * tests/local.at: ... here.
686 (_AT_BISON_OPTION_PUSHDEFS): Push AT_SKEL_JAVA_IF definition.
687 (AT_BISON_OPTION_POPDEFS): Pop it.
688 (AT_FULL_COMPILE): Extend to handle Java.
689
210c1eef 6902010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
678094a2
JD
691
692 yysyntax_error: more preparation for readability of next patch.
693 There are no behavioral changes here.
694 * data/glr.c (yyreportSyntaxError): Reorganize.
695 * data/lalr1.cc (yy::parser::yysyntax_error_): Reorganize.
696 * tests/conflicts.at (%error-verbose and consistent errors):
697 Reorganize.
698
210c1eef 6992010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
f953cb20
JD
700
701 yysyntax_error: prepare for readability of next patches.
702 These are purely whitespace changes that result in ugly code
703 but that make the next couple of patches much easier to read.
704 * data/glr.c (yyreportSyntaxError): Reindent.
705 * data/lalr1.cc (yy::parser::yysyntax_error_): Reindent.
706 * data/lalr1.java (YYParser::yysyntax_error): Reindent.
707 * data/yacc.c (yysyntax_error): Reindent.
708
0e0f066b
JD
7092010-10-31 Joel E. Denny <joeldenny@joeldenny.org>
710
711 yysyntax_error: improve invocation readability.
712 * data/yacc.c (yyparse, yypush_parse): For yysyntax_error
713 invocation, get rid of the while loop, which is misleading
714 because there are really at most two iterations.
715
5f1485d8
JD
7162010-10-31 Joel E. Denny <joeldenny@joeldenny.org>
717
718 * ChangeLog: Correct some errors in previous entries.
719
2f3fd8f9
JD
7202010-10-17 Joel E. Denny <joeldenny@joeldenny.org>
721
722 maint: re-anchor all .gitignore entries.
723 * bootstrap: Copy from gnulib's latest for the fix to
724 automatically anchor entries it constructs.
725 * gnulib: Update to latest just so it has the same bootstrap.
726 * .gitignore, build-aux/.gitignore, doc/.gitignore:
727 * lib/.gitignore, m4/.gitignore, po/.gitignore:
728 * runtime-po/.gitignore: Re-anchor all entries.
729
86996fca
PE
7302010-10-08 Paul Eggert <eggert@cs.ucla.edu>
731
ea6046b9
PE
732 Fix portability problem on OpenBSD 4.7.
733
734 Jim Meyering reported this in
735 <http://lists.gnu.org/archive/html/bug-bison/2010-10/msg00007.html>.
736 * data/yacc.c: Use EXIT_SUCCESS as a witness for stdlib.h,
737 not _STDLIB_H. EXIT_SUCCESS has been defined by the standard
738 for quite some time.
739 * src/parse-gram.c, src/parse-gram.h: Regenerate.
740 * tests/regression.at: Tamper with the renamed witness.
741
86996fca
PE
742 Adjust to recent changes to gnulib bootstrap.
743
744 * .cvsignore, build-aux/.cvsignore, doc/.cvsignore, etc/.cvsignore:
745 * examples/calc++/.cvsignore, lib/.cvsignore, m4/.cvsignore:
746 * po/.cvsignore, runtime-po/.cvsignore, src/.cvsignore:
747 * tests/.cvsignore: Remove; I don't use CVS to maintain Bison
748 anymore and don't know of anybody else who does. If someone needs
749 these files, they can resurrect them.
750 * .gitignore, build-aux/.gitignore, doc/.gitignore, lib/.gitignore:
751 * m4/.gitignore, po/.gitignore, runtime-po/.gitignore:
752 Omit leading '/', since bootstrap omits it.
753 Adjust file names to match current contents better.
754 * bootstrap: Sync from gnulib: this contains the new gnulib_mk_hook
755 installed just for us.
756 * bootstrap.conf (excluded_files): Don't exclude codeset.m4,
757 glibc21.m4, inttypes_h.m4, size_max.m4, xsize.m4, as they are now
758 needed somehow. Don't have time to look into why.
759 (gnulib_modules): Change malloc to malloc-gnu. Do we really assume
760 the GNU malloc behavior, where malloc (0) != NULL unless we're
761 out of storage? If not, we can omit malloc-gnu; but for now I left
762 it in to be safe.
763 (vc_ignore): Remove.
764 * README-hacking: Renamed from HACKING, since gnulib bootstrap now
765 uses that convention.
766
7527c744
JD
7672010-08-05 Joel E. Denny <joeldenny@joeldenny.org>
768
769 Version 2.4.3.
770 * NEWS (2.4.3): Set date.
771
d034d520
JD
7722010-08-04 Joel E. Denny <joeldenny@joeldenny.org>
773
774 maint: add gettext version to release announcements.
775 Suggested by Paul Hilfinger at
776 <http://lists.gnu.org/archive/html/bison-patches/2010-07/msg00019.html>
777 <http://lists.gnu.org/archive/html/bison-patches/2010-08/msg00002.html>.
778 * cfg.mk (bootstrap-tools): Add gettext.
779
cf22447c
JD
7802010-08-04 Joel E. Denny <joeldenny@joeldenny.org>
781
782 doc: fix -W and %expect documentation some.
783 * NEWS (2.4.3): Mention that there are documentation fixes.
784 * doc/bison.texinfo (Expect Decl): Make it clear that %expect
785 turns conflicts into errors not warnings.
786 (Shift/Reduce): Likewise.
787 (Bison Options): Don't mention -Wsyntax. It doesn't exist.
788
4631c34f
JD
7892010-08-01 Joel E. Denny <joeldenny@joeldenny.org>
790
791 -Werror: fix for rules useless in parser after conflicts.
792 * NEWS (2.4.3): Document fix.
793 * src/complain.c (error_message): Extend to handle incomplete
794 error messages so warn and warn_at can be used in more cases.
795 * src/gram.c (grammar_rules_useless_report): Use warn_at so that
796 -Werror is always obeyed.
797 * src/reduce.c (reduce_print): Use warn so that the "warnings
798 being treated as errors" message is printed consistently before
799 the first warning message. This makes testing easier.
800 * tests/local.at (AT_BISON_WERROR_MSG): New macro.
801 (AT_BISON_CHECK_NO_XML): Extend to check -Werror and
802 --warnings=error when warnings appear in bison's stderr.
803
3e948170
JD
8042010-07-29 Joel E. Denny <joeldenny@joeldenny.org>
805
806 maint: enable gnits only at stable releases.
807 * configure.ac (AM_INIT_AUTOMAKE): Underscore or dash in a
808 version string should disable gnits. Explain in comments.
809
82df2d6d
JD
8102010-07-28 Joel E. Denny <joeldenny@joeldenny.org>
811
812 i18n: update.
813 * po/POTFILES.in: Add src/graphviz.c.
814
6e0ecb9a
JD
8152010-07-28 Joel E. Denny <joeldenny@joeldenny.org>
816
817 i18n: fix for gnulib.
818 * po/POTFILES.in: Add remaining gnulib files that have
819 translatable strings.
820
83e34842
JD
8212010-07-25 Joel E. Denny <joeldenny@joeldenny.org>
822
823 maint: use announce-gen's new --mail-headers.
824 * HACKING (Announce): Update instructions.
825 * cfg.mk (announcement_Cc_): Define.
826 * configure.ac (AM_GNU_GETTEXT_VERSION): Update to 0.18 as
827 required by latest gnulib.
828 * gnulib: Update to latest.
829
0162a44c
JD
8302010-07-24 Joel E. Denny <joeldenny@joeldenny.org>
831
832 tests: handle Valgrind that complains about >&-.
833 * tests/output.at (AT_CHECK_OUTPUT): Extend to accept pre-tests.
834 (Output files: -dv >&-): Skip test group if running
835 maintainer-check-valgrind.
836
241ac701
AD
8372010-06-17 Paul Eggert <eggert@cs.ucla.edu>
838
839 Update from GFDL GFDL 1.2 to 1.3.
840 * doc/bison.texinfo: Update GFDL version number.
841 * doc/fdl.texi: Update to version 1.3, taken from:
842 http://www.gnu.org/licenses/fdl.texi
843
6e30ede8
PE
8442010-06-17 Paul Eggert <eggert@cs.ucla.edu>
845
846 Do not use date ranges in copyright notices.
847 See http://www.gnu.org/prep/maintain/maintain.html#Copyright-Notices
848
849 * HACKING, Makefile.am, NEWS, PACKAGING, README, README-alpha:
850 * TODO, bootstrap, bootstrap.conf:
851 * build-aux/update-b4-copyright, cfg.mk, configure.ac:
852 * data/README, data/bison.m4, data/c++-skel.m4, data/c++.m4:
853 * data/c-skel.m4, data/c.m4, data/glr.c, data/glr.cc:
854 * data/java-skel.m4, data/java.m4, data/lalr1.cc:
855 * data/lalr1.java, data/location.cc:
856 * data/xslt/bison.xsl:
857 * data/xslt/xml2dot.xsl, data/xslt/xml2text.xsl:
858 * data/xslt/xml2xhtml.xsl, data/yacc.c, djgpp/Makefile.maint:
859 * djgpp/README.in, djgpp/config.bat, djgpp/config.sed:
860 * djgpp/config.site, djgpp/config_h.sed, djgpp/djunpack.bat:
861 * djgpp/subpipe.c, djgpp/subpipe.h:
862 * djgpp/testsuite.sed, doc/bison.texinfo:
863 * doc/refcard.tex, etc/README, etc/bench.pl.in:
864 * examples/calc++/Makefile.am, examples/extexi:
865 * lib/abitset.c, lib/abitset.h:
866 * lib/bbitset.h, lib/bitset.c, lib/bitset.h:
867 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
868 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
869 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
870 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
871 * lib/libiberty.h, lib/main.c, lib/timevar.c:
872 * lib/timevar.def, lib/timevar.h, lib/vbitset.c:
873 * lib/vbitset.h, lib/yyerror.c, m4/bison-i18n.m4:
874 * m4/c-working.m4, m4/cxx.m4, m4/subpipe.m4, m4/timevar.m4:
875 * src/AnnotationList.c, src/AnnotationList.h:
876 * src/InadequacyList.c, src/InadequacyList.h, src/LR0.c:
877 * src/LR0.h, src/Sbitset.c, src/Sbitset.h, src/assoc.c:
878 * src/assoc.h, src/closure.c, src/closure.h, src/complain.c:
879 * src/complain.h, src/conflicts.c, src/conflicts.h:
880 * src/derives.c, src/derives.h, src/files.c, src/files.h:
881 * src/flex-scanner.h, src/getargs.c, src/getargs.h:
882 * src/gram.c, src/gram.h, src/graphviz.c, src/ielr.c:
883 * src/ielr.h, src/lalr.c, src/lalr.h:
884 * src/location.c, src/location.h, src/main.c:
885 * src/muscle-tab.c, src/muscle-tab.h, src/named-ref.c:
886 * src/named-ref.h, src/nullable.c, src/nullable.h:
887 * src/output.c, src/output.h, src/parse-gram.y:
888 * src/print-xml.c, src/print-xml.h, src/print.c, src/print.h:
889 * src/print_graph.c, src/print_graph.h, src/reader.c:
890 * src/reader.h, src/reduce.c, src/reduce.h, src/relation.c:
891 * src/relation.h, src/scan-code.h, src/scan-code.l:
892 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
893 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
894 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
895 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
896 * tests/actions.at, tests/atlocal.in, tests/c++.at:
897 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
898 * tests/existing.at, tests/glr-regression.at:
899 * tests/headers.at, tests/input.at, tests/java.at:
900 * tests/local.at, tests/named-refs.at:
901 * tests/output.at, tests/push.at, tests/reduce.at:
902 * tests/regression.at, tests/sets.at, tests/skeletons.at:
903 * tests/synclines.at, tests/testsuite.at, tests/torture.at:
904 * data/Makefile.am, data/location.cc, doc/Makefile.am, src/Makefile.am:
905 * tests/Makefile.am, lib/Makefile.am, examples/Makefile.am:
906 * etc/Makefile.am:
907 Don't use date ranges in copyright notices.
908
3d4a0cad
AD
9092010-05-11 Akim Demaille <demaille@gostai.com>
910
911 lalrl1.cc: give a chance to user defined YYLLOC_DEFAULT.
912 * data/lalr1.cc (YYLLOC_DEFAULT): Move its definition from the
913 header file to the implementation file, after the user %code
914 sections.
915 * NEWS (2.5): Document this.
916
e7bab2df
AD
9172010-05-07 Akim Demaille <demaille@gostai.com>
918
919 c++: use YYRHSLOC.
920 * data/lalr1.cc (YYRHSLOC): New.
921 (YYLLOC_DEFAULT): Use it.
922 * data/glr.cc: If location_type was user defined, do not include
923 location.hh, and do not produce location.hh and position.hh.
924 * tests/calc.at (YYLLOC_DEFAULT): Use YYRHSLOC.
925 Check that glr.cc supports user defined location_type.
926 * NEWS: Document this.
927
baacae49
AD
9282010-05-10 Akim Demaille <demaille@gostai.com>
929
930 doc: fix lalr1.cc documentation.
931 * doc/bison.texinfo (C++ Scanner Interface): Fix yylex signature.
932 (C++ Bison Interface): Fix lalr1.cc skeleton name.
933 (C++ Parser Interface): Fix semantic_type and location_type names.
934 Document yy::parser::token.
935 Reported by Jerry Quinn.
936
95a2de56
AD
9372010-05-04 Akim Demaille <demaille@gostai.com>
938
939 lalr1.cc: don't generate location.hh when location_type is defined
940 * data/bison.m4 (b4_percent_define_use): New.
941 (b4_percent_define_get): Use it.
942 Accept a default value.
943 * data/c++.m4: Do not provide a default value for the %define
944 variable location_type, rather, use b4_percent_define_get with a
945 default argument where its value is needed.
946 * data/lalr1.cc: Do not load location.cc (which outputs both
947 location.hh and position.hh) if the user defined location_type.
948 Do not include location.hh either.
949 * data/glr.cc: Likewise.
950
0f404a0a
AD
9512010-05-04 Akim Demaille <demaille@gostai.com>
952
953 lalr1.cc: location_type: make sure we don't depend on loc.(begin|end).
954 * tests/calc.at (Span): Instead of begin/end, as in the built-in
955 location class, use first and last.
956 Define YYLLOC_DEFAULT to adjust to these changes.
957 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Adjust to the
958 location_type changes.
959
bdc360ae
AD
9602010-05-04 Akim Demaille <demaille@gostai.com>
961
962 tests: enhance AT_SYNCLINES_COMPILE.
963 * tests/synclines.at (AT_TEST_SYNCLINE): Move GCC 4.5 protection
964 into...
965 (AT_SYNCLINES_COMPILE): here.
966 Add more distcc patterns.
967
ca7a59e8
JD
9682010-05-01 Joel E. Denny <joeldenny@joeldenny.org>
969
970 tests: fix maintainer-xml-check.
971 * data/xslt/xml2dot.xsl (xsl:template match="bison-xml-report"):
972 Update output to include comments now produced by --graph.
973 (xsl:template match="automaton"): As for --graph, name the
974 digraph after the grammar file.
975 * src/print-xml.c (escape_bufs): Enlarge array.
976 (print_xml): Add bug-report and url attributes to
977 bison-xml-report element.
978
ad6f84e5
JD
9792010-05-01 Joel E. Denny <joeldenny@joeldenny.org>
980
981 In DOT output, convert from "/*" comments to "//" comments.
982 This handles the possibility that a "*/" might appear in
983 variable portions of those comments at some point in the future.
984 * src/graphviz.c (start_graph): Implement.
985
43fdc9fd
JD
9862010-04-30 Joel E. Denny <joeldenny@joeldenny.org>
987
988 Document that undefined %prec identifier warnings will remain.
989 * NEWS (2.4.3): Here.
990 (2.4.2): Here.
991
e02df72c
JD
9922010-04-30 Joel E. Denny <joeldenny@joeldenny.org>
993
994 Revert 2009-12-30 change for undefined %prec token complaints.
995 That is, keep them as warnings because that should be sufficient
996 to satisfy POSIX without creating backward compatibility issues.
997 Suggested by Richard Stallman at
998 <http://lists.gnu.org/archive/html/bison-patches/2010-03/msg00033.html>.
999 * NEWS (2.5): Remove mention of complaint.
21279295
JD
1000 * src/reader.c (grammar_rule_check): Convert complaint back to
1001 warning.
e02df72c
JD
1002 * tests/input.at (%prec's token must be defined): Update.
1003
ba3063f6
JD
10042010-04-25 Joel E. Denny <joeldenny@joeldenny.org>
1005
1006 build: don't require src/bison during bootstrap.
1007 Suggested by Eric Blake at
1008 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00003.html>.
1009 * bootstrap.conf (bootstrap_epilogue): New function to make sure
1010 src/parse-gram.[ch] are stamped later than src/parse-gram.y.
1011
e0fda26c
JD
10122010-04-25 Joel E. Denny <joeldenny@joeldenny.org>
1013
1014 i18n: fix untranslatable string.
1015 Reported by Goran Uddeborg at
1016 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00000.html>.
1017 * src/muscle-tab.c (muscle_percent_define_insert): Here.
1018
ecbca7db
AD
10192010-04-13 Akim Demaille <demaille@gostai.com>
1020
1021 tests: calc: minor refactoring.
1022 * tests/calc.at (_AT_DATA_CALC_Y): Simplify yylex.
1023
ed228e60
AD
10242010-04-13 Akim Demaille <demaille@gostai.com>
1025
1026 tests: calc: simplify location management.
1027 * tests/local.at (AT_LOC_PUSHDEF, AT_LOC_POPDEF): New.
1028 (_AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS): Use them to
1029 define the appropriate AT_LOC accessors.
1030 * tests/calc.at: Use AT_LOC accessors.
1031
cacfdef7
AD
10322010-04-13 Akim Demaille <demaille@gostai.com>
1033
1034 test location_type.
1035 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS):
1036 Define AT_LOCATION_TYPE_IF.
1037 (_AT_BISON_OPTION_POPDEFS): Undefine AT_LOCATION_TYPE_IF.
1038 * tests/calc.at (_AT_DATA_CALC_Y): When %define location_type is
1039 used, provide a user location type and use it.
1040 (Simple LALR1 C++ Calculator): Add a test case for location_type.
1041
2f61c4a2
AD
10422010-04-13 Akim Demaille <demaille@gostai.com>
1043
1044 tests: check fclose's return value.
1045 * tests/calc.at (_AT_DATA_CALC_Y): Check fclose's return status.
1046
16d9244d
AD
10472010-04-13 Akim Demaille <demaille@gostai.com>
1048
1049 tests: don't depend on the actual location type.
1050 * tests/calc.at: Use yy::parser::location_type rather than
1051 yy::location, since the former is always right, and might point to
1052 another type than the latter.
1053
3e4a253b
AD
10542010-04-13 Akim Demaille <demaille@gostai.com>
1055
1056 formatting changes.
1057 * tests/calc.at: Formatting changes.
1058
df5df58d
AD
10592010-04-13 Akim Demaille <demaille@gostai.com>
1060
1061 lalr1.cc: remove useless forward declaration.
1062 * data/lalr1.cc: Include location.hh before stack.hh.
1063 Remove the useless forward declarations of position and location.
1064 Reported by Chris Morley.
1065 * data/glr.cc: Likewise.
1066
88bb35d6
JD
10672010-04-11 Joel E. Denny <joeldenny@joeldenny.org>
1068
1069 * NEWS (2.4.3): Mention fix for Sun Studio C++.
1070
585ef2eb
JD
10712010-04-10 Joel E. Denny <joeldenny@joeldenny.org>
1072
1073 tests: fix for newer Sun Studio C++.
1074 Reported by Dagobert Michelsen at
1075 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00023.html>.
1076 * THANKS (Dagobert Michelsen): Add.
1077 * configure.ac (AC_PREREQ): Set to 2.64 so we get the latest
1078 Autoconf macro for handling the restrict keyword.
1079 * gnulib: Update to latest, which no longer overrides that macro
1080 from Autoconf.
1081
a005dbcb
JD
10822010-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
1083
1084 portability: fix pointer arithmetic to conform to C standard.
1085 Reported by Tys Lefering at
1086 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00035.html>.
1087 This fix is already implemented in glr.c and does not apply to
1088 lalr1.java.
1089 * data/lalr1.cc (yy::parser::parse): Increase size of
1090 yyerror_range and adjust subscripting so you don't have to
1091 subtract one from the beginning of the array.
1092 * data/yacc.c (b4_declare_parser_state_variables,
1093 yyparse, yypush_parse): Likewise.
1094
8a8b33e8
AD
10952010-04-05 Akim Demaille <demaille@gostai.com>
1096
1097 remove useless include.
1098 * src/graphviz.h: Don't include stdbool.h.
1099
a0279765
AD
11002010-04-05 Akim Demaille <demaille@gostai.com>
1101
1102 graph: sign the output file.
1103 * src/graphviz.c (start_graph): Issue comments about Bison.
1104 Suggested by Tys Lefering.
1105
132247cd
JD
11062010-03-31 Joel E. Denny <jdenny@ces.clemson.edu>
1107
1108 portability: fix test suite for GCC 4.5's new #error message.
1109 Reported by Tys Lefering at
1110 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00030.html>.
1111 * NEWS (2.4.3): Mention.
1112 * tests/synclines.at (AT_TEST_SYNCLINE): Implement.
1113
c0259969
AD
11142010-03-30 Akim Demaille <demaille@gostai.com>
1115
1116 fix comments.
1117 * src/graphviz.h: Add missing license notice.
1118 Document.
1119
23761f42
AD
11202010-03-25 Akim Demaille <demaille@gostai.com>
1121
1122 tests: fix 250: parse.error=verbose overflow.
1123 * tests/regression.at (parse.error=verbose overflow): Avoid the
1124 double inclusion of stdlib.h as it triggers hard errors.
1125
9097fda0
JD
11262010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
1127
1128 portability: fix for BSD make.
1129 Reported by Johan van Selst at
1130 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00016.html>.
1131 * tests/Makefile.am ($(TESTSUITE)): Qualify package.m4 in
1132 this dependency list as in package.m4's target rule.
1133
7a9c3cb3
JD
11342010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
1135
1136 portability: fix spawning on at least FreeBSD 8 and FreeBSD 9.
1137 Reported by Johan van Selst at
1138 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00014.html>.
1139 * NEWS (2.4.3): New.
1140 * THANKS (Johan van Selst): Add.
1141 * gnulib: Update to latest.
1142
5a3c69f1
JD
11432010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
1144
1145 maint: update for changes to gnulib's announce-gen.
1146 * HACKING (Announce): RELEASE_TYPE=major must now be written
1147 RELEASE_TYPE=stable.
1148
ea66d039
JD
11492010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
1150
1151 Version 2.4.2.
1152 * NEWS (2.4.2): Set version and date. For the recent test suite
1153 portability fixes, don't be so optimistic about their success
1154 given the lack of feedback on the affected platforms.
1155
c50befe6
JD
11562010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
1157
1158 tests: fix maintainer-xml-check for recent changes.
1159 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Use
1160 AT_BISON_CHECK_NO_XML rather than AT_BISON_CHECK because an
1161 output file whose name conflicts with a previous output file
1162 is now never generated.
1163
47fa5747
JD
11642010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
1165
1166 portability: fix several issues with M4 subprocess.
1167
1168 M4's output pipe was not being drained upon fatal errors during
1169 scan_skel. As a result, broken-pipe messages from M4 were seen
1170 on at least AIX, HP-UX, Solaris, and RHEL4, and this caused a
1171 failure in the test suite. The problem was that, on platforms
1172 where the default disposition for SIGPIPE is ignore instead of
1173 terminate, M4 sometimes saw fwrite fail with errno=EPIPE and
1174 then reported it. However, there's some sort of race condition,
1175 because the new test group occasionally succeeded.
1176 Reported by Albert Chin at
1177 <http://lists.gnu.org/archive/html/bug-bison/2010-02/msg00004.html>.
1178
1179 There were also problems with the test suite livelocking on
1180 Tru64 5.1b. Reported by Didier Godefroy at
1181 <http://lists.gnu.org/archive/html/bug-bison/2009-05/msg00005.html>.
1182 Switching to create_pipe_bidi suggested by Akim Demaille.
1183
1184 To attempt to solve both of these problems, switch to gnulib's
1185 create_pipe_bidi and register M4 process as a slave. Along the
1186 way, clean up file name conflict handling, which was affected by
1187 the broken-pipe problem before the switch.
1188 * NEWS (2.4.2): Document.
1189 * THANKS (Didier Godefroy): Add.
1190 * bootstrap.conf (gnulib_modules): Add pipe.
1191 * gnulib: Update to latest to make sure we have all the latest
1192 fixes.
1193 * lib/Makefile.am (libbison_a_SOURCES): Remove subpipe.h and
1194 subpipe.c.
1195 * po/POTFILES.in (lib/subpipe.c): Remove.
1196 * src/files.c (compute_output_file_names): Update invocations
1197 of output_file_name_check.
1198 (output_file_name_check): In the case that the grammar file
1199 would be overwritten, use complain instead of fatal, but replace
1200 the output file name with /dev/null. Use the /dev/null solution
1201 for the case of two conflicting output files as well because it
1202 seems safer in case Bison one day tries to open both files at
1203 the same time.
1204 * src/files.h (output_file_name_check): Update prototype.
1205 * src/output.c (output_skeleton): Use create_pipe_bidi and
1206 wait_subprocess. Assert that scan_skel completely drains the
1207 pipe.
1208 * src/scan-skel.l (at_directive_perform): Update
1209 output_file_name_check invocation.
1210 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Check that the
1211 grammar file actually isn't overwritten.
1212 (Conflicting output files: -o foo.y): Update expected output.
1213 * tests/skeletons.at (Fatal errors but M4 continues producing
1214 output): New test group.
1215
d67e37a7
JD
12162010-02-04 Joel E. Denny <jdenny@ces.clemson.edu>
1217
1218 Update POTFILES.
1219 * HACKING (Release Procedure): Add reminder about keeping
1220 POTFILES files up-to-date.
1221 * po/POTFILES.in (src/muscle-tab.c, src/scan-skel.l): Add.
1222
0ee1af2e
JD
12232010-02-01 Joel E. Denny <jdenny@clemson.edu>
1224
1225 Code cleanup.
1226 * tests/atlocal.in (abs_top_srcdir): Remove shell variable,
1227 which is already defined in atconfig.
1228
2655c7cd
JD
12292010-01-21 Joel E. Denny <jdenny@clemson.edu>
1230
1231 * cfg.mk (gnulib_dir): Assume gnulib is a subdirectory.
1232
8ebc7dca
JD
12332010-01-21 Joel E. Denny <jdenny@clemson.edu>
1234
1235 maint: automate PACKAGE_COPYRIGHT_YEAR update, and update it.
1236 * HACKING (Release Procedure): Update notes on copyright years.
1237 * Makefile.am (update-package-copyright-year): New target rule.
1238 * build-aux/update-package-copyright-year: New file.
1239 * cfg.mk (update-copyright): Add update-package-copyright-year
1240 as a dependency.
1241
f0a43dd1
JD
12422010-01-19 Joel E. Denny <jdenny@clemson.edu>
1243
1244 * bootstrap: Import improvements from latest gnulib.
1245
e4ca7a85
JD
12462010-01-19 Joel E. Denny <jdenny@clemson.edu>
1247
1248 build: require Automake 1.11.1 to avoid a security flaw.
1249 * HACKING (Release Procedure): Don't document Automake security
1250 flaw here.
1251 * configure.ac (AM_INIT_AUTOMAKE): Require 1.11.1, and explain
1252 why here.
1253
8d830047
JD
12542010-01-19 Joel E. Denny <jdenny@clemson.edu>
1255
1256 gnulib: update to latest.
1257
e5926647
JD
12582010-01-19 Joel E. Denny <jdenny@clemson.edu>
1259
1260 ChangeLog (2006-09-15): add Odd Arild Olsen's role for push.c.
1261
5a2f6eb4
JD
12622010-01-15 Joel E. Denny <jdenny@clemson.edu>
1263
1264 Thank the developer of the initial push parser implementation.
1265 This unfortunate oversight is several years old.
1266 * THANKS (Odd Arild Olsen): Add.
1267
1c4ad777
JD
12682010-01-04 Joel E. Denny <jdenny@clemson.edu>
1269
1270 Fix some comments concerning LR(0) versus LALR(1).
1271
1272 Stop equating LR(0) with nondeterminism and LALR(1) with
1273 determinism. That is, if all states are consistent, then LR(0)
1274 tables are deterministic. On the other hand, LALR(1) tables
1275 might be nondeterministic before conflict resolution, and GLR
1276 permits LALR(1) tables to remain nondeterministic.
1277 * src/LR0.c, src/LR0.h: Here.
1278 * src/lalr.c, src/lalr.h: Here.
1279 * src/main.c (main): Here.
1280 * src/state.c, src/state.h: Here.
1281
1282 * src/ielr.h (ielr): In preconditions, expect LR(0) not LALR(1)
1283 parser tables.
1284
1462fcee
JD
12852010-01-04 Joel E. Denny <jdenny@clemson.edu>
1286
1287 maint: run "make update-copyright"
1288
510df951
JD
12892009-12-30 Joel E. Denny <jdenny@clemson.edu>
1290
1291 POSIX: complain if %prec's token was not defined.
1292 * NEWS (2.5): Document.
1293 * src/reader.c (grammar_rule_check): Convert warning to
1294 complaint.
1295 * tests/input.at (%prec's token must be defined): Update.
1296
2c203528
JD
12972009-12-30 Joel E. Denny <jdenny@clemson.edu>
1298
1299 POSIX: warn if %prec's token was not defined.
1300 Reported by Florian Krohm at
1301 <http://lists.gnu.org/archive/html/bug-bison/2009-12/msg00005.html>.
1302 * NEWS (2.4.2): Document.
1303 * src/reader.c (grammar_rule_check): Implement.
1304 (grammar_current_rule_prec_set): Add comments explaining that we
1305 here assume a %prec identifier is a token, but we still manage
1306 to support POSIX.
1307 * tests/input.at (%prec's token must be defined): New test
1308 group.
1309
a93cdd3d
JD
13102009-12-31 Joel E. Denny <jdenny@clemson.edu>
1311
1312 * HACKING (Release Procedure): Recommend a secure automake.
1313
bb57985c
AD
13142008-12-11 Akim Demaille <demaille@gostai.com>
1315
1316 Propagate i18n changes into glr.c.
1317 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
1318 building the error message format dynamically.
1319 * data/lalr1.java: Formatting changes.
1320
70afaf26
JD
13212009-12-22 Joel E. Denny <jdenny@clemson.edu>
1322
1323 Port small part of master's 11707b2b so future ports are easier.
1324 * data/lalr1.java (YYParser::yysyntax_error): Untabify.
1325
8200219a
AD
13262008-12-11 Akim Demaille <demaille@gostai.com>
1327
1328 Simplify the i18n of the error messages.
1329 * data/lalr1.cc: Comment changes.
1330
39f6a8d1
AD
13312008-11-11 Akim Demaille <demaille@gostai.com>
1332
1333 Prefer M4 to CPP.
1334 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
1335 YYERROR_VERBOSE.
1336
e657f369
AD
13372008-11-11 Akim Demaille <demaille@gostai.com>
1338
1339 Support i18n of the parse error messages.
1340 * TODO (lalr1.cc/I18n): Remove.
1341 * data/lalr1.cc (yysyntax_error_): Support the translation of the
1342 error messages, as done in yacc.c.
1343 Stay within the yy* pseudo namespace.
1344
1e05521d
JD
13452009-12-22 Joel E. Denny <jdenny@clemson.edu>
1346
1347 Port small part of master's 8901f32e so future ports are easier.
1348 * data/lalr1.cc (yy::parser::yysyntax_error_): Always add second
1349 argument, but name it in the function definition only when
1350 verbose error messages are enabled and it'll thus be used.
1351 (yy::parser::parse): Update use of yysyntax_error_.
1352
2728ac7e
JD
13532009-12-29 Joel E. Denny <jdenny@clemson.edu>
1354
1355 portability: `<' and `>' are not always defined on addresses.
1356 Specifically, don't sort objects by their memory addresses when
1357 they're not allocated in the same array or other object. Though
1358 I haven't found a test case where that fails on my platform, C
1359 says the behavior is undefined.
1360 * src/AnnotationList.c (AnnotationList__insertInto): Remove
1361 FIXME. Use new id field of InadequacyList nodes rather than
1362 their memory addresses when sorting.
1363 (AnnotationList__compute_from_inadequacies): Add
1364 inadequacy_list_node_count argument to pass to
1365 InadequacyList__new_conflict.
1366 * src/AnnotationList.h
1367 (AnnotationList__compute_from_inadequacies): Update prototype
1368 and documentation for new argument.
1369 * src/InadequacyList.c (InadequacyList__new_conflict): Add
1370 node_count argument and use it to assign a unique ID.
1371 * src/InadequacyList.h (InadequacyListNodeCount): New typedef.
1372 (InadequacyList): Add id field.
1373 (InadequacyList__new_conflict): Update prototype and
1374 documentation for new argument.
1375 * src/ielr.c (ielr_compute_annotation_lists): Update
1376 AnnotationList__compute_from_inadequacies invocation.
1377
abcc7c03
JD
13782009-12-20 Joel E. Denny <jdenny@clemson.edu>
1379
1380 Fix handling of yychar manipulation in user semantic actions.
1381 The problem was that yacc.c didn't always update the yychar
1382 translation afterwards. However, other skeletons appear to be
1383 fine. glr.c appears to already translate yychar before every
1384 use. lalr1.cc does not define yychar and does not document its
1385 replacement, yyla, for users. It does provide yyclearin, but
1386 that does not manipulate yyla and thus requires no translation
1387 update. In lalr1.java, yychar is out of scope during semantic
1388 actions.
1389 * NEWS (2.5): Document.
1390 * data/yacc.c (YYBACKUP): Don't bother translating yychar into
1391 yytoken here.
1392 (yyparse, yypush_parse): Instead, translate before every use of
1393 yytoken, and add comments explaining this approach.
1394 * tests/actions.at (Destroying lookahead assigned by semantic
1395 action): New test group checking that translation happens before
1396 lookahead destructor calls at parser return. Previously,
1397 incorrect destructors were called.
1398 * tests/conflicts.at (%error-verbose and consistent
1399 errors): New test group checking that translation happens at
1400 syntax error detection before the associated verbose error
1401 message and the associated lookahead destructor calls. While
1402 the destructor call is fixed by this patch, the verbose error
1403 message is currently incorrect due to another bug (see
1404 comments in test group), so this is an expected failure for now.
1405
62efdd2a
JD
14062009-12-21 Joel E. Denny <jdenny@clemson.edu>
1407
1408 YYFAIL: warn about uses and remove from lalr1.java.
1409 * NEWS (2.5): Document.
5f1485d8 1410 * data/lalr1.java (YYParser::YYFAIL): Rename to YYERRLAB,
62efdd2a
JD
1411 and make it private. Update all uses.
1412 * src/scan-code.l (SC_RULE_ACTION): Implement warning.
1413
41d35e54
JD
14142009-12-21 Joel E. Denny <jdenny@clemson.edu>
1415
1416 YYFAIL: deprecate.
1417 * NEWS (2.4.2): Document deprecation and the phase-out plan.
5f1485d8 1418 * data/lalr1.java (YYParser::YYFAIL): Add comment about
41d35e54
JD
1419 deprecation.
1420 * data/yacc.c (YYFAIL): Likewise, and suppress warnings about
1421 YYFAIL from GCC cpp's -Wunused-macros.
1422 * doc/bison.texinfo (Java Action Features): Remove YYFAIL
1423 documentation.
1424 (LocalWords): Remove YYFAIL.
1425
692d04cb
JD
14262009-12-17 Joel E. Denny <jdenny@clemson.edu>
1427
1428 Code cleanup.
1429 * src/symtab.c, src/symtab.h (symbol_class_get_string): Remove
1430 function, which is no longer used.
1431
34731471
JD
14322009-12-16 Joel E. Denny <jdenny@clemson.edu>
1433
1434 Add gcc's -Wundef to test suite and fix another warning from it.
1435 * NEWS (2.4.2): Update description of -Wundef fix.
1436 * configure.ac (WARN_CXXFLAGS_TEST): New substitution.
1437 (WARN_CFLAGS_TEST): New substitution.
1438 * data/glr.c: Avoid warning about __STRICT_ANSI__.
1439 * tests/atlocal.in (CFLAGS): Use WARN_CFLAGS_TEST instead of
1440 WARN_CFLAGS.
1441 (NO_WERROR_CFLAGS): Likewise.
1442 (CXXFLAGS): Use WARN_CXXFLAGS_TEST instead of WARN_CXXFLAGS.
1443
3bba2dad
JD
14442009-12-16 Joel E. Denny <jdenny@clemson.edu>
1445
1446 * data/yacc.c: Reformat m4 a little.
1447
af2ffe5c
JD
14482009-12-16 Joel E. Denny <jdenny@clemson.edu>
1449
1450 Document gcc -Wundef fix.
1451 * NEWS (2.4.2): Here.
1452 * THANKS (Jonathan Nieder): Add.
1453
874ac415
JN
14542009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
1455
1456 Simplify y.tab.c when location tracking is disabled.
1457 * data/yacc.c: Do not check YYLTYPE_IS_TRIVIAL if location
1458 tracking is not enabled. Instead, unconditionally define
1459 YY_LOCATION_PRINT as a no-op for backward compatibility.
1460
06caf0e1
JN
14612009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
1462
1463 Avoid warnings from gcc -Wundef y.tab.c.
1464 * data/glr.c: Check if YYENABLE_NLS and YYLTYPE_IS_TRIVIAL are
1465 defined before using them.
1466 * data/lalr1.cc: Likewise.
1467 * data/yacc.c: Likewise.
1468
687f011a
JD
14692009-12-15 Joel E. Denny <jdenny@clemson.edu>
1470
1471 autoconf: update to latest for fix of M4 detection.
1472 Reported by Eric Blake.
1473 * submodules/autoconf: Update.
1474
fb9a3976
JD
14752009-12-15 Joel E. Denny <jdenny@clemson.edu>
1476
1477 portability: use -DGNULIB_POSIXCHECK.
1478 Reported by Eric Blake. See discussions at
1479 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00008.html>
1480 and
1481 <http://lists.gnu.org/archive/html/bug-gnulib/2009-10/msg00108.html>.
1482 * HACKING (Release checks): Suggest -DGNULIB_POSIXCHECK.
1483 * bootstrap.conf (gnulib_modules): Add all the printf modules
1484 suggested by -DGNULIB_POSIXCHECK. Add realloc-posix as
1485 suggested by -DGNULIB_POSIXCHECK for gnulib's own vasnprintf.c.
1486 (excluded_files): Remove m4/printf-posix.m4.
1487 * tests/atlocal.in (LIBS): As for LDADD in src/local.mk, add
1488 lib/libbison.a so gnulib libraries can be linked.
1489
f1fb412c
JD
14902009-12-14 Joel E. Denny <jdenny@clemson.edu>
1491
1492 Enable assertion output and --disable-assert for configure.
1493 * bootstrap.conf (gnulib_modules): Add assert module.
1494 * src/system.h (aver): Define as assert, and summarize the
1495 discussion on this issue.
1496
51c7ca01
JD
14972009-12-14 Joel E. Denny <jdenny@clemson.edu>
1498
1499 Expand GLR acronym in summary of Bison.
1500 Based on discussion with Akim Demaille starting at
1501 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00087.html>.
1502 * doc/bison.texinfo (Introduction): Here.
1503 * src/getargs.c (usage): Here.
1504
1f68dca5
AR
15052009-10-03 Alex Rozenman <rozenman@gmail.com>
1506
1507 Document named references.
1508 * doc/bison.texinfo (Actions): Add new example and xref to
1509 Using Named References node.
1510 (Using Named References): New node.
1511
aa01d193
JD
15122009-10-16 Joel E. Denny <jdenny@clemson.edu>
1513
1514 cleanup.
1515 * src/Sbitset.c (Sbitset__new_on_obstack): Use Sbitset instead
1516 of char*.
1517 (Sbitset__isEmpty): Use Sbitset instead of char*.
1518 * src/Sbitset.h (Sbitset): Make it a pointer to unsigned char
1519 instead of char. This helps to avoid casting errors.
1520 (Sbitset__or): Use Sbitset instead of char*.
1521
61747047
JD
15222009-10-16 Joel E. Denny <jdenny@clemson.edu>
1523
1524 portability: don't assume 8-bit bytes.
1525 That is, use CHAR_BIT and UCHAR_MAX instead of 8 and 0xff.
1526 * src/Sbitset.h (Sbitset__nbytes): Here.
1527 (Sbitset__byteAddress): Here.
1528 (Sbitset__bit_mask): Here.
1529 (Sbitset__last_byte_mask): Here.
1530 (Sbitset__ones): Here.
1531 (SBITSET__FOR_EACH): Here.
1532
a70596de
JD
15332009-10-11 Joel E. Denny <jdenny@clemson.edu>
1534
1535 portability: use va_start and va_end in the same function.
1536 * src/complain.c (error_message): Move va_end from here...
1537 (ERROR_MESSAGE): ... to here.
1538
51f255a5
JD
15392009-10-08 Joel E. Denny <jdenny@clemson.edu>
1540
1541 * data/bison.m4: Update comments for rename to muscle-tab.h.
1542
23ec25b7
JD
15432009-10-08 Joel E. Denny <jdenny@clemson.edu>
1544
1545 Rename muscle_tab.* to muscle-tab.* for consistency with master.
1546 * src/Makefile.am (bison_SOURCES): Update.
1547 * src/getargs.c, src/ielr.c, src/lalr.c, src/main.c,
1548 src/output.c, src/parse-gram.y, src/print.c, src/reader.c,
1549 src/tables.c: Update include.
1550 * src/muscle_tab.c, src/muscle_tab.h: Rename to...
1551 * src/muscle-tab.c, src/muscle-tab.h: ... these and update
1552 include.
1553
0ab402b4
JD
15542009-10-07 Joel E. Denny <jdenny@clemson.edu>
1555
1556 Minor code cleanup.
1557 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT): Remove macro and
1558 replace all uses with UNIQSTR_CONCAT.
1559 * src/uniqstr.c (uniqstr_vsprintf): New function.
1560 * src/uniqstr.h (uniqstr_vsprintf): Add prototype.
1561 (UNIQSTR_CONCAT, UNIQSTR_GEN_FORMAT, UNIQSTR_GEN_FORMAT_): New
1562 macros.
1563
42ec0ae1
JD
15642009-10-04 Joel E. Denny <jdenny@clemson.edu>
1565
1566 Minor code cleanup.
1567 * src/parse-gram.y: Clean up sorting of declarations.
1568 Use types to simplify %printer declarations where possible.
1569 Provide %printer for BRACKETED_ID and symbol.prec.
1570 * src/symtab.c: Whitespace change.
1571
9637e0ed
JD
15722009-10-04 Joel E. Denny <jdenny@clemson.edu>
1573
1574 tests: skip tests of file names that platform does not support.
1575 Reported by Michael Raskin at
1576 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
1577 * THANKS (Michael Raskin): Add.
1578 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
1579 to fail at least for file names containing ":" or "\".
1580
69a2ab11
JD
15812009-09-23 Joel E. Denny <jdenny@clemson.edu>
1582
1583 yysyntax_error: avoid duplicate lookahead collection.
1584 Except when memory reallocation is required, this change
1585 eliminates the need to invoke yysyntax_error twice and thus to
1586 repeat the collection of lookaheads. It also prepares for
1587 future extensions that will make those repetitions more
1588 expensive and that will require additional memory management in
1589 yysyntax_error. Finally, it fixes an obscure bug already
1590 exercised in the test suite.
1591 * data/yacc.c (yysyntax_error): Add arguments for message
1592 buffer variables stored in the parser. Instead of size, return
1593 status similar to yyparse status but indicating success of
1594 message creation. Other than the actual reallocation of the
1595 message buffer, import and clean up memory management code
1596 from...
1597 (yyparse, yypush_parse): ... here.
1598 * tests/regression.at (%error-verbose overflow): No longer an
1599 expected failure.
1600
d88cf117
JD
16012009-09-23 Joel E. Denny <jdenny@clemson.edu>
1602
1603 yysyntax_error: test memory management more.
1604 * tests/atlocal.in (NO_WERROR_CFLAGS): New cpp macro.
1605 * tests/regression.at (%error-verbose and YYSTACK_USE_ALLOCA):
1606 New test group.
1607 (%error-verbose overflow): New test group that reveals an
1608 obscure bug. Expected fail for now.
1609
9da640ea
AD
16102008-12-11 Akim Demaille <demaille@gostai.com>
1611
1612 Pass the token type to yysyntax_error.
1613 * data/yacc.c (yysyntax_error): Take the transated token instead
1614 of the raw number.
1615 Adjust callers.
1616
d3d3628b
AD
16172008-12-11 Akim Demaille <demaille@gostai.com>
1618
1619 Simplify the i18n of the error messages.
1620 * data/yacc.c (yysyntax_error): Rewrite, using a switch instead
1621 of building dynamically the format string.
1622
4c6b13f3
JD
16232009-10-03 Joel E. Denny <jdenny@clemson.edu>
1624
1625 Remove dead code.
1626 * src/symtab.c (symbol_pack): Here because every symbol's number
1627 is always defined by this time.
1628
f840c05a
AR
16292009-10-03 Alex Rozenman <rozenman@gmail.com>
1630
1631 Add additional space after periods in NEWS.
1632 * NEWS (2.5): here.
1633
17a407dc
JD
16342009-09-29 Joel E. Denny <jdenny@clemson.edu>
1635
1636 Use the correct conversion specifier for size_t.
1637 Reported by Jim Meyering.
1638 * src/Sbitset.h (SBITSET__INDEX__CONVERSION_SPEC): New, "zu"
1639 because Sbitset__Index is size_t.
1640 * src/Sbitset.c (Sbitset__fprint): Use it instead of %d.
1641
4b7a4c1b
JD
16422009-09-27 Joel E. Denny <jdenny@clemson.edu>
1643
1644 tests: don't abuse AT_BISON_CHECK.
1645 * tests/regression.at (parse-gram.y: LALR = IELR): Move
1646 additional shell commands outside of AT_BISON_CHECK.
1647
873ac263
JD
16482009-09-26 Joel E. Denny <jdenny@clemson.edu>
1649
1650 tests: check that parse-gram.y's IELR and LALR are identical.
1651 * tests/atlocal.in (abs_top_srcdir): New shell variable.
1652 * tests/regression.at (parse-gram.y: LALR = IELR): New test
1653 group.
1654
232be91a
AD
16552009-09-16 Akim Demaille <demaille@gostai.com>
1656
1657 doc: comment changes.
1658 * doc/bison.texinfo: Comment changes.
1659
c781580d
AD
16602009-09-16 Akim Demaille <demaille@gostai.com>
1661
1662 doc: spell checking.
1663 * doc/bison.texinfo: here.
1664
348f5608
AR
16652009-09-19 Alex Rozenman <rozenman@gmail.com>
1666
1667 Keep sub-messages aligned. Fix strings for translation.
f840c05a
AR
1668 * src/location.h (location_print): Add return value.
1669 * src/location.c (location_print): Return number of printed
348f5608 1670 characters.
f840c05a
AR
1671 * src/complain.h (complain_at_indent, warn_at_indent): Prototype
1672 new functions.
1673 * src/complain.cpp (indent_ptr): New static variable.
1674 (error_message, complain_at_indent, warn_at_indent): Implement
1675 the alignment mechanism.
1676 * src/scan-code.l (parse_ref, show_sub_messages): Fix strings
1677 for translations. Use new alignment mechanism.
1678 * tests/named-ref.at: Adjust test-cases.
348f5608
AR
1679 * NEWS (2.5): Add an announcement about named references.
1680
d93b5f50
JD
16812009-09-13 Joel E. Denny <jdenny@clemson.edu>
1682
1683 tests: clean up push.at test group titles.
1684 * tests/push.at: Remove "Push Parsing: " from test group titles
1685 because these are already under the banner "Push Parsing Tests".
1686
4c56b131
AR
16872009-09-12 Alex Rozenman <rozenman@gmail.com>
1688
1689 Provide an additional sub-message for clarity.
1690 Add "symbol not found in production" error message when
1691 an "invalid reference" is detected in named references
1692 resolution.
1693 * src/scan-code.l: Update "invalid reference" case.
1694 * tests/named-ref.at: Adjust test-cases.
1695
93d0103d
JD
16962009-09-10 Joel E. Denny <jdenny@clemson.edu>
1697
1698 Clean up yacc.c a little.
1699 * data/yacc.c: Clean up M4 for readability, and make output
1700 whitespace more consistent. For the main parse function
1701 comment, instead of saying "yyparse or yypush_parse", say either
1702 "yyparse" or "yypush_parse" depending on which it actually is.
1703
628be6c9
JD
17042009-09-03 Joel E. Denny <jdenny@clemson.edu>
1705
1706 Complain about unused %define variables and %code qualifiers.
1707 * NEWS (2.5): Document.
1708 * data/bison.m4 (b4_check_user_names): Complain instead of warn.
1709 * doc/bison.texinfo (Decl Summary): Document complaint, and
1710 improve %define documentation a little otherwise.
1711 * tests/input.at (Reject unused %code qualifiers): Update.
1712 (%define errors): Update.
1713 (%define, --define, --force-define): Update.
1714 (%define backward compatibility): Update.
1715 (Unused %define api.pure): Update.
1716 * tests/push.at (Push Parsing: Unsupported Skeletons): Update.
1717
c842365a
JD
17182009-09-03 Joel E. Denny <jdenny@clemson.edu>
1719
1720 Use aver not assert.
1721 * src/output.c: Don't include assert.h.
1722 (output_skeleton): Use aver not assert.
1723 * src/system.h (aver): In documentation of why, add links to
1724 Paul Eggert's explanations in the mailing lists.
1725
14e568d7
AR
17262009-09-05 Alex Rozenman <rozenman@gmail.com>
1727
1728 Use "Unresolved reference" error message when no symbols were found
1729 in a symbolic reference resolution. Remove .expr and -expr from
1730 the shown reference when the reference is unresolved.
1731 * src/scan-code.l: Change the error message, adjust location columns,
1732 rename variable "exact_mode" to "explicit_bracketing".
1733 * tests/named-ref.at: Adjust existing tests and add a new one.
1734
dac8cc0d
AD
17352009-09-03 Akim Demaille <demaille@gostai.com>
1736
1737 * NEWS (2.4.2): Add "Internationalization" item.
1738
3710dd02
AD
17392009-09-03 Akim Demaille <demaille@gostai.com>
1740
1741 bootstrap: fix/improve find_tool.
1742 * bootstrap (find_tool): Improve error messages.
1743 Fix typo about find_tool_names.
1744
9852b61c
JD
17452009-08-29 Joel E. Denny <jdenny@clemson.edu>
1746
1747 Fix gcc 3.4.4 shadowing warning reported by Eric Blake.
1748 See
1749 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00093.html>.
1750 * src/scan-code.h (code_props_rule_action_init): Rename
1751 named_ref arg to name so it doesn't shadow named_ref type. This
1752 makes it consistent with the function definition in scan-code.l
1753 anyway.
1754
f37495f6
JD
17552009-08-28 Joel E. Denny <jdenny@clemson.edu>
1756
1757 %define: accept unquoted values.
1758 * NEWS (2.5): Group all %define changes together, and document
1759 this one. Remove quotes in IELR and canonical LR entry.
1760 * doc/bison.texinfo: Remove quotes in most examples throughout.
1761 (Decl Summary): Update %define documentation.
1762 (Table of Symbols): Likewise.
1763 * src/ielr.c (LrType): Update documentation.
1764 * src/parse-gram.y (content.opt): Add production for ID.
5bf2bf7a 1765 * tests/calc.at: Remove quotes in most tests.
f37495f6
JD
1766 * tests/existing.at: Likewise.
1767 * tests/input.at: Likewise.
1768 * tests/local.at: Likewise.
1769 * tests/push.at: Likewise.
1770 * tests/reduce.at: Likewise.
1771 * tests/torture.at: Likewise.
1772
3a414bbf
JD
17732009-08-28 Joel E. Denny <jdenny@clemson.edu>
1774
1775 %define lr.type: make values lowercase IDs.
1776 That is, "LALR" => "lalr", "IELR" => "ielr", and
1777 "canonical LR" => "canonical-lr".
1778 * NEWS (2.5): Update documentation.
1779 * doc/bison.texinfo (Decl Summary): Likewise.
1780 * src/ielr.c (ielr): Use new values.
1781 * src/ielr.h (ielr): Update documentation.
1782 * src/reader.c (prepare_percent_define_front_end_variables): Use
1783 and validate new values.
1784 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
1785 grammars.
1786 * tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
1787
4bb975e1
EB
17882009-08-27 Eric Blake <ebb9@byu.net>
1789
1790 scan-gram: avoid portability trap with ctype usage.
1791 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
1792 Avoid compiler warning.
1793
74baf5c9
JD
17942009-08-27 Joel E. Denny <jdenny@clemson.edu>
1795
1796 tests: use perl for printing special sequences to files.
1797 And skip tests if perl is not available. This is better than
1798 playing tricks with shell portability. Suggested by Akim
1799 Demaille.
1800 * tests/input.at (Bad character literals): Use it here for
1801 omitting final newlines.
1802 (Bad escapes in literals): Use it here for special characters.
1803
d63e1279
JD
18042009-08-26 Joel E. Denny <jdenny@clemson.edu>
1805
1806 tests: show a use of %define lr.default-reductions "consistent"
1807 * tests/conflicts.at (%nonassoc and eof): Extend to test that it
1808 prevents the omission of expected tokens for %error-verbose.
1809
833d1720
AD
18102009-08-26 Akim Demaille <demaille@gostai.com>
1811
1812 tests: portability fix.
1813 * tests/input.at (Bad escapes in literals): Don't expect "echo
1814 '\0'" to output \ then 0.
1815
e4bcae3c
JD
18162009-08-26 Joel E. Denny <jdenny@clemson.edu>
1817
1818 Actually handle the yytable zero value correctly this time.
1819 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c: Don't
1820 mention zero values in the YYTABLE comments.
1821 * data/glr.c (yytable_value_is_error): Don't check for zero
1822 value.
1823 * data/lalr1.cc (yy_table_value_is_error_): Likewise.
1824 * data/yacc.c (yytable_value_is_error): Likewise.
1825 * data/lalr1.java (yy_table_value_is_error_): Likewise.
1826 (yysyntax_error): Fix typo in code: use yytable_ not yycheck_.
1827 * src/tables.h: In header comments, explain why it's useless to
1828 check for a zero value in yytable.
1829
d5eb0826
JD
18302009-08-25 Joel E. Denny <jdenny@clemson.edu>
1831
1832 More fixes related to last two patches.
1833 * data/c.m4 (b4_table_value_equals): Comment that YYID must be
1834 defined.
1835 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c: Fix
1836 yytable comments: zero indicates syntax error not default
1837 action.
1838 * data/glr.c (yyis_pact_ninf): Rename to...
1839 (yypact_value_is_default): ... this.
1840 (yyisDefaultedState): Update for rename.
1841 (yyis_table_ninf): Rename to...
1842 (yytable_value_is_error): ... this, and check for value zero
1843 besides just YYTABLE_NINF.
1844 (yygetLRActions): Check for default value from yypact. It
1845 appears that this check is always performed before this function
1846 is invoked, and so adding the check here is probably redundant.
1847 However, the code may evolve after this subtlety is forgotten.
1848 Also, update for rename to yytable_value_is_error. Because that
1849 macro now checks for zero, a different but equivalent branch of
1850 the if-then-else here is evaluated.
1851 (yyreportSyntaxError): Update for rename to
1852 yytable_value_is_error. The zero condition was mishandled
1853 before.
1854 (yyrecoverSyntaxError): Update for renames. No behavioral
1855 changes.
1856 * data/lalr1.cc, data/lalr1.java (yy_pact_value_is_default_):
1857 New function.
1858 (yy_table_value_is_error_): New function.
1859 (parse): Use new functions where possible. No behavioral
1860 changes.
1861 (yysyntax_error_, yysyntax_error): Use yy_table_value_is_error_.
1862 The zero condition was mishandled before.
1863 * data/yacc.c (yyis_pact_ninf): Rename to...
1864 (yypact_value_is_default): ... this.
1865 (yyis_table_ninf): Rename to...
1866 (yytable_value_is_error): ... this, and check for value zero
1867 besides just YYTABLE_NINF.
1868 (yysyntax_error): Update for rename to yytable_value_is_error.
1869 The zero condition was mishandled before.
1870 (yyparse): Update for renames. No behavioral changes.
1871 * src/tables.h: Improve comments about yypact, yytable, etc.
1872 more. Most importantly, say yytable value of zero means syntax
1873 error not default action.
1874
1fa30307
JD
18752009-08-25 Joel E. Denny <jdenny@clemson.edu>
1876
1877 Fix %error-verbose for conflicts resolved by %nonassoc.
1878 * NEWS (2.5): Document.
1879 * data/glr.c (yyreportSyntaxError): Fix this by checking
1880 yyis_table_ninf.
1881 * data/yacc.c (yysyntax_error): Likewise.
1882 * data/lalr1.cc (yysyntax_error_): Fix this by checking
1883 yytable_ninf_.
1884 * data/lalr1.java (yysyntax_error): Likewise.
1885 * tests/conflicts.at (%nonassoc and eof): Update expected output
1886 and remove FIXME.
1887
77373efa
JD
18882009-08-25 Joel E. Denny <jdenny@clemson.edu>
1889
1890 Some code and documentation improvements.
1891 * data/c.m4 (b4_table_value_equals): New macro to capture
1892 some repeated code.
1893 * data/glr.c (yyis_pact_ninf): Use it here.
1894 (yyis_table_ninf): Likewise.
1895 (yyreportSyntaxError): Improve internal comments.
1896 * data/yacc.c (yyis_pact_ninf): New macro copied from glr.c.
1897 Use it everywhere possible.
1898 (yyis_table_ninf): Likewise.
1899 (yysyntax_error): Improve internal comments.
1900 * data/lalr1.cc (yysyntax_error_): Likewise.
1901 * data/lalr1.java (yysyntax_error): Likewise.
1902 * src/tables.h: Improve comments about yypact, yytable, etc.
1903
890ab17c
JD
19042009-08-21 Joel E. Denny <jdenny@clemson.edu>
1905
1906 Use locale when quoting.
1907 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
1908 quote rather than implementing quoting here.
1909
c5196098
EB
19102009-08-20 Eric Blake <ebb9@byu.net>
1911
aa50ba7b
EB
1912 Make previous patch more robust.
1913 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
1914 argmatch.h.
1915 (output_skeleton): Use it.
1916 Suggested by Akim Demaille.
1917
c5196098
EB
1918 Import latest m4/m4.m4.
1919 * submodules/autoconf: Update to autoconf 2.64.
1920 * configure.ac (M4_GNU_OPTION): New define.
1921 * src/output.c (output_skeleton): Use it to resolve FIXME.
1922 * NEWS: Mention this.
1923
39fb7e62
JD
19242009-08-19 Joel E. Denny <jdenny@clemson.edu>
1925
1926 Fix complaints about escape sequences.
1927 Discussed starting at
1928 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
1929 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
1930 For a \0 and similar escape sequences meaning the null
1931 character, report an invalid escape sequence instead of an
1932 invalid null character because the latter does not actually
1933 appear in the user's input.
1934 In all escape sequence complaints, don't escape the initial
1935 backslash, and don't quote when the sequence appears at the end
1936 of the complaint line unless there's whitespace that quotearg
1937 won't escape.
1938 Consistently say "invalid" not "unrecognized".
1939 Consistently prefer "empty character literal" over "extra
1940 characters in character literal" warning for invalid escape
1941 sequences; that is, consistently discard those sequences.
1942 * tests/input.at (Bad escapes in literals): New.
1943
c33bc800
AD
19442009-08-19 Akim Demaille <demaille@gostai.com>
1945
1946 doc: fixes.
1947 * doc/bison.texinfo: Fix minor Texinfo errors.
1948
8fbbeba2
AD
19492009-08-19 Akim Demaille <demaille@gostai.com>
1950
1951 doc: %initial-action to initialize yylloc.
1952 Reported by Bill Allombert.
1953 * doc/bison.texinfo: Set fill-column to 76.
1954 (Location Type): Document the use of %initial-action to initialize
1955 yylloc.
1956
1874a474
JD
19572009-08-18 Joel E. Denny <jdenny@clemson.edu>
1958
1959 maint: update for gnulib's recent update-copyright changes
1960 * gnulib: Update.
1961 * .x-update-copyright (COPYING): Add as it's no longer implied
1962 when .x-update-copyright is present.
1963 * cfg.mk (update-copyright-local): Remove, now ignored.
1964 (update-copyright): Declare update-b4-copyright as a dependency.
1965
f4bfd5a9
AD
19662009-08-17 Akim Demaille <demaille@gostai.com>
1967
1968 build: require gettext 0.17.
1969
1970 Suggested by Bruno Haible.
1971 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
1972 * configure.ac: require gettext 0.17 to ensure compatibility with
1973 gnulib.
1974
2509eba6
AD
19752009-08-17 Akim Demaille <demaille@gostai.com>
1976
1977 build: lower gettext requirements.
1978
1979 Bison was uselessly requiring the formatstring macros from
1980 gettext, which resulted in mo files not being installed on systems
1981 that perfectly supported Bison mo files. Lower the requirement.
1982 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
1983
aa50ba7b
EB
1984 * configure.ac: Require need-ngettext instead of
1985 need-formatstring-macros.
1986 Reported by Martin Jabocs.
1987 Suggested by Bruno Haible.
1988 * INSTALL: Restructure.
1989 (Internationalization): New.
2509eba6 1990
314542f9
JD
19912009-08-14 Joel E. Denny <jdenny@clemson.edu>
1992
1993 maint: fix use of copyright year intervals.
1994 * gnulib: Update.
1995 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
1996 as now recommended in gnulib/NEWS.
1997 * build-aux/update-b4-copyright: Fix.
1998 * cfg.mk (update-copyright-env): Configure update-copyright.
1999
24985964
JD
20002009-08-13 Joel E. Denny <jdenny@clemson.edu>
2001
2002 Make it easier to write deterministic tests.
2003 Continues Akim's work from his 2009-06-10 commits.
2004 * src/reader.c (check_and_convert_grammar): Don't add any
2005 symbols after the first symbols_do invocation.
2006 * src/symtab.c (symbols_sorted): New static global.
2007 (user_token_number_redeclaration): Update comments.
2008 (symbol_from_uniqstr): If a new symbol is being created, assert
2009 that symbols_sorted hasn't been allocated yet.
2010 (symbols_free): Free symbols_sorted.
2011 (symbols_cmp, symbols_cmp_qsort): New functions.
2012 (symbols_do): Sort symbol_table into symbols_sorted on first
2013 invocation.
2014 * tests/input.at (Numbered tokens): Recombine tests now that the
2015 output should be deterministic across multiple numbers.
2016
47076da5
AD
20172009-08-12 Akim Demaille <demaille@gostai.com>
2018
2019 distcheck: fix.
2020
aa50ba7b 2021 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
47076da5 2022
36dfe466
JD
20232009-08-10 Joel E. Denny <jdenny@clemson.edu>
2024
2025 * tests/Makefile.am (TESTSUITE_AT): Add named-refs.at.
2026
07c0db18
JD
20272009-08-10 Joel E. Denny <jdenny@clemson.edu>
2028
2029 Miscellaneous code readability improvements.
2030
2031 * src/reader.c (reader): Move %define front-end variable
2032 defaults and checking into...
2033 (prepare_percent_define_front_end_variables): ... this new
2034 function.
2035
2036 * src/scan-gram.l (INITIAL): For consistency with string
2037 literals, don't store open quote on character literal. It's
2038 discarded before returning anyway.
2039 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
2040 Make length test more readable, and make the character stored
2041 for an empty literal more obvious while consistent with the
2042 previous behavior.
2043
2044 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
2045 USER_NUMBER_HAS_STRING_ALIAS throughout.
2046 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
2047 that is repeated in symtab.h. Improve argument names to make it
2048 clear which side of the symbol-string alias pair is which.
2049 (symbol_check_alias_consistency): Improve local variable names
2050 for the same purpose.
2051 * src/symtab.h (struct symbol): Make comments about aliases
2052 clearer.
2053 (symbol_make_alias): Improve comments and argument name.
2054 * src/output.c (token_definitions_output): Update for rename to
2055 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
2056
1a323c2f
AR
20572009-08-08 Alex Rozenman <rozenman@gmail.com>
2058
2059 Convert "misleading reference" messages to warnings.
2060 * src/scan-code.l: New function 'show_sub_messages', more
2061 factoring.
2062 * tests/named-ref.at: Adjust tests.
2063
38609c34
JD
20642009-08-06 Joel E. Denny <jdenny@clemson.edu>
2065
2066 maint: run "make update-copyright"
2067
642f240e
JD
20682009-08-06 Joel E. Denny <jdenny@clemson.edu>
2069
2070 maint: make update-b4-copyright easier to use
2071 * build-aux/update-b4-copyright: In warnings, report line
2072 numbers rather than character positions.
2073 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
2074 that update-copyright runs it.
2075 * gnulib: Update.
2076
d0caad01
JD
20772009-08-05 Joel E. Denny <jdenny@clemson.edu>
2078
2079 maint: clean up update-b4-copyright code
2080 * build-aux/update-b4-copyright: Do not accept 2-digit
2081 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
2082 Don't accept a `[' in a b4_copyright argument.
2083 Format code more consistently.
2084 Don't assume b4*copyright never occurs.
2085
ac2def56
JD
20862009-08-04 Joel E. Denny <jdenny@clemson.edu>
2087
2088 maint: automate b4_copyright updates.
2089 * Makefile.am (update-b4-copyright): New target rule.
2090 * build-aux/Makefile.am (EXTRA_DIST): Add update-b4-copyright.
2091 * build-aux/update-b4-copyright: New.
2092 * data/yacc.c: Remove stray characters around b4_copyright
2093 invocations.
2094
dbbb64f0
JD
20952009-08-04 Joel E. Denny <jdenny@clemson.edu>
2096
2097 maint: automate annual package-wide copyright-year update.
2098 * .x-update-copyright: New.
2099 * Makefile.am (EXTRA_DIST): Remove maint.mk.
2100 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
2101 update-copyright. Remove gnumakefile, which is implied by
2102 maintainer-makefile.
2103 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
2104 * gnulib: Update.
2105 * maint.mk: Remove, now copied from gnulib.
2106 * examples/extexi: Add missing "(C)" in copyright statement so
2107 update-copyright can recognize it.
2108 * src/LR0.h: Likewise.
2109 * src/print.h: Likewise.
2110 * src/print_graph.h: Likewise.
2111 * src/gram.c: Add missing comma in copyright statement.
2112 * src/gram.h: Likewise.
2113
bfa018d4
JD
21142009-08-04 Joel E. Denny <jdenny@clemson.edu>
2115
2116 Fix "make distcheck".
2117 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
2118 of just calc.stamp.
2119
4521fcdf
JD
21202009-08-01 Joel E. Denny <jdenny@clemson.edu>
2121
2122 Pacify "gcc -Wunused" for the input function from Flex.
2123 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
2124 and later.
2125 * src/scan-code.l: Add "%option noinput", which I cannot find in
2126 the Flex manual, but which Flex has supported since at least as
2127 far back as 2.5.4. However, if any of our developers still use
2128 Flex 2.5.4, they'll need to stop configuring with
2129 --enable-gcc-warnings because "%option noinput" didn't work
2130 correctly until Flex 2.5.6.
2131 * src/scan-gram.l: Likewise.
2132 * src/scan-skel.l: Likewise.
2133
992e874a
AR
21342009-07-31 Alex Rozenman <rozenman@gmail.com>
2135
2136 Fix --enable-gcc-warnings problems.
2137 * src/reader.c: Adjust variable names.
2138 * src/scan-code.l: Fix prototypes and adjust names.
2139 * src/named-ref.c: Remove redundant "if".
2140
a1ed2b71
JD
21412009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
2142
2143 Fix a --enable-gcc-warnings problem.
2144 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
2145 variable.
2146
cbc6a70e 21472009-07-24 Alex Rozenman <rozenman@gmail.com>
1e20ad11
AR
2148
2149 Fix some memory leaks.
2150 * src/named-ref.c: Add a pointer check (named_ref_free).
2151 * src/scan-code.l: New function (variant_table_free). Called in
2152 code_scanner_free.
2153 * src/symlist.c: Call to named_ref_free (symbol_list_free).
2154
ac9b0e95
JD
21552009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
2156
2157 Warn about character literals not of length one.
2158 * NEWS (2.5): Document.
2159 * src/scan-gram.l (INITIAL): Remove comment that we don't check
2160 the length.
2161 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
2162 * tests/input.at (Bad character literals): New test group.
2163
2de160e1
JD
21642009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
2165
2166 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
2167
cba97506
JD
21682009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
2169
2170 Some M4 cleanup in the testsuite.
2171 Suggested by Eric Blake at
2172 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
2173 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
2174 complicate the code by distinguishing between a missing value
2175 and an empty string value for an optional argument. This fix is
2176 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
2177 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
2178 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
2179 arguments are not needed because of the following changes.
2180 Fix stale comments.
2181 Bison developers should use GNU M4 and should not use
2182 POSIXLY_CORRECT when building the test suite, so do not
2183 complicate the code by avoiding $10 and above.
2184 Do not quote an empty string value for an optional argument, and
2185 do not distinguish between a missing value and an empty string
2186 value.
2187
62eb2d1b
JD
21882009-07-21 Joel E. Denny <jdenny@ces.clemson.edu>
2189
2190 * m4/m4.m4: Make it a sym link to submodules/autoconf/m4/m4.m4.
2191
620b2e36
JD
21922009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
2193
2194 Revert unnecessary column realignment in --help output.
2195 Reported by Akim Demaille at
2196 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
2197 * src/getargs.c (usage): Here.
2198
cbc6a70e 21992009-07-04 Alex Rozenman <rozenman@gmail.com>
dad6544d
AR
2200
2201 Alphabetical order in src/Makefile.am.
2202 * src/Makefile.am: Adjust.
2203
cbc6a70e 22042009-07-04 Alex Rozenman <rozenman@gmail.com>
d5e8574b
AR
2205
2206 Style changes and factoring.
2207 * src/named-ref.h: Add comments.
2208 * src/parse-gram.y: Readability and style changes.
2209 * src/reader.c: Factoring: assign_named_ref function.
2210 * src/scan-code.l: Factoring and style changes. Rename
2211 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
2212 Use "unsigned" type for variant index. Improve readablity.
2213 * src/scan-gram.l: Change error messages and add comments.
2214 * src/symlist.h: symbol_list_null: New function decl.
2215 * src/symlist.c: symbol_list_null: Implement here.
2216 * tests/named-refs.at: Adjust for new error messages.
2217
ae09ec85
EB
22182009-06-29 Eric Blake <ebb9@byu.net>
2219
2220 scan-code: avoid compiler warnings
2221 * src/scan-code.l (parse_named_ref): Use correct specifiers.
2222
80d653fd
AD
22232009-06-29 Akim Demaille <demaille@gostai.com>
2224
2225 build: avoid concurrent extraction of calc++.
2226 * examples/calc++/Makefile.am (calc.stamp): New.
2227 Depend on it to create the sources of calc++ so that concurrent
2228 builds don't launch several "extexi" in parallel.
2229 Not only this is inefficient, this also builds incorrect sources
2230 with several extractions mixed together.
2231
7685e2f7
AR
22322009-06-27 Alex Rozenman <rozenman@gmail.com>
2233
2234 Implement support for named symbol references.
2235 * src/parse-gram.y: Add new syntax (named_ref.opt).
2236 * src/reader.c: Store named refs in symbol lists.
2237 * src/reader.h: New argument for symbol_append and
2238 action_append functions.
2239 * src/scan-code.h: Add new field (named_ref) into
2240 code_props data structure. Keeps named ref of midrule
2241 actions.
2242 * src/scan-code.l: Support for named refs in semantic
2243 action code. New function 'parse_named_ref'.
2244 * src/scan-gram.l: Support bracketed id.
2245 * src/symlist.c: Store named refs in symbol lists.
2246 * src/symlist.h: New field in symbol list: named_ref.
2247 * src/named-ref.h: New file, a struct for named_ref.
2248 * src/named-ref.cp: New file, named_ref_new function.
2249 * src/local.mk: Add two new files.
2250 * tests/testsuite.at: Include new test group:
2251 * tests/named-refs.at: this new file.
2252
67f8cf51
AD
22532009-06-25 Akim Demaille <demaille@gostai.com>
2254
2255 hash: check insertion for memory exhaustion.
2256 * src/uniqstr.c (uniqstr_new): New.
2257
83b66ddd
AD
22582009-06-11 Akim Demaille <demaille@gostai.com>
2259
2260 style changes.
2261 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
2262 * src/print-xml.c: Style changes.
2263 * tests/conflicts.at: Comment changes.
2264
517cb0ad
AD
22652009-06-11 Akim Demaille <demaille@gostai.com>
2266
2267 xml: beware of user strings used to give a %prec to rules.
2268 * tests/conflicts.at (%prec with user strings): New.
2269 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
2270 XML output.
2271
75c7a52a
AD
22722009-06-11 Akim Demaille <demaille@gostai.com>
2273
2274 hash: check insertion for memory exhaustion.
2275 * src/muscle-tab.c (muscle_insert, muscle_grow)
2276 * src/state.c (state_hash_insert): Check the return value of
2277 hash_insert.
2278
66ed9753
AD
22792009-06-10 Akim Demaille <demaille@gostai.com>
2280
2281 deterministic test suite.
2282 Some consistency checks on symbols are performed after all the
2283 symbols were read, by an iteration over the symbol table. This
2284 traversal is nondeterministic, which can be a problem for test
2285 cases.
2286 Avoid this.
2287 Addresses another form of nondeterminism reported by Joel E. Denny.
2288 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
2289
2290 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
2291 test in two.
2292 Use different file names for the three tests to make the
2293 maintenance easier.
2294
ed15d907
AD
22952009-06-10 Akim Demaille <demaille@gostai.com>
2296
95d176ff
AD
2297 deterministic user-token-number redeclaration errors.
2298 Address nondeterminism reported by Joel E. Denny.
2299 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
2300
2301 * src/uniqstr.h: Comment changes.
2302 * src/location.h (boundary_cmp, location_cmp): New.
2303 * src/symtab.c (user_token_number_redeclaration): New.
2304 (symbol_translation): Use it.
2305 * tests/input.at (Numbered tokens): Adjust the expected output.
2306
23072009-05-25 Akim Demaille <demaille@gostai.com>
2308
ed15d907 2309 gnulib: update.
aa50ba7b
EB
2310 * gnulib: Update to latest.
2311 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
2312 * m4/.gitignore: Regen.
2313 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
2314 Call xalloc_die on hash_insert failures.
2315 Requested by the new __warn_unused_result__ attribute of
2316 hash_insert.
ed15d907 2317
e3a33f7c
JD
23182009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2319
2320 Convert multiple variable definition warnings to complaints.
2321 * NEWS (2.5): Add a new entry for that change.
2322 * doc/bison.texinfo (Decl Summary): Update %define entry.
2323 (Bison Options): Update -D/--define/-F/--force-define entry.
2324 * src/muscle_tab.c (muscle_percent_define_insert): Implement.
2325 * src/muscle_tab.h (muscle_percent_define_insert): Update
2326 comments.
2327 * tests/input.at (`%define errors'): Update.
2328 (`%define, --define, --force-define'): Update.
2329
34d41938
JD
23302009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2331
2332 -F/--force-define and relative %define/-D/--define priorities.
2333 * NEWS (2.5): Add documentation to -D/--define entry.
2334 * build-aux/cross-options.pl: Hard-code association of
2335 --force-define with %define.
2336 * doc/bison.texinfo (Decl Summary): In %define entry,
2337 cross-reference command-line options.
2338 (Bison Options): Add documentation to -D/--define entry.
2339 (Option Cross Key): Widen column for --force-define row.
2340 * src/getargs.c (usage): Document -F/--force-define. Realign
2341 options in output.
2342 (short_options, long_options, getargs): Parse -F/--force-define,
2343 and update muscle_percent_define_insert invocation.
2344 * src/muscle_tab.h (muscle_percent_define_how): New enum type.
2345 (muscle_percent_define_insert): Add argument with that type.
2346 * src/muscle_tab.c (muscle_percent_define_insert): Implement
2347 -F/--force-define behavior and priorities.
2348 * src/parse-gram.y (prologue_declaration): Update
2349 muscle_percent_define_insert invocations.
2350 * tests/input.at (`%define, --define'): Rename to...
2351 (`%define, --define, --force-define'): ... this and extend.
2352
246c4efa
JD
23532009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2354
2355 Update some comments to make sense for -D.
2356 * data/bison.m4 (b4_check_user_names): In header comments, say
2357 "user occurrence" instead of "grammar occurrence".
2358 * src/muscle_tab.h (muscle_percent_define_insert): Likewise.
2359 (muscle_percent_code_grow): Likewise just for consistency.
2360
531683e7
JD
23612009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2362
2363 * data/c++.m4: Update copyright year.
2364
e7bfa8b7
JD
23652009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
2366
2367 * data/c++.m4 (b4_namespace_close): Simplify slightly.
2368
8c221795
JD
23692009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
2370
2371 Handle a trailing `:' in a user-supplied C++ namespace better.
2372 * data/c++.m4 (b4_namespace_close): Don't let it be printed
2373 among the closing braces here. This fix might make the
2374 generated code easier to debug, but otherwise it should be
2375 insignificant because a trailing `:' is a C++ error already.
2376
c8bf65f0
AD
23772009-05-19 Akim Demaille <demaille@gostai.com>
2378
2379 remove useless variable.
2380 * src/getargs.c (skeleton_arg): Remove now useless variable.
2381 Should help the compiler see that this printf-like call is sane.
2382
7ac45a46
AD
23832009-05-11 Akim Demaille <demaille@gostai.com>
2384
2385 doc: use C++ headers.
2386 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
2387 headers.
2388
601bdfab
AD
23892009-05-05 Akim Demaille <demaille@gostai.com>
2390
2391 fix hexadecimal token number support.
2392 * src/scan-gram.l: Catch incorrect ids after hexadecimal numbers.
2393
d19123e6
AD
23942009-05-05 Akim Demaille <demaille@gostai.com>
2395
2396 tests: check token numbers.
2397 * tests/input.at (Numbered tokens): New.
2398
ecdfea9a
AD
23992009-05-04 Akim Demaille <demaille@gostai.com>
2400
2401 bison: catch bad symbol names.
2402 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
2403 * tests/input.at: Adjust.
2404
43e6aea5
AD
24052009-05-04 Akim Demaille <demaille@gostai.com>
2406
2407 space changes.
2408 * src/scan-gram.l: Untabify to be robust to zealous editors.
2409
c046698e
AD
24102009-05-04 Akim Demaille <demaille@gostai.com>
2411
2412 identifiers: dashes are letters.
2413 Dashes can now start identifiers (symbols and directives).
b10dd689 2414
c046698e
AD
2415 * src/scan-gram.l ({letter}): Add dash.
2416 ({id}): Remove it.
2417 * tests/input.at (Symbols): Adjust.
2418 Remove stray comment.
2419 * tests/regression.at (Invalid inputs): Adjust error message.
2420 * doc/bison.texinfo (Symbols): Update.
2421
966aba65
JD
24222009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
2423
2424 Declare %code to be a permanent feature.
2425 * NEWS (2.4.2): Here.
2426 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
2427 experimental.
2428 (Decl Summary): Likewise.
2429
812775a0
JD
24302009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
2431
2432 Convert underscores to dashes in some %define variable names.
2433 For now, just api.push-pull and lr.keep-unreachable-states.
2434 Maintain old names for backward compatibility.
2435 * NEWS (2.5): Document.
2436 * data/c.m4 (b4_identification): Update comment.
2437 * data/yacc.c: Update access.
2438 * doc/bison.texinfo: Update.
2439 * etc/bench.pl.in (bench_grammar): Update use.
2440 * src/files.c (tr): Move to...
2441 * src/getargs.c, src/getargs.h (tr): ... here because I can't
2442 think of a better place to expose it. My logic is that, for all
2443 uses of tr so far, command-line arguments can be involved, and
2444 getargs.h is already included.
2445 * src/main.c (main): Update access.
2446 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
2447 variable names to new variable names before assigning value.
2448 * src/reader.c (reader): Update setting default.
2449 * tests/calc.at: Update uses.
2450 * tests/conflicts.at (Unreachable States After Conflict
2451 Resolution): Update use.
2452 * tests/input.at (%define enum variables): Update use.
2453 (%define backward compatibility): New test group.
2454 * tests/push.at: Update uses.
2455 * tests/reduce.at: Update uses.
2456 * tests/torture.at: Update uses.
2457
1c4aa81d
JD
24582009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
2459
2460 Set all front-end %define defaults in one place.
2461 * src/main.c (main): Move lr.keep_unreachable_states default...
2462 * src/reader.c (reader): ... to here.
2463
1d0f55cc
JD
24642009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
2465
2466 Rename lr.default_reductions to lr.default-reductions.
2467 * NEWS (2.5): Here.
2468 * doc/bison.texinfo: Here.
2469 * src/lalr.c (initialize_LA): Here.
2470 * src/print.c (print_reductions): Here.
2471 * src/reader.c (reader): Here.
2472 * src/tables.c (action_row): Here.
2473 * tests/input.at (%define enum variables): Here.
2474 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
2475
0b593457
JD
24762009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
2477
2478 Pacify ./configure --enable-gcc-warnings.
2479 * tests/input.at (Symbols): Prototype yyerror and yylex.
2480
0939aa2d
AD
24812009-04-21 Akim Demaille <demaille@gostai.com>
2482
2483 tests: check the use of dashes and periods in symbols.
2484 * tests/input.at (Symbol): New test group.
2485
0b593457 24862009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
ae618dcc
JD
2487
2488 Document how `%define "var" "value"' is not M4-friendly.
2489 * src/parse-gram.y (variable): In comments here.
2490
0b593457 24912009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
6789b8bd
JD
2492
2493 Add copyright updates missed during previous cherry pick.
2494 * src/output.c: Here.
2495 * src/parse-gram.y: Here.
2496 * src/scan-gram.l: Here.
2497
663ce7bb
AD
24982009-04-20 Akim Demaille <demaille@gostai.com>
2499
2500 variables: accept dashes.
2501 * src/scan-gram.l ({id}): Also accept dashes after the initial
2502 letter.
2503 ({directive}): Use {id}.
2504 * src/parse-gram.y: Comment and formatting changes.
2505 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
2506 symbols.
2507 * src/complain.h, src/complain.c (yacc_at): New.
2508 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
2509 symbol names.
2510 * src/output.c (token_definitions_output): Do not #define token
2511 names with dashes.
2512
379261b3
JD
25132009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
2514
2515 Clean up recent patches a little.
2516 Reported by Akim Demaille.
2517 * doc/bison.texinfo (Understanding): Fix typos.
2518 * src/print.c (print_reductions): Don't use negated variable.
2519
25029e16
JD
25202009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
2521
2522 List accepted values for a %define enum variable with an invalid value.
2523 Suggested by Akim Demaille at
2524 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
2525 * data/bison.m4 (_b4_percent_define_check_values): Implement.
2526 * src/muscle_tab.c (muscle_percent_define_check_values): Implement.
2527 * tests/input.at (%define lr.default_reductions invalid values): Merge
2528 into...
2529 (%define enum variables): ... here, and update output.
2530
620b5727
JD
25312009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
2532
2533 Rename "default rule" to "default reduction".
2534 This includes changing variable names in code, changing
2535 comments, and renaming %define lr.default_rules to %define
2536 lr.default_reductions.
2537 * NEWS (2.5): Update IELR documentation.
2538 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c:
2539 Adjust YYDEFACT and yydefact_ documentation.
2540 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
2541 and lr.type documentation. Make some other wording
2542 improvements.
2543 (Glossary): Adjust cross-references and Default Reduction
2544 definition.
2545 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
2546 Remove a confusing comment pointed out by Akim Demaille.
2547 (initialize_LA): Adjust code.
2548 * src/print-xml.c (print_reductions): Adjust code.
2549 * src/print.c (print_reductions): Adjust code.
2550 * src/reader.c (reader): Adjust code.
2551 * src/tables.c (action_row): Adjust code.
2552 (token_actions): Adjust code.
2553 * src/tables.h: Adjust YYDEFACT documentation.
2554 * tests/input.at (%define lr.default_rules invalid values):
2555 Rename test group to...
2556 (%define lr.default_reductions invalid values): ... this, and
2557 update grammar file and expected output.
2558 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
2559 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
2560
34a6c2d1
JD
25612009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2562
2563 Document %define lr.type and lr.default_rules.
2564 * NEWS (2.5): Add an entry.
2565 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
2566 besides just LALR(1) and GLR(1).
2567 * doc/bison.texinfo (Introduction): Likewise.
2568 (Language and Grammar): Bison is no longer limited to LALR(1)
2569 restrictions.
2570 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
2571 when trying to distinguish from GLR. Talk about LR(1) grammars
2572 rather than LALR(1) grammars.
2573 (Decl Summary): In %define api.push_pull entry, say it applies
2574 to deterministic parsers in C rather than LALR(1) parsers in C.
2575 Add lr.default_rules entry.
2576 Add lr.type entry.
2577 (Mystery Conflicts): Bison is no longer limited to LALR(1)
2578 restrictions.
2579 (Generalized LR Parsing): Same changes as for the previous GLR
2580 section.
2581 (Memory Management): Say deterministic rather than LALR(1).
2582 (Understanding): Correct some bison output.
2583 Index discussion of "accepting state".
2584 Say deterministic rather than LALR(1).
2585 (Bison Options): In --yacc entry, say deterministic rather than
2586 LALR(1).
2587 In --report, --graph, and --xml entries, just don't mention
2588 LALR(1).
2589 (C++ Parsers): Say deterministic rather than LALR(1).
2590 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
2591 (Glossary): Add Accepting State, Consistent State, Default Rule,
2592 and IELR(1) definitions.
2593 In Generalized LR (GLR) definition, make same changes as in
2594 previous GLR sections.
2595 In LALR(1) definition, say Bison uses LALR(1) by default rather
2596 than implying Bison is limited to LALR(1).
2597 (LocalWords): Add IELR.
2598
f805dfcb
JD
25992009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2600
2601 Finish implementing %define lr.type.
2602 Its value can be "LALR", "IELR", or "canonical LR".
2603 * lib/timevar.def (TV_IELR_PHASE1): New var.
2604 (TV_IELR_PHASE2): New var.
2605 (TV_IELR_PHASE3): New var.
2606 (TV_IELR_PHASE4): New var.
2607 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
2608 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
2609 Sbitset.h, ielr.h, and ielr.c.
2610 * src/getargs.h, src/getargs.c (enum trace, trace_args,
2611 trace_types): Add trace_ielr.
2612 * src/lalr.h, src/lalr.c (ngotos): Export it.
2613 (F): Rename to...
2614 (goto_follows): ... this, update all uses, and export it.
2615 (set_goto_map): Export it.
2616 (map_goto): Export it.
2617 (compute_lookahead_tokens): Don't free goto_follows yet. Now
2618 handled in ielr.
2619 (initialize_LA): Export it. Move lookback allocation to...
2620 (lalr): ... here because, for canonical LR, initialize_LA must
2621 be invoked but lookback and much of the rest of LALR isn't
2622 needed.
2623 * main.c (main): Instead of lalr, invoke ielr, which invokes
2624 lalr.
2625 * src/reader.c (reader): Default lr.type to "LALR".
2626 Default lr.default_rules to "accepting" if lr.type is "canonical
2627 LR". Leave the default as "all" otherwise.
2628 Check for a valid lr.type value.
2629 * src/state.h, src/state.c (struct state_list): Add state_list
2630 member.
2631 (state_new): Initialize state_list member to NULL.
2632 (state_new_isocore): New function, exported.
2633 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
2634 exercises all values of lr.type.
2635 (GNU AWK Grammar): Rename test group to...
2636 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
2637 AT_TEST_EXISTING_GRAMMAR.
2638 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
2639 (GNU pic Grammar): Rename test group to...
2640 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
2641 AT_TEST_EXISTING_GRAMMAR.
2642 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
2643 all values of lr.type.
2644 (Single State Split): New test groups using AT_TEST_LR_TYPE.
2645 (Lane Split): Likewise.
2646 (Complex Lane Split): Likewise.
2647 (Split During Added Lookahead Propagation): Likewise.
2648
166366b2
JD
26492009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2650
2651 Add new files for IELR and canonical LR implementation.
2652 * src/AnnotationList.c: New.
2653 * src/AnnotationList.h: New.
2654 * src/InadequacyList.c: New.
2655 * src/InadequacyList.h: New.
2656 * src/Sbitset.c: New.
2657 * src/Sbitset.h: New.
2658 * src/ielr.c: New.
2659 * src/ielr.h: New.
2660
03c07b03
JD
26612009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
2662
2663 Implement %define lr.default_rules.
2664 Its value describes the states that are permitted to contain
2665 default rules: "all", "consistent", or "accepting".
2666 * src/reader.c (reader): Default lr.default_rules to "all".
2667 Check for a valid lr.default_rules value.
2668 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
2669 is "accepting", then only mark the accepting state as
2670 consistent.
2671 (initialize_LA): Tell state_lookahead_tokens_count whether
2672 lr.default_rules is "accepting".
2673 * src/tables.c (action_row): If lr.default_rules is not "all",
2674 then disable default rules in inconsistent states.
2675 * src/print.c (print_reductions): Use this opportunity to
2676 perform some assertions about whether lr.default_rules was
2677 obeyed correctly.
2678 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
2679 helps with checking the parser tables for a grammar.
2680 * tests/input.at (%define lr.default_rules invalid values): New
2681 test group.
2682 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
2683 AT_TEST_TABLES_AND_PARSE.
2684 (`no %define lr.default_rules'): New test group generated by
2685 AT_TEST_LR_DEFAULT_RULES.
2686 (`%define lr.default_rules "all"'): Likewise.
2687 (`%define lr.default_rules "consistent"'): Likewise.
2688 (`%define lr.default_rules "accepting"'): Likewise.
2689
44c124a3
AD
26902009-04-20 Akim Demaille <demaille@gostai.com>
2691
2692 Consistently refer to Yacc, not YACC.
2693 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
2694
42660736
JD
26952009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
2696
2697 Pacify make maintainer-check-posix.
2698 * tests/input.at (%define, --define): Move bison command-line
2699 options before grammar file name.
2700
a2d05674
JD
27012009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
2702
2703 Document semicolon warnings.
2704 * NEWS (2.5): Here.
2705
c4fae1ef
AD
27062008-12-08 Akim Demaille <demaille@gostai.com>
2707
2708 Fix portability issue in the test suite.
2709 * tests/local.at (AT_MATCHES_CHECK): New.
2710 Based on Perl instead of Sed. Sed has too many portability
2711 pitfalls, not ever Sed is GNU Sed.
2712 * tests/actions.at (Fix user actions without a trailing semicolon):
2713 Use it.
2714
42f4393a
DJ
27152008-12-07 Di-an Jan <dianj@freeshell.org>
2716
2717 Implement the FIXME that ends an user action with a semicolon
2718 if it seems necessary.
2719 * src/scan-code.l (flex rules section): Flag cpp directive from
2720 any `#' to the first unescaped end-of-line. Semicolon is not
2721 needed after `;', `{', '}', or cpp directives and is needed after
2722 any other token (whitespaces and comments have no effect).
2723 * tests/actions.at (Fix user actions without a trailing semicolon):
2724 New test.
2725 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
2726 to make user actions complete statements.
2727 Adjust column numbers in error messages.
2728 * tests/regression.at (Fix user actions without a trailing semicolon):
2729 Remove. Covered by new test.
2730
bd5df716
AD
27312009-04-14 Akim Demaille <demaille@gostai.com>
2732
2733 doc: minor fixes.
2734 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
2735 (Table of Symbols): Remove duplicate entry for %debug.
2736
7ba0d59d
EB
27372009-04-10 Eric Blake <ebb9@byu.net>
2738
2739 submodules: update to latest
2740 * submodules/autoconf: Use latest upstream Autoconf.
2741
b4d71a96
EB
27422009-04-06 Eric Blake <ebb9@byu.net>
2743
2744 Work around autoconf 2.63b bug in testsuite.
2745 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
2746 autoconf bug related to # in test.
2747
4ecd3681
JD
27482009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
2749
2750 * NEWS (2.5): Describe new -D/--define feature.
2751
c65e5292
AD
27522008-11-10 Akim Demaille <demaille@gostai.com>
2753
2754 --trace=muscles
2755 * src/getargs.h, src/getargs.c (trace_muscle): New.
2756 (trace_types, trace_args): Support it.
2757 * src/output.c (output_skeleton): Use it.
2758
96002de2
AD
27592008-11-10 Akim Demaille <demaille@gostai.com>
2760
2761 muscles_output.
2762 * src/output.c (muscles_output): New, extracted from...
2763 (output_skeleton): here.
2764 Adjust.
2765
fadb13b5
AD
27662008-11-21 Akim Demaille <demaille@gostai.com>
2767
2768 Display the changes in cross-options.texi.
2769 * build-aux/cross-options.pl ($sep): New, to separate items.
2770 * doc/Makefile.am ($(srcdir)/cross-options.texi): Use diff to display
2771 the changes.
2772
72183df4
DJ
27732008-11-20 Di-an Jan <dianj@freeshell.org>
2774
2775 Improves options in the manual.
2776 * doc/bison.texinfo (-g, -x): Add space before argument.
2777 (Option Cross Key): Implement FIXME: listing directives also.
2778 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
2779 (Short Option): Special case -d. Put arguments inside @option.
fadb13b5 2780 (Bison Directive): Add column, automatically extracted from
72183df4
DJ
2781 src/scan-gram.l (actual name passed as the first argument)
2782 with special case for %define.
2783 * doc/Makefile.am (doc/cross-options.texi): Pass src/scan-gram.l
2784 to build-aux/cross-options.pl.
2785 * src/getargs.c (usage): Document limitations of cross-options.pl.
2786 * src/scan-gram.l: Likewise.
2787
e80b068c
AD
27882009-02-25 Akim Demaille <demaille@gostai.com>
2789
2790 Copyright years.
2791 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
2792
e3ee30b8
AD
27932008-12-08 Akim Demaille <demaille@gostai.com>
2794
2795 Install autoconf as a submodule to get m4sugar.
2796 * .gitmodules: Add submodules/autoconf.
2797 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
2798 submodules/autoconf.
2799
c4eb1e84
JD
28002008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2801
2802 Simplify last patch slightly.
2803 * src/getargs.c (getargs): Here.
2804
10fa0146
JD
28052008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2806
2807 Fix last warning from --enable-gcc-warnings.
2808 * src/getargs.c (getargs): Don't assign const address to non-const
2809 pointer.
2810
6f5be1ab
DJ
28112008-11-17 Di-an Jan <dianj@freeshell.org>
2812
2813 Handle --enable-gcc-warnings.
2814 * src/getargs.c (command_line_location): Set parameters to void.
2815
11c4e57d
AD
28162008-11-11 Akim Demaille <demaille@gostai.com>
2817
2818 AT_FULL_COMPILE.
2819 * tests/actions.at, tests/regression.at: Use it.
2820
e186a284
AD
28212008-11-07 Akim Demaille <demaille@gostai.com>
2822
2823 Pass command line location to skeleton_arg and language_argmatch.
2824 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
2825 The location argument is now mandatory.
2826 Adjust all dependencies.
2827 (getargs): Use command_line_location.
2828
e14c6831
AD
28292008-11-07 Akim Demaille <demaille@gostai.com>
2830
2831 -D, --define.
2832 * src/getargs.c (usage): Document -D.
2833 Fix help string for --locations.
2834 (command_line_location): New.
2835 (short_options, long_options, getargs): Support -D, --define.
2836 (getargs): Move -d support at the right place.
2837 * doc/bison.texinfo (Bison Options): Update.
2838 * tests/input.at (%define, --define): New.
2839
75c21b61
AD
28402008-11-07 Akim Demaille <demaille@gostai.com>
2841
2842 Initialize the muscle table before parsing the command line.
2843 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
2844 (getargs): Define file_name.
2845 * src/main.c (main): Initialize muscle_tab before calling
2846 getargs.
2847 * src/muscle_tab.c (muscle_init): No longer define file_name, as
2848 its value is not available yet.
2849
33d2a860
AD
28502008-11-09 Akim Demaille <demaille@gostai.com>
2851
2852 Require the generation of parse-gram.output.
2853 * src/Makefile.am (YACC): Pass --report=all.
2854
006faedf
JD
28552009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
2856
2857 * NEWS (2.5): New stub.
2858
ecd1b61c
JD
28592009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
2860
2861 Fix options documentation.
2862 * build-aux/cross-options.pl: As in --help output, write optional
2863 arguments as [=ARG] not =[ARG].
2864 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
2865
f67c4037
AD
28662008-11-07 Akim Demaille <demaille@gostai.com>
2867
2868 Fix --help.
2869 * src/getargs.c (usage): Fix help string for -W.
2870
0213d651
AD
28712008-11-07 Akim Demaille <demaille@gostai.com>
2872
2873 Handle more general types of option arguments.
2874 * build-aux/cross-options.pl: The argument ends at the first
2875 space, not the first non-symbol character.
2876 Use @var for each word appearing the argument description.
2877
c19178bf
JD
28782009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
2879
2880 Remove spurious initial empty lines.
2881 * data/location.cc: End the @output lines with an @.
2882
0d2b2ab0
AD
28832008-11-04 Akim Demaille <demaille@gostai.com>
2884
2885 Remove spurious initial empty lines.
2886 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
2887 * data/yacc.c: End the @output lines with an @.
2888
8ba62e3e
JD
28892009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
2890
2891 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
2892 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
2893 requirements for a correct m4 are stricter.
2894 * m4/m4.m4: Replace with Autoconf 2.63's m4/m4.m4.
2895 * configure.ac: Update to use AC_PROG_GNU_M4.
2896 Reported by Eric Blake.
2897
5bc993d9
JD
28982009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2899
2900 Help with updating web manual.
2901 * HACKING: Incorporate instructions from gnulib/doc/README.
2902 * bootstrap.conf (gnulib_modules): Add gendocs.
2903
580c075d
JD
29042009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2905
2906 Fix strange %define locations for default values.
2907 Reported by Akim Demaille at
2908 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
2909 and discussed again starting at
2910 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
2911 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
2912 because location information is bogus.
2913 Use angle brackets to delimit fake file name because square brackets
2914 look like underexpanded m4. Choose a better fake file name.
2915 Use negative line numbers.
2916 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
2917 * src/location.c (location_print): If line for a boundary is negative,
2918 only print that boundary's file name.
2919 * src/location.h: Document that.
2920 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2921 defaults): Update output.
2922
5d3a1ecb
AD
29232008-11-07 Akim Demaille <demaille@gostai.com>
2924
2925 Locations without columns for command line arguments.
2926 * src/location.c (location_print): Don't display negative columns.
2927 * src/location.h: Document this.
2928
015e86a7
JD
29292009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
2930
2931 Add reminder about uploading public key to keys.gnupg.net.
2932 * HACKING (Release Procedure): Here.
2933
c1455bab
AD
29342009-03-31 Akim Demaille <demaille@gostai.com>
2935
2936 bootstrap: --help to stdout.
2937 * bootstrap (usage): Don't send --help to stderr.
2938 Use a here doc instead of a long string.
2939
2075a82a
AD
29402009-03-31 Akim Demaille <demaille@gostai.com>
2941
2942 bootstrap: README-hacking no longer exists
2943 * bootstrap (checkout_only_file): Set to HACKING.
2944
26fccd4d
AD
29452009-03-26 Akim Demaille <demaille@gostai.com>
2946
2947 doc: merge HACKING and README-hacking.
2948 Two files is confusing.
2949 Reported by Alexandre Duret-Lutz.
5bc993d9 2950
26fccd4d
AD
2951 * README-hacking: Merge into...
2952 * HACKING (Working from the repository): here.
2953
6469c4d7
AD
29542009-03-26 Akim Demaille <demaille@gostai.com>
2955
2956 doc: update README-hacking.
2957 * README-hacking: We now use git and git submodules.
2958 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
2959
b328890a
AD
29602009-03-26 Akim Demaille <demaille@gostai.com>
2961
2962 lalr1.cc: avoid GCC 4.3 warnings.
2963 GCC 4.3 now warns about "a || b && c" and asks for explicit
2964 parentheses.
2965 Reported by Alexandre Duret-Lutz.
2966 * data/location.cc: Update copyright years.
2967 (Position::operator==): Use parens to make precedence explicit.
2968 Compare lines and columns first, as they are more likely to be
2969 different, and they are faster to compare.
2970
f3079439
AD
29712009-03-26 Akim Demaille <demaille@gostai.com>
2972
2973 gnulib: update.
2974 * gnulib: Update to latest.
2975 * lib/Makefile.am (AM_CPPFLAGS): It is now defined by gnulib, so
2976 use +=.
2977
8defe11b
AD
29782009-01-08 Akim Demaille <demaille@gostai.com>
2979
2980 Fix grep portability issues.
2981 Grep on Solaris does not support -q.
2982 Reported by Summum Bonum.
5bc993d9 2983
8defe11b
AD
2984 * NEWS: Add a stub for 2.4.2.
2985 * THANKS: Add Summum Bonum.
2986 * tests/atlocal.in (EGREP): New.
2987 (CC, CXX, XSLTPROC): Make it possible to override them via
2988 envvars.
2989 * tests/java.at: Use $EGREP instead of egrep.
2990 Use AT_CHECK's ignore instead of grep's -q.
2991
41930e7a
JD
29922008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
2993
2994 Version 2.4.1.
2995 * NEWS: Set version and date.
2996 * lib/Makefile.am: Update copyright year.
2997 * tests/atlocal.in: Update copyright year.
2998
d07932ef
JD
29992008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
3000
3001 Semicolon feature removal is not about future language support.
3002 * NEWS: The semicolon feature is no longer active for newer languages,
3003 so don't claim that it causes trouble for them.
3004
0364b334
JD
30052008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
3006
3007 * gnulib: Update submodule to HEAD.
3008
876fd835
AD
30092008-12-09 Akim Demaille <demaille@gostai.com>
3010
3011 Update data/README.
3012 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
3013
bee1df15
EB
30142008-12-05 Eric Blake <ebb9@byu.net>
3015
3016 Build testsuite with newer autoconf.
3017 * tests/output.at (m4_expand): Don't override in newer autoconf,
3018 where the underlying implementation changed.
3019 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
3020 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
3021 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
3022 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
3023 since some of them contain unbalanced ')'.
3024
7e6d1e22
JD
30252008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
3026
3027 * NEWS: Clarify a little.
3028
a957d06c
JD
30292008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
3030
3031 * NEWS: Update for recent changes.
3032
462503f8
JD
30332008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
3034
3035 Fix unexpanded macros in GLR defines file.
3036 Reported by Csaba Raduly at
3037 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
3038 * THANKS (Csaba Raduly): Add.
3039 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
3040 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
3041 lexer in a separate module that includes the defines file.
3042 (AT_CHECK_CALC): Use AT_FULL_COMPILE and request compilation of lexer
3043 source.
3044 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
3045 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
3046 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
3047 (AT_DATA_SOURCE_PROLOGUE): New.
3048 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
3049 (AT_DATA_SOURCE): New.
3050 (AT_FULL_COMPILE): New, copied from master branch and extended to
3051 support an additional source file.
3052
bf151b75
JD
30532008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
3054
3055 Don't let maintainer-*-check targets force a version update.
3056 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
3057 handled.
3058
f56274a8
DJ
30592008-11-17 Di-an Jan <dianj@freeshell.org>
3060
3061 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
3062 Align menus. Adjust word wrapping. Use node names for menu names.
3063 (Examples): Don't abbreviate node names.
3064 (LocalWords): Remove abbreviations.
3065 (Copying): Make description a sentence.
bf151b75 3066 (Java Action Features): Remove period to match the rest of menu.
f56274a8 3067
b5775a81
PB
30682008-11-11 Paolo Bonzini <bonzini@gnu.org>
3069
3070 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
3071 * configure.ac: Adjust usage.
3072 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
3073 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
3074 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
3075
7ed73f82
JD
30762008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3077
3078 Don't add a semicolon to actions for %skeleton or %language.
3079 It breaks Java test cases as reported by Akim Demaille.
3080 * src/scan-code.l: Implement.
3081
4b1ebc49
JD
30822008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
3083
3084 Clean up %skeleton and %language priority implementation.
3085 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
3086 remove static qualifier because others will soon need to see it.
3087 (language_prio): Likewise.
3088 (getargs): Use command_line_prio rather than 0.
3089 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
3090 enum fields.
3091 (skeleton_prio): Extern it.
3092 (language_prio): Extern it.
3093 * src/parse-gram.y: Use grammar_prio rather than 1.
3094
738cde3e
AD
30952008-11-04 Akim Demaille <demaille@gostai.com>
3096
3097 * NEWS: Mention the trailing semicolon in action.
3098
d6fb461d
AD
30992008-11-04 Akim Demaille <demaille@gostai.com>
3100
3101 Reformat NEWS.
3102 * NEWS: Use more outline-mode markup.
3103 Suggested by Jim Meyering.
3104
14da0cdd
JD
31052008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
3106
3107 Fix user actions without a trailing semicolon.
3108 Reported by Sergei Steshenko at
3109 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
3110 * THANKS (Sergei Steshenko): Add.
3111 * src/scan-code.l (SC_RULE_ACTION): Fix it.
3112 * tests/regression.at (Fix user actions without a trailing semicolon):
3113 New test case.
3114
c9ba9e59
JD
31152008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3116
3117 Initiate further development.
3118 * NEWS: Create an empty section for new entries.
3119 * gnulib: Update submodule to HEAD.
3120
bfb40910
JD
31212008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3122
3123 * NEWS: Version 2.4.
3124
241fda7a
JD
31252008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3126
3127 Prepare for next release.
3128 * NEWS: Briefly mention changes since 2.3b.
3129 * README: Say GNU m4 1.4.6, which we've been requiring in release
3130 announcements already, not 1.4.3, which breaks the build.
3131
ed4d67dc
JD
31322008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3133
3134 Say %language is experimental.
3135 We're thinking of extending it's effect on output file naming. See the
3136 thread at
3137 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
3138 * NEWS: Say it's experimental.
3139 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
3140 recommend it over %skeleton for now.
3141 (Bison Options): Likewise.
3142 (C++ Bison Interface): Use %skeleton not %language.
3143 (Calc++ Parser): Use %skeleton not %language.
3144 * src/getargs.c (usage): Say it's experimental.
3145
e254a580
DJ
31462008-11-01 Di-an Jan <dianj@freeshell.org>
3147 Paolo Bonzini <bonzini@gnu.org>
3148
3149 Support all Java parser class modifiers.
3150 * data/java.m4 (b4_percent_define_get3): New.
3151 (b4_final_if, b4_strictfp_if): New.
3152 * data/lalr1.java (final, strictfp, extends, implements): Support.
3153 * doc/bison.texinfo (final, strictfp, extends, implements): Add
3154 documentation.
3155 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
3156 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
3157 (AT_CHECK_JAVA_GREP): New.
3158 (Java parser class modifiers): New test.
3159 (Java parser class extends and implements): New test.
3160
3161 Model exception propagation better with throws and lex_throws.
3162 * data/java.m4 (b4_list2): New.
3163 (throws): Change default.
3164 * data/lalr1.java (yyaction): Add throws.
3165 (parse): Add lex_throws in addition to throws.
3166 * doc/bison.texinfo (throws, lex_throws): Add documentation.
3167 * tests/java.at (Java throws specifications): New test.
3168
3169 Improve documentation for Java parsers.
3170 * doc/bison.texinfo (Java Parsers): Add subsections.
3171 Don't quote first argument of %define.
3172 (Java Bison Interface): Document output files. Move documentation
3173 of parser class and merge into Java Parser Interface. Document
3174 features that error out. Document directives with no effect.
3175 Move note about Javadoc higher.
3176 (Java Semantic Values): Explicitly mention stype.
3177 Document that generic types cannot be used.
3178 (Java Location Values): Use @deftypeivar. Document constructors.
3179 Correct return value for toString.
3180 (Java Parser Interface): List undocumented constants/fields.
3181 Move documentation of fields added by %parse-param closer to list
3182 of members. Document that token names are added as fields.
3183 Document constructors accurately. Remove error method.
3184 (Java Scanner Interface): Move note on %pure-parser to Java Bison
3185 Interface. Describe %code lexer and yylex accutately.
3186 Remove documentation that does not match the code.
3187 (Java Action Features): New.
3188 (Java Differences): Add reference. Add item on semantic values.
3189 Add note about @{ ... @}. Clarify %% epilogue placement.
3190 (Java Declarations Summary): New.
3191
3192 Fix Java skeleton.
3193 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
3194 (b4_remove_comma): Quote test argument.
3195 (b4_identification): Remove "bison" field.
3196 * tests/java.at (Java parser class and package names): New test.
3197 (Java %parse-param and %lex-param): New test.
3198 (Java stype, position_class and location_class): New test.
3199
f259e4e6
PB
32002008-10-31 Di-an Jan <dianj@freeshell.org>
3201
3202 * data/lalr1.jave: Update copyright years.
3203 (YYParser): Correct name of "generated from" file in Javadoc:
3204 use b4_file_name instead of @ofile@.
3205 (Location constructor): Correct Javadoc parameter name.
3206 (yylloc): Add missing opening m4 quote after b4_location_if.
3207 This removes a stray [ in the Javadoc of Lexer.getStartPos.
3208 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
3209 (YYParser constructor): Correct Javadoc parameter name.
3210
cae5057f
JD
32112008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
3212
3213 Always put auxiliary code files in the same dir as other output files.
3214 * src/files.c (compute_file_name_parts): When the user specifies
3215 --output but not --file-prefix, extract the directory prefix from the
3216 file prefix not from the grammar file name. This affects the location
3217 of files like location.hh generated by the C++ skeleton. The includes
3218 in the other output files require this fix.
3219 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
3220 for expected output files.
3221 (Output files): Add a test for the above.
3222
4af432ba
JD
32232008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
3224
3225 * gnulib: Update submodule to HEAD.
3226
e26d4e43
JD
32272008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
3228
3229 Update copyright year.
3230 * src/files.c: Here.
3231
c0ee9e21
DJ
32322008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
3233
3234 Don't overwrite the input file.
3235 * src/files.c (output_file_name_check): Fatal error if using input file
3236 for output.
3237 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
3238 argument.
3239 (Conflicting output files): Add test.
3240
482dc52f
AD
32412008-10-28 Akim Demaille <demaille@gostai.com>
3242
3243 Space changes.
3244 * data/lalr1.cc: Formatting changes.
3245
52cbbe84
AD
32462008-10-28 Akim Demaille <demaille@gostai.com>
3247
3248 Don't define debugging functions when !YYDEBUG.
3249 * data/lalr1.cc (debug_stream, set_debug_stream)
3250 (debug_level_type, debug_level, set_debug_level): Don't
3251 declare them when YYDEBUG is not defined.
3252 The implementation are already YYDEBUG-aware.
3253
0925d5bf
AD
32542008-10-28 Akim Demaille <demaille@gostai.com>
3255
3256 Prefer "continue" for empty loop bodies.
3257 * etc/bench.pl.in: Use "continue" instead of {}.
3258
cf98343c
AD
32592008-10-28 Akim Demaille <demaille@gostai.com>
3260
3261 Space and comments changes.
3262 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
3263 * data/c.m4, data/lalr1.cc: Space changes.
3264
9f467b7d
AD
32652008-10-28 Akim Demaille <demaille@gostai.com>
3266
3267 Make gnulib a submodule.
3268 * gnulib: New.
3269 * .gitmodules (gnulib): New.
3270
0f0e1ace
JD
32712008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
3272
3273 Fix yyerror_range for user-defined location type in C++. Reported by
3274 Georg Sauthoff at
3275 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
3276 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
3277 * THANKS (Georg Sauthoff): Add.
3278
548e2104
JD
32792008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
3280
3281 Update several administrative files mainly to facilitate releasing.
3282 * HACKING (Administrivia): Make the git-merge-changelog notes more
3283 helpful.
3284 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
3285 (Release Procedure): Update for git and add numerous details that were
3286 previously missing.
3287 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
3288 * maint.mk (announcement): Don't list bison as a bootstrap tool so
3289 that announcements don't claim we bootstrapped with whatever bison
3290 happened to be in PATH. Add flex as a bootstrap tool.
3291 * Makefile.maint: Remove, previously replaced by maint.mk.
3292 * Makefile.cfg: Remove, and migrate settings to...
3293 * cfg.mk: ... here for the sake of `make announcement'.
3294 * bootstrap.conf (gnulib_modules): Add announce-gen.
3295 * README: Say GNU Bison instead of just Bison. Suggested by Karl
3296 Berry.
3297
ddf17a6e
PB
32982008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
3299
3300 Small but important bugfixes for the Java skeleton.
3301 * data/lalr1.java (yyerror): Change Location to b4_location_type.
3302 (yy_symbol_print): Call toString on yyvaluep.
3303
e1145ad8
AD
33042008-08-29 Akim Demaille <demaille@gostai.com>
3305
3306 Clarify UPDATED use.
bee1df15 3307 * doc/bison.texinfo: It refers to the last edition of this file,
e1145ad8 3308 not to the release date of Bison.
bee1df15 3309 Reported by Joel E. Denny.
e1145ad8 3310
0df72d78
AD
33112008-08-29 Akim Demaille <demaille@gostai.com>
3312
3313 * README: Update FAQ pointer.
3314 Reported by Joel E. Denny.
3315
9a90b6bb
EB
33162008-08-27 Eric Blake <ebb9@byu.net>
3317
3318 Resync m4sugar from autoconf.
3319 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
3320 (m4_init): Adjust to latest m4.git changes.
3321 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
3322 effects.
3323 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
3324 (_m4_list_cmp): Reduce side effects.
3325
65015668
AD
33262008-08-27 Akim Demaille <demaille@gostai.com>
3327
3328 Check yyerrok in calc.at.
bee1df15
EB
3329 * tests/calc.at (calc.y): Use yyerrok on "( error )".
3330 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
3331 expected.
65015668 3332
98e26a92
AD
33332008-08-27 Akim Demaille <demaille@gostai.com>
3334
3335 Support yyerrok in lalr1.cc.
3336 YYBACKUP is still to import back into lalr1.cc.
bee1df15 3337 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
98e26a92 3338
86c0e784
JD
33392008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
3340
3341 For maintainer-check*, don't recompile for a $(VERSION) update.
3342 * cfg.mk: New file.
3343 (_is-dist-target): Override the one in GNUmakefile.
3344 * Makefile.am (EXTRA_DIST): Add cfg.mk.
3345
88511166
JD
33462008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
3347
3348 Update for recent change to gnulib.
3349 * src/parse-gram.y: Don't include strverscmp.h. It comes from
3350 string.h now.
3351
6bbb2ed5
EB
33522008-08-15 Eric Blake <ebb9@byu.net>
3353
d67c52e8
EB
3354 Remaining m4sugar merge from autoconf.
3355 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
3356 * data/m4sugar/foreach.m4: New file, copied from autoconf.
3357 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
3358 * src/output.c (output_skeleton): Tell m4 how to find it.
3359
6bbb2ed5
EB
3360 Partial m4sugar merge from autoconf: m4_map.
3361 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
3362 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
3363 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
3364 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
3365 for empty list.
3366 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
3367 Likewise.
3368 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
3369 declares it.
3370
8dce3875
JD
33712008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
3372
3373 Keep .version and PACKAGE_VERSION in sync.
3374 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
3375 dependency, and add comments justifying this in more detail. Discussed
3376 starting at
3377 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
3378
882a1fbf
EB
33792008-08-06 Eric Blake <ebb9@byu.net>
3380
a3764451
EB
3381 Partial m4sugar merge from autoconf: m4_shiftn.
3382 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
3383 (m4_shift2, m4_shift3): New macros.
3384 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
3385 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
3386 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
3387 * data/java.m4 (b4_remove_comma): Likewise.
3388
882a1fbf
EB
3389 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
3390 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
3391 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
3392 (m4_init): Consolidate wrapped text into single m4_wrap.
3393 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
3394 in wrapped text.
3395
a30e920d
EB
33962008-08-05 Eric Blake <ebb9@byu.net>
3397
dfcc5959
EB
3398 Partial m4sugar merge from autoconf: builtins, version.m4.
3399 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
3400 (m4_prepend): Remove, as it is unused and inherently quadratic,
3401 whereas m4_append is linear in newer m4.
3402 (m4_mkstemp): New builtin.
3403 (m4_symbols): Make rename conditional.
3404 (m4_version_prereq): Ensure fatal error if used in bison, which
3405 intentionally lacks version.m4.
3406
a30e920d
EB
3407 Fix comments in m4sugar.
3408 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
3409
445b7470
JD
34102008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
3411
3412 Update for recent .gitignore fix in Gnulib.
3413 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
3414 anchored .gitignore entries.
3415
a1e50014
JD
34162008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
3417
3418 Set gnu or gnits strictness.
3419 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
3420 development and gnits strictness for releases. Based on Eric Blake's
3421 suggestion at
3422 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
3423
d43f77e7
PB
34242008-07-31 Paolo Bonzini <bonzini@gnu.org>
3425
3426 * NEWS: Clarify documentation of %language.
3427
fee2ed87
PB
34282008-07-31 Paolo Bonzini <bonzini@gnu.org>
3429
3430 Support usage of git-merge-changelog.
3431 * .gitattributes: New.
3432 * HACKING: Document usage of git-merge-changelog.
3433 * bootstrap: Install git-merge-changelog entries in .git/config
3434 if appropriate.
3435
78029cd5
JD
34362008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3437
3438 Remove remaining dependence on CVS Id keyword.
3439 * ChangeLog: For the sake of people still using CVS, don't use dollars
3440 when mentioning Id.
3441 * data/xslt/bison.xsl: Remove Id from header comments, where it was
3442 unusual anyway.
3443 * data/xslt/xml2dot.xsl: Likewise.
3444 * data/xslt/xml2text.xsl: Likewise.
3445 * data/xslt/xml2xhtml.xsl: Likewise.
3446 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
3447 * doc/Makefile.am (neutralize): Remove, no longer needed.
3448 (.x.1): Don't use neutralize.
3449 (edit): Don't substitute for ID.
3450 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
3451
c53d18b1
JD
34522008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3453
3454 Fix dependence on computed configure variables.
3455 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
3456 $(top_srcdir)/configure.ac so that changes to computed variables, such
3457 as PACKAGE_VERSION, are seen.
3458 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
3459
5523ac79
JD
34602008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
3461
3462 Update copyright dates for recent changes.
3463 * Makefile.am: Here.
3464 * src/Makefile.am: Here.
3465 * src/reduce.c: Here.
3466 * tests/reduce.at: Here.
3467
8fa36911
JD
34682008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
3469
3470 Use git-version-gen for version names between releases.
3471 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
3472 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
3473 * .prev-version: New.
3474 * .version.in: Remove.
78029cd5 3475 * ChangeLog: Remove the Id previously used for capturing the CVS
8fa36911
JD
3476 revision.
3477 * GNUmakefile: Remove, now copied from Gnulib.
3478 * Makefile.am: Add code suggested by comments in
3479 build-aux/git-version-gen.
3480 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
3481 .prev-version, and .version.
3482 * NEWS (2.3b+): Rename to...
3483 (?.?): ... this because we're dropping the "+" version naming scheme,
3484 but, in general, we still can't be sure of our next release name.
3485 * bootstrap: Add a quick hack to remove from .gitignore the
3486 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
3487 entry. This should really be fixed in gnulib instead.
3488 * bootstrap.conf (gnulib_modules): Add gnumakefile.
3489 * configure.ac (AC_INIT): Set version name by invoking
3490 build-aux/git-version-gen.
3491 (AC_CONFIG_FILES): Remove .version, now generated by
3492 build-aux/git-version-gen.
3493 * maint.mk: New, copied from coreutils.
3494 * doc/.cvsignore (bison.1): Add.
3495 * doc/.gitignore (/bison.1): Add.
3496 * doc/bison.1: Remove, generated.
3497 * src/.cvsignore (revision.c): Remove.
3498 * src/.gitignore (/revision.c): Remove.
3499 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
3500 (BUILT_SOURCES): Remove revision.c.
3501 (revision.c): Remove.
3502 * src/getargs.c (version): Don't print revision after the VERSION.
3503 * src/revision.h: Remove.
3504
bcf07cb7
JD
35052008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
3506
3507 Fix untranslatable composition of sentences. Reported by Goran
3508 Uddeborg at
3509 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
3510 * THANKS (Goran Uddeborg): Add.
3511 * src/reduce.c (reduce_print): Report the number of nonterminals and
3512 rules useless in the grammar in separate sentences.
3513 * tests/reduce.at (Useless Rules): Update output.
3514 (Reduced Automaton): Likewise.
3515 (Underivable Rules): Likewise.
3516 (Empty Language): Likewise.
3517
9aacab9a
JD
35182008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
3519
3520 Fix some .gitignore and .cvsignore problems.
3521 * bootstrap (insert_sorted_if_absent): Replace all uses with...
3522 (insert_vc_ignore): ... this new function, which prepends `/' to all
3523 .gitignore entries before passing them to insert_sorted_if_absent.
3524 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
3525 .cvsignore files are maintained even though Bison developers run
3526 bootstrap while using Git.
3527 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
3528 unneeded by Bison.
3529 (gnulib): Add.
3530 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
3531 unneeded. Reported by Eric Blake.
3532 * lib/.gitignore (/*~): Add.
3533 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
3534 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
3535 Blake.
3536 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
3537
a9fc7990
JD
35382008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
3539
3540 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
3541 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
3542 * bootstrap.conf (gnulib_modules): Add unsetenv.
3543 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
3544 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
3545 (/setenv.m4): Add.
3546 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
3547 the first argument because it may become position-dependent, and unset
3548 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
3549 Add comments explaining these issues in more detail.
3550
0f1d6f10
JD
35512008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
3552
3553 Add .gitignore everywhere based on .cvsignore.
3554 * .gitignore: New.
3555 * build-aux/.gitignore: New.
3556 * data/.gitignore: New.
3557 * doc/.gitignore: New.
3558 * etc/.gitignore: New.
3559 * examples/.gitignore: New.
3560 * examples/calc++/.gitignore: New.
3561 * lib/.gitignore: New.
3562 * m4/.gitignore: New.
3563 * po/.gitignore: New.
3564 * runtime-po/.gitignore: New.
3565 * src/.gitignore: New.
3566 * tests/.gitignore: New.
3567
7bd1665a
JD
35682008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3569
3570 * NEWS (2.3b+): New section, empty for now.
3571 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
3572
72c5b982
JD
35732008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3574
3575 * NEWS (2.3b): Update release date since there has been a delay in
3576 getting the announcements and tarballs out.
3577
bd02cd5d
JD
35782008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
3579
3580 * NEWS: Version 2.3b.
3581 * configure.ac (AC_INIT): Likewise.
3582 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
3583
9126263e
JD
35842008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
3585
3586 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
3587 been doing it for years.
3588 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
3589 (Release Procedure): Add FIXME about make alpha being unmaintained.
3590
fa6aa7b3
JD
35912008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
3592
3593 * data/yacc.c: Reformat m4 a little for readability.
3594 * src/lalr.c (build_relations): Correct comment.
3595
d30b312d
JMG
35962008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3597
3598 DJGPP specific issue.
3599 * djgpp/config.sed: Fixes required to run configure scripts generated
3600 by autoconf 2.62.
3601
138d4cd9
JD
36022008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
3603
3604 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
3605 coordinator@translationproject.org.
3606
8f7e2e1f
JD
36072008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3608
3609 * THANKS: Add Eric Blake.
3610
f55efa38
JD
36112008-04-23 Eric Blake <ebb9@byu.net>
3612
3613 Revert prior patch, by working around autoconf regression.
3614 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
3615 ("Output file name: ("): Uncomment test.
3616 ("Output file name: )"): Likewise.
3617 Based on an idea from Noah Misch.
3618
096c9f9d
JD
36192008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3620
3621 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
3622 2.61. Reported by Juan Manuel Guerrero at
3623 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
3624 * tests/output.at ("Output file name: ("): Comment out test case for
3625 now.
3626 ("Output file name: )"): Likewise.
3627
0f664b89
JD
36282008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3629
3630 * GNUmakefile: Update git-version-gen invocation so make dist
3631 succeeds.
3632
1cfe6375
JD
36332008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3634
3635 Update to the current gnulib CVS repository, and fix trigraph handling
3636 in Bison.
3637 * bootstrap: Update gnulib CVS repository URL.
3638 (symlink_to_dir): Encapsulate the code that guarantees the destination
3639 directory exists into...
3640 (check_dst_dir): ... this new function, and...
3641 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
3642 fail when copying files into lib/uniwidth/.
3643 * src/output.c (prepare_symbols): When writing yytname muscles, where
3644 symbol names will be encoded in C-string literals, tell quotearg to
3645 escape trigraphs. This used to be the default in gnulib.
3646 * tests/regression.at (Token definitions): Because of the change in
3647 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
3648 escapes trigraphs in symbol names. Thus, yytname no longer has
3649 trigraphs unnecessarily doubly escaped. Update test case output.
3650 Extend test case to be sure Bison's own error messages will no longer
3651 have trigraphs in symbol names unnecessarily escaped once.
3652
74c52fc8
JD
36532008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
3654
3655 Fix make dist infinite loop reported by Juan Manuel Guerrero at
3656 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
3657 * .cvsignore: Add .version.
3658 * .version.in: New.
3659 * bootstrap.conf (gnulib_modules): Add git-version-gen.
3660 * configure.ac (AC_CONFIG_FILES): Add .version.
3661 * build-aux/.cvsignore: Add git-version-gen.
3662
8e55b3aa
JD
36632008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
3664
3665 * NEWS (2.3a+): Mention that -g now takes an argument.
3666 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
3667 consistency. Update the -g and -x entries now that they take
3668 arguments. Use brackets to indicate optional arguments.
3669 * src/getargs.c (usage): Explain the relationship between arguments of
3670 long and short options more completely. Document --defines and -d
3671 separately since the former takes an argument but, for POSIX Yacc, the
3672 latter does not.
3673 (short_options): Let -W take an optional argument like --warnings.
8452fdd9 3674 (getargs): Sort cases.
8e55b3aa 3675
59c5ac72
AD
36762008-02-28 Akim Demaille <demaille@gostai.com>
3677
3678 * doc/bison.texinfo: Fix a few typos.
3679
118d4978
AD
36802008-02-28 Akim Demaille <akim@epita.fr>
3681
3682 * doc/bison.texinfo (Bison Options): Document -W.
3683 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
3684
7020f1e9
AD
36852008-02-28 Akim Demaille <akim@epita.fr>
3686
3687 * src/getargs.c (short_options): Split and sort for readability.
3688 -g and -x take optional arguments, just like their long options.
3689 * build-aux/cross-options.pl: Use /x to make the regexp easier to
3690 understand.
3691 Fix the handling of $opt which resulted in all the argument to be
3692 considered as optional.
3693
59da312b
JD
36942008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
3695
3696 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
3697 say its interface is experimental.
3698 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
3699 Java.
3700 (Bison Options): In the -L and --language entry, mention Java.
3701 (Java Bison Interface): Say the interface is experimental.
3702 * src/getargs.c (usage): Mention -L and --language.
3703
3704 * NEWS (2.3a+): Say the push parsing interface is experimental.
3705 * doc/bison.texinfo (Push Decl): Likewise.
3706 (Decl Summary): Likewise in the "%define api.push_pull" entry.
3707 (Push Parser Function): Likewise.
3708 (Pull Parser Function): Likewise.
3709 (Parser Create Function): Likewise.
3710 (Parser Delete Function): Likewise.
3711 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
3712 yypull_parse, and yypush_parse entries.
3713
3714 * NEWS (2.3a+): Mention XML support, and say the schema is
3715 experimental.
3716 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
3717 * src/getargs.c (usage): Say the XML schema is experimental.
3718
3719 * NEWS (2.3a+): Say option instead of flag.
3720
2bb3ebec
WP
37212008-02-21 Wojciech Polak <polak@gnu.org>
3722
3723 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
3724 text.
3725
333e670c
JD
37262008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
3727
3728 Fix impure push parser compile error reported by Bob Rossi at
3729 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
3730 * data/yacc.c: Clean up whitespace in the output a little.
3731 (yypstate_allocated): Define for impure push parsers regardless of
3732 whether the pull interface is also requested.
3733 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
3734 check impure push parsers without the pull interface.
3735
3736 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
3737 yyerror takes arguments specified by %parse-param while yypstate_new
3738 does not.
3739 * doc/bison.texinfo (Parser Create Function): Document that
3740 yypstate_new returns 0 for multiple impure parser instances.
3741 * tests/push.at (Push Parsing: Multiple impure instances): Update
3742 expected stderr output.
3743
798096e1
JD
37442008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3745
3746 * runtime-po/POTFILES.in (push.c): Remove.
3747
9ca7f077
JD
37482008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
3749
3750 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
3751 * data/push.c: Rename to...
3752 * data/yacc.c: ... this, overwriting it.
3753 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
3754 `%push-pull-parser' -> `%define api.push_pull "both"'.
3755 Remove old yacc.c tests, and update push.c tests to yacc.c.
3756
42ee26bb
JD
37572008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
3758
3759 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
3760 `"%code top" blocks' instead of `%code "top" blocks'.
3761 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
3762 Clean up whitespace in the output a little.
3763
b1cc23c4
JD
37642008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
3765
3766 Fix documentation problems reported by Tim Josling at
3767 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
3768 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
3769 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
3770 integers. Explain the effect of literal string aliases on error
3771 messages. Copy token 0 documentation from the C++ skeleton
3772 documentation.
3773
ab7f29f8
JD
37742008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
3775
3776 Accept a token number in a %left, %right, or %nonassoc for POSIX
3777 conformance. Reported by Tim Josling at
3778 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
3779 * NEWS (2.3a+): Mention.
3780 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
3781 and code numbers are treated by precedence declarations.
3782 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
3783 of symbols.1.
3784 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
3785 of symbol.
3786 (symbol.prec): New, just like symbol but allows INT.
3787 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
3788 longer holds.
3789 * tests/regression.at (Token number in precedence declaration): New
3790 test case.
3791
a924ef36
JMG
37922008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3793
3794 DJGPP specific issues.
3795 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
3796 be changed. Copyright timestamp adjusted.
3797 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
3798 be changed. Copyright timestamp adjusted.
3799 * djgpp/config.site: Copyright timestamp adjusted.
3800 * djgpp/config_h.sed: Copyright timestamp adjusted.
3801 * djgpp/djunpack.bat: Copyright timestamp adjusted.
3802 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
3803 filename translation list.
3804 * djgpp/subpipe.c (init_subpipe): Check the environment variables
3805 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
3806 files shall be created. Before trying to use the temp dir where the
3807 environment variable points to check that the dir really exists. If
3808 not default to the cwd as temp dir. Copyright timestamp adjusted.
3809 * djgpp/subpipe.h: Copyright timestamp adjusted.
3810 * djgpp/testsuite.sed: Copyright timestamp adjusted.
3811
389c8cfd
PE
38122008-01-30 Paul Eggert <eggert@cs.ucla.edu>
3813
3814 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
3815
5d1cfef4
PE
38162008-01-09 Paul Eggert <eggert@cs.ucla.edu>
3817
3818 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
3819 Problem reported by Claudio Saavedra in
3820 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
3821
e2dcf996
WP
38222008-01-05 Wojciech Polak <polak@gnu.org>
3823
3824 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
3825 document's title with the input grammar file name.
3826
da730230
JD
38272007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
3828
3829 Automate regression testing of the XML/XSLT implementation. Discussed
3830 starting at
3831 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
3832 * configure.ac (XSLTPROC): New substitution.
3833 * Makefile.am (maintainer-xml-check): New phony target invoking...
3834 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
3835 invoking make maintainer-check with BISON_TEST_XML=1.
3836 * tests/atlocal.in (XSLTPROC): New.
3837 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
3838 not to report reachable memory when Bison is expected to have a
3839 non-zero exit status and (2) to compare XML/XSLT output with --graph
3840 and --report=all output for every working grammar when
3841 BISON_TEST_XML=1.
3842 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
3843 (AT_BISON_CHECK_XML): New.
3844 (AT_QUELL_VALGRIND): New.
3845 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
3846 (AT_CHECK): ... don't redefine this since this was the old way to
3847 quell Valgrind.
3848 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
3849 AT_BISON_CHECK invocations.
3850 * tests/c++.at: Likewise.
3851 * tests/calc.at: Likewise.
3852 * tests/conflicts.at: Likewise.
3853 * tests/cxx-type.at: Likewise.
3854 * tests/existing.at: Likewise.
3855 * tests/glr-regression.at: Likewise.
3856 * tests/headers.at: Likewise.
3857 * tests/input.at: Likewise.
3858 * tests/java.at: Likewise.
3859 * tests/output.at: Likewise.
3860 * tests/push.at: Likewise.
3861 * tests/reduce.at: Likewise.
3862 * tests/regression.at: Likewise.
3863 * tests/sets.at: Likewise.
3864 * tests/skeletons.at: Likewise.
3865 * tests/synclines.at: Likewise.
3866 * tests/torture.at: Likewise.
3867 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
3868 tends to hang xsltproc.
3869 (Big horizontal): Likewise.
3870
408476bc
JD
38712007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
3872
3873 In XML output, remove redundant class attribute on symbol element.
3874 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
3875 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
3876 look up a symbol to determine whether it's a nonterminal or terminal.
3877 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
3878 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
3879
3880 Add prec/assoc information to XML output.
3881 * src/gram.c (grammar_rules_print_xml): For each rule that has a
3882 %prec, add a percent_prec attribute.
3883 * src/print-xml.c (print_grammar): For each terminal that has a
3884 precedence or associativity, add a prec or assoc attribute.
3885 (xml_indent): New.
3886 (xml_puts): Use xml_indent.
3887 (xml_printf): Use xml_indent.
3888 * src/print-xml.h (xml_indent): Prototype.
3889
3890 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
3891 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
3892
d4a26c48
JD
38932007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
3894
3895 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
3896 (bison:ruleByNumber): ... this for clarity.
3897 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
3898 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
3899 (xsl:template match="reduction"): Update.
3900 (xsl:template match="item"): Update.
3901 (xsl:template match="reduction"): Update.
3902
3903 In the XML output, don't print the list of rules where symbols appear.
3904 Compute it in XSLT instead. Discussed at
3905 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
3906 * data/xslt/bison.xsl (bison:ruleByLhs): New.
3907 (bison:ruleByRhs): New.
3908 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
3909 bison:ruleByRhs.
3910 (xsl:template match="terminal/rule"): Remove.
3911 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
3912 bison:ruleByRhs.
3913 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
3914 Remove.
3915 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
3916 bison:ruleByRhs and mode="number-link" for rule template.
3917 (xsl:template match="terminal/rule"): Remove.
3918 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
3919 bison:ruleByRhs and mode="number-link" for rule template.
3920 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
3921 Rewrite as...
3922 (xsl:template match="rule" mode="number-link"): ... this.
3923 * src/print-xml.c (print_grammar): Don't print the list of rules.
3924
ef1b4273
JD
39252007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
3926
3927 Don't let --report affect XML output; always print all information.
3928 Discussed at
3929 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
3930 * src/conflicts.c (log_resolution): Implement.
3931 * src/print-xml.c (print_core): Implement.
3932 (print_state): Implement.
3933 (print_xml): Implement.
3934
3935 * NEWS (2.3a+): Fix quotes.
3936 * src/parse-gram.y (prologue_declaration): For consistency with -v,
3937 don't let %verbose clear the list specified by --report.
3938
0f6cd9e3
AD
39392007-11-26 Akim Demaille <akim@epita.fr>
3940
3941 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
3942
d80fb37a
JD
39432007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
3944
3945 In the XML output, list useless and unused symbols and rules with the
3946 useful ones and add a "usefulness" attribute. Discussed starting at
3947 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
3948 * src/gram.c (grammar_rules_partial_print_xml): Remove.
3949 (grammar_rules_print_xml): Print all rules instead of just those
3950 useful in the grammar, and add a "usefulness" attribute.
3951 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
3952 * src/print-xml.c (print_rules_useless_in_parser): Remove.
3953 (print_grammar): Print all nonterminals instead of just useful ones,
3954 and add a "usefulness" attribute to nonterminals and terminals.
3955 (print_xml): Don't print a separate "reductions" or
3956 "rules-useless-in-parser" element.
3957 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
3958 (reduce_xml): Remove.
3959 (reduce_token_unused_in_grammar): New.
3960 (reduce_nonterminal_useless_in_grammar): New.
3961 * src/reduce.h (reduce_xml): Remove prototype.
3962 (reduce_token_unused_in_grammar): Add prototype.
3963 (reduce_nonterminal_useless_in_grammar): Add prototype.
3964 * data/xslt/xml2text.xsl: Update for XML changes.
3965 * data/xslt/xml2xhtml.xsl: Update for XML changes.
3966 * tests/reduce.at (Useless Terminals): Update output.
3967 (Useless Rules): Update output.
3968 (Reduced Automaton): Update output.
3969
3970 Say "Terminals unused in grammar" instead of "Unused terminals".
3971 * NEWS (2.3a+): Update.
3972 * doc/bison.texinfo (Understanding): Update example output.
3973 * src/reduce.c (reduce_output): Implement.
3974 * data/xslt/xml2text.xsl: Implement.
3975 * data/xslt/xml2xhtml.xsl: Implement.
3976
1bb2bd75
JD
39772007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
3978
3979 Accept --report-file=FILE to override the default `.output' filename.
3980 * NEWS (2.3a+): Mention.
3981 * doc/bison.texinfo (Bison Options): Add an entry.
3982 * src/files.c (compute_output_file_names): Don't override
3983 spec_verbose_file if already set.
3984 * src/getargs.c (usage): Document --report-file.
3985 (REPORT_FILE_OPTION): New anonymous enum member.
3986 (long_options): Add entry for it.
3987 (getargs): Add case for it setting spec_verbose_file.
3988
3989 * build-aux/cross-options.pl: Don't record a short option just because
3990 there's an arg.
3991 * doc/.cvsignore: Add yacc.1.
3992
a005a9c4
AD
39932007-11-14 Akim Demaille <akim@epita.fr>
3994
3995 * doc/yacc.1.in: New.
3996 * configure.ac, doc/Makefile.am: Adjust.
3997 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
3998 config.h symbol.
3999 Use AC_SUBST for assignments too.
4000 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
4001
cff03fb2
JD
40022007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4003
4004 * src/gram.c: Remove comments that duplicate comments in gram.h.
4005
4006 When reporting useless rules and nonterminals, say "useless in grammar"
4007 instead of "useless", and say "useless in parser" instead of "never
4008 reduced". Discussed starting at
4009 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
4010 * NEWS (2.3a+): Mention this change.
4011 * data/xslt/xml2text.xsl: Update output text and expected input XML
4012 element names to match changes below.
4013 * data/xslt/xml2xhtml.xsl: Likewise.
4014 (xsl:template match="bison-xml-report"): Add missing entry in Table of
4015 Contents: "Rules useless in parser due to conflicts".
4016 * doc/bison.texinfo (Decl Summary): Reword a little.
4017 (Understanding): Update example output for changes below.
4018 * src/gram.c: (rule_useful_p): Rename to...
4019 (rule_useful_in_grammar_p): ... this.
4020 (rule_useless_p): Rename to...
4021 (rule_useless_in_grammar_p): ... this.
4022 (rule_never_reduced_p): Rename to...
4023 (rule_useless_in_parser_p): ... this.
4024 (grammar_rules_print): Update for renames.
4025 (grammar_rules_print_xml): Update for renames.
4026 (grammar_rules_never_reduced_report): Rename to...
4027 (grammar_rules_useless_report): ... this since it is used for either
4028 kind of useless rule.
4029 * src/gram.h: Reword comments and update function names in prototypes.
4030 * src/main.c (main): Say "rule useless in parser due to conflicts".
4031 * src/print-xml.c (print_rules_never_reduced): Rename to...
4032 (print_rules_useless_in_parser): ... this, and rename output XML
4033 element "rules-never-reduced" to "rules-useless-in-parser".
4034 (print_xml): Update for rename.
4035 * src/print.c (print_results): Say "Rules useless in parser due to
4036 conflicts".
4037 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
4038 (nonterminals_reduce): Say "nonterminal useless in grammar".
4039 (reduce_output): Say "Nonterminals useless in grammar".
4040 Say "Rules useless in grammar".
4041 (reduce_xml): Rename output XML element "useless" to
4042 "useless-in-grammar".
4043 (reduce_print): Don't report the count of grammatically useless rules
4044 as "rules never reduced" just because %yacc is specified.
4045 In the correct report of this count, say nonterminal(s) and rule(s)
4046 "useless in grammar".
4047 * tests/conflicts.at (S/R in initial): Update expected output.
4048 (Defaulted Conflicted Reduction): Likewise.
4049 (Unreachable States After Conflict Resolution): Likewise.
4050 * tests/existing.at (GNU pic Grammar): Likewise.
4051 * tests/reduce.at (Useless Nonterminals): Likewise.
4052 (Useless Rules): Likewise.
4053 (Reduced Automaton): Likewise.
4054 (Underivable Rules): Likewise.
4055 (Empty Language): Likewise.
4056
66f0441d
JD
40572007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
4058
4059 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
4060 here document and before the EOF so that BSD's implementation of Bourne
4061 shell doesn't parse the delimiter as part of the here document.
4062 * doc/.cvsignore: Add cross-options.texi.
4063 * src/getargs.c (usage): Add a blank line after the warning categories.
4064
d0ee4105
PB
40652007-11-08 Paolo Bonzini <bonzini@gnu.org>
4066
4067 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
4068
e8b1fb9b
AD
40692007-11-05 Akim Demaille <akim@epita.fr>
4070
4071 Remove Id: from bison.1.
4072 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
4073 (perl -0777 -pi -e 's/\.PP\nId): New.
4074 (.x.1): Use it to ignore the version control revision.
4075
2f7a96b5
AD
40762007-11-05 Akim Demaille <demaille@gostai.com>
4077
4078 * build-aux/Makefile.am: Ship cross-options.pl.
4079 * doc/Makefile.am: Always refer to cross-options.texi with
4080 $(srcdir).
4081 (MAINTAINERCLEANFILES): Add it.
4082
f4101aa6
AD
40832007-11-04 Akim Demaille <demaille@gostai.com>
4084
4085 Generate the long/short option cross-table.
4086 * build-aux/cross-options.pl: New.
4087 * doc/Makefile.am (cross-options.texi): New.
4088 * doc/bison.texinfo: Use it.
4089
727a1401
AD
40902007-11-04 Akim Demaille <demaille@gostai.com>
4091
4092 Generate bison.1 using help2man.
4093 * doc/common.x, doc/bison.x: New.
4094 * doc/Makefile.am (bison.1, .x.1): New.
4095 The code is taken from autoconf-2.61/man/Makefile.am.
4096 * configure.ac: Look for help2man.
4097
6aeb9c57
AD
40982007-11-04 Akim Demaille <demaille@gostai.com>
4099
4100 Complete --help.
4101 * src/getargs.c (usage): Document -W, make it clear that -d,
4102 -g and -x have optional arguments.
4103
d7be4085
AD
41042007-11-04 Akim Demaille <demaille@gostai.com>
4105
4106 Find sha1sum when named gsha1sum.
4107 * bootstrap (find_tool): New.
4108 ($SHA1SUM): New.
4109
d9df47b6
JD
41102007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
4111
4112 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
4113 at
4114 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
4115 * NEWS (2.3a+): Mention.
4116 * data/bison.m4 (b4_pure_if): Don't define it here.
4117 * data/c.m4 (b4_identification): Depend on individual skeletons to
4118 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
4119 values of the %define variables api.pure or api.push_pull. Define
4120 YYPURE, YYPUSH, and YYPULL accordingly.
4121 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
4122 glr.cc has already defined b4_pure_flag.
4123 * data/push.c: Define b4_pure_if based on `%define api.pure'.
4124 Remove YYPUSH and YYPULL since they're back in b4_identification again.
42ee26bb 4125 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
d9df47b6
JD
4126 * doc/bison.texinfo (Pure Decl): Update.
4127 (Push Decl): Update.
4128 (Decl Summary): Add api.pure to %define entry.
4129 In %pure-parser entry, say it's deprecated and reference %define.
4130 (Pure Calling): Update.
4131 (Error Reporting): Update.
4132 (C++ Scanner Interface): Update.
4133 (How Can I Reset the Parser): Update.
4134 (Table of Symbols): In %pure-parser entry, say it's deprecated and
4135 reference %define.
4136 * src/getargs.c (pure_parser): Remove global variable.
4137 * src/getargs.h (pure_parser): Remove extern.
4138 * src/output.c (prepare): Don't define pure_flag muscle.
4139 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
4140 wrapper around `%define api.pure'.
4141 * tests/calc.at (Simple LALR Calculator): Update.
4142 (Simple GLR Calculator): Update.
4143 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
4144 Update.
4145 (GLR: Resolve ambiguity, pure, locations): Update.
4146 (GLR: Merge conflicting parses, pure, no locations): Update.
4147 (GLR: Merge conflicting parses, pure, locations): Update.
4148 * tests/glr-regression.at (Uninitialized location when reporting
4149 ambiguity): Update
4150 * tests/input.at (Unused %define api.pure): New test case.
4151 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
4152 AT_PURE_IF and AT_PURE_AND_LOC_IF.
4153 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
4154
c373bf8b
JD
41552007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
4156
4157 %define push_pull -> %define api.push_pull. Discussed starting at
4158 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
4159 * data/push.c: Expect the new name.
4160 * data/yacc.c: Likewise.
4161 * doc/bison.texinfo (Push Decl): Update.
4162 (Decl Summary): Update %define entry.
4163 (Push Parser Function): Update.
4164 (Pull Parser Function): Update.
4165 (Parser Create Function): Update.
4166 (Parser Delete Function): Update.
4167 * tests/calc.at (Simple LALR Calculator): Update.
4168 * tests/input.at (%define enum variables): Update.
4169 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
4170 (Push Parsing: Multiple impure instances): Update.
4171 (Push Parsing: Unsupported Skeletons): Update.
4172 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
4173 (Exploding the Stack Size with Malloc): Update.
4174
4175 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
4176 other entries some.
4177
32f19b6b
JD
41782007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
4179
4180 For the XML output's terminal element, rename @number to @token-number,
4181 and add @symbol-number. In the nonterminal element, rename @number to
4182 @symbol-number. Discussed starting at
4183 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
4184 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
4185 renames.
4186 (xsl:template match="nonterminal"): Likewise.
4187 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
4188 (xsl:template match="nonterminal"): Likewise.
4189 * src/print-xml.c (print_grammar): Implement.
4190
255a6b90
JD
41912007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4192
4193 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
4194 2007-10-11 change, the child elements here are items not rules.
408476bc 4195 (xsl:template match="item"): New.
255a6b90
JD
4196 (xsl:template match="rule"): Update for new reduced itemset.
4197 (xsl:template match="point"): Remove.
4198 (xsl:template match="empty"): For consistency with --graph, don't
4199 output "/* empty */".
4200 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
4201 line-wrap, don't pass a negative value as first-line-length since this
4202 won't work with the following changes.
4203 (xsl:template name="line-wrap"): Simplify slightly.
4204 (xsl:template name="ws-search"): Eliminate recursion.
4205 * src/print_graph.c (print_core): Don't print a reduction's lookahead
4206 set next to an item whose dot is not at the end of the RHS even if it
4207 happens to be associated with the same rule.
4208
88c78747
JD
42092007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
4210
31984206
JD
4211 Add %define lr.keep_unreachable_states.
4212 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
4213 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
4214 * src/main.c (main): Implement it.
4215 * tests/conflicts.at (Unreachable States After Conflict Resolution):
4216 Extend to test it, and fix a typo.
4217
42182007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
4219
4220 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
88c78747
JD
4221 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
4222 the example .output text.
4223 * tests/regression.at (Extra lookahead sets in report): Improve wording
4224 of comments.
4225
b7a70162
WP
42262007-10-17 Wojciech Polak <polak@gnu.org>
4227
4228 * src/print-xml.c (print_grammar): Renamed
4229 <terminal> and <nonterminal> attributes:
4230 "type" to "number" and "symbol" to "name".
4231 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
4232 Use new attribute names.
4233 (xsl:template match="nonterminal"): Likewise.
4234 * data/xslt/xml2xhtml.xsl: Likewise.
4235
a0de5091
JD
42362007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
4237
4238 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
4239 (Option Cross Key): Likewise.
4240
4241 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
4242 next to an item whose dot is not at the end of the RHS even if it
4243 happens to be associated with the same rule.
4244 * src/print.c (print_core): Likewise.
4245 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
4246 (Resolved SR Conflicts): Update output.
4247 * tests/regression.at (Extra lookahead sets in report): New test case.
4248
4c20d18d
WP
42492007-10-11 Wojciech Polak <polak@gnu.org>
4250
4251 * src/print-xml.c (print_core): Remove item set
4252 redundancy.
4253 * data/xslt/bison.xsl (bison:ruleNumber): New key.
4254 Improve processing time. Suggested by Joel E. Denny.
4255 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
4256 Write xsl:param "required" attribute as comment.
4257 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
4258 (xsl:template match="rule"): Support new reduced itemset.
4259 (xsl:template match="point"): Remove.
4260 * data/xslt/xml2xhtml.xsl: Likewise.
4261
f506ad1c
JD
42622007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
4263
4264 * src/getargs.c (version): Update copyright year.
4265
21f1b063
JD
42662007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
4267
4268 Make xml2dot.xsl and --graph produce the same output.
4269 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
4270 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
4271 escaped later.
4272 (xsl:template name="output-node"): Use the new escape template instead
4273 of the string-replace template directly.
4274 (xsl:template name="output-edge"): Likewise.
4275 (xsl:template name="escape"): New, escapes backslashes and newlines in
4276 addition to quotation marks.
4277 * src/graphviz.c (start_graph, output_node, output_edge): Add
4278 whitespace to output for legibility.
4279
4280 Make xml2text.xsl and --report produce the same output, and remove the
4281 XML "conflicts" element since a conflict summary is easily extracted
4282 from the automaton.
4283 * data/xslt/bison.xsl: New.
4284 (xsl:template match="state" mode="bison:count-conflicts): New.
4285 * data/xslt/xml2text.xsl: Import bison.xsl.
4286 (xsl:template match="bison-xml-report"): Instead of styling the
4287 "conflicts" element, style the "automaton" element with mode
4288 "conflicts". Unlike the former, the latter lists S/R and R/R
4289 conflicts for a state on the same line.
4290 (xsl:template match="conflicts"): Remove.
4291 (xsl:template match="conflict"): Remove.
4292 (xsl:template match="terminal"): Line-wrap the list of rules in which
4293 the terminal is used.
4294 (xsl:template match="nonterminal"): Likewise for nonterminals.
4295 (xsl:template match="automaton" mode="conflicts"): New.
4296 (xsl:template match="state" mode="conflicts"): New.
4297 (xsl:template name="line-wrap"): New.
4298 (xsl:template name="ws-search"): New.
4299 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
4300 (xsl:template match="bison-xml-report"): Instead of styling the
4301 "conflicts" element, style the "automaton" element with mode
4302 "conflicts."
4303 (xsl:template match="conflicts"): Remove.
4304 (xsl:template match="conflict"): Remove.
4305 (xsl:template match="automaton" mode="conflicts"): New.
4306 (xsl:template match="state" mode="conflicts): New.
4307 * src/conflicts.c (conflicts_output_xml): Remove.
4308 * src/conflicts.h (conflicts_output_xml): Remove prototype.
4309 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
4310 * src/print.c (print_grammar): Consistently wrap at the 66th column so
4311 the corresponding XSLT is easier. Also, never wrap between a word and
4312 the comma that follows it.
4313
793fbca5
JD
43142007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
4315
4316 Improve C++ namespace support. Discussed starting at
4317 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
4318 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
4319 b4_namespace_close): New macros that interpret the %define variable
4320 "namespace" so its value can contain "::" to indicate nested
4321 namespaces.
4322 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
4323 the above macros.
4324 * data/lalr1.cc (b4_namespace): Likewise.
4325 * data/location.cc (b4_namespace): Likewise.
4326 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
4327 inside a new table in the general %define entry. Document `%define
4328 namespace' there as well. Point the %name-prefix entry to it since it
4329 explains it more completely in the case of C++.
4330 (C++ Bison Interface): Mention `%define namespace' instead of
4331 %name-prefix.
4332 (Table of Symbols): Remove the `%define push_pull' entry. The %define
4333 entry suffices.
4334 * tests/c++.at (Relative namespace references): New test case.
4335 (Absolute namespace references): New test case.
4336 (Syntactically invalid namespace references): New test case.
4337 * tests/input.at (C++ namespace reference errors): New test case.
4338
35b8730d
JD
43392007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
4340
4341 Add syncline support and location accessor to internal %define
4342 interfaces.
4343 * data/bison.m4 (b4_percent_define_get_loc): New.
4344 (b4_percent_define_get_syncline): New.
4345 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
4346 (b4_percent_define_default): Record defining location as line 1 rather
4347 than 0 for the sake of synchronizing #line's, and define
4348 b4_percent_define_syncline(VARIABLE).
4349 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
4350 * src/muscle_tab.c (muscle_syncline_grow): New.
4351 (muscle_code_grow): Use muscle_syncline_grow.
4352 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
4353 define b4_percent_define_syncline(VARIABLE).
4354 (muscle_percent_define_get_loc): New.
4355 (muscle_percent_define_get_syncline): New.
4356 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
4357 remove some unused variables.
4358 (muscle_percent_define_default): Record defining location as line 1
4359 rather than 0 for the sake of synchronizing #line's, and define
4360 b4_percent_define_syncline(VARIABLE).
4361 (muscle_percent_define_check_values): Use
4362 muscle_percent_define_get_loc.
4363 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
4364 (muscle_percent_define_get_syncline): Prototype.
4365 * tests/skeletons.at (%define Boolean variables: invalid skeleton
4366 defaults): Update output for location change.
4367 (Complaining during macro argument expansion): Extend to test
4368 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
4369
7dc4a694
JD
43702007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
4371
4372 Fix some error-reporting macro bugs.
4373 * data/bison.m4 (b4_cat): New.
4374 (b4_error, b4_error_at): Use b4_cat to send error directives directly
4375 to stdout so they don't become arguments to other macros. Update
4376 comments and add examples.
4377 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
4378 add examples.
4379 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
4380 after printing the error directive so that M4 doesn't report subsequent
4381 problems that are induced by this problem.
4382 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
4383 instead of just in them. Recognize @\n in both places. Both expand to
4384 the empty string. Needed by b4_cat.
4385 * tests/skeletons.at (Complaining during macro argument expansion):
4386 New test case.
4387 (Fatal errors make M4 exit immediately): New test case.
4388
d4bd2295
JD
43892007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
4390
4391 Implement --print-datadir.
4392 * src/getargs.c (usage): Mention.
4393 (PRINT_DATADIR_OPTION): New anonymous enum member.
4394 (long_options): Add entry for it.
4395 (getargs): Add case for it calling compute_pkgdatadir.
4396 * src/output.c (output_skeleton): Encapsulate data directory
4397 computation from here...
4398 (prepare): ... and from here...
4399 (compute_pkgdatadir): ... into this new function.
4400 * src/output.h (compute_pkgdatadir): Prototype.
4401
34cdeddf
JD
44022007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
4403
4404 * src/print-xml.c (escape_bufs): New static global variable
4405 replacing...
4406 (xml_escape_n): ... the static local variable buf here.
4407 (print_xml): Free memory for escape_bufs.
4408 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
4409
d782395d
JD
44102007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
4411
4412 Replace `%push-parser' and `%push-pull-parser' with
4413 `%define push_pull "push"' and `%define push_pull "both"'.
4414 `%define push_pull "pull"' is the default.
4415 * doc/bison.texinfo (Push Decl, Push Parser Function,
4416 Pull Parser Function, Parser Create Function, Parser Delete Function):
4417 Update declarations.
4418 (Decl Summary, Table of Symbols): Replace %push-parser and
4419 %push-pull-parser entries with a %define push_pull entry.
4420 * data/bison.m4 (b4_percent_define_check_values): New macro.
4421 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
4422 definitions...
4423 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
4424 definitions...
4425 * data/push.c: ... to here and compute them from the value of the
4426 %define variable push_pull.
4427 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
4428 parsing requests here...
4429 * data/yacc.c: ... hack this to switch to push.c any time
4430 b4_use_push_pull_flag or the %define variable push_pull is set. This
4431 will go away when we mv push.c yacc.c.
4432 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
4433 push parsing is not supported since unused %define variables are
4434 reported anyway.
4435 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
4436 * src/muscle_tab.h (muscle_percent_define_check_values): Update
4437 comments for consistency with b4_percent_define_check_values.
4438 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
4439 muscles.
4440 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
4441 Remove.
4442 (prologue_declaration): Remove %push-parser and %push-pull-parser
4443 rules.
4444 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
4445 * tests/calc.at: Update declarations.
4446 * tests/input.at (%define enum variables): New test case.
4447 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
4448 declaration.
4449 (Push Parsing: Multiple impure instances): Update declaration.
4450 (Push Parsing: Unsupported Skeletons): New test case.
4451 * tests/torture.at (Exploding the Stack Size with Alloca): Update
4452 declaration.
4453 (Exploding the Stack Size with Malloc): Update declaration.
4454
3f999f78
WP
44552007-09-24 Wojciech Polak <polak@gnu.org>
4456
4457 Add XSLT transformations.
4458
4459 * data/xslt/xml2dot.xsl: Transform XML into DOT.
4460 * data/xslt/xml2text.xsl: Transform XML into plain text.
4461 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
4462 * data/Makefile.am (xsltdir): New variable.
4463 (dist_xslt_DATA): Add xslt/*.xsl files.
4464
a4f75309
PE
44652007-09-23 Paul Eggert <eggert@cs.ucla.edu>
4466
4467 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
4468 Problem reported by Wojciech Polak.
4469 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
4470 (xml_printf): Undo change I made on 21 September; that is,
4471 indent 2 spaces, not 1.
4472
ad5feac4
JD
44732007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
4474
4475 Pacify ./configure --enable-gcc-warnings.
4476 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
4477 `char const *' instead of `char *'.
4478 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
4479 local variable `sep'.
4480
41d7a5f2
PE
44812007-09-21 Paul Eggert <eggert@cs.ucla.edu>
4482
4483 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
4484 elsewhere.
4485 * src/print-xml.c: Prefer "const" after types; that's more consistent.
4486 (xml_printf): Indent just 1 space for level.
4487 (e_char, xlate_char): Remove.
4488 (xml_escape_string): Rewrite to avoid undefined behavior (used
4489 storage that was freed from the stack).
4490 (xml_escape_n): Don't bother checking for subscript error.
4491
3f999f78
WP
44922007-09-21 Wojciech Polak <polak@gnu.org>
4493
4494 Add Bison XML Automaton Report.
41d7a5f2
PE
4495
4496 Add support for an -x option to generate an XML report.
4497 It is not documented yet.
4498 * src/print-xml.c: New file.
4499 * src/print-xml.h: Likewise.
4500 * lib/timevar.def (TV_XML): New var.
4501 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
4502 * src/conflicts.c: Include print-xml.h.
4503 (solved_conflicts_xml_obstack): New var.
4504 (log_resolution, conflicts_solve, conflicts_free):
4505 Add support for XML report.
4506 (conflicts_output_val): New function.
4507 * src/conflicts.h (conflicts_output_val): New decl.
4508 * src/files.c (spec_xml_file): New var.
4509 (compute_output_file_names, output_file_names_free): Add XML support.
4510 * src/files.h (spec_xml_file): New decl.
4511 * src/getargs.c (xml_flag): New var.
4512 (usage, short_options, long_options, getargs): Add XML support.
4513 * src/getargs.h (xml_flag): New decl.
4514 * src/gram.c: Include print-xml.h.
4515 (rule_lhs_print_xml, rule_rhs_print_xml):
4516 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
4517 New functions.
4518 * src/gram.h: Declare external ones.
4519 * src/main.c: Include print-xml.h.
4520 (main): Add XML support.
4521 * src/reduce.c: Include print-xml.h.
4522 (reduce_xml): New function.
4523 * src/reduce.h: Declare it.
4524 * src/state.c: Include print-xml.h.
4525 (state_new): Add XML support.
4526 (state_rule_lookahead_tokens_print_xml): New function.
4527 * src/state.h: Declare it.
4528 (struct state): New member solved_conflicts_xml.
4529 * src/symtab.c (symbol_class_get_string): New function.
4530 * src/symtab.h: Declare it.
4531
6d8e724d
PE
45322007-09-21 Paul Eggert <eggert@cs.ucla.edu>
4533
4534 * GNUmakefile: Switch to coreutils's version.
4535 * bootstrap: Likewise.
4536 * Makefile.cfg: Adjust to new GNUmakefile.
4537 * README-hacking: Likewise.
4538
4539 Import from gnulib:
4540
4541 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
4542 Bruno Haible <bruno@clisp.org>
4543
4544 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
4545 and is a script that invokes bison. Tighten the code. Add comments.
4546
922bdd7f
JD
45472007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
4548
4549 Spell "boolean" as "Boolean". Reported by Akim Demaille.
4550 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
4551 * doc/bison.texinfo (Decl Summary): Fix.
4552 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
4553 * tests/input.at (Boolean %define variables): Update output.
4554 * tests/skeletons.at (%define boolean variables: invalid skeleton
4555 defaults): Rename to...
4556 (%define Boolean variables: invalid skeleton defaults): ... this and
4557 update output.
4558
1b17b01d
JD
45592007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
4560
4561 In impure push mode, don't allow more than one yypstate to be allocated
4562 since multiple impure parsers would corrupt yynerrs.
4563 * data/push.c (yypstate_allocated): New static global variable
4564 initialized to 0.
4565 (yypull_parse): If yypstate_new returns 0, don't report it as memory
4566 exhaustion if yypstate_allocated is 1, but still return 2.
4567 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
4568 already 1. Otherwise, set it to 1.
4569 (yypstate_delete): Set it to 0.
4570 * tests/push.at (Push Parsing: Multiple impure instances): New test
4571 case.
4572
9987d1b3
JD
45732007-08-17 Bob Rossi <bob@brasko.net>
4574
4575 * doc/bison.texinfo (Push Decl): Document the push parser.
4576 (Table of Symbols): Ditto.
4577 (Pure Decl): Ditto.
4578 (Decl Summary): Ditto.
4579 (Multiple Parsers, Push Parser Function, Pull Parser Function,
4580 Parser Create Function, Parser Delete Function):
4581 Add new push parser symbols.
4582 (Table of Symbols): Document push-parser, push-pull-parser,
4583 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
4584
f16b0819
PE
45852007-08-15 Paul Eggert <eggert@cs.ucla.edu>
4586
4587 Update to GPLv3.
4588 * doc/gpl-3.0.texi: New file.
4589 * doc/gpl.texi: Remove.
4590 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
4591 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
4592 * README-hacking, TODO, bootstrap, bootstrap.conf:
4593 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
4594 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
4595 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
4596 * data/lalr1.cc, data/lalr1.java, data/location.cc:
4597 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
4598 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
4599 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
4600 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
4601 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
4602 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
4603 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
4604 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
4605 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
4606 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
4607 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
4608 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
4609 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
4610 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
4611 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
4612 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
4613 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
4614 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
4615 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
4616 * src/complain.c, src/complain.h, src/conflicts.c:
4617 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
4618 * src/files.h, src/flex-scanner.h, src/getargs.c:
4619 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
4620 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
4621 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
4622 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
4623 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
4624 * src/print.c, src/print.h, src/print_graph.c:
4625 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
4626 * src/reduce.h, src/relation.c, src/relation.h:
4627 * src/revision.h, src/scan-code.h, src/scan-code.l:
4628 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
4629 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
4630 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
4631 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
4632 * tests/Makefile.am, tests/actions.at, tests/c++.at:
4633 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
4634 * tests/existing.at, tests/glr-regression.at:
4635 * tests/headers.at, tests/input.at, tests/java.at:
4636 * tests/local.at, tests/output.at, tests/push.at:
4637 * tests/reduce.at, tests/regression.at, tests/sets.at:
4638 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
4639 * tests/torture.at:
4640 Update to GPLv3.
4641
728c4be2
JD
46422007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
4643
4644 Get rid of broken %no-parser, -n, and --no-parser implementation and
4645 documentation.
4646 * TODO: Don't mention them.
4647 * doc/bison.1: Likewise.
4648 * doc/bison.texinfo (Decl Summary): Likewise.
4649 (Bison Options): Likewise.
4650 (Option Cross Key): Likewise.
4651 * src/getargs.c (no_parser_flag): Remove global variable.
4652 (usage): Don't print description of -n and --no-parser.
4653 (long_options): Remove --no-parser entry here.
4654 (getargs): Remove -n case in the switch here.
4655 * src/getargs.h (no_parser_flag): Remove extern.
4656 * tests/regression.at (Web2c Actions): Remove comment that mentions
4657 --no-parser.
4658
5d31a216
JD
46592007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
4660
4661 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
4662 name user variables starting with `yy'. Just pass NULL instead of a
4663 dummy local &yylval to yypush_parse.
4664 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
4665 starting with `yy'.
4666
a2ea208d
JD
46672007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
4668
4669 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
4670 true since it's then always used regardless of whether yyoverflow is
4671 defined. Reported by Christian Burger at
4672 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
4673 * THANKS: Add Christian Burger.
4674
91661ebb
JD
4675 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
4676 node names: say "Decl Summary" not "Bison Declaration Summary".
4677
cbd50549
JD
46782007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
4679
4680 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
4681 determine whether this function has already complained about an invalid
4682 value for a %define boolean variable, don't check whether Bison has
4683 ever examined the value. As written, the check was a tautology.
4684 Instead, record and check for this complaint using a separate muscle.
4685
eb1b0740
JD
46862007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4687
4688 Fix push parsing memory leak reported by Brandon Lucia at
4689 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
4690 * THANKS: Add Brandon Lucia.
4691 * data/push.c (yypstate_delete): Free the stack if it was reallocated
4692 but the parse never completed and thus freed it.
4693 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
4694 * tests/testsuite.at: Include push.at.
4695 * test/push.at: New.
4696 (Push Parsing: Memory Leak for Early Deletion): New test case.
4697
9d774aff
JD
46982007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
4699
4700 Improve handling of multiple S/R conflicts in the same state and of S/R
4701 conflicts involving multiple reductions.
4702 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
4703 set for a state here or Bison will abort if it is reassigned on a
4704 later conflicted reduction in the same state.
4705 Similarly, don't finalize and assign the solved conflicts report here
4706 or it will be lost if it is reassigned on a later conflicted reduction
4707 in the same state.
4708 (set_conflicts): Instead, assign them both here after all S/R conflicts
4709 in the state have been fully examined.
4710 * src/print.c (shift_set): Rename to...
4711 (no_reduce_set): ... this.
4712 (print_reductions): Update for rename, and add %nonassoc error action
4713 tokens to no_reduce_set so that, when printing the first remaining
4714 reduction on an error action token, the reduction is enclosed in
4715 brackets.
4716 (print_results): Update for rename.
4717 * tests/conflicts.at (Solved conflicts report for multiple reductions
4718 in a state): New test case.
4719 (%nonassoc error actions for multiple reductions in a state): New test
4720 case.
4721
4722 * src/main.c (main): Don't depend on C99 features.
4723
10159d2a
JD
47242007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
4725
4726 * build-aux/.cvsignore: Add compile.
b541ffdf
JD
4727 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
4728 uniwidth.
10159d2a 4729
953b3935
JD
47302007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
4731
4732 * bootstrap (slurp): Create target directories that don't exist.
4733 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
4734
6ce2d93a
JD
47352007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
4736
4737 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
4738 than item number.
4739 * closure.c (closure): Likewise.
4740 * state.h (reductions): Comment sorting of rules.
4741 (state): Comment sorting of items.
4742
ce3448d5
JD
47432007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
4744
4745 Fix C++ test cases after recent Gnulib changes. Discussed starting at
4746 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
4747 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
4748 definition in order to avoid Gnulib headers since we don't use config.h
4749 here.
4750 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
4751 rather than AT_DATA so that config.h is included.
4752
8a86eef0
JD
47532007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
4754
4755 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
4756 instead of fprintf. Guard these functions with #if YYDEBUG instead of
4757 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
4758 and so that YYFPRINTF is guaranteed to be defined here.
4759
b1a81613
JD
47602007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
4761
4762 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
4763 with...
4764 (muscle_percent_define_check_values): ... this more helpful function.
4765 Again, it's not used yet, but it will be.
4766 * src/muscle_tab.h: Likewise.
4767
71b61d4d
JD
4768 Improve some comments in parser table construction.
4769 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
4770 (generate_states): Don't mention ruleset, which is internal to closure.
4771 * src/closure.c (closure): Explain sorting of core and itemset, which
4772 is required for this function to behave correctly.
4773 * src/closure.h (closure): Mention sorting.
4774
2a6b783d
JD
47752007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
4776
4777 * src/lalr.c (state_lookahead_tokens_count): For code readability,
4778 move the check for disabled transitions to an aver since conflict
4779 resolution hasn't happened yet.
4780
4781 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
4782 labels a state as inconsistent just because it has error transitions.
4783 The original form of this check appeared in revision 1.1 of lalr.c,
4784 which was committed on 1991-12-21. Now (at least), changing the
4785 consistency label on such a state appears to have no useful effect in
4786 any of the places it is examined, which I enumerate below. The key
4787 point to understanding each item in this enumeration is that a state
4788 with an error transition is labelled consistent in the first place only
4789 if it has no rules, so the check cannot matter for states that have
4790 rules. (1) Labelling a state as inconsistent will cause set_conflicts
4791 to try to identify its conflicts, and a state must have *rules* to have
4792 conflicts. (2) Labelling a state as inconsistent will affect how
4793 action_row sets the default *rule* for the state. (3) Labelling a
4794 state as inconsistent will cause build_relations to add lookback edges
4795 to *rules* in that state.
4796 * src/state.h (struct state): Word the comment for member consistent
4797 more carefully.
4798
14462c2b
JD
47992007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4800
4801 Don't depend on C99 features.
4802 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
4803 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
4804 * src/reader.c (check_and_convert_grammar): Fix for-loop.
4805 * src/state.c (state_mark_reachable_states): Fix for-loop.
4806 (state_remove_unreachable_states): Fix for-loop.
4807
4808 Don't widen struct state with member reachable just to temporarily
4809 record reachability. Instead, use a local bitset.
4810 * src/state.h (struct state): Remove member.
4811 * src/state.c (state_new): Don't initialize it.
4812 (state_mark_reachable_states): Rename to...
4813 (state_record_reachable_states): ... this, and use bitset.
4814 (state_remove_unreachable_states): Use bitset.
4815
5a43d418
JD
48162007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
4817
4818 * src/Makefile.am (yacc): Quote target action commands properly so
4819 that the yacc script isn't corrupt. Reported by Hans Aberg at
4820 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
4821
0c650a20
JD
4822 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
4823 the case of pure parsers. Reported by Frans Englich at
4824 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
4825 * THANKS: Add Frans Englich.
4826
61fee93e
JD
4827 * NEWS (2.3a+): In the %code entry, reference section `Bison
4828 Declaration Summary' from the manual now since the %code summary has
4829 moved there.
4830 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
4831 in the rules section must be terminated by semicolons.
4832
f124d423
JD
48332007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
4834
4835 Extend the front-end API for %define variables to more completely
4836 mirror the back-end. This will be useful in the future.
4837 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
4838 Update comments to mention the new front-end counterparts of these
4839 macros.
4840 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
4841 for muscle_string_decode and muscle_location_decode.
4842 (muscle_string_decode): New static function.
4843 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
4844 (muscle_percent_define_get, muscle_percent_define_ifdef): New
4845 functions.
4846 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
4847 muscle_percent_define_get to mimic the b4_percent_define_flag_if
4848 implementation more closely.
4849 (muscle_percent_define_invalid_value): New function.
4850 * src/muscle_tab.h (muscle_percent_define_get,
4851 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
4852 Prototype.
4853
75ad86ee
JD
48542007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
4855
4856 * NEWS (2.3a+): Mention yesterday's state-removal change.
4857 (2.3a): Remove the %language entry, which was added after 2.3a.
4858 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
4859 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
4860 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
4861 tests/existing.at: Update copyright date.
4862
5967f0cf
JD
48632007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4864
4865 If conflict resolution makes states unreachable, remove those states,
4866 report rules that are then unused, and don't report conflicts in those
4867 states.
4868 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
4869 New global function.
4870 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
4871 function.
4872 * src/main.c (main): After conflict resolution, remove the unreachable
4873 states and update all data structures that reference states by number.
4874 * src/state.c (state_new): Initialize each state's reachable member to
4875 false.
4876 (state_mark_reachable_states): New static function.
4877 (state_remove_unreachable_states): New global function.
4878 * src/state.h (struct state): Add member bool reachable.
4879 (state_remove_unreachable_states): Prototype.
4880 * tests/conflicts.at (Unreachable States After Conflict Resolution):
4881 New test case.
4882 * tests/existing.at (GNU pic Grammar): Update test case output now that
4883 an unused rule is discovered.
4884
b09f4f48
JD
48852007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4886
4887 Minor code cleanup in parser table construction.
4888 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
4889 (new_itemsets, save_reductions): Update for rename to nitemset.
4890 * src/closure.c (nritemset): Rename to...
4891 (nitemset): ... this since the "r" appears to meaningless and isn't
4892 used in the comments.
4893 (closure): Update for rename.
4894 * src/closure.h (nritemset): Update extern to...
4895 (nitemset): ... this.
4896 * src/lalr.c (LA): Fix a typo in comments.
4897 * src/print.c (print_core): Update for rename to nitemset.
4898 * src/print_graph.c (print_graph): Likewise.
4899 * src/state.h: Fix some typos in header comments.
4900
bbb44d83
PE
49012007-04-04 Paul Eggert <eggert@cs.ucla.edu>
4902
9b33de72
PE
4903 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
4904 still sticks to ASCII. Sorry!
4905
bbb44d83
PE
4906 * README-hacking: New file, taken mostly from coreutils, with changes
4907 for Bison. Contains much of the contents of:
4908 * README-cvs: Remove.
4909 * bootstrap: Sync from gnulib.
4910 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
4911 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
4912
29553547
JD
49132007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
4914
4915 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
4916 Setzer.
4917 (Java Differences): Fix some typos.
4918 * THANKS: Add Sebastian Setzer.
4919
01b477c6
PB
49202007-03-07 Paolo Bonzini <bonzini@gnu.org>
4921
730739e4
AD
4922 * data/java.m4 (b4_single_class_if): Remove.
4923 (b4_abstract_if): Look at "%define abstract".
4924 (b4_lexer_if): New.
4925 (b4_union_name): Rename...
4926 (b4_yystype): ... to this. Map to "%define stype".
4927 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
4928 b4_maybe_throws): Fix quoting.
4929 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
4930 * data/lalr1.java (Lexer interface): Always define.
4931 (Lexer interface within parser class): Remove.
4932 (YYLexer class): New, used when "%code lexer" is present.
4933 (constructor): When "%code lexer" is used, pass %lex-param
4934 to the lexer constructor.
4935 (yylex, yyparse): Remove %lex-param from method invocations
4936 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
4937
4938 * doc/bison.texinfo (Java Bison Interface): Mention "%define
4939 abstract". Rename "%define union_name" to "%define stype".
4940 Rename method names according to previous patch.
4941 (Java Scanner Interface): Describe "%code lexer" instead of
4942 "%pure-parser" and "%define single_class".
4943 (Java Differences): Mention "%code lexer".
4944
4945 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
4946 Include scanner here, using macros from tests/local.at.
4947 (AT_DATA_CALC_Y): Remove final argument.
4948 (_AT_CHECK_JAVA_CALC): Likewise.
4949 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
4950 of %locations and %error-verbose.
4951 (main): Test with and without %lex-param.
4952 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
4953 (AT_BISON_OPTION_POPDEFS): Pop it.
01b477c6 4954
122bea3a
JMG
49552007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4956
4957 DJGPP spefic issue. Inhibit the use of disallowed characters for
4958 file name genertion on Win98, WinXP, etc. These are |<>":?*\
4959 and concern testsuite case 46.
4960 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
4961 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
4962 * djgpp/config.bat: Inhibit the use of disallowed characters.
4963
9611cfa2
JD
49642007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
4965
4966 Miscellaneous %define and %code cleanup.
4967 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
4968 values are interpreted.
4969 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
4970 documentation a little more.
4971 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
4972 muscle_percent_define_insert, muscle_percent_code_grow): New
4973 functions/macros.
4974 * src/muscle_tab.h (muscle_percent_define_insert,
4975 muscle_percent_code_grow): Prototype.
4976 * src/parse-gram.y (prologue_declaration): Use
4977 muscle_percent_define_insert and muscle_percent_code_grow when parsing
4978 %define and %code directives.
4979
4980 Make it easy to share %define boolean variables between the front-end
4981 and back-end. Though not used yet, this will be useful in the future.
4982 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
4983 Bison uses of names rather than just skeleton uses of names.
4984 (b4_percent_define_get, b4_percent_define_ifdef): Rename
4985 b4_percent_define_skeleton_variables(VARIABLE) to
4986 b4_percent_define_bison_variables(VARIABLE).
4987 (b4_percent_code_get, b4_percent_code_ifdef): Rename
4988 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
4989 b4_percent_code_bison_qualifiers(QUALIFIER).
4990 (b4_check_user_names_wrap): Update for renames.
4991 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
4992 muscle_percent_define_default): New functions mimicking
4993 b4_percent_define_flag_if and b4_percent_define_default.
4994
4995 For %define variables, report locations for invalid values and
bbb44d83 4996 redefinitions.
9611cfa2
JD
4997 * data/bison.m4 (b4_percent_define_flag_if): Read
4998 b4_percent_define_loc(VARIABLE) to report the location of an invalid
4999 value for VARIABLE.
5000 (b4_percent_define_default): Save a special location in
5001 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
5002 must later be reported as invalid.
5003 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
5004 functions.
5005 (muscle_percent_define_insert): Record the location of VARIABLE in
5006 muscle percent_define_loc(VARIABLE), and use it to report the previous
5007 location for a redefinition.
5008 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
5009 (muscle_percent_define_default): Update like b4_percent_define_default.
5010 (muscle_grow_user_name_list): Rename to...
5011 (muscle_user_name_list_grow): ... this for consistency and use
5012 muscle_location_grow.
5013 * src/muscle_tab.h (muscle_location_grow): Prototype.
5014 * tests/input.at (%define errors): Update expected output.
5015 * tests/skeletons.at (%define boolean variables: invalid skeleton
5016 defaults): New test case.
5017
0bf92491
JD
50182007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
5019
5020 * src/print.c (lookahead_set, state_default_rule): Remove.
5021 (print_reductions): Replace state_default_rule invocation with
5022 equivalent use of yydefact, which was computed in token_actions in
5023 tables.c.
5024 (print_results): Don't allocate lookahead_set.
5025
d3b12988
PB
50262007-02-27 Paolo Bonzini <bonzini@gnu.org>
5027
5028 * data/lalr1.java: Prefix all private members with yy.
5029
f57a7536
JD
50302007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
5031
5032 Use YYFPRINTF instead of fprintf where appropriate. Reported by
9b33de72 5033 Sebastien Fricker at
f57a7536 5034 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
9b33de72 5035 * THANKS: Add Sebastien Fricker.
f57a7536
JD
5036 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
5037 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
5038 accept a variable number of arguments.
5039
6404a5bf
JD
50402007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
5041
5042 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
5043
e4e09639
JMG
50442007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5045
5046 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
5047 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
5048 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
5049
d7e0a1a7
PE
50502007-02-11 Paul Eggert <eggert@cs.ucla.edu>
5051
5052 Undo my 2007-02-07 change, switching back to the c-strcase module
5053 introduced in the 2007-02-03 change. Bruno Haible reported that
5054 the 2007-02-07 change would be dangerous in Turkish if we add a
5055 language whose name contains "i", since "i" is not lowercase "I"
5056 in Turkish.
5057 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
5058 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
5059 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
5060 * m4/.cvsignore: Remove strcase.m4.
5061 * src/getargs.c: Revert 2007-02-07 change, as follows.
5062 Include c-strcase.h.
5063 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
5064
deee93a1
JD
50652007-02-11 Bruno Haible <bruno@clisp.org>
5066
5067 Enable the Java related testsuite tests when the only Java compiler
5068 found is a gcj < 4.3. Discussed at
5069 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
5070 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
5071
574add85
JD
50722007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
5073
5074 * data/Makefile.am: Update copyright date.
5075 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
5076 yypstate_new returns NULL.
5077 (yypstate_new): Return NULL if malloc does.
5078 * src/reader.c (packgram): Move translation of rule actions from the
5079 beginning of packgram to...
5080 (check_and_convert_grammar): ... here right before packgram is invoked
5081 so it's easier to write more complete comments, and remove redundant
5082 code.
5083
e785ccf7
JD
50842007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
5085
5086 As in semantic actions, make @$ in %initial-action, %destructor, and
5087 %printer imply %locations.
5088 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
5089 scanning @$.
5090 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
5091 (@$ in %initial-action implies %locations,
5092 @$ in %destructor implies %locations,
5093 @$ in %printer implies %locations): ... these new test cases.
5094
1cfe1ed7
PE
50952007-02-07 Paul Eggert <eggert@cs.ucla.edu>
5096
5097 Undo most of the 2007-02-03 change, switching to the strcase module
5098 now that gnulib strcase has been fixed.
5099 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
5100 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
5101 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
5102 * m4/.cvsignore: Add strcase.m4.
5103 * src/getargs.c: Revert 2007-02-03 change, as follows.
5104 Don't include c-strcase.h.
5105 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
5106 strcasecmp has "unspecified behavior" outside the POSIX locale,
5107 but it works fine in practice if at least one argument is ASCII,
5108 as is the case in Bison.
5109
0049ec86
PB
51102007-02-07 Paolo Bonzini <bonzini@gnu.org>
5111
5112 * tests/java.at: Skip tests if only one of javac/java is present.
5113 Reported by Joel E. Denny.
5114 * tests/atlocal.in: Adjust copyright years.
5115
51162007-02-05 Paolo Bonzini <bonzini@gnu.org>
5117
5118 * data/lalr1.java (Stack): Work around old verifiers that disallow
5119 access to the private fields of an inner class, from the outer class.
5120 We can make Stack's fields public because user code doesn't have access
5121 to the instance of Stack used by parse(). Reported by Paul Eggert.
5122
2c2b7220
PE
51232007-02-03 Paul Eggert <eggert@cs.ucla.edu>
5124
5125 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
5126 the right spot for these files?
5127 * bootstrap.conf (gnulib_modules): Add c-strcase.
5128 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
5129 c-strncasecmp.c.
5130 * src/getargs.c: Include c-strcase.h.
5131 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
5132 to avoid unspecified behavior.
5133
b2b81dae
JD
51342007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
5135
5136 * doc/bison.texinfo (Decl Summary): Correct typo.
5137
c1d19e10
PB
51382007-01-30 Paolo Bonzini <bonzini@gnu.org>
5139
5140 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
5141 Complain if the value does not match empty, "true" or "false".
5142 * data/c++.m4: Adjust default definitions of %define variables.
5143 * data/java.m4: Adjust default definitions of %define variables.
5144 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
5145 to above behavior.
5146 * tests/input.at (Boolean %define variables): Test new behavior.
5147
8405b70c
PB
51482007-01-29 Paolo Bonzini <bonzini@gnu.org>
5149
5150 * NEWS: Mention java.
5151 * TODO: Remove things that are done.
5152 * bootstrap.conf: Add javacomp-script and javaexec-script.
5153 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
5154
5155 * data/Makefile.am: Add new files.
5156 * data/java-skel.m4: New.
5157 * data/java.m4: New.
5158 * data/lalr1.java: New.
5159
5160 * doc/bison.texinfo: Put "A Complete C++ Example" under
5161 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
5162 under Other Languages.
5163
5164 * src/getargs.c (valid_languages): Add Java.
5165 * src/getargs.h (struct bison_language): Update size of string fields.
5166
5167 * tests/Makefile.am: Add java.at.
5168 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
5169 * tests/java.at: New.
5170 * tests/testsuite.at: Include it.
5171
3eb82471
JD
51722007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
5173
5174 Clean up.
5175 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
5176 at_directive_argv arguments so these no longer have to be global
5177 variables. Also, update the implementation for the following changes.
5178 (fail_for_at_directive_too_many_args,
5179 fail_for_at_directive_too_few_args): Add at_directive_name argument.
5180 (at_directive_name): Remove as at_directive_argv[0] will be used for
5181 this now.
5182 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
5183 for the directive name.
5184 (at_directive_argc, at_directive_argv): Make these local within
5185 skel_lex instead of global.
5186 (INITIAL): Update directive start action for above changes.
5187 (SC_AT_DIRECTIVE_ARG): Rename to...
5188 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
5189 (SC_AT_DIRECTIVE_SKIP_WS): Update.
5190 (scan_skel): Move yylex_destroy to...
5191 (skel_scanner_free): ... here.
5192 * tests/skeletons.at (installed skeleton file name): Rename to...
5193 (installed skeleton file names): ... this.
5194
148d66d8
JD
51952007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
5196
5197 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
5198 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
5199 Summary" not "Directives".
5200 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
5201 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
5202 since the former is now the more complete one.
5203 (Prologue Alternatives): Likewise and do the same for %defines.
5204 (Table of Symbols): Add summary of %code, add summary of %define, and
5205 move full %code documentation to...
5206 (Decl Summary): ... here for consistency with other entries in these
5207 sections.
5208 Move %define entry in order to keep this list alphabetized.
5209 Reword %define entry a little to put less emphasis on the skeleton
5210 concept, which most users shouldn't have to think about.
5211
665f0c24
PE
52122007-01-26 Paul Eggert <eggert@cs.ucla.edu>
5213
5214 Adjust to recent gnulib changes.
5215 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
5216 Add string.h, string_.h, unistd_.h, wchar_.h.
5217 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
5218 * src/system.h: Don't include <stpcpy.h>; this is now done by
5219 <string.h>.
5220
592d0b1e
PB
52212007-01-23 Paolo Bonzini <bonzini@gnu.org>
5222
5223 Simplify implementation of unqualified %code, implement macros for
5224 uniform treatment of boolean %define flags. Document %define.
5225 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
5226 b4_percent_code_ifdef): New.
5227 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
5228 * data/c++.m4: Define default value for global_tokens_and_yystype.
5229 * data/glr.cc: Likewise.
5230 * data/location.cc: Use b4_percent_define_flag_if.
5231
148d66d8 5232 * doc/bison.texinfo (Decl Summary): Document %define.
592d0b1e
PB
5233
5234 * src/parse-gram.y (Unqualified %code): Change muscle name to
5235 b4_percent_code().
5236 (content.opt): Default to empty.
5237
a7867f53
JD
52382007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
5239
5240 Implement support for relative and absolute skeleton file names.
5241 Discussed starting at
5242 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
5243 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
5244 (Bison Options): Document in --skeleton entry.
5245 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
5246 full_skeleton can't necessarily hold all of pkgdatadir.
5247 If the specified skeleton file name contains a `/', don't prepend
5248 pkgdatadir.
5249 * src/parse-gram.y (prologue_declaration): If the specified skeleton
5250 file name contains a `/', prepend the grammar file directory.
5251 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
5252 * skeletons.at: New file.
5253 (relative skeleton file names): New test case.
5254 (installed skeleton file names): New test case.
5255 * tests/testsuite.at: Include skeletons.at.
5256
5257 * bootstrap: Update copyright to 2007.
5258
830c9b18
PB
52592007-01-17 Paolo Bonzini <bonzini@gnu.org>
5260
5261 * bootstrap: Remove occurrences of .#bootmp from the files.
5262
a8c2e813
AD
52632007-01-17 Akim Demaille <akim@epita.fr>
5264
5265 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
5266 nonterminals.
5267 Use per-type %printer.
5268
279cabb6
JD
52692007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
5270
5271 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
5272 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
5273 djgpp/config.site, src/files.c, src/files.h, src/main.c,
5274 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
5275 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
5276 tests/glr-regression.at, tests/input.at, tests/local.at,
5277 tests/output.at, tests/torture.at: Update copyright to 2007.
5278
bb32f4f2
AD
52792007-01-16 Akim Demaille <akim@epita.fr>
5280
5281 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
5282 error code.
5283 (Calc++ Scanner): Exit with failure if we can't open the input
5284 file.
5285 Accept "-" standing for stdin.
5286 (Calc++ Top Level): Print the result only if the parsing was
5287 successful.
5288
7cff04b5
AD
52892007-01-16 Akim Demaille <akim@epita.fr>
5290
5291 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
5292
a4e25e1d
JD
52932007-01-15 Paolo Bonzini <bonzini@gnu.org>
5294 and Joel E. Denny <jdenny@ces.clemson.edu>
5295
5296 Clean up %define and %code implementation in M4 some. Most
5297 importantly, rename all related macros to be in the b4_percent_define
5298 and b4_percent_code namespaces. Also, complete support for `.' in
5299 %define variable names and %code qualifiers.
5300 * data/bison.m4 (b4_check_user_names): Check for special
5301 "SKELETON-NAMESPACE(name)" macros instead of using two nested
5302 m4_foreach loops.
5303 (b4_get_percent_define, b4_get_percent_code): Rename to...
5304 (b4_percent_define_get, b4_percent_code_get): ... these.
5305 Extend documentation with examples.
5306 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
5307 b4_percent_define_skeleton_variables and
5308 b4_percent_code_skeleton_qualifiers.
5309 Expect any value for the %define variable `foo' to be stored in the
5310 macro named `b4_percent_define(foo)'; expect any %code blocks for the
5311 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
5312 expect any unqualified %code blocks to be stored in a macro named
5313 `b4_percent_code_unqualified'.
5314 Use m4_indir so that %define variable names and %code qualifiers can
5315 contain `.', which is allowed by the grammar parser.
5316 (b4_percent_define_default): New macro to set a default value for a
5317 %define variable.
5318 (m4_wrap): Update wrapped code, and fix some underquoting.
5319 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
5320 Expect grammar uses of %define variables and %code qualifiers to be
5321 defined in b4_percent_define_user_variables and
5322 b4_percent_code_user_qualifiers.
5323 * data/c++.m4: Use b4_percent_define_default rather than
5324 m4_define_default. Fix some underquoting. Skeleton usage of %define
5325 variable define_location_comparison now implies skeleton usage of
5326 %define variable filename_type.
5327 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
5328 data/push.c, data/yacc.c: Update macro names.
5329 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
5330 muscle names.
5331
e37c665c
JMG
53322007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5333
5334 DJGPP specific issues.
5335
5336 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
5337 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
5338
7d2d521f
JD
53392007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
5340
5341 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
5342 run parsers in all tests so that Valgrind is invoked during
5343 maintainer-check-valgrind.
5344 (Duplicate representation of merged trees): Free all semantic values.
5345 (Duplicated user destructor for lookahead): Likewise.
5346
e0ac9b4b
JD
53472007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
5348
5349 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
5350 command-line prefix.
5351 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
5352 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
5353 miss Valgrind messages.
5354 (Exploding the Stack Size with Malloc): Likewise.
5355
78143faa
JD
53562007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
5357
5358 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
5359 locals. Reported by Juan Manuel Guerrero at
5360 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
5361 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
5362 Fix some indentation also.
5363 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
5364 explaining this issue.
5365
7ecec4dd
JD
53662007-01-09 Paolo Bonzini <bonzini@gnu.org>
5367 and Joel E. Denny <jdenny@ces.clemson.edu>
5368
5369 Simplify union and prologue handling, and escape union and lex/parse
5370 params with digraphs.
5371 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
5372 values to the empty string since these are no longer guaranteed
5373 initialized by the front-end.
5374 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
5375 braces around b4_user_stype since this is no longer done by the
5376 front-end.
5377 * src/files.c, src/files.h (pre_prologue_obstack,
5378 post_prologue_obstack): Remove.
5379 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
5380 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
5381 with digraphs. This fixes lex params and parse params.
5382 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
5383 * src/output.c (prepare): Remove muscle insertion of the prologues.
5384 (output): Remove freeing of pre_prologue_obstack and
5385 post_prologue_obstack.
5386 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
5387 than prologue_augment for prologue parsing so you don't need prologue
5388 obstacks.
5c80250c
JD
5389 (grammar_declaration): For %union RHS, use `braceless' instead of
5390 "{...}" so that braces are already stripped and code is escaped with
5391 digraphs.
7ecec4dd
JD
5392 * src/reader.c (prologue_augment): Remove.
5393 (reader): Remove initialization of pre_prologue_obstack and
5394 post_prologue_obstack.
5395 * src/reader.h (prologue_augment): Remove.
5396
5397 * data/c.m4: Remove stray parenthesis.
5398
16dc6a9e
JD
53992007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5400
5401 Remove quotes from variables names in %define directives and from
5402 qualifiers in %code directives, and restrict the characters that are
5403 allowed in them to M4-friendly ones. For %define, continue to support
5404 the quoted form as a deprecated feature. Discussed starting at
5405 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
5406 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
5407 %code.
5408 * doc/bison.texinfo (Prologue Alternatives): Update.
91661ebb
JD
5409 (Decl Summary): In %defines entry, update mention of `%code requires'
5410 and `%code provides'.
16dc6a9e
JD
5411 (C++ Location Values): Update %define uses.
5412 (Calc++ Parser Interface): Likewise.
5413 (Calc++ Parser): Likewise, and update `%code requires' uses.
148d66d8 5414 (Table of Symbols): Update %code documentation.
16dc6a9e
JD
5415 * src/parse-gram.y (prologue_declaration): For %define variables, use
5416 `variable' instead of `STRING'.
5417 (grammar_declaration): For %code qualifiers, use `ID' instead of
5418 `STRING'.
5419 (variable): New nonterminal that takes an `ID' or a `STRING'.
5420 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
5421 and %define uses.
5422 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
5423 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
5424 (%define errors): Update %define uses.
5425
e9813cd4
JD
54262007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5427
5428 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
5429 instead of muscle_insert for %define values so that M4-special
5430 characters are replaced with digraphs.
5431 * tests/input.at (%define errors): Extend to check weird values.
5432
6afc30cc
JD
54332007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5434
5435 Instead of having skeletons declare all valid %define variables and
5436 %code qualifiers, provide macros that retrieve the associated values
5437 and build these lists automatically. Thus Bison will now warn when a
5438 variable or qualifier is not used by the skeleton in the current
5439 invocation regardless of whether it might sometimes be used by that
5440 skeleton in other invocations. Also, move all %define value macros to
5441 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
5442 form, which is replaced by %code.
5443 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
5444 (b4_check_user_names): ... this, and change the series of valid name
5445 arguments to a single list argument for names used in the skeleton
5446 similar to the existing list argument for names used in the grammar.
5447 Warn instead of complaining.
5448 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
5449 values and %code code, to format %code code properly, and to build
5450 lists of all %define variables and %code qualifiers used in the
5451 skeleton: b4_skeleton_percent_define_variables and
5452 b4_skeleton_percent_code_qualifiers.
5453 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
5454 Remove, and...
5455 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
5456 the skeleton names lists can finish building first. In place of
5457 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
5458 expect the lists b4_user_percent_define_variables and
5459 b4_user_percent_code_qualifiers.
5460 * data/c++.m4: Where setting default values for b4_parser_class_name,
5461 b4_location_type, b4_filename_type, b4_namespace, and
5462 b4_define_location_comparison, update their names to the
5463 b4_percent_define_ namespace.
5464 * data/glr.c: Don't use b4_check_percent_define_variables and
5465 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
5466 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
5467 (b4_parser_class_name, b4_namespace): Define these using
a4e25e1d 5468 b4_get_percent_define for parser_class_name and namespace.
6afc30cc
JD
5469 * data/location.cc: Use b4_get_percent_define.
5470 * data/push.c: Don't use b4_check_percent_define_variables and
5471 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
5472 * data/yacc.c: Likewise, and don't call m4_exit in
5473 b4_use_push_for_pull_if or m4_wrap code will never execute.
5474 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
5475 Rename to...
5476 (muscle_grow_user_name_list): ... this for consistency with the
5477 terminology used in bison.m4.
5478 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
5479 %define variable names, and rename muscle used_percent_define_variables
5480 to user_percent_define_variables.
5481 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
5482 user_percent_code_qualifiers.
5483 (content): Remove.
5484 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
5485 {CODE} form is no longer accepted.
5486 * tests/input.at (Reject bad %code qualifiers): Rename to...
5487 (Reject unused %code qualifiers): ... this, and update test output.
5488 (%define error): Update test output.
5489
7eb8a0bc
JD
54902007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
5491
5492 Check for unrecognized %define variables similar to checking for
5493 unrecognized %code qualifiers. Check for redefined %define variables.
5494 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
5495 generalizes...
5496 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
5497 (b4_check_percent_define_variables): New, also wraps it.
5498 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
5499 variables using b4_check_percent_define_variables.
5500 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
5501 all those exercised in the test suite and all those listed in the
5502 `Default values' section of c++.m4. Are there others?
5503 * data/push.c, data/yacc.c: Declare no valid %define variables.
5504 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
5505 similar to muscle_find, but it works even when the muscle stores a
5506 const value.
5507 (muscle_grow_used_name_list): New function for constructing the used
5508 name list muscles that b4_check_for_unrecognized_names requires.
5509 * src/parse-gram.y (prologue_declaration): Warn if a variable is
5510 %define'd more than once. Define the b4_used_percent_define_variables
5511 muscle with muscle_grow_used_name_list.
5512 (grammar_declaration): Abbreviate %code code with
5513 muscle_grow_used_name_list.
5514 * tests/input.at (%define errors): New.
5515
3fc65ead
JD
55162007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5517
5518 Provide warn_at, complain_at, and fatal_at function callbacks to the
5519 skeletons, and use this for %code qualifier complaints.
5520 * data/bison.m4 (b4_error_at): New, invoked by...
5521 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
5522 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
5523 @fatal_at(...@) directives.
5524 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
5525 qualifiers in b4_used_percent_code_qualifiers and to use
5526 b4_complain_at.
5527 * src/location.c, src/location.h (boundary_set_from_string): New global
5528 function.
5529 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
5530 function.
5531 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
5532 to b4_used_percent_code_qualifiers.
5533 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
5534 function.
5535 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
5536 (lineno): Rename to...
5537 (out_lineno): ... this so I don't misunderstand it again.
5538 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
5539 here; these newlines are in the input but not the output file.
5540 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
5541 (at_directive_perform): ... this new static function, and add handling
5542 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
5543 directives.
5544 * tests/input.at (Reject bad %code qualifiers): Update test output with
5545 locations and extend.
5546
5547 * tests/output.at (Output file name: [, Output file name: ]): Remove
5548 bogus comment about these tests failing.
5549
1c7b7e1d
JD
55502007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5551
5552 Clean up b4_check_percent_code_qualifiers a little.
5553 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
5554 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
5555 documentation and add examples.
5556 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
5557 qualifiers here.
5558
08af01c2
JD
55592007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
5560
5561 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
5562 unreliable -- especially when they're hidden inside another macro.
5563 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
5564 data/c.m4: Remove m4_divert(-1).
5565 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
5566 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
5567 m4_divert_push(0) and m4_divert_pop(0).
279cabb6 5568 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
08af01c2
JD
5569 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
5570 pushed and popped by m4sugar, should be first on the stack.
5571
5572 Provide warn, complain, and fatal function callbacks to the skeletons.
5573 This provides more flexibility than m4_fatal, improves the error
5574 message format, and captures messages for translation. Discussed
5575 starting at
5576 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
5577 * data/bison.m4 (b4_error): New, invoked by...
5578 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
5579 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
5580 directives. Because these M4 macros might be called when the current
5581 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
5582 the previous removal of uses of m4_divert, which caused trouble.
5583 (b4_check_percent_code_qualifiers): Use b4_complain instead of
5584 m4_fatal to report unrecognized %code qualifiers.
5585 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
5586 push parser requests.
5587 * data/glr.c: Use b4_complain instead of m4_fatal to report
5588 non-deterministic push parser requests.
5589 Update @output usage to @output(...@) form.
5590 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
5591 report missing %defines. Update @output usage to @output(...@) form.
5592 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
5593 @output(...@) form.
5594 * src/main.c (main): Invoke skel_scanner_free.
5595 * src/scan-skel.h (skel_scanner_free): Prototype new function.
5596 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
5597 obstack_for_string from flex-scanner.h.
5598 (YY_DECL): Use to declare skel_lex static.
5599 (decode_at_digraphs): Remove; now handled in the new
5600 SC_AT_DIRECTIVE_ARG start condition.
5601 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
5602 functions.
5603 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
5604 at_directive_argv): New static globals.
5605 (INITIAL): Use fail_for_invalid_at.
5606 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
5607 recognize the start of a generalized `@directive(...@)' form and
5608 start...
5609 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
5610 directive args (using the new obstack_for_string), to decode the
5611 contained @ diagraphs, and to perform the directive. It recognizes
5612 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
5613 @output(...@).
5614 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
5615 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
5616 `@,'.
5617 (scan_skel): Initialize obstack_for_string on the first call.
5618 (skel_scanner_free): New function to free obstack_for_string.
5619 * tests/input.at (Reject bad %code qualifiers): Update test output.
5620
8e0a5e9e
JD
56212007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
5622
5623 Consolidate the 4 prologue alternative directives (%code, %requires,
5624 %provides, and %code-top) into a single %code directive with an
5625 optional qualifier field. Discussed at
5626 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
5627 * NEWS (2.3a+): Rewrite the existing entry for the prologue
5628 alternatives.
5629 * doc/bison.texinfo (Prologue Alternatives): Update.
5630 (Decl Summary): Update to %code "requires" and %code "provides".
5631 (Calc++ Parser): Update to %code "requires".
148d66d8 5632 (Table of Symbols): Remove entries for %requires, %provides, and
8e0a5e9e
JD
5633 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
5634 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
5635 are replaced by b4_percent_code_provides and b4_percent_code_requires,
5636 which are skeleton-specific.
5637 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
5638 declare what %code qualifiers it supports and to complain if any other
5639 qualifiers were used in the grammar.
5640 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
5641 and b4_user_code([b4_percent_code_provides]) in place of
5642 b4_user_requires and b4_user_provides.
5643 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
5644 Add b4_user_code([b4_percent_code_top]) and
5645 b4_user_code([b4_percent_code]).
5646 Invoke b4_check_percent_code_qualifiers.
5647 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
5648 PERCENT_REQUIRES): Remove.
5649 (grammar_declaration): Remove RHS's for %code-top, %provides, and
5650 %requires. Rewrite the %code RHS as the unqualified form defining the
5651 muscle b4_percent_code. Add another RHS for the qualified %code form,
5652 which defines muscles of the form b4_percent_code_QUALIFIER and the
5653 b4_used_percent_code_qualifiers muscle.
5654 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
5655 PERCENT_REQUIRES): Remove.
5656 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
5657 %code "requires" and %code "provides".
5658 * tests/input.at (Reject bad %code qualifiers): New.
5659
95021767
JD
56602007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
5661
5662 Use the new code_props interface for destructors and printers.
5663 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
5664 printer_location members, and change the type of the destructor and
5665 printer members to code_props.
5666 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
5667 symbol_printer_get, semantic_type_destructor_set,
5668 semantic_type_printer_set, default_tagged_destructor_set,
5669 default_tagless_destructor_set, default_tagged_printer_set,
5670 default_tagless_printer_set): Use code_props in arguments and return
5671 types in place of char const * and location.
5672 (symbol_destructor_location_get, symbol_printer_location_get): Remove
5673 since the locations are now contained in the return of
5674 symbol_destructor_get and symbol_printer_get.
5675 * src/output.c (symbol_destructors_output, symbol_printers_output):
5676 Replace with...
5677 (symbol_code_props_output): ... this to eliminate duplicate code.
5678 (output_skeleton): Update to use symbol_code_props_output.
5679 * src/reader.c (symbol_should_be_used): Update use of
5680 symbol_destructor_get.
5681 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5682 Update uses of the various _destructor_set and _printer_set functions.
5683 * src/symtab.c: (default_tagged_destructor_location,
5684 default_tagless_destructor_location, default_tagged_printer_location,
5685 default_tagless_printer_location): Remove since we...
5686 (default_tagged_destructor, default_tagless_destructor,
5687 default_tagged_printer, default_tagless_printer): ... change the type
5688 of these to code_props.
5689 (symbol_new, semantic_type_new, symbol_destructor_set,
5690 semantic_type_destructor_set, symbol_destructor_get,
5691 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
5692 symbol_check_alias_consistency, default_tagged_destructor_set,
5693 default_tagless_destructor_set, default_tagged_printer_set,
5694 default_tagless_printer_set): Update.
5695 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
5696 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
5697 code_props members.
5698 (symbol_print): Use SYMBOL_CODE_PRINT.
5699
f6857bbf
JD
57002007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
5701
5702 Use the new code_props interface for rule actions.
5703 * src/symlist.h (symbol_list): Replace action, action_location, and
5704 used members with a code_props action_props member.
5705 * src/reader.c (symbol_should_be_used, grammar_rule_check,
5706 grammar_midrule_action, grammar_current_rule_merge_set,
5707 grammar_current_rule_symbol_append, packgram): Update.
5708 * src/scan-code.h (translate_rule_action): Remove, no longer used.
5709 * src/scan-code.l (handle_action_dollar): Update.
5710 (translate_rule_action): Remove, no longer used.
5711 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
5712
7c0c6181
JD
57132007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
5714
5715 Use the new code_props interface in parse-gram.y.
5716 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
5717 Update all uses of translate_* functions to use the new code_props
5718 interface and to use gram_scanner_last_string_free and
5719 code_scanner_last_string_free where possible.
5720 (grammar_declaration): symbol_list_destructor_set and
5721 symbol_list_printer_set now perform the translation, so don't do it
5722 here. Use gram_scanner_last_string_free where possible.
5723 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
5724 translate_code): Remove, no longer used.
5725 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
5726 symbol_list_printer_set): Perform code translation here rather than
5727 depending on the caller to do so.
5728
5729 * src/symlist.h (struct symbol_list): Correct some documentation typos.
5730 * src/scan-gram.h (gram_last_string): Remove declaration.
5731 * src/scan-gram.l (last_string): Declare it static.
5732
28e52c0d
JD
57332007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
5734
5735 Encapsulate code properties and related functionality for the various
5736 destructors, printers, and actions into a code_props structure and
5737 interface. This patch merely implements code_props in scan-code.h and
5738 scan-code.l. Future patches will rewrite other modules to use it.
5739 Discussed starting at
5740 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
5741 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
5742 consistently initialize const structs that have an empty location
5743 field.
5744 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
5745 to ensure consistency.
5746 * src/scan-code.h (code_props): New structure.
5747 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
5748 function, macro, and const global variable for initializing a
5749 code_props with no code.
5750 (code_props_plain_init, code_props_symbol_action_init,
5751 code_props_rule_action_init, code_props_translate_code): The rest of
5752 the new code_props functional interface. Among other things, the init
5753 functions set the code_props kind field so that
5754 code_props_translate_code will know whether to behave like
5755 translate_symbol_action, translate_rule_action, or translate_code.
5756 These old translate functions must remain until all other modules are
5757 updated to use the new code_props interface.
5758 (code_scanner_last_string_free): New function similar to
5759 gram_scanner_last_string_free.
5760 (code_scanner_free): Add documentation.
5761 * src/scan-code.l: Implement the new interface.
5762 (code_lex): Make it static, add a code_props* argument, and remove the
5763 rule argument.
5764 (last_string): New static global similar to the one in scan-gram.l.
5765 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
5766 instead of rule.
5767 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
5768 code_props since Bison may one day use this information for destructors
5769 and printers.
5770 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
5771 (handle_action_dollar): Use symbol_list_n_get and set used flag
5772 directly since symbol_list_n_used_set is removed.
5773 (translate_action): Add a code_props* argument and remove the rule,
5774 action, and location arguments. Pass the code_props* on to code_lex.
5775 (translate_rule_action, translate_symbol_action, translate_code):
5776 Rewrite as wrappers around the new code_props interface.
5777 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
5778 it would eventually need to break the encapsulation of code_props.
5779
96034983
JD
57802007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
5781
5782 * etc/.cvsignore: New.
5783
945e396c
JD
57842007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
5785
5786 Add maintainer-push-check to run maintainer-check using push parsing in
5787 place of pull parsing where available.
5788 * Makefile.am (maintainer-push-check): New.
5789 * data/bison.m4 (b4_use_push_for_pull_if): New.
5790 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
5791 appropriately based on their existing values.
5792 (yypush_parse): Don't print push-parser-specific diagnostics if push
5793 parsing is being used in place of pull parsing.
5794 * data/yacc.c: If push parsing should replace pull parsing, redirect to
5795 push.c.
5796 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
5797 variable, and insert b4_use_push_for_pull_flag into muscles.
5798 * tests/Makefile.am (maintainer-push-check): New.
5799
7d596384
JD
58002006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
5801
5802 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
5803 (whether successful or failed) so that yypush_parse can be invoked
5804 again to start a new parse using the same yypstate.
5805 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
5806 check multiple yypull_parse invocations on the same yypstate. For pull
5807 mode, extend to check multiple yyparse invocations.
5808 (Exploding the Stack Size with Alloca): Extend to try with
5809 %push-pull-parser.
5810 (Exploding the Stack Size with Malloc): Likewise.
5811
5812 * tests/calc.at (Simple LALR Calculator): Don't specify
5813 %skeleton "push.c" since %push-pull-parser implies that now.
5814 * tests/headers.at (export YYLTYPE): Don't check for the push
5815 declarations. Otherwise, this test case can't be used to see if push
5816 mode can truly emulate pull mode.
5817 * tests/input.at (Torturing the Scanner): Likewise.
5818 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
5819 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
5820 AT_YACC_IF, which now includes the case of push mode since %skeleton
5821 need not be used for push mode. This will be more intuitive once
5822 push.c is renamed to yacc.c.
5823
7172e23e
JD
58242006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
5825
5826 For push mode, convert yyparse from a macro to a function, invoke yylex
5827 instead of passing a yylexp argument to yypull_parse, and don't
5828 generate yypull_parse or yyparse unless %push-pull-parser is declared.
5829 Discussed starting at
5830 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
5831 * data/bison.m4 (b4_pull_if): New.
5832 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
5833 * data/push.c: Improve M4 quoting a little.
5834 (b4_generate_macro_args, b4_parenthesize): Remove.
5835 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
5836 any time a pull parser is requested.
5837 Don't #define this as a wrapper around yypull_parse. Instead, when
5838 both push and pull are requested, make it a function that does that
5839 same thing.
5840 (yypull_parse): If there's a b4_prefix, #define this to
5841 b4_prefix[pull_parse] when both push and pull are requested.
5842 Don't define this as a function unless both push and pull are
5843 requested.
5844 Remove the yylexp argument and hard-code yylex invocation instead.
5845 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
5846 %push-parser.
5847 * src/getargs.c (pull_parser): New global initialized to true.
5848 * getargs.h (pull_parser): extern it.
5849 * src/output.c (prepare): Insert pull_flag muscle.
5850 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
5851 (prologue_declaration): Set both push_parser and pull_parser = true for
5852 %push-pull-parser. Set push_parser = true and pull_parser = false for
5853 %push-parser.
5854 * src/scan-gram.l: Don't accept %push_parser as an alternative to
5855 %push-parser since there's no backward-compatibility concern here.
5856 Scan %push-pull-parser.
5857 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
5858 instead of %push-parser.
5859 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
5860 prototype it in the module that calls yyparse.
5861 * tests/input.at (Torturing the Scanner): Likewise.
5862 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
5863
2e7944cb
JD
58642006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
5865
5866 Update etc/bench.pl. Optimize push mode a little (the yyn change
5867 deserves most of the credit).
5868 * Makefile.am (SUBDIRS): Add etc subdirectory.
5869 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
5870 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
5871 yytoken, yyval, and yyloc declarations to...
5872 (yyparse or yypush_parse): ... here to improve performance. For
5873 yypush_parse invocations after the first, be sure to assign yyn its old
5874 value again.
5875 (yypstate_new): Don't bother initializing the yyresult field since the
5876 initial value isn't used.
5877 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
5878 remove the #define that, in push mode, set it to yyps->NAME.
5879 * etc/Makefile.am: New.
5880 * etc/bench.pl: Remove and build it instead from...
5881 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
5882 "tests/bison" from the build directory by default rather than just
5883 invoking "bison" from $PATH.
5884 (calc_grammar): Update push parser code: don't declare yylval globally,
5885 don't define yyparse_wrapper, and don't #define yyparse.
5886 (bench_grammar): Update to check all working combinations of yacc.c,
5887 push.c, impure, pure, pull, and push.
5888
c3d50342
JD
58892006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
5890
5891 For push mode, add pull wrappers around yypush_parse.
5892 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
5893 (yypull_parse): New function wrapping yypush_parse.
5894 (yyparse): New #define wrapping yypull_parse.
5895 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
5896 is declared.
5897 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
5898 prototype yylex in the module that calls yyparse, and don't prototype
5899 yyparse there. Otherwise, the yyparse expansion won't compile.
5900 * tests/input.at (Torturing the Scanner): Likewise.
5901
94ebeba5
JD
59022006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
5903
5904 Enable push parsers to operate in impure mode. Thus, %push-parser no
5905 longer implies %pure-parser. The point of this change is to move
5906 towards being able to test the push parser code by running the entire
5907 test suite as if %push-parser had been declared.
5908 * data/push.c (yypush_parse): For impure mode, remove the
5909 yypushed_char, yypushed_val, and yypushed_loc arguments.
5910 Instead, declare these as local variables initialized to the global
5911 yychar, yylval, and yylloc.
5912 For the first yypush_parse invocation only, restore the initial values
5913 of these global variables when it's time to read a token since they
5914 have been overwritten.
5915 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
5916 %push-parser.
5917 * tests/calc.at (Simple LALR(1) Calculator): Always declare
5918 %pure-parser along with %push-parser since this test case was designed
5919 for pure push parsers.
5920 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
5921 (AT_YACC_OR_PUSH_IF): New.
5922 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
5923 add a note that it's still wrong for some cases (as it has been for a
5924 while).
5925 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
5926 %push-parser no longer implies %pure-parser.
5927
a0633178
JD
59282006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5929
5930 Remove some unnecessary differences between the pull parser code and
5931 the push parser code. This patch enables yynerrs in push mode.
5932 * data/push.c: Reformat M4 a little.
5933 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
5934 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
5935 because push mode is on. Instead, if pure mode is on, move yynerrs
5936 to...
5937 (b4_declare_parser_state_variables): ... here.
5938 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
5939 to yyps->NAME so it can be used in yypush_parse.
5940 (yypush_parse): Don't omit uses of yynerrs in push mode.
5941
8646b6a3
JD
59422006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5943
5944 Fix bug such that the first pushed token's value and location are
5945 sometimes overwritten (sometimes by %initial-action) before being used.
5946 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
5947 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
5948 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
5949 more closely mimic the pull parser logic.
5950 Don't copy the pushed token to yychar, yylval, and yylloc until it's
5951 time to read a token, which is after any initialization of yylval and
5952 yylloc.
5953 (gottoken): Rename label to...
5954 (yyread_pushed_token): ... for clarity and to avoid infringing on the
5955 user namespace.
5956
9baf4d74
JD
59572006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5958
5959 Rearrange initialization of the parser state variables so that the
5960 skeleton doesn't have to have a copy for pull mode and another for push
5961 mode. This patch also fixes at least a bug such that yylloc was not
5962 initialized (with b4_location_initial_line and
5963 b4_location_initial_column) upon calling yypush_parse. However, that
5964 initialization now overwrites the first token's location;
5965 %initial-action assigning @$ already did the same thing, and both bugs
5966 will be fixed in a later patch.
5967 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
5968 (b4_declare_parser_state_variables): Remove initialization of yytoken,
5969 yyss, yyvs, yyls, and yystacksize.
5970 (yypstate_new): Remove initialization of some yypstate fields: yystate,
5971 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
5972 yylsp.
5973 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
5974 yyps->NAME so it can be used in yypush_parse.
5975 (yyparse or yypush_parse): For yypush_parse, don't print the
5976 "Starting parse" diagnostic for invocations after the first.
5977 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
5978 yypush_parse, only do it for the first invocation.
5979 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
5980 initialization to occur in yypush_parse but only on the first
5981 invocation.
5982
23522164
JD
59832006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5984
5985 * data/push.c: Add CPP guards around push parser declarations in both
5986 the header and the code file.
5987 In the code file, move the push parser declarations to the same place
5988 they appear in the header file.
5989 Clean up the M4 some, especially the inconsistent underquoting in
5990 some b4_c_function_def and b4_c_function_decl uses.
5991
bb010fe5
JD
59922006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5993
5994 Encapsulate the push parser state variables into an M4 macro so the
5995 push skeleton doesn't have to list them again for pull mode's yyparse.
5996 For push mode, remove yypush_parse's local equivalents of these
5997 variables to eliminate unnecessary copying between the two sets at
5998 run-time. This patch also fixes at least a bug related to multiple
5999 %initial-action invocations in push mode.
6000 * data/push.c (b4_declare_parser_variables): Rename to...
6001 (b4_declare_scanner_communication_variables): ... this for clarity and
6002 update both uses.
6003 (b4_declare_yyparse_variables): Remove and move its contents to the one
6004 spot where it was invoked.
6005 (b4_declare_parser_state_variables): New macro containing the parser
6006 state variables required by push mode.
6007 (struct yypstate): Replace all fields but yynew with
6008 b4_declare_parser_state_variables.
6009 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
6010 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
6011 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
6012 (yyparse or yypush_parse): For yyparse in pull mode, replace local
6013 parser state variable declarations with
6014 b4_declare_parser_state_variables.
6015 Don't initialize parser state variables when calling yypush_parse since
6016 yypstate_new already does that.
6017 Invoke the user's initial action only upon the first yypush_parse
6018 invocation.
6019 Remove all code that copies between the local parser state variables
6020 and the yypstate.
6021
2d212f8c
JD
60222006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
6023
6024 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
6025 prevent a name collision in a future patch where these names will
6026 sometimes be #define'd.
6027 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
6028 since it no longer has the same name as the existing argument.
6029 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
6030
e6e704dc
JD
60312006-12-19 Paolo Bonzini <bonzini@gnu.org>
6032 and Joel E. Denny <jdenny@ces.clemson.edu>
6033
6034 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
6035 that the argument is case-insensitive, and there's no `=' here.
6036 For the %skeleton entry, mention that %language is better.
6037 (Bison Options): Likewise for --language and --skeleton. Move the
6038 --skeleton entry so that the `Tuning the parser' section is sorted
6039 alphabetically on long options.
6040 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
6041 %language directive in detail here; cross-reference the %language
6042 documentation instead.
6043 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
6044 `%require "2.3b"' so that the example is always up-to-date.
148d66d8 6045 (Table of Symbols): Add entries for %language and %skeleton.
e6e704dc
JD
6046 * examples/extexi (normalize): Instead of replacing every %require
6047 argument with the current Bison version, just substitute for
6048 `@value{VERSION}'. This guarantees that we're testing what actually
6049 appears in the documentation.
6050 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
6051 rather than `@VERSION@'.
6052
0e021770
PE
60532006-12-18 Paul Eggert <eggert@cs.ucla.edu>
6054
fd575f05
PE
6055 * NEWS: Reword the %language news a bit, and put it earlier.
6056
0e021770
PE
6057 * src/getargs.c (skeleton_arg): Last arg is now location const *.
6058 Rewrite to simplify the logic.
6059 (language_argmatch): Likewise.
fd575f05
PE
6060 (program_name): We now own this var.
6061 * src/getargs.h (struct bison_language): Use char[] rather than
6062 const char *.
0e021770
PE
6063
6064 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
6065 Java is supported.
6066 * src/complain.c (program_name): Remove decl; no longer needed.
6067 * src/main.c (program_name): Remove; now belongs to getargs.
6068
60692006-12-18 Paolo Bonzini <bonzini@gnu.org>
6070
6071 * NEWS: Document %language.
6072
6073 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
6074
6075 * data/c-skel.m4, data/c++-skel.m4: New files.
6076 * data/glr.c: Complain on push parsers.
6077
6078 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
6079 over %skeleton.
148d66d8 6080 (Decl Summary): Document %language and %skeleton.
0e021770
PE
6081 (Command line): Document -L.
6082
6083 * examples/extexi: Rewrite %require directive.
6084 * examples/calc++/Makefile.am: Pass VERSION to extexi.
6085
6086 * src/files.c (compute_exts_from_gc): Look in language structure
6087 for .y extension.
6088 (compute_file_name_parts): Check whether .tab should be added.
6089 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
6090 (language, skeleton_arg, language_argmatch): New.
6091 (long_options): Add --language.
6092 (getargs): Use skeleton_arg, add -L/--language.
6093 * src/getargs.h: Include location.h.
6094 (struct bison_language, language, skeleton_arg, language_argmatch): New.
6095 * src/output.c (prepare): Pick default skeleton from struct language.
6096 Don't dispatch C skeletons here.
6097 * src/parse-gram.y (PERCENT_LANGUAGE): New.
6098 (prologue_declaration): Add "%language" rule, use skeleton_arg.
6099 * src/scan-gram.l ("%language"): New rule.
6100
6101 * tests/calc.at: Test %skeleton and %language.
6102 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
6103 (AT_GLR_IF): Look for %skeleton "glr.cc".
6104 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
6105 (AT_YACC_IF): Reject %language.
6106
5691bf57
PE
61072006-12-18 Paul Eggert <eggert@cs.ucla.edu>
6108
db06f0ce
PE
6109 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
6110 since it wasn't used; only the typedef name 'semantic_type' is needed.
6111 Also, omit trailing white space.
6112
5691bf57
PE
6113 * bootstrap: Sync from coreutils.
6114 (gnulib_extra_files): Add build-aux/announce.gen.
6115 (slurp): Adjust .gitignore files like .cvsignore files.
6116 * build-aux/announce-gen: Remove from CVS, since bootstrap
6117 now creates this.
6118
791934e4
JD
61192006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
6120
6121 Make %push-parser imply %pure-parser. This fixes several bugs; see
6122 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
6123 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
6124 pure_parser = true.
6125 * data/push.c: Don't bother testing b4_push_if when deciding whether
6126 to expand b4_declare_parser_variables globally.
6127 (yypush_parse): Likewise in here.
6128
6129 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
6130 (yy_reduce_print): Reformat M4 for readability.
6131
ee5abb37
JD
61322006-12-15 Bob Rossi <bob@brasko.net>
6133 and Joel Denny <jdenny@ces.clemson.edu>
6134
6135 * data/push.c (yypstate): Add typedef, and update all uses of
6136 struct yypstate to just yypstate.
6137 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
6138
16ca01f9
JD
61392006-12-14 Bob Rossi <bob@brasko.net>
6140
6141 * data/push.c (yypush_parse): Declare prototype regardless of
6142 %locations option.
6143
ab8e7e1a
JD
61442006-12-14 Bob Rossi <bob@brasko.net>
6145
6146 * data/push.c (yyparse): Remove the prototype and the #define when in
6147 push-parser mode.
6148
9bf32be3
JD
61492006-12-13 Bob Rossi <bob@brasko.net>
6150
6151 * data/push.c (yypstate_init): Rename to...
6152 (yypstate_new): ... this and use b4_c_function_def.
6153 (yypstate_delete): New.
6154 (yypush_parse): Change parameters yynval and yynlloc to be const.
6155 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
6156 yypstate_delete functions.
6157
f02e2948
JD
61582006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
6159
6160 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
6161 strange test case titles. Reported by Bob Rossi.
6162
38eb7751
PE
61632006-12-13 Paul Eggert <eggert@cs.ucla.edu>
6164
6165 * TODO: Add pointer to Sylvain Schmitz's work on static detection
6166 of potential ambiguities in GLR grammers.
6167
bd9d212b
JD
61682006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
6169
6170 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
6171 `bison ', use m4_index instead of m4_substr since chopping up a string
6172 containing M4-special characters causes problems here.
6173
6174 Fix a couple of bugs related to special characters in user-specified
6175 file names, and make it easier for skeletons to compute output file
6176 names with the same file name prefix as Bison-computed output file
6177 names.
6178 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
6179 b4_parser_file_name and b4_spec_defines_file instead of
6180 @output_parser_name@ and @output_header_name@, which are now redundant.
6181 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
6182 b4_parser_file_name, b4_spec_defines_file, and the new
6183 @basename(FILENAME@) instead of @output_parser_name@ and
6184 @output_header_name@, which inappropriately escaped the file names as
6185 C string literals.
6186 * src/files.c (all_but_ext): Remove static qualifier.
6187 (compute_output_file_names): Move `free (all_but_ext)' to...
6188 (output_file_names_free): ... here since all_but_ext is needed later.
6189 * src/files.h (all_but_ext): Extern.
6190 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
6191 exactly what MUSCLE_INSERT_STRING used to do.
6192 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
6193 characters are escaped properly.
6194 * src/output.c (prepare): Define muscle file_name_all_but_ext as
6195 all_but_ext.
6196 For pkgdatadir muscle, maintain previous functionality by using
6197 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
6198 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
6199 digraphs would never be expanded. Hopefully no one has M4-special
6200 characters in his Bison installation path.
6201 * src/scan-skel.l: Don't parse @output_header_name@ and
6202 @output_parser_name@ anymore since they're now redundant.
6203 In @output, use decode_at_digraphs.
6204 Parse a new @basename command that invokes last_component.
6205 (decode_at_digraphs): New.
6206 (BASE_QPUTS): Remove unused.
6207 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
6208 (Output file name): New tests.
6209
3f7ca628
JD
62102006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
6211
6212 Warn about output files that are generated by the skeletons and that
6213 conflict with other output files.
6214 * data/glr.c: Don't generate the header file here when glr.cc does.
6215 * src/files.c (file_names, file_names_count): New static globals.
6216 (compute_output_file_names): Invoke output_file_name_check for files
6217 not generated by the skeletons and remove existing checks.
6218 (output_file_name_check): New function that warns about conflicting
6219 output file names.
6220 (output_file_names_free): Free file_names.
6221 * src/files.h (output_file_name_check): Declare.
6222 * src/scan-skel.l: Invoke output_file_name_check for files generated by
6223 the skeletons.
6224 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
6225 (Conflicting output files): New tests.
6226
178e123e
PE
62272006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
6228
6229 * doc/bison.texinfo: Fix a couple of typos.
6230
62312006-12-08 Bob Rossi <bob@brasko.net>
8def5cd0
JD
6232
6233 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
6234 Rename to...
6235 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
6236 update all uses.
6237 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
6238 (yypush_parse): Rename yypvars argument to yyps and remove redundant
6239 local pv.
6240 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
6241 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
6242
ea17f233
JD
62432006-12-07 Bob Rossi <bob@brasko.net>
6244 and Joel Denny <jdenny@ces.clemson.edu>
6245
6246 * data/push.c (yypvarsinit): Change return type from void* to struct
6247 yypvars*. No longer cast to void* on return.
6248 (struct yypvars): Remove yylen since it need not be remembered between
6249 yypushparse invocations.
6250 (yypushparse): Don't copy between yylen and pv->yylen.
6251
55a30bda
JD
62522006-12-05 Bob Rossi <bob@brasko.net>
6253
6254 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
6255 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
6256 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
6257 (struct yypvars): Remove b4_declare_parser_variables.
6258 (yypvarsinit): Remove init code for removed variables.
6259 (global scope): Do not declare b4_declare_parser_variables if
6260 push or pure mode.
6261 (yypushparse): Add b4_declare_parser_variables.
6262 Init new local variables, and remove init code for removed
6263 yypvars variables.
6264 (yyparse): Delete.
6265 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
6266 and yyparse for other modes.
6267 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
6268 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
6269 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
6270 (AT_PURE_LEX_IF): True if pure or push parser.
6271
85894313
JD
62722006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
6273
6274 Document Yacc prologue alternatives and default %destructor's and
6275 %printer's as experimental. Don't mention Java yet. Discussed at
6276 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
6277 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
6278 (2.3a): Annotate this entry to say the old forms of these features were
6279 also experimental.
6280 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
148d66d8 6281 Table of Symbols): Say they're experimental. Comment out any mention
85894313
JD
6282 of Java (we'll want this back eventually).
6283
02975b9a
JD
62842006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
6285
6286 Support a file name argument to %defines. Deprecate `=' in
6287 %file-prefix, %name-prefix, and %output. Discussed at
6288 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
6289 * NEWS (2.3a+): Mention.
148d66d8 6290 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
02975b9a
JD
6291 form of %defines, and remove `=' from entries for %file-prefix,
6292 %name-prefix, and %output.
6293 * src/parse-gram.y (prologue_declaration): Implement.
6294 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
6295 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
6296 all but one occurrence of %name-prefix.
6297 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
6298 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
6299 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
6300 occurrence of each of %file-prefix and %output. Add check for %defines
6301 with argument.
6302 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
6303 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
6304 Remove the `=' from %output.
6305
287b314e
JD
63062006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
6307
6308 Don't escape $ in test case titles since Autoconf 2.61 now does that
6309 correctly.
6310 * tests/actions.at (Default %printer and %destructor are not for error
6311 or $undefined): Here.
6312 (Default %printer and %destructor are not for $accept): Here.
6313 * tests/input.at (Invalid $n and @n): Here.
6314
3ebecc24
JD
63152006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
6316
6317 Rename <!> to <>. Discussed starting at
6318 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
6319 * NEWS (2.3a+): Update.
148d66d8 6320 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
3ebecc24
JD
6321 Update.
6322 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
6323 * src/scan-gram.l (INITIAL): Implement.
6324 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
6325 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
6326 comment.
6327 * tests/actions.at (Default tagless %printer and %destructor,
6328 Default tagged and per-type %printer and %destructor,
6329 Default %printer and %destructor are not for error or $undefined,
6330 Default %printer and %destructor are not for $accept,
6331 Default %printer and %destructor for mid-rule values): Update.
6332 * tests/input.at (Default %printer and %destructor redeclared,
6333 Unused values with default %destructor): Update.
6334
26b8a438
JD
63352006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
6336
6337 Don't let %prec take a nonterminal.
6338 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
6339 token.
6340 * tests/input.at (%prec takes a token): New test checking that %prec
6341 won't take a nonterminal.
6342
07c39ae9
JD
63432006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
6344
405d53b7
JD
6345 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
6346 it was double-quoted.
07c39ae9
JD
6347 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
6348 grammar is maintained with Bison's highest standards.
6349 * src/getargs.c: Fix some typos in Doxygen comments.
6350
580b8926
JD
63512006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
6352
6353 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
6354 later. Reported by Paul Eggert in
6355 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
6356 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
6357 * src/scan-code.l (translate_action): Don't bother invoking
6358 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
6359 (code_scanner_free): Instead of invoking
6360 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
6361 which frees more.
6362 * src/scan-gram.l (gram_scanner_free): Likewise.
6363 * src/scan-skel.l (scan_skel): Likewise.
6364
4502eadc
JD
63652006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
6366
6367 * src/files.c (tr): Change return type to void.
6368 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
6369 has been called previously for the same key.
6370 (muscle_find): Return storage instead of value so that
6371 --enable-gcc-warnings doesn't produce warnings that the return discards
6372 const. aver that the value and storage are the same since storage
6373 could potentially be NULL when value is not.
6374 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
6375 same as 0.
6376
7746c8f6
PE
63772006-11-08 Paul Eggert <eggert@cs.ucla.edu>
6378
6379 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
6380 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
6381 us a slightly cleaner distribution, and also works.
6382 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
6383 gnulib changes.
6384
eb095650
PE
63852006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
6386 and Paul Eggert <eggert@cs.ucla.edu>
6387
6388 Don't let Bison leak memory except when it complains.
6389 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
6390 (spec_defines_file, dir_prefix): Now char *, not const char *,
6391 since they are freed.
6392 * src/files.c: Likewise.
6393 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
6394 Likewise.
6395 (tr): Now operates in-place. All uses changed.
6396 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
6397 values.
6398 (compute_file_name_parts, compute_output_file_names): Don't store
6399 read-only data in variables that will be freed.
6400 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
6401 src_extension, and header_extension.
6402 (output_file_names_free): New public function to free
6403 spec_verbose_file, spec_graph_file, spec_defines_file,
6404 parser_file_name, and dir_prefix.
6405 * src/getargs.c (getargs): Don't store read-only data in variables that
6406 will be freed.
6407 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
6408 (which previously existed but was unused), and quotearg_free.
6409 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
6410 * src/muscle_tab.c: Likewise.
6411 (muscle_entry): Make the value char const *,
6412 and add a new storage member that is char * and can be freed.
6413 (muscle_entry_free): New private function.
6414 (muscle_init): Use it instead of free.
6415 (muscle_insert, muscle_grow): Update and use new storage member.
6416 (muscle_code_grow): Free the string passed to muscle_grow
6417 since it's not needed anymore.
6418 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
6419 add a new `char *code' member.
6420 ("{...}"): Declare semantic type as code.
6421 * src/scan-code.h (translate_rule_action):
6422 (translate_symbol_action, translate_code, translate_action): Return
6423 `char const *' rather than `char *' since external code should not free
6424 these strings.
6425 * src/scan-code.l: Likewise.
6426 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
6427 which is "{...}" in the parser.
6428 * tests/Makefile.am (maintainer-check-valgrind): Set
6429 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
6430 Valgrind.
6431 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
6432 complain.
6433 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
6434 expecting a non-zero exit status sets --leak-check=summary and
6435 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
6436 this case, and we don't want to hear about it.
6437
ac564be4
PE
64382006-11-08 Paul Eggert <eggert@cs.ucla.edu>
6439
6440 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
6441 instead of from the template, to simplify configuration a bit.
6442 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
6443 and m4/wint_t.m4, as they are needed with the latest gnulib.
6444
17bd8a73
JD
64452006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6446
6447 Disable unset/unused mid-rule value warnings by default, and recognize
6448 --warnings=midrule-values to enable them. Discussed starting at
6449 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
6450 * NEWS (2.3a+): Mention.
6451 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
6452 warnings): Add entry for midrule-values subargument.
6453 * src/reader.c (symbol_should_be_used): Don't return true just because
6454 the value is a set/used mid-rule value unless
6455 --warnings=midrule-values was specified.
6456 * tests/input.at (Unused values, Unused values before symbol
6457 declarations): Run tests with and without --warnings=midrule-values.
6458
6459 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
6460 than LIST_FREE directly.
6461
89eb3c76
JD
64622006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6463
6464 Finish implementing --warnings=error, which should not be implied by
6465 --warnings=all (or by its synonyms -W and --warnings without
6466 subarguments).
6467 * src/complain.c (set_warning_issued): New function to report that
6468 warnings are being treated as errors and to record an error if so.
6469 Invoke...
6470 (warn_at, warn): ... here.
6471 * src/getargs.c (warnings_args, warnings_types): Reorder so that
6472 "error - warnings are errors" does not appear above "all - all of the
6473 above".
6474 (getargs): For -W and --warnings without subarguments, don't let
6475 FLAGS_ARGMATCH set warnings_error in warnings_flag.
6476 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
6477
ba7560e2
JD
64782006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6479
6480 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
6481 empty subargument list. For example: `bison --warnings= parser.y'.
6482
31283fc3
JD
64832006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6484
6485 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
6486 the parser header file so that gcc doesn't warn.
6487
12e35840
JD
64882006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6489
6490 Split the default %destructor/%printer into two kinds: <*> and <!>.
6491 Discussed starting at
6492 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
6493 * NEWS (2.3a+): Mention.
6494 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
6495 previous change today related to mid-rules.
148d66d8 6496 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
3ebecc24 6497 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
12e35840
JD
6498 (TYPE_TAG_ANY): Add as <*>.
6499 (TYPE_TAG_NONE): Add as <!>.
6500 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
6501 for <*> and <!>.
6502 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
6503 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
6504 * src/symlist.c (symbol_list_default_new): Split into tagged and
6505 tagless versions.
6506 (symbol_list_destructor_set, symbol_list_printer_set): Split
6507 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
6508 SYMLIST_DEFAULT_TAGLESS.
6509 * src/symlist.h: Update symbol_list_default*_new prototypes.
6510 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
6511 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
6512 * src/symtab.c (default_destructor, default_destructor_location,
6513 default_printer, default_printer_location): Split each into tagged and
6514 tagless versions.
6515 (symbol_destructor_get, symbol_destructor_location_get,
6516 symbol_printer_get, symbol_printer_location_get): Implement tagged
6517 default and tagless default cases.
6518 (default_destructor_set, default_printer_set): Split each into tagged
6519 and tagless versions.
6520 * src/symtab.h: Update prototypes.
6521 * tests/actions.at (Default %printer and %destructor): Rename to...
6522 (Default tagless %printer and %destructor): ... this, and extend.
6523 (Per-type %printer and %destructor): Rename to...
6524 (Default tagged and per-type %printer and %destructor): ... this, and
6525 extend.
6526 (Default %printer and %destructor for user-defined end token): Extend.
6527 (Default %printer and %destructor are not for error or $undefined):
6528 Update.
6529 (Default %printer and %destructor are not for $accept): Update.
6530 (Default %printer and %destructor for mid-rule values): Extend.
6531 * tests/input.at (Default %printer and %destructor redeclared): Extend.
6532 (Unused values with default %destructor): Extend.
6533
f91b1629
JD
65342006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6535
6536 Don't apply the default %destructor/%printer to an unreferenced midrule
6537 value. Mentioned at
6538 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
6539 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
6540 like $@n instead of just @n so that the default %destructor/%printer
6541 logic doesn't see them as user-defined symbols.
6542 (symbol_is_dummy): Check for both forms of the name.
6543 * src/reader.c (packgram): Remove the `$' from each midrule symbol
6544 name for which the midrule value is referenced in any action.
6545 * tests/actions.at (Default %printer and %destructor for mid-rule
6546 values): New test.
6547 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
6548 for change to dummy symbol names.
6549
519d0004
JD
65502006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
6551
6552 Warn about unset midrule $$ if the corresponding $n is used.
6553 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
6554 $n usage.
6555 (packgram): Before invoking grammar_rule_check on any rule, make sure
6556 all actions have already been scanned in order to set `used' flags.
6557 Otherwise, checking that a midrule's $$ is set will not always work
6558 properly because the midrule check must forward-reference the midrule's
6559 parent rule.
6560 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
6561 warning.
6562
a501eca9
JD
65632006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
6564
6565 More improvements to the documentation of the prologue alternatives:
6566 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
6567 Bison manual.
6568 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
6569 some text to clarify the relative importance of the new directives and
6570 to show how these directives may be viewed as code labels.
6571
2cbe6b7f
JD
65722006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
6573
6574 Similar to the recently removed %before-header, add %code-top as the
6575 alternative to the pre-prologue. Mentioned at
6576 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
6577 Also, let the prologue alternatives appear in the grammar section.
6578 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
6579 (prologue_declaration): Move the existing prologue alternatives to...
6580 (grammar_declaration): ... here and add %code-top.
6581 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
6582
6583 Clean up and extend documentation for the prologue alternatives.
6584 * NEWS (2.3a+): Describe prologue alternatives.
6585 * doc/bison.texinfo (Prologue): Move discussion of prologue
6586 alternatives to...
6587 (Prologue Alternatives): ... this new section, and extend it to discuss
6588 all 4 directives in detail.
148d66d8
JD
6589 (Table of Symbols): Clean up discussion of prologue alternatives and
6590 add %code-top.
2cbe6b7f 6591
e557d3ea
JMG
65922006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6593
6594 DJGPP specific issues.
6595
6596 * djgpp/config.bat: config.hin has been moved to lib. Adjust
6597 config.bat accordingly.
6598 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
6599 * djgpp/config.site: Likewise.
6600
136a0f76
PB
66012006-10-16 Paolo Bonzini <bonzini@gnu.org>
6602
27bd5d67
PB
6603 Replace %*-header with %provides, %requires, %code. See discussion at
6604 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
6605
136a0f76
PB
6606 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
6607 (b4_user_start_header): Remove.
6608 * data/glr.c: Use new macros instead of b4_*start_header
6609 and b4_*end_header.
6610 * data/glr.cc: Likewise.
6611 * data/lalr1.cc: Likewise.
6612 * data/push.c: Likewise.
6613 * data/yacc.c: Likewise.
6614
6615 * doc/bison.texinfo: Remove %before-header, rename
6616 %{start,end,after}-header to %requires, %provides, %code.
6617
6618 * src/parse-gram.y: Likewise (also rename token names accordingly).
6619 * src/scan-gram.l: Likewise.
6620 * tests/actions.at: Likewise.
6621
10f429ef
PE
66222006-10-14 Paul Eggert <eggert@cs.ucla.edu>
6623
6624 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
6625 Problem reported by Joel E. Denny.
6626
66272006-10-14 Jim Meyering <jim@meyering.net>
6628
6629 (Sync from coreutils.)
6630 Work also when the working directory (with e.g. coreutils sources)
6631 is version controlled with git, rather than CVS.
6632 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
6633 rather than CVS.
6634 In messages and comments, say e.g., "checked-out sources",
6635 rather than "CVS sources".
6636 (version_controlled_file): New function. Work for git as well as
6637 for CVS. Don't use grep's -q option.
6638 (slurp): Call it here, in place of CVS-specific code.
6639
c4bd5bf7
JD
66402006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
6641
6642 Fix testsuite for ./configure --enable-gcc-warnings:
6643 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
6644 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
6645 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
6646 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
6647 * test/regression.at (Diagnostic that expects two alternatives):
6648 Likewise.
6649
46356ea4
PE
66502006-10-12 Paul Eggert <eggert@cs.ucla.edu>
6651
231ed89a
PE
6652 * bootstrap.conf (gnulib_modules): Add config-h.
6653 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
6654 worry about HAVE_CONFIG_H.
6655 * lib/abitset.c: Likewise.
6656 * lib/bitset.c: Likewise.
6657 * lib/bitset_stats.c: Likewise.
6658 * lib/bitsetv-print.c: Likewise.
6659 * lib/bitsetv.c: Likewise.
6660 * lib/ebitset.c: Likewise.
6661 * lib/get-errno.c: Likewise.
6662 * lib/lbitset.c: Likewise.
6663 * lib/subpipe.c: Likewise.
6664 * lib/timevar.c: Likewise.
6665 * lib/vbitset.c: Likewise.
6666 * lib/bitset.c: Include "bitset.h" first, to test interface.
6667 * lib/bitset_stats.c: Include "bitset_stats.h" first.
6668 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
6669 * lib/bitsetv.c: Include "bitsetv.h" first.
6670 * lib/get-errno.c: Include "get-errno.h" first.
6671 * m4/.cvsignore: Add config-h.m4.
6672 * tests/actions.at (Default %printer and %destructor for ...):
6673 Adjust expected line numbers in output to reflect removal of #if
6674 HAVE_CONFIG_H lines.
6675 * tests/glr-regression.at (Missed %merge type warnings when ...):
6676 Likewise.
6677 * tests/regression.at (Braced code in declaration in rules section):
6678 Likewise.
6679 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
6680 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
6681 Include <config.h> unconditionally.
6682
46356ea4
PE
6683 * bootstrap: Sync from coreutils, as follows:
6684
6685 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
6686
6687 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
6688 variable was sometimes used without being initialized. This
6689 messed up the installation of the INSTALL file in some cases.
6690
6691 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
6692
6693 * bootstrap (usage, main program, symlink_to_gnulib): Add option
6694 --copy. Inspired by a suggestion from Bruno Haible.
6695
6696 2006-10-03 Jim Meyering <jim@meyering.net>
6697
6698 * bootstrap: Undo last change to this file, since now gnulib-tool
6699 sticks with the automake default in generating dependencies.
6700
dd4bf078
PE
67012006-10-12 Paul Eggert <eggert@cs.ucla.edu>
6702
cf2a5f7c
PE
6703 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
6704 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
6705
6706 * doc/bison.1: Add copyright notice.
6707
6708 * data/glr.c: Don't include <stdarg.h>; not used.
6709
35fe0834
PE
6710 * NEWS: The -g and --graph options now output graphs in Graphviz
6711 DOT format, not VCG format.
6712 * doc/bison.1: Likewise.
6713 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
fcab4a2e
PE
6714 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
6715 of this change in
6716 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
35fe0834
PE
6717 * TODO: Remove Graphviz entry.
6718 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
6719 remove vcg.c, vcg.h, vcg_defaults.h.
6720 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
6721 * src/graphviz.c, src/graphviz.h: New files.
6722 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
6723 * src/files.h: Make comment more generic.
6724 * src/main.c (main): Likewise.
6725 * src/print_graph.h: Likewise.
6726 * src/getargs.c (usage): Make usage description more generic.
6727 * src/print_graph.c: Include graphviz.h rather than vcg.h.
6728 (static_graph, fgraph): Remove. All uses changed to pass
6729 arguments instead of sharing a static var.
6730 (print_core, print_actions, print_state, print_graph):
6731 Output graphviz format rather than VCG format.
6732 * tests/.cvsignore: Remove *.vcg; add *.dot.
6733 * tests/output.at: Expect *.dot files, not *.vcg files.
6734
dd4bf078
PE
6735 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
6736 accommodates the 2006-10-08 change.
6737
efdd7421
PE
67382006-10-11 Bob Rossi <bob@brasko.net>
6739
6740 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
6741 (b4_yyssa, b4_yyerror_range): New macros.
6742 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
6743 (yypvarsinit): Remove init of removed fields.
6744 (yypushparse): Remove use of removed fields; use new macros instead.
6745
96a1981a
PE
67462006-10-11 Paul Eggert <eggert@cs.ucla.edu>
6747
6748 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
6749 in a push parser. Reindent slightly to match yacc.c better.
6750
67512006-10-11 Bob Rossi <bob@brasko.net>
6752
46356ea4
PE
6753 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
6754 yymsg_alloc fields.
6755 (yypvarsinit, yypushparse): Remove init of removed fields.
6756 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
96a1981a 6757
c1630a8b
PE
67582006-10-09 Paul Eggert <eggert@cs.ucla.edu>
6759
6760 * THANKS: Add Paolo Bonzini and Bob Rossi.
6761
90b9908d
PB
67622006-10-08 Paolo Bonzini <bonzini@gnu.org>
6763
6764 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
6765 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
6766 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
6767 b4_define_user_cde and uses): Remove.
6768 (b4_comment, b4_prefix, b4_sync_start): New.
6769 * data/bison.m4: New file, with most of the content removed from c.m4.
6770 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
6771 * src/output.c (output_skeleton): Pass bison.m4.
6772 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
6773 only if specified.
6774
cf806753
PE
67752006-10-05 Paul Eggert <eggert@cs.ucla.edu>
6776
6777 Fix test failure reported by Tom Lane in
6778 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
6779 and try to make such failures easier to catch in the future.
6780 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
6781 that's now the caller's responsibility.
6782 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
6783 Set yychar = YYEOF if it's negative.
6784 * tests/actions.at (yylex): Abort if asked to read past EOF.
6785 * tests/conflicts.at (yylex): Likewise.
6786 * tests/cxx-type.at (yylex): Likewise.
6787 * tests/glr-regression.at (yylex): Likewise.
6788 * tests/input.at (yylex): Likewise.
6789 * tests/regression.at (yylex): Likewise.
6790 * tests/torture.at (yylex): Likewise.
6791
0e2f006a
PE
67922006-10-01 Paul Eggert <eggert@cs.ucla.edu>
6793
6794 Fix problems with translating English-language diagnostics.
6795 * bootstrap: Fix bug introduced in recent bootstrap changes, with
6796 respect to bison-runtime pot generation. The YY_ stuff
6797 wasn't being captured.
6798 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
6799 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
6800 * runtime-po/POTFILES.in: Add data/push.c.
6801
e3ddc1e3
PE
68022006-09-29 Paul Eggert <eggert@cs.ucla.edu>
6803
6804 Merge bootstrap changes from coreutils.
6805
6806 2006-09-28 Jim Meyering <jim@meyering.net>
6807
6808 Automatically generated dependencies are important even
6809 when all of the sources in a directory come from gnulib.
6810 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
6811 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
6812
6813 2006-09-23 Jim Meyering <jim@meyering.net>
6814
6815 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
6816
6817 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6818
6819 * bootstrap: Add support for --force.
6820 (usage): New function. Describe usage less tersely.
6821 (CVS_only_file): New var.
6822
01e972b3
PE
68232006-09-21 Paul Eggert <eggert@cs.ucla.edu>
6824
6825 * data/push.c (YYPUSH_MORE): Make it an enum instead.
6826 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
6827 Adjust white space and comments to match GNU style better.
6828
c63d3e90
PE
68292006-09-20 Bob Rossi <bob@brasko.net>
6830
6831 * data/push.c (yyresult_get): Remove function.
6832 (YYPUSH_MORE): Add #define.
6833 (yypushparse): Modify return value.
6834
e70f46d1
PE
68352006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6836
6837 * stamp-h.in: Remove; no longer needed.
6838 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
6839 Remove config.h, config.hin, intl (no longer created).
6840 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
6841 stamp-h1.
6842
6843 Sync bootstrap from coreutils, as follows:
6844
6845 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
6846
6847 * bootstrap (symlink_to_gnulib): New function.
6848 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
6849 to copies-of-gnulib.
6850 (cp_mark_as_generated, slurp, gnulib_files):
6851 Avoid making a copy if it's the same as the old version.
6852 (gnulib_files): Add support for this variable (used by Bison).
6853
a92be413
PE
68542006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6855
6856 * src/getargs.c (usage): Rework to use conventions similar to
6857 coreutils, to make translation a bit easier and the code a bit
6858 smaller. Problem reported by Tim Van Holder.
6859
4f82b42a
PE
68602006-09-15 Paul Eggert <eggert@cs.ucla.edu>
6861
3b2942e6
PE
6862 Use some of gnulib's new modules, taken from coreutils.
6863
6864 * bootstrap: Sync from coreutils, except add support for gnulib_files.
6865 * bootstrap.conf: New file.
6866 (gnulib_modules): Add configmake, inttypes, unistd.
6867 (XGETTEXT_OPTIONS): Add complain, complain_at,
6868 fatal, fatal_at, warn, warn_at, unexpected_end.
6869 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
6870 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
6871 (gl_EARLY): Add.
6872 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
6873 (gl_INIT): Add
6874 (GNULIB_AUTOCONF_SNIPPET): Remove.
6875 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
6876 the pickiest.
6877 * lib/.cvsignore: Add inttypes_.h.
6878 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
6879 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
6880 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
6881 no-longer-necessary initializations.
6882 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
6883 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
6884 use the unistd module.
6885 * src/system.h: Likewise.
6886 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
6887 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
6888 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
6889 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
6890 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
6891 * src/system.h: Include inttypes.h unconditionally, now that we
6892 use the inttypes module. Don't bother to include stdint.h, since
6893 inttypes.h now does that for us.
6894 (LOCALEDIR): Remove, now that we use the configmake module.
6895 * src/getargs.c: Include configmake.h.
6896 * src/main.c: Likewise.
6897 * src/output.c: Likewise.
6898 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
6899 not from $abs_top_builddir, since config.h moved.
6900
6901
4f82b42a
PE
6902 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
6903 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
6904
6905 * src/parse-gram.y (symbol_declaration): Don't put statements
6906 before declarations; it's not portable to C89.
6907 * src/scan-code.l (handle_action_at): Likewise.
6908
6909 * src/scan-code.l: Always initialize braces_level; the old code
6910 left it uninitialized and therefore had undefined behavior.
6911
6912 Don't attempt to redefine 'assert', since it runs afoul of
6913 systems where standard headers (mistakenly) include <assert.h>.
6914 Instead, define and use our own alternative, called 'aver'.
6915 * src/reader.c: Don't include assert.h, since we no longer
6916 use assert.
6917 * src/scan-code.l: Likewise.
6918 * src/system.h (assert): Remove, replacing with....
6919 (aver): New function, taking a bool arg. All uses changed.
6920 * src/tables.c (pack_vector): Ensure that aver arg is bool,
6921 not merely an integer.
6922
31c10e38
PE
69232006-09-15 Bob Rossi <bob@brasko.net>
6924
e5926647
JD
6925 Add support for push parsing. Based on the original work of
6926 Odd Arild Olsen <oao@fibula.no>.
31c10e38
PE
6927 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
6928 * data/c.m4 (YYPUSH): New.
6929 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
e5926647 6930 * data/push.c: New file.
31c10e38
PE
6931 * src/getargs.c (push_parser): New var.
6932 * src/getargs.h (push_parser): New declaration.
6933 * src/output.c (prepare): Add macro insertion of `push_flag'.
6934 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
6935 (prologue_declaration): Parse %push-parser.
6936 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
6937 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
6938 list of removed lines from the traces observed.
6939 (AT_CHECK_CALC_LALR): Added push parser tests.
6940
fa7b79c0
PE
69412006-09-13 Paul Eggert <eggert@cs.ucla.edu>
6942
21fe08ca
PE
6943 * NEWS: Version 2.3a.
6944 * configure.ac (AC_INIT): Likewise.
6945
e8ec4d9b
PE
6946 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
6947 "#define YYSTYPE int" that caused "make maintainer-check" to fail
6948 due to header ordering dependencies. I don't know why the #define
6949 was there.
6950
fa7b79c0
PE
6951 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
6952 runtime cost when YYDEBUG is not defined, and so that some tests
6953 that used to fail now work. Problem and initial suggestion by
6954 Paolo Bonzini.
6955 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
6956 * data/glr.cc (b4_parser_class_name):
6957 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
6958 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
6959 (yydebug_) [YYDEBUG]: New member.
6960 (yycdebug_): Now defined only if YYDEBUG.
6961 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
6962 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
6963 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
6964 if YYYDEBUG.
6965 (debug_stream, set_debug_stream, debug_level, set_debug_level):
6966 Define only if YYDEBUG.
6967 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
6968 set_debug_level.
6969 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
6970 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
6971 AT_CHECK_CALC_GLR_CC that are working now.
6972
4ec13d60
PE
69732006-09-12 Paul Eggert <eggert@cs.ucla.edu>
6974
6975 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
6976 We don't need them in glr.cc, and glr.c defines them.
6977 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
6978 assumes that defining it to anything is the same as defining
6979 it to 1. Problem reported by Paolo Bonzini.
6980
8e1687ae
PE
69812006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
6982
6983 * data/c.m4 (b4_null, b4_case): Define.
6984 * src/output.c (prepare_symbols): Use b4_null.
6985 (user_actions_output): Use b4_case.
6986
3dc5e96b
PE
69872006-09-11 Paul Eggert <eggert@cs.ucla.edu>
6988
aef3da86
PE
6989 * data/glr.c (b4_shared_declarations): Put start-header first,
6990 before any #includes that we generate, so that feature-test
6991 macros work. Problem reported by Michael Deutschmann in
6992 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
6993 * data/lalr1.cc: Likewise.
6994 * doc/bison.texinfo (Prologue): Document that feature-test macros
6995 should be defined before any Bison declarations.
6996 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
6997 that depend on location.hh after, not before, Bison decls, since
6998 we now include location.hh after the first user prologue.
6999
3dc5e96b
PE
7000 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
7001 Sander Brandenburg in
7002 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
7003 Also, fix minor white space and comment issues.
aef3da86
PE
7004 (Prologue): Mention that it's better to define feature-test macros
7005 before Bison declarations. Problem reported by Michael Deutschmann.
7006
7007 * README-cvs: Fix typo: "&" should be "&&". Problem reported
7008 by Jim Meyering.
7009 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
7010 This adjusts to recent gnulib changes.
3dc5e96b 7011
b2a0b7ca
JD
70122006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
7013
7014 Finish implementation of per-type %destructor/%printer. Discussed
7015 starting at
7016 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
7017 and
7018 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
7019 * NEWS (2.3+): Add a description of this feature to the default
7020 %destructor/%printer description.
7021 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
7022 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
7023 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
7024 list node contains a semantic type.
7025 * src/symtab.c, src/symtab.h: Extend with a table that associates
7026 semantic types with their %destructor's and %printer's.
7027 (semantic_type_from_uniqstr, semantic_type_get,
7028 semantic_type_destructor_set, semantic_type_printer_set): New functions
7029 composing the public interface of that table.
7030 (symbol_destructor_get, symbol_destructor_location_get,
7031 symbol_printer_get, symbol_printer_location_get): If there's no
7032 per-symbol %destructor/%printer, look up the per-type before trying
7033 the default.
7034 * tests/actions.at (Per-type %printer and %destructor): New test case.
7035 * tests/input.at (Default %printer and %destructor redeclared):
7036 Extend to check that multiple occurrences of %symbol-default in a
7037 single %destructor/%printer declaration is an error.
7038 (Per-type %printer and %destructor redeclared, Unused values with
7039 per-type %destructor): New test cases.
7040
3be03b13
JD
70412006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
7042
7043 Require default %destructor/%printer to be declared using
7044 %symbol-default instead of an empty symbol list, and start working on
7045 new per-type %destructor/%printer. Discussed at
7046 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
7047 * NEWS (2.3+): Add %symbol-default to example.
7048 * bison.texinfo (Freeing Discarded Symbols): Likewise.
148d66d8 7049 (Table of Symbols): Add entry for %symbol-default.
3be03b13
JD
7050 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
7051 (generic_symlist, generic_symlist_item): New nonterminals for creating
7052 a list in which each item is a symbol, semantic type, or
7053 %symbol-default.
7054 (grammar_declaration): Use generic_symlist in %destructor and %printer
7055 declarations instead of symbols.1 or an empty list.
7056 (symbol_declaration, precedence_declaration, symbols.1): Update actions
7057 for changes to symbol_list.
7058 * src/reader.c: Update for changes to symbol_list.
7059 * src/scan-code.l: Likewise.
7060 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
7061 * src/symlist.c, src/symlist.h: Extend such that a list node may
7062 represent a semantic type or a %symbol-default in addition to just an
7063 ordinary symbol. Add switched functions for setting %destructor's and
7064 %printer's.
7065 * tests/actions.at, tests/input.at: Add %symbol-default to all default
7066 %destructor/%printer declarations.
7067
3508ce36
JD
70682006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
7069
7070 Whether the default %destructor/%printer applies to a particular symbol
7071 isn't a question of whether the user *declares* that symbol (in %token,
7072 for example). It's a question of whether the user by any means
7073 *defines* the symbol at all (by simply using a char token, for
7074 example). $end is defined by Bison whereas any other token with token
7075 number 0 is defined by the user. The error token is always defined by
7076 Bison regardless of whether the user declares it with %token, but we
7077 may one day let the user define error as a nonterminal instead.
7078 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
7079 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
7080 the meaning of "user-defined".
7081 * tests/actions.at (Default %printer and %destructor for user-declared
7082 end token): Rename to...
7083 (Default %printer and %destructor for user-defined end token): ...
7084 this.
7085
7086 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
7087 computation of whether to apply the default, don't maintain a list of
7088 every Bison-defined symbol. Instead, just check for a first character
7089 of '$', which a user symbol cannot have, and check for the error token.
7090
9350499c
JD
70912006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
7092
7093 Don't apply the default %destructor or %printer to the error token,
7094 $undefined, or $accept. This change fits the general rule that the
7095 default %destructor and %printer are only for user-declared symbols,
7096 and it solves several difficulties that are described in the new test
7097 cases listed below.
7098 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
7099 * tests/actions.at (Default %printer and %destructor are not for error
7100 or $undefined, Default %printer and %destructor are not for $accept):
7101 New test cases.
7102
4d7370cb
JD
71032006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
7104
7105 Allow %start after the first rule.
7106 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
7107 when parsing the first rule.
7108 (check_and_convert_grammar): Search for it here after all grammar
7109 declarations have been parsed. Skip midrules, which have dummy LHS
7110 nonterminals.
7111 * src/symtab.c (symbol_is_dummy): New function.
7112 * src/symtab.h (symbol_is_dummy): Declare it.
7113 * tests/input.at (%start after first rule): New test.
7114
6d0ef4ec
JD
71152006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
7116
7117 Redo some of the previous commit: add back the ability to use
7118 non-aliased/undeclared string literals since it might be useful to
7119 those declaring %token-table.
7120 * src/reader.c (check_and_convert_grammar): Undo changes in previous
7121 commit: don't worry about complaints from symbols_pack.
7122 * src/symtab.c (symbol_new, symbol_class_set,
7123 symbol_check_alias_consistency): Undo changes in previous commit: count
7124 each string literal as a new symbol and token, assign it a symbol
7125 number, and don't complain about non-aliased string literals.
7126 (symbols_pack): Since symbol_make_alias still does not decrement symbol
7127 and token counts but does still set aliased tokens to the same number,
7128 symbol_pack_processor now leaves empty slots in the symbols array.
7129 Remove those slots.
7130 * tests/regression.at (Undeclared string literal): Remove test case
7131 added in previous commit since non-aliased string literals are allowed
7132 again.
7133 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
7134 remove unnecessary string literal declarations.
7135 * tests/sets.at (Firsts): Likewise.
7136
965537bc
JD
71372006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
7138
7139 Don't allow an undeclared string literal, but allow a string literal to
7140 be used before its declaration.
7141 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
7142 symbols_pack complained.
7143 * src/symtab.c (symbol_new): Don't count a string literal as a new
7144 symbol.
7145 (symbol_class_set): Don't count a string literal as a new token, and
7146 don't assign it a symbol number since symbol_make_alias does that.
7147 (symbol_make_alias): It's not necessary to decrement the symbol and
7148 token counts anymore. Don't assume that an alias declaration occurs
7149 before any uses of the identifier or string, and thus don't assert that
7150 one of them has the highest symbol number so far.
7151 (symbol_check_alias_consistency): Complain if there's a string literal
7152 that wasn't declared as an alias.
7153 (symbols_pack): Bail if symbol_check_alias_consistency failed since
7154 symbol_pack asserts that every token has been assigned a symbol number
7155 although undeclared string literals have not.
7156 * tests/regression.at (String alias declared after use, Undeclared
6d0ef4ec 7157 string literal): New test cases.
965537bc
JD
7158 (Characters Escapes, Web2c Actions): Declare string literals as
7159 aliases.
7160 * tests/sets.at (Firsts): Likewise.
7161
47aee066
JD
71622006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
7163
7164 In the grammar scanner, STRING_FINISH unclosed constructs and return
7165 them to the parser in order to improve error messages.
7166 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
7167 SC_BRACED_CODE, SC_PROLOGUE): Implement.
7168 * tests/input.at (Unclosed constructs): New test case.
7169 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
7170 seen.
7171
7172 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
7173 unused global.
7174
1f6b3679
JD
71752006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
7176
7177 Handle string aliases for character tokens correctly.
7178 * src/symtab.c (symbol_user_token_number_set): If the token has an
7179 alias, check and set its alias's user token number instead of its own,
7180 which is set to indicate the alias. Previously, every occurrence of
7181 the character token in the grammar overwrote that alias indicator with
7182 the character code.
7183 * tests/input.at (String aliases for character tokens): New test.
7184
219741d8
JD
71852006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
7186
7187 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
7188
11daa4e7
PE
71892006-08-11 Paul Eggert <eggert@cs.ucla.edu>
7190
7191 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
7192 to prevent failures when building on older platforms.
7193 Check for autopoint failure.
7194 Set XGETTEXT_OPTIONS to values that check for C format strings,
7195 so that translators are warned about them (this also helps
7196 prevent core dumps).
7197
7198 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
7199 function, since it simplifies our code a bit.
7200
7201 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
7202 rather than -W, so we don't get bogus warnings about sign comparisons.
7203 Add -Wpointer-arith, since that warning is useful (it reports code
7204 that does not conform to C89 and that some compilers reject).
7205 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
7206 since it's no longer needed.
7207
f9bfc42a
JD
72082006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
7209
7210 Clean up scanners a bit.
7211 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
7212 definitions so gcc won't warn when obstack_for_string is unused.
7213 * src/scan-code.l: config.h and system.h are already #include'd by
7214 scan-code-c.c, so get rid of them here.
7215 * src/scan-gram.l: Likewise.
7216 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
7217 definitions rather than duplicating the rest of it.
7218 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
7219
06e8700a
JD
72202006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
7221
7222 Suppress signed/unsigned comparison warnings for yycheck.
7223 * data/c.m4 (b4_safest_int_type): New macro.
7224 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
7225 a signed int type, cast it to b4_safest_int_type first.
7226 * data/yacc.c: Likewise.
7227 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
7228 also overwritten.
7229
9c437126
PE
72302006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
7231
7232 * doc/bison.texinfo: Fix some typos.
7233
284d8a13
PE
72342006-08-02 Paul Eggert <eggert@cs.ucla.edu>
7235
7236 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
7237 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
7238
7239 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
7240 the latest gnulib does this a different way.
7241 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
7242 translation was patched, so stop omitting it.
7243
ec5479ce
JD
72442006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
7245
7246 Enable declaration of default %printer/%destructor. Make the parser
7247 use these for all user-declared grammar symbols for which the user does
7248 not declare a specific %printer/%destructor. Thus, the parser uses it
7249 for token 0 if the user declares it but not if Bison generates it as
7250 $end. Discussed starting at
7251 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
7252 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
7253 and
7254 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
7255 * NEWS (2.3+): Mention.
7256 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
7257 declare a %destructor for a mid-rule's semantic value. It's just
7258 impossible to declare one specific to it.
7259 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
7260 code. Describe default %destructor form.
7261 * src/parse-gram.y (grammar_declaration): Parse default
7262 %printer/%destructor declarations.
7263 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
7264 and symbol_destructor_location_get rather than accessing the destructor
7265 and destructor_location members of struct symbol.
7266 (symbol_printers_output): Likewise but for %printer's.
7267 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
7268 again.
7269 * src/symtab.c (default_destructor, default_destructor_location,
7270 default_printer, default_printer_location): New static global
7271 variables to record the default %destructor and %printer.
7272 (symbol_destructor_get, symbol_destructor_location_get,
7273 symbol_printer_get, symbol_printer_location_get): New functions to
7274 compute the appropriate %destructor and %printer for a symbol.
7275 (default_destructor_set, default_printer_set): New functions to set the
7276 default %destructor and %printer.
7277 * src/symtab.h: Prototype all those new functions.
7278 * tests/actions.at (Default %printer and %destructor): New test to
7279 check that the right %printer and %destructor are called, that they're
7280 not called for $end, and that $$ and @$ work correctly.
7281 (Default %printer and %destructor for user-declared end token): New
7282 test to check that the default %printer and %destructor are called for
7283 a user-declared end token.
7284 * tests/input.at (Default %printer and %destructor redeclared, Unused
7285 values with default %destructor): New tests to check related grammar
7286 warnings and errors.
7287
868d2d96
JD
72882006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
7289
7290 Clean up handling of %destructor for the end token (token 0).
7291 Discussed starting at
7292 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
7293 and
7294 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
7295
7296 Make the skeletons consistent in how they pop the end token and invoke
7297 its %destructor.
7298 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
7299 state, which has token number 0, since this would invoke the
7300 %destructor for the end token.
7301 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
7302 until after shifting the end token, or else it won't be popped.
7303 * data/yacc.c (yyparse): Likewise.
7304
7305 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
7306 it's the end token. Upon termination, destroy an unshifted lookahead
7307 even when it's the end token.
7308 * data/lalr1.cc (yy::parser::parse): Likewise.
7309 * data/yacc.c (yyparse): Likewise.
7310
7311 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
7312 value warnings for the end token when the user gives the end token a
7313 %destructor.
7314
7315 * tests/actions.at (Printers and Destructors): Test all the above.
7316
62a9592d
PE
73172006-07-24 Paul Eggert <eggert@cs.ucla.edu>
7318
7319 Update to latest gnulib and gettext versions.
7320 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
7321 Add fopen-safer.
7322 (gnulib_files): Add m4/warning.m4. Don't worry about files
7323 overwritten by autopoint.
7324 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
7325 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
7326 rejects them.
7327 Don't use autoreconf; instead, invoke autopoint etc. by hand,
7328 so that we can remove the intl files at a better time.
7329 (intl_files_to_remove): Remove aclocal.m4, since it gets
7330 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
7331 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
7332 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
7333 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
7334 Remove datarootdir hack; no longer needed.
7335 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
7336 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
7337 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
7338 strdup.h.
7339 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
7340 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
7341
10d6970f
PE
73422006-07-20 Paul Eggert <eggert@cs.ucla.edu>
7343
7344 * bootstrap: Adjust to today's change to gnulib-tool by invoking
7345 it with --assume-autoconf='latest-stable'.
7346
50a33993
JD
73472006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
7348
7349 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
7350 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
7351 YYSTYPE' and `{'.
7352 * src/muscle_tab.h (muscle_grow): Replace the header comments with
7353 those from muscle_tab.c since the old ones are misleading.
7354
2ce4ed68
AD
73552006-07-13 Akim Demaille <akim@epita.fr>
7356
7357 Support %define "KEY" {VALUE}.
7358 * src/scan-code.h, src/scan-code.l (translate_action)
7359 (translate_rule_action, translate_symbol_action, translate_code):
7360 Return char *, not const char *.
7361 * src/parse-gram.y (declaration): Rename as...
7362 (prologue_declaration): this.
7363 (string_content): Remove this nonterminal, use STRING.
7364 (braceless, content, content.opt): New nonterminal.
7365 Use them.
7366 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
7367 as value.
7368 * src/scan-gram.l (getargs.h): Don't include it.
7369
db7e5eb5
PE
73702006-07-12 Paul Eggert <eggert@cs.ucla.edu>
7371
7372 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
7373 rather than a for-loop that declares a local bool variable. This
7374 should work around a compatibility problem with a Cray x1e C++
7375 compiler reported by Hung Nguyen in
7376 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
7377 The for-loop was introduced in the 2004-11-17 change but I don't
7378 know why it was needed.
7379
a5d80ba5
AD
73802006-07-12 Akim Demaille <akim@epita.fr>
7381
7382 * data/c.m4: Comment changes.
7383
23eb2a69
AD
73842006-07-10 Akim Demaille <akim@lrde.epita.fr>
7385
7386 * src/complain.c (error_message, ERROR_MESSAGE): New.
7387 To factor...
7388 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
7389 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
7390
ddc8ede1
PE
73912006-07-09 Paul Eggert <eggert@cs.ucla.edu>
7392
7393 * NEWS: Instead of %union, you can define and use your own union type
7394 YYSTYPE if your grammar contains at least one <type> tag.
7395 Your YYSTYPE need not be a macro; it can be a typedef.
7396 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
7397 (Union Decl, Decl Summary): Document this.
7398 * data/glr.c (YYSTYPE): Implement this.
7399 * data/glr.cc (YYSTYPE): Likewise.
7400 * data/lalr1.cc (YYSTYPE): Likewise.
7401 * data/yacc.c (YYSTYPE): Likewise.
7402 * src/output.c (prepare): Output tag_seen_flag.
7403 * src/parse-gram.y (declaration, grammar_declaration):
7404 Use 'union_seen' rather than 'typed' to determine whether
7405 %union has been seen, since grammars can now be typed without
7406 %union.
7407 (symbol_declaration, type.opt, symbol_def):
7408 Keep track of whether a tag has been seen.
7409 * src/reader.c (union_seen, tag_seen): New vars.
7410 (typed): remove.
7411 * src/reader.h (union_seen, tag_seen, typed): Likewise.
7412 * src/scan-code.l (untyped_var_seen): New variable.
7413 (handle_action_dollar): Adjust to above changes.
7414 (handle_action_dollar, handle_action_at):
7415 Improve overflow checking for outlandish numbers.
7416 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
7417 avoid new diagnostics generated by above changes.
7418 * tests/regression.at (YYSTYPE typedef): Add test to check
7419 for type tags without %union.
7420
7421 * src/symlist.c (symbol_list_length): Return int, not unsigned
7422 int, since callers expect int. This may need to get revisited
7423 once we have proper integer overflow checking.
7424
7425 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
7426 object is now static.
7427
7428 * src/getargs.c (flags_argmatch): Return void, not int,
7429 to pacify ./configure --enable-gcc-warnings.
7430
7431 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
7432 since last_string is already defined to FLEX_PREFIX (last_string).
7433
7b42569e
AD
74342006-07-09 Akim Demaille <akim@lrde.epita.fr>
7435
7436 Implement --warnings/-W.
7437 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
7438 replaced by...
7439 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
7440 Adjust callers.
7441 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
7442 (warnings_args, warnings_types): New.
7443 (getargs, short_options, long_options): Accept -W/--warnings.
7444 Sort the options by alphabetical order, upper case letter right
7445 before its lower case.
7446
3b452f4e
JD
74472006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
7448
7449 Change %merge result type clash warnings to errors. Discussed at
7450 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
7451 * src/reader.c (record_merge_function_type): Use complain_at.
7452 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7453 declared later): Update test case results.
7454
b8a41559
AD
74552006-07-09 Akim Demaille <akim@lrde.epita.fr>
7456
7457 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
7458 to be in alphabetical order.
7459 (trace_args): Spelling fixes.
7460
cd9e1ba2
PE
74612006-07-09 Paul Eggert <eggert@cs.ucla.edu>
7462
7463 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
7464 so they don't collide with user-defined macros.
7465 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
7466 this was never guaranteed, and now that we're using gnulib stdint,
7467 which defines int_fast16_t to long int, the problem is exposed.
7468
cb48f191
PE
74692006-07-08 Paul Eggert <eggert@cs.ucla.edu>
7470
b8445a15
PE
7471 * data/c.m4 (b4_basename): Simplify a bit, since we don't
7472 need the full POSIX semantics (and weren't implementing them
7473 anyway).
7474
cb48f191
PE
7475 Adjust to Autoconf 2.60 and today's gnulib.
7476 * bootstrap (gnulib_modules): Add stdint.
7477 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
7478 no longer copies it.
7479 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
7480 since stdint needs the former and wcwidth (which is now required
7481 by mbswidth) needs the latter.
7482 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
7483 work around a compatibility glitch between gettext 0.14.6 and
7484 Autoconf 2.60.
7485 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
7486 Do not check for uintptr_t, since new stdint module does the right
7487 thing.
7488 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
7489 Add stdint.h, stdint_.h, wcwidth.h.
7490 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
7491 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
7492 stdint.m4, wchar_t.m4, wcwidth.m4.
7493 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
7494 usual order for ../lib/*.h files.
7495 (file_name_split): Use last_component, not base_name, to adjust
7496 to gnulib changes.
7497 * src/parse-gram.h: Include <strverscmp.h> in the usual order
7498 for ../lib/*.h files.
7499 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
7500 Define unconditionally, since we now assume the stdint module.
7501 * src/scan-skel.l: Include <dirname.h>.
7502 (BASE_QPUTS): Use last_component, not base_name.
7503 * src/system.h: Include <unlocked-io.h> in the usual order
7504 for ../lib/*.h files. Include <stdint.h> unconditionally,
7505 since we now use the stdint module.
7506 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
7507 HAVE_UINTPTR_T, since we now use the stdint module.
7508 (base_name): Remove decl, since files now include <dirname.h>
7509 to get the decl.
7510
cd48d21d
AD
75112006-07-08 Akim Demaille <akim@lrde.epita.fr>
7512
7513 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
7514 New, default to 1.
7515 * data/yacc.c, data/glr.c, data/location.cc: Use them.
7516 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
7517 default.
7518 * tests/calc.at: Adjust.
7519
8ec0a172
AD
75202006-07-08 Akim Demaille <akim@lrde.epita.fr>
7521
b8445a15 7522 * data/c.m4 (b4_basename): New.
8ec0a172
AD
7523 (b4_syncline): Also output the location of its invocation (from
7524 the skeleton).
7525 (b4_user_action, b4_define_user_action, b4_user_actions)
7526 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
7527 (b4_user_stype): New.
7528 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
7529
4a678af8
JD
75302006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
7531
7532 In the grammar file, the first column is 1 not 0 on the first line as
7533 on every other line.
7534 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
7535 * tests/input.at (Torturing the Scanner): Update output.
7536
7537 * src/scan-gram.l (scanner_cursor): Declare it static.
7538
dd60572a
JD
75392006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
7540
7541 In warnings, say "previous declaration" rather than "first
7542 declaration".
7543 * src/symtab.c (redeclaration): Do that here.
7544 * src/reader.c (record_merge_function_type): In the case of a result
7545 type clash, report the previous declaration rather than the very first
7546 one in the grammar file.
7547 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7548 declared later): Add a third declaration to check this behavior.
7549 * tests/input.at (Incompatible Aliases): Update output.
7550
2073e1b6
AD
75512006-06-27 Akim Demaille <akim@epita.fr>
7552
7553 * doc/Doxyfile.in: New.
7554 * doc/Makefile.am: Use it.
7555 * src/lalr.h, src/symtab.h: Initial doxygenation.
7556
8ee5b538
JD
75572006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7558
7559 Don't miss %merge result type warnings just because the LHS types are
fab044e6
JD
7560 declared after the %merge. This continues the effort of the previous
7561 patch.
8ee5b538
JD
7562 * src/reader.c (get_merge_function): Don't set the merger type yet.
7563 (record_merge_function_type): New function for setting the merger type
7564 and checking for clashes.
7565 (grammar_current_rule_merge_set): Set the location of the %merge for
7566 the current rule.
7567 (packgram): Invoke record_merge_function_type for each rule now that
7568 all symbol type declarations have been parsed.
7569 * src/reader.h (merger_list.type_declaration_location): New member
7570 storing the location of the first %merge from which the type for this
7571 merging function was derived.
7572 * src/symlist.h (symbol_list.merger_declaration_location): New member
7573 storing the location of a rule's %merge, if any.
7574 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7575 declared later): New test to catch the error fixed by the above patch.
7576
ffa4ba3a
JD
75772006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7578
7579 Get action warnings (grammar_rule_check) right even when symbol
fab044e6
JD
7580 declarations appear after the rules. Discussed at
7581 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
7582 and
7583 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
7584 Don't mistake the type of $$ in a midrule to be that of its parent
7585 rule's $$.
ffa4ba3a
JD
7586 * src/reader.c (grammar_current_rule_end): Don't invoke
7587 grammar_rule_check yet since not all symbol declarations may have been
7588 parsed yet.
7589 (grammar_midrule_action): Likewise.
7590 Don't record whether the midrule's $$ has been used yet since actions
7591 haven't been translated yet.
7592 Record the midrule's parent rule and its RHS index within the parent
7593 rule.
7594 (grammar_current_rule_action_append): Don't translate the action yet
7595 since not all symbol declarations may have been parsed yet and, thus,
7596 warnings about types for $$, $n, @$, and @n can't be reported yet.
7597 (packgram): Translate the action and invoke grammar_rule_check now that
7598 all symbol declarations have been parsed.
7599 * src/scan-code.l (handle_action_dollar): Now that this is invoked
7600 after parsing the entire grammar file, the symbol list here in the case
7601 of a midrule is actually the midrule's empty RHS, so reference its
7602 parent rule's RHS where necessary.
7603 On the other hand, now that you can already know it's a midrule, you
7604 aren't forced to think $$ has the same type as its parent rule's $$.
7605 (handle_action_at): In the case of a midrule, reference the parent rule
7606 where necessary.
7607 * src/symlist.c (symbol_list_new): Initialize new midrule-related
7608 members.
7609 (symbol_list_length): Now that this is invoked after all rules have
7610 been parsed, a NULL symbol (rather than a NULL symbol list node)
7611 terminates a rule. symbol_list_print already does this correctly.
7612 * src/symlist.h (symbol_list.midrule_parent_rule,
7613 symbol_list.midrule_parent_rhs_index): New members so that midrules can
7614 remember their relationships with their parents.
7615 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
7616 fixed by the above patch.
7617 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
7618 implementing...
7619 (Unused values): ... this old test case and...
7620 (Unused values before symbol declarations): ... this new test case.
7621 This one is the same as `Unused values' except that all symbol
7622 declarations appear after the rules in order to catch the rest of the
7623 errors fixed by the above patch.
7624
e256e17f
JD
76252006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7626
300a1930
JD
7627 More cleanup.
7628 * src/reader.c (current_rule): Declare it static since it's no longer
7629 used outside this file.
7630 (grammar_current_rule_action_append): Remove redundant arguments from
7631 translate_rule_action invocation.
7632 * src/reader.h (current_rule): Remove this unused extern.
7633 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
7634 * src/scan-code.l (translate_rule_action): Likewise.
e256e17f 7635
381ecb06
JD
76362006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
7637
7638 Clean up yesterday's patch.
7639 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
7640 to...
7641 * src/reader.c (grammar_current_rule_action_append): ... here for
7642 consistency with grammar_current_rule_symbol_append.
7643 * tests/regression.at (Braced code in declaration in rules section):
7644 Make yyerror and yylex static as usual.
7645
4210cd0b
JD
76462006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
7647
7648 Fix bug that mistakes braced code in a declaration in the rules section
7649 to be a rule action. Mentioned at
7650 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
7651 * src/scan-gram.l: Move midrule action detection from the start of the
7652 scanning of any braced code to...
7653 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
7654 action. For readability, use $2 and @2 rather than the equivalent
7655 global variables.
7656 * tests/regression.at (Braced code in declaration in rules section):
7657 New test to catch the error fixed by the above patch.
7658
7659 Work on code readability some.
7660 * src/scan-code.l (current_rule): Get rid of this misleading and
7661 redundant declaration: it's actually extern'ed in reader.h.
7662 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
7663 translate_action): Add a rule argument and use it instead of the global
7664 current_rule.
7665 (translate_rule_action): This already receives current_rule through an
7666 argument, so pass it on to translate_action instead of assigning
7667 current_rule to current_rule.
7668 (translate_symbol_action, translate_code): Pass rule = NULL to
7669 translate_action.
7670
34f98f46
JD
76712006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
7672
7673 Rename %before-definitions to %start-header and %after-definitions to
7674 %end-header. Don't use these declarations to separate pre-prologue
7675 blocks from post-prologue blocks. Add new order-independent
7676 declarations %before-header and %after-header as alternatives to the
7677 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
7678 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
7679 * NEWS (2.3+): Update for these changes.
7680 * data/glr.c (b4_before_definitions): Update to...
7681 (b4_start_header): ... this.
7682 (b4_after_definitions): Update to...
7683 (b4_end_header): ... this.
7684 * data/glr.cc: Likewise.
7685 * data/lalr1.cc: Likewise.
7686 * data/yacc.c: Likewise.
7687 * doc/bison.texinfo (The prologue): Update names, and replace remaining
7688 prologue blocks with %*-header declarations.
7689 (Calc++ Parser): Likewise.
91661ebb 7690 (Decl Summary): Update names.
148d66d8 7691 (Table of Symbols): Update description.
34f98f46
JD
7692 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
7693 (PERCENT_END_HEADER): ... this.
7694 (PERCENT_BEFORE_DEFINITIONS): Update to...
7695 (PERCENT_START_HEADER): ... this.
7696 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
7697 (declaration): Update token names and m4 macro names.
7698 When parsing %end-header and %start-header, invoke translate_code
7699 before muscle_code_grow, and no longer set global booleans to remember
7700 whether these declarations have been seen.
7701 Parse new %after-header and %before-header.
7702 * src/reader.c (before_definitions, after_definitions): Remove.
7703 (prologue_augment): Accept a new bool argument to specify whether to
7704 augment the pre-prologue or post-prologue.
7705 * src/reader.h (before_definitions, after_definitions): Remove these
7706 extern's.
7707 (prologue_augment): Add new bool argument.
7708 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
7709 (PERCENT_END_HEADER): ... this.
7710 (PERCENT_BEFORE_DEFINITIONS): Update to...
7711 (PERCENT_START_HEADER): ... this.
7712 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
7713 * tests/actions.at (Printers and Destructors): Update names.
7714
31b2b07e
JD
77152006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
7716
7717 Add comparison operators for C++ location classes. Discussed at
7718 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
7719 * data/c++.m4 (b4_define_location_comparison): New boolean %define
7720 declaration indicating whether filename_type has an operator==. If
7721 filename_type is `std::string', it defaults to `1', `0' otherwise.
7722 * data/location.cc: Iff b4_define_location_comparison is `1', add
7723 operator== and operator!= for class position and for class location.
7724
7725 Some minor fixes.
7726 * src/scan-action.l: Remove unused file.
7727 * src/symtab.c (symbol_printer_set): Use printer_location not
7728 destructor_location.
7729 * src/symtab.h (struct symbol): Replace incorrect source comment for
7730 printer members.
7731 * tests/input.at (Incompatible Aliases): Update output with correct
7732 printer location.
7733
9bc0dd67
JD
77342006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
7735
7736 Don't put the pre-prologue in the header file. For the yacc.c code
7737 file and the glr.c header and code files, move the pre-prologue before
7738 the token definitions. Add new %before-definitions and
7739 %after-definitions to declare code that will go in both the header file
7740 and code file. Discussed at
7741 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
7742 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
7743 and
7744 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
7745 * NEWS (2.3+): Describe these changes.
7746 * data/glr.c (b4_pre_prologue): Move from within to before...
7747 (b4_shared_declarations): ... this.
7748 Add new b4_before_definitions before b4_token_enums.
7749 Add new b4_after_definitions at the end.
7750 * data/glr.cc (b4_pre_prologue): Replace with...
7751 (b4_before_definitions): ... this in the header file.
7752 (b4_after_definitions): New near the end of the header file.
7753 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
7754 code file right before including the header file.
7755 (b4_before_definitions): New in the previous position of
7756 b4_pre_prologue in the header file.
7757 (b4_after_definitions): New near the end of the header file.
7758 * data/yacc.c: Clean up some m4 quoting especially in the header file.
7759 (b4_token_enums_defines): In the code file, move to right before
7760 YYSTYPE for consistency with the header file.
7761 (b4_before_definitions): New right before b4_token_enums_defines in
7762 both the header and code file.
7763 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
7764 header and code file.
7765 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
7766 of prologues for %union dependencies.
91661ebb
JD
7767 (Decl Summary): In %defines description, mention the effect of
7768 %before-definitions and %after-definitions on the header file.
9bc0dd67
JD
7769 (Calc++ Parser): Forward declare driver in a %before-definitions rather
7770 than in the pre-prologue so that make check succeeds.
148d66d8 7771 (Table of Symbols): Add entries for %before-definitions and
9bc0dd67
JD
7772 %after-definitions.
7773 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
7774 %before-definitions.
7775 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
7776 (declaration): Parse those declarations and append to
7777 b4_before_definitions and b4_after_definitions, respectively.
7778 * src/reader.c (before_definitions, after_definitions): New bools to
7779 track whether those declarations have been seen.
7780 (prologue_augment): Add to the post-prologue if %union,
7781 %before-definitions, or %after-definitions has been seen.
7782 * src/reader.h (before_definitions, after_definitions): New extern's.
7783 * src/scan-gram.l: Scan the new declarations.
7784 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
7785 prologue block in a %before-definitions or a %after-definitions based
7786 on whether the %union is declared.
7787 * tests/regression.at (Early token definitions with --yacc, Early token
7788 definitions without --yacc): Move tests for token definitions into the
7789 post-prologue since token names are no longer defined in the
7790 pre-prologue.
7791
203b9274
AD
77922006-06-20 Akim Demaille <akim@epita.fr>
7793
7794 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
7795 (symbol_get): Use it.
7796 * src/parse-gram.y: Use it.
7797
a7ee59cf
JD
77982006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
7799
7800 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
7801 build succeeds when configured with --enable-gcc-warnings.
7802
5a2baae7
PE
78032006-06-19 Paul Eggert <eggert@cs.ucla.edu>
7804
33ad1a9c
PE
7805 * src/parse-gram.y (char_name): New function.
7806 (CHAR, STRING, string_content): For %printer, properly escape.
7807 (ID): Prefer fputs to fprintf.
7808 (id): Reindent to be consistent with other rules.
7809 Properly quote char.
7810
5a2baae7
PE
7811 The Translation Project changed its way of publishing translations
7812 to maintainers. I haven't received any responses to my request
7813 for supporting the old way, or for documenting the new way. I
7814 have modified 'bootstrap' to use screen scraping
7815 (in this case, HTML scraping). This is unreliable and inelegant,
7816 but I don't see any better way. Yuck.
7817 * bootstrap (TP_URL, WGET_COMMAND): New vars.
7818 (get_translations): New function, which uses HTML scraping to
7819 deduce locations of latest translations.
7820 Use this function to grab both bison and bison-runtime .po files.
7821 Don't bother priming the pump for the runtime-po domain any more,
7822 as it's now translated better than bison is.
7823
58d7a1a1
AD
78242006-06-19 Akim Demaille <akim@epita.fr>
7825
7826 * src/scan-gram.l: No longer "parse" things after `%union' until
7827 `{'. Rather, return a single "%union" token.
7828 No longer make symbols: return strings, and leave the conversion
7829 to symbols to the parser.
7830 (SC_PRE_CODE, token_type): Remove.
7831 * src/parse-gram.y (%union): New field `character'.
7832 Sort tokens.
7833 (CHAR): New token.
7834 (ID, ID_COLON): Now that the scanner no longer makes them
7835 identifiers, adjust all uses to invoke symbol_get.
7836 (id_colon): New, wraps the conversion from string to symbol.
7837 (%union): Accept a possible union_name.
7838 (symbol): Now can be a char.
7839 * data/c.m4 (b4_union_name): Leave a default value.
7840 * data/glr.c, data/yacc.c: Use it.
7841
b931235e
JD
78422006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
7843
7844 For associating token numbers with token names for "yacc.c", don't use
7845 #define statements unless `--yacc' is specified; always use enum
7846 yytokentype. Most important discussions start at:
7847 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
7848 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
7849 and
7850 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
7851 * NEWS (2.3+): Mention.
7852 * data/c.m4 (b4_yacc_if): New.
7853 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
7854 token #define's.
7855 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
7856 on token name definitions.
7857 * src/getargs.c (usage): Capitalize `Yacc' in English.
7858 * src/output.c (prepare): Define b4_yacc_flag.
7859 * tests/regression.at (Early token definitions): Test that tokens names
7860 are defined before the pre-prologue not just before the post-prologue.
7861 Remove this test case and copy to...
7862 (Early token definitions with --yacc): ... this to test #define's.
7863 (Early token definitions without --yacc): ... and this to test enums.
7864
9e6e7ed2
PE
78652006-06-11 Paul Eggert <eggert@cs.ucla.edu>
7866
7867 * NEWS: Reword the post-2.3 change to not be so optimistic about
7868 removing the old "look-ahead" spelling.
7869 Update previous look-ahead/lookahead change reports.
7870 * REFERENCES: look-ahead -> lookahead (since that's
7871 what he actually wrote).
7872 * doc/refcard.tex: look ahead -> lookahead,
7873 look-ahead -> lookahead
7874
742e4900
JD
78752006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
7876
7877 For consistency, use `lookahead' instead of `look-ahead' or
7878 `look_ahead'. Discussed starting at
7879 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
7880 and then at
7881 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
7882 * NEWS: For the next release, note the change to `--report'.
7883 * TODO, doc/bison.1: Update English.
7884 * doc/bison.texinfo: Update English.
7885 (Understanding Your Parser, Bison Options): Document as
7886 `--report=lookahead' rather than `--report=look-ahead'.
7887 * src/conflicts.c: Update English in comments.
7888 (lookahead_set): Rename from look_ahead_set.
7889 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
7890 (resolve_sr_conflict): Rename local look_ahead_tokens to
7891 lookahead_tokens, and update other uses.
7892 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
7893 count_rr_conflicts, conflicts_free): Update uses.
7894 * src/getargs.c (report_args): Move "lookahead" before alternate
7895 spellings.
7896 (report_types): Update uses.
7897 (usage): For `--report' usage description, state `lookahead' spelling
7898 rather than `look-ahead'.
7899 * src/getargs.h (report.report_lookahead_tokens): Rename from
7900 report_look_ahead_tokens.
7901 * src/lalr.c: Update English in comments.
7902 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
7903 (state_lookahead_tokens_count): Rename from
7904 state_look_ahead_tokens_count.
7905 Rename local n_look_ahead_tokens to n_lookahead_tokens.
7906 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
7907 Rename local n_look_ahead_tokens to n_lookahead_tokens.
7908 Update other uses.
7909 Update English in output.
7910 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
7911 * src/print.c: Update English in comments.
7912 (lookahead_set): Rename from look_ahead_set.
7913 (print_reduction): Rename argument lookahead_token from
7914 look_ahead_token.
7915 (print_core, state_default_rule, print_reductions, print_results):
7916 Update uses.
7917 * src/print_graph.c: Update English in comments.
7918 (print_core): Update uses.
7919 * src/state.c: Update English in comments.
7920 (reductions_new): Update uses.
7921 (state_rule_lookahead_tokens_print): Rename from
7922 state_rule_look_ahead_tokens_print, and update other uses.
7923 * src/state.h: Update English in comments.
7924 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
7925 (state_rule_lookahead_tokens_print): Rename from
7926 state_rule_look_ahead_tokens_print.
7927 * src/tables.c: Update English in comments.
7928 (conflict_row, action_row): Update uses.
7929 * tests/glr-regression.at
7930 (Incorrect lookahead during deterministic GLR,
7931 Incorrect lookahead during nondeterministic GLR): Rename
7932 print_look_ahead to print_lookahead.
7933 * tests/torture.at: Update English in comments.
7934 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
7935 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
7936 (Many lookahead tokens): Update uses.
7937 * data/glr.c: Update English in comments.
7938 * lalr1.cc: Likewise.
7939 * yacc.c: Likewise.
7940 * src/conflicts.h: Likewise.
7941 * src/lalr.h: Likewise.
7942 * src/main.c: Likewise.
7943 * src/output.c: Likewise.
7944 * src/parse-gram.c: Likewise.
7945 * src/tables.h: Likewise.
7946 * tests/calc.at: Likewise.
7947
3c40d0b5
JD
79482006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
7949
7950 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
7951
5d278082
PE
79522006-06-07 Paul Eggert <eggert@cs.ucla.edu>
7953
7954 * TODO: Add request from Nelson H. F. Beebe to be able to install
7955 Bison without installing the yacc script.
7956
9e668899
JD
79572006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
7958
7959 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
7960 and yytext if they're already #define'd.
7961 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
7962 * src/scan-code-c.c: ... here.
7963 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
7964 <config.h>.
7965
0c8e079f
JD
79662006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
7967
7968 Get Bison to build again when configured with --enable-gcc-warnings.
7969 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
7970 missing #include's.
7971 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
7972 loc argument as it shadows a global.
7973 * src/scan-gram.l: Remove stray comma that prevents boundary_set
7974 invocation.
7975
7976 * src/.cvsignore: Add scan-code.c.
7977
2346344a
AD
79782006-06-07 Akim Demaille <akim@epita.fr>
7979
7980 * src/scan-gram.l: Move the "add a trailing ; to actions" code
7981 to...
7982 * src/scan-code.l: here.
7983 * tests/input.at (Torturing the Scanner): Fix another location
7984 error.
7985
4862bdfd
AD
79862006-06-07 Akim Demaille <akim@epita.fr>
7987
7988 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
7989
e9071366
AD
79902006-06-06 Akim Demaille <akim@epita.fr>
7991
7992 Extract the parsing of user actions from the grammar scanner.
7993 As a consequence, the relation between the grammar scanner and
7994 parser is much simpler. We can also split "composite tokens" back
7995 into simple tokens.
7996 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
7997 * src/scan-gram.l (add_column_width, adjust_location): Move to and
7998 rename as...
7999 * src/location.h, src/location.c (add_column_width)
8000 (location_compute): these.
8001 Fix the column count: the initial column is 0.
8002 (location_print): Be robust to ending column being 0.
8003 * src/location.h (boundary_set): New.
8004 * src/main.c: Adjust to scanner_free being renamed as
8005 gram_scanner_free.
8006 * src/output.c: Include scan-code.h.
8007 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
8008 Use boundary_set.
8009 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
8010 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
8011 which is now, again, a separate token.
8012 Adjust all dependencies.
8013 Whereever actions with $ and @ are used, use translate_code.
8014 (action): Remove this nonterminal which is now useless.
8015 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
8016 (grammar_current_rule_action_append): Use translate_code.
8017 (packgram): Bound check ruleno, itemno, and rule_length.
8018 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
8019 (last_string, last_braced_code_loc, max_left_semantic_context)
8020 (scanner_initialize, scanner_free, scanner_last_string_free)
8021 (gram_out, gram_lineno, YY_DECL_): Move to...
8022 * src/scan-gram.h: this new file.
8023 (YY_DECL): Rename as...
8024 (GRAM_DECL): this.
8025 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
8026 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8027 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8028 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8029 Move these declarations, and...
8030 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
8031 these to...
8032 * src/flex-scanner.h: this new file.
8033 * src/scan-gram.l (rule_length, rule_length_overflow)
8034 (increment_rule_length): Remove.
8035 (last_braced_code_loc): Rename as...
8036 (gram_last_braced_code_loc): this.
8037 Adjust to the changes of the parser.
8038 Move all the handling of $ and @ into...
8039 * src/scan-code.l: here.
8040 * src/scan-gram.l (handle_dollar, handle_at): Remove.
8041 (handle_action_dollar, handle_action_at): Move to...
8042 * src/scan-code.l: here.
8043 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
8044 scan-code.h, scan-code-c.c, scan-gram.h.
8045 (EXTRA_bison_SOURCES): Add scan-code.l.
8046 (BUILT_SOURCES): Add scan-code.c.
8047 (yacc): Be robust to white spaces.
8048
8049 * tests/conflicts.at, tests/input.at, tests/reduce.at,
8050 * tests/regression.at: Adjust the column numbers.
8051 * tests/regression.at: Adjust the error message.
7891a7c4 8052
184e42f0
JD
80532006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
8054
8055 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
8056 Use Akim's wording from
8057 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
8058
7891a7c4
JD
80592006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
8060
8061 Between Bison releases, manually append `+' to the previous Bison
8062 release number, and use that as a signal to automatically print the
8063 ChangeLog's CVS Id keyword from --version. Discussed starting at
8064 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
8065 * ChangeLog: Add Id header.
8066 * configure.ac (AC_INIT): Append `+' to `2.3'.
8067 * src/.cvsignore: Add revision.c.
8068 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
8069 (BUILT_SOURCES): Add revision.c.
8070 (revision.c): New target rule. This file defines a new global variable
8071 named revision. It initializes it with either the Id from ChangeLog
8072 or, if VERSION doesn't contain `+', with the empty string.
8073 * src/getargs.c (version): Print the value of revision.
8074 * src/revision.h: Extern revision.
8075
4ad3ed84
PE
80762006-06-05 Paul Eggert <eggert@cs.ucla.edu>
8077
8078 * NEWS: Version 2.3.
8079 * configure.ac (AC_INIT): Likewise.
8080
02103984
PE
80812006-05-30 Paul Eggert <eggert@cs.ucla.edu>
8082
8083 * data/glr.c (YYRECOVERING): Define to be a function-like macro
8084 with no arguments, not as an object-like macro. This is for
8085 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
8086 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
8087 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
8088 Document this.
8089
2c08afa5
JD
80902006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
8091
8092 * src/getargs.c (usage): Back out yesterday's modification of the
8093 --help output so that we don't have to wait for translation before
8094 releasing 2.3.
8095
6077da58
PE
80962006-05-29 Paul Eggert <eggert@cs.ucla.edu>
8097
8098 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
8099 Problem reported by Akim Demaille.
8100
2a26b6c2
JD
81012006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
8102
8103 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
8104
aefef0d6
PE
81052006-05-26 Paul Eggert <eggert@cs.ucla.edu>
8106
8107 * data/yacc.c (yy_reduce_print): Omit trailing white space in
8108 generated source code. Problem reported by Frans Englich in
8109 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
8110
fcd8e201
PE
81112006-05-22 Paul Eggert <eggert@cs.ucla.edu>
8112
8113 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
8114 shell, not within 'make', so that 'make' by an ordinary builder
8115 (using GNU make) does not worry about configuring gzip. This also
8116 works around a bug reported independently by Keith Thompson and by
8117 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
8118 stderr rather than stdout, messing up the build logs.
8119
7b5cdcbd
JD
81202006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
8121
8122 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
8123 to make sure that YYID will never be unused. This fixes a 'make
8124 maintainer-check' failure caused by the recent changes to the 'Trivial
8125 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
8126 not used.
8127 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
8128
5ad0a449
JD
81292006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
8130
8131 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
8132 state before an empty RHS is always resolved here. Only the location
8133 of that state is guaranteed to be resolved, and that's enough. This
8134 fixes the remaining bug reported by Derek M. Jones in
8135 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
8136 * tests/glr-regression.at (Uninitialized location when reporting
8137 ambiguity): Test the above case.
8138 Also, the embedded comments in this test case claim it checks the case
8139 of an empty RHS that has inherited the initial location. However, the
8140 corresponding LHS was already resolved, so yyresolveLocations didn't
8141 actually have reason to modify it. Fix this by forcing
8142 nondeterministic operation at the beginning of the parse.
8143
50cce58e
PE
81442006-05-20 Paul Eggert <eggert@cs.ucla.edu>
8145
8146 * data/c.m4 (b4_yy_symbol_print_generate):
8147 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
8148 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
8149 of the bugs reported today by Derek M Jones in
8150 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
8151 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
8152 defined to be a type name without parens or brackets.
8153 (Location Type): Similarly for YYLTYPE.
8154 * tests/regression.at (Trivial grammars): Put in a test for this
8155 bug that will be caught by 'make maintainer-check' (though not,
8156 alas, by 'make check' unless your compiler is picky).
8157
ab8d9dc5
PE
81582006-05-19 Paul Eggert <eggert@cs.ucla.edu>
8159
0d2c8934 8160 * NEWS: Version 2.2.
ab8d9dc5
PE
8161 * configure.ac (AC_INIT): Likewise.
8162
9138c575
JD
81632006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
8164
8165 * data/glr.c (yyreportTree): Make room in yystates for the state
8166 preceding the RHS. This fixes the segmentation fault reported by Derek
8167 M. Jones in
8168 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
8169 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
8170 to the user. Reported for yyreportTree by Derek M. Jones later in the
8171 same thread.
8172 * THANKS: Add Derek M. Jones.
8173 Update my email address.
8174 Fix typo in Steve Murphy's name.
8175
276f48df
PE
81762006-05-14 Paul Eggert <eggert@cs.ucla.edu>
8177
d6645148
PE
8178 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
8179 checking against YYLAST that caused the parser to miss a potential
8180 alternative in its diagnostic.
8181 Problem reported by Maria Jose Moron Fernandez in
8182 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
8183 * data/lalr1.cc (yysyntax_error_): Likewise.
8184 * data/yacc.c (yysyntax_error): Likewise.
8185 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
8186 tokens, in case we run into an older C compiler.
8187 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
8188 Use them to check for the off-by-one error fixed above.
8189
276f48df
PE
8190 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
8191 YYSIZE_T, not size_t.
8192 * tests/regression.at (Trivial grammars): New test, to catch
8193 the error fixed by the above patch.
8194
cd8b5791
AD
81952006-05-14 Akim Demaille <akim@lrde.epita.fr>
8196
8197 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
8198 scheme.
8199 Reported by Steve Murphy.
8200
34376418
AD
82012006-05-14 Akim Demaille <akim@lrde.epita.fr>
8202
8203 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
8204 * data/glr.cc: b4_location_flag is now b4_locations_flag.
8205
327afc7c
AD
82062006-05-14 Akim Demaille <akim@lrde.epita.fr>
8207
8208 Implement --trace=m4.
8209 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
8210 * src/output.c (output_skeleton): When set, pass -dV to m4.
8211
8212 Factor the handling of flags in m4.
8213 * src/output.c (prepare): Rename the muscle names debug, defines,
8214 error_verbose to debug_flag, defines_flag, error_verbose_flag.
8215 * data/c.m4: Adjust.
8216 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
8217 Use b4_define_flag_if to define other b4_FLAG_if macros.
8218 (b4_location_if): As a consequence, rename as...
8219 (b4_locations_if): this, for consistency.
8220 Adjust all the skeletons.
8221
ba9ecd19
AD
82222006-05-14 Akim Demaille <akim@lrde.epita.fr>
8223
8224 * etc/bench.pm: Shorten bench names.
8225
4e83ea15
AD
82262006-05-14 Akim Demaille <akim@lrde.epita.fr>
8227
8228 * src/output.h, src/output.c (error_verbose): Move to...
8229 * src/getargs.h, src/getargs.c: here.
8230 Sort the flags.
8231 Adjust dependencies.
8232
6e93d810
PE
82332006-05-13 Paul Eggert <eggert@cs.ucla.edu>
8234
8235 * data/c.m4 (b4_copyright): Put the special exception for Bison
8236 skeletons here, so we don't have to put it in each skeleton. All
b15296ff
PE
8237 uses changed. Suggested by Akim Demaille. Also, wrap the
8238 copyright notice, in case it is longer than 80 columns. Replace
8239 comma by newline after title.
6e93d810 8240
eaea13f5
PE
82412006-05-11 Paul Eggert <eggert@cs.ucla.edu>
8242
8243 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
8244 incompatibility, not a bug. Mention that it wasn't fixed as of
8245 flex 2.5.33.
8246
3cf084ec
AD
82472006-05-11 Akim Demaille <akim@lrde.epita.fr>
8248
8249 * examples/extexi: Enforce the precedence of concatenation over
8250 >>.
0a9f1c7d 8251 Reported by Tommy Nordgren.
3cf084ec 8252
32c96bd7
AD
82532006-05-11 Akim Demaille <akim@lrde.epita.fr>
8254
8255 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
8256 with the member "token".
f94705b2 8257 Reported by Martin Nylin.
32c96bd7 8258
eaea13f5
PE
82592006-05-08 Paul Eggert <eggert@cs.ucla.edu>
8260
8261 * data/glr.c: Switch to Bison 2.2 special-exception language in
8262 the copyright notice. Use more-regular format for titles and
8263 copyright notices.
8264 * data/glr.cc: Likewise.
8265 * data/location.cc: Likewise.
8266 * data/yacc.cc: Likewise.
8267 * doc/bison.texinfo (Conditions): Document this.
8268 * NEWS: likewise. Upgrade version to 2.2.
8269
6e2d1146
AD
82702006-04-27 Akim Demaille <akim@lrde.epita.fr>
8271
8272 * data/glr.cc: Remove dead code.
8273
47671055
PE
82742006-04-25 Paul Eggert <eggert@cs.ucla.edu>
8275
8276 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
8277 that variable and the line breaks the bootstrap. Problem reported
8278 by Juan M. Guerrero.
8279
ed2e6384
AD
82802006-04-24 Akim Demaille <akim@lrde.epita.fr>
8281
8282 * doc/bison.texinfo (Multiple start-symbols): New.
8283
3cedc2dc
AD
82842006-04-24 Akim Demaille <akim@lrde.epita.fr>
8285
8286 * etc/README, etc/bench.pl: New.
8287
b2ddc3f3
AD
82882006-04-03 Akim Demaille <akim@lrde.epita.fr>
8289
8290 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
8291 rule.
8292 Reported by Mickael Labau.
8293 * tests/input.at (Torturing the Scanner): Test it.
8294
91e3ac9a
PE
82952006-03-16 Paul Eggert <eggert@cs.ucla.edu>
8296
8297 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
8298 Problem reported by Bob Rossi.
8299
83002006-03-13 Paul Eggert <eggert@cs.ucla.edu>
8301
8302 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
8303 and didn't really work.
8304 For the index, use @ifnotinfo, not @iftex.
8305 Minor cleanups of spacing and terminology.
8306
5cf61e93
AD
83072006-03-12 Akim Demaille <akim@lrde.epita.fr>
8308
8309 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
8310 of AT_NAME_PREFIX when %name-prefix is not used.
8311
aa08666d
AD
83122006-03-12 Akim Demaille <akim@lrde.epita.fr>
8313
8314 Apply --prefix to C++ skeletons too: they change the namespace.
8315 The test suite already exercize these cases.
8316 * data/c++.m4 (b4_namespace): New.
8317 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
8318 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
8319 * data/yacc.c, data/glr.c: Remove a useless `[]'.
8320 * doc/bison.texinfo: Document it.
8321 (Option Cross Key): Use @multitable in all formats. It looks
8322 nicer, even in TeX outputs.
8323 (Rules): Use the same code whatever the output type is.
8324 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
8325 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
8326 * tests/calc.at: Use it, instead of hard coding `yy'.
91e3ac9a 8327
45567173
AD
83282006-03-10 Akim Demaille <akim@lrde.epita.fr>
8329
8330 * TODO: Remove dead items.
8331
e9d8f881 83322006-03-10 Akim Demaille <akim@lrde.epita.fr>
55ba27be
AD
8333
8334 * doc/FAQ: Remove, merged into...
8335 * doc/bison.texinfo (FAQ): this.
8336 * doc/Makefile.am (EXTRA_DIST): Adjust.
8337
c095d689
AD
83382006-03-10 Akim Demaille <akim@lrde.epita.fr>
8339
8340 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
8341 even if empty.
8342 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
8343 * doc/bison.texinfo (Calc++ Scanner): Use it.
8344
6e0f8287
PE
83452006-03-09 Paul Eggert <eggert@cs.ucla.edu>
8346
8347 Fix two nits reported by twlevo, plus one more that I discovered.
8348
8349 * src/assoc.h (assoc_to_string): Give a name to the arg, as
8350 this is the usual Bison style.
8351 * src/location.h (location_print): Likewise.
8352
8353 * src/reader.h (token_name): Likewise.
8354
d6b771c3
PE
83552006-03-08 Paul Eggert <eggert@cs.ucla.edu>
8356
8357 Fix some nits reported by twlevo.
8358 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
8359 and "POSIX". Use more-modern syntax for URLs. Mention C++
8360 and ask for Java. Don't hardwire OS version numbers. Add
8361 copyright notice.
8362 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
8363 * src/conflicts.c (solved_conflicts_obstack): Now static.
8364
1e137b71
JD
83652006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
8366
8367 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
8368 page. Say "you can use it" not "you may use it" as on the web page;
8369 we're describing capabilities not granting permission.
8370
73f2e47e
PE
83712006-03-06 Paul Eggert <eggert@cs.ucla.edu>
8372
6d05403d
PE
8373 * data/glr.c (yyresolveLocations): Rename local variables to avoid
8374 shadowing warnings. Use usual patter for iterating through RHS.
8375 * tests/glr-regression.at
8376 (Uninitialized location when reporting ambiguity):
8377 Modify yylex so that it uses its argument, rather than trying
8378 to rely on ARGSUSED (which doesn't work for gcc with warnings).
8379 const char -> char const.
8380
73f2e47e
PE
8381 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
8382 Don't use tabs inside commands; it messes up 'ps'.
8383 Problem reported by twlevo.
8384
8710fc41
JD
83852006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
8386
8387 * tests/glr-regression.at (Uninitialized location when reporting
8388 ambiguity): New test case.
8389 * data/glr.c (yyresolveLocations): New function, which uses
8390 YYLLOC_DEFAULT.
8391 (yyresolveValue): Invoke yyresolveLocations before reporting an
8392 ambiguity.
8393 * doc/bison.texinfo (Default Action for Locations): Note
8394 YYLLOC_DEFAULT's usage for ambiguity locations.
8395 (GLR Semantic Actions): Cross-reference those notes.
8396
ae952af2
JD
83972006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
8398
8399 * tests/glr-regression.at (Leaked semantic values when reporting
8400 ambiguity): Remove unnecessary union and type declarations.
8401 (Leaked lookahead after nondeterministic parse syntax error): New test
8402 case.
8403 * data/glr.c (yyparse): Check for zero stacks remaining before
8404 attempting to shift the lookahead so that you don't lose it.
8405
35ee866a
JD
84062006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
8407
8408 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
8409 * tests/glr-regression.at (Leaked semantic values when reporting
8410 ambiguity): New test case.
8411 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
8412 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
8413 now unnecessary yystackp parameter.
8414 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
8415 destructors can be called.
8416
8417 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
8418 in existing testcases.
8419
520181ab
JD
84202006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
8421
8422 Don't leak semantic values for parent RHS when a user action cuts the
8423 parser, and clean up related code a bit.
8424 * tests/glr-regression.at (Leaked merged semantic value if user action
35ee866a
JD
8425 cuts parse): Rename to...
8426 (Leaked semantic values if user action cuts parse): ... this. Add check
520181ab
JD
8427 for leaked parent RHS values.
8428 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
8429 between an unresolved state (non-empty chain of semantic options) and
8430 an incomplete one (signaled by an empty chain).
ae952af2 8431 (yyresolveStates): Document the interface. Move all manipulation of a
520181ab
JD
8432 successfully or unsuccessfully resolved yyGLRState to...
8433 (yyresolveValue): ... here so that yyresolveValue always leaves a
8434 yyGLRState with consistent data and thus is easier to understand.
8435 Remove the yyvalp and yylocp parameters since they are always just
8436 taken from the yys parameter. When reporting a discarded merged value
8437 in debugging output, note that it is incompletely merged. Document the
8438 interface.
8439 (yyresolveAction): If resolving any of the RHS states fails, destroy
8440 them all rather than leaking them. Thus, as long as user actions are
8441 written to clean up the RHS correctly, yyresolveAction always cleans up
8442 the RHS of a semantic option. Document the interface.
8443
18d9185c
PE
84442006-02-27 Paul Eggert <eggert@cs.ucla.edu>
8445
8446 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
8447 led to a segmentation fault in GNU Pascal. Problem reported
8448 by Waldek Hebisch.
8449
841a7737
JD
84502006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
8451
8452 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
8453 mid-rule action inside a nonterminal symbol in order to declare a
8454 destructor for its semantic value.
8455
fc3f467f
PE
84562006-02-16 Paul Eggert <eggert@cs.ucla.edu>
8457
8458 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
8459 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
8460 __cplusplus && ! defined _STDLIB_H && !
8461 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
8462 defined free))]: Include <stdlib.h> rather than rolling our own
8463 declarations of malloc and free, to avoid problems with
8464 incompatible declarations (using 'throw') C++'s stdlib.h. This
8465 should fix Debian bug 340012
8466 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
8467 reported by Guillaume Melquiond.
8468
a3af26dd
PE
84692006-02-13 Paul Eggert <eggert@cs.ucla.edu>
8470
4d7bc38c
PE
8471 * NEWS: Clarify symbols versus types in unused-value warnings.
8472
a3af26dd
PE
8473 * configure.ac (AC_INIT): Bump version number.
8474
4e26c69e
PE
84752006-02-13 Paul Eggert <eggert@cs.ucla.edu>
8476
8477 * NEWS: Version 2.1a.
8478 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
8479 since C99 requires this.
8480
498e897c
PE
84812006-02-11 Paul Eggert <eggert@cs.ucla.edu>
8482
8483 * m4/c-working.m4: New file.
8484 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
8485
57bb17ca
PE
84862006-02-10 Paul Eggert <eggert@cs.ucla.edu>
8487
8488 * Makefile.maint: Merge from coreutils.
8489
0be105dc
PE
84902006-02-09 Paul Eggert <eggert@cs.ucla.edu>
8491
8492 More portability fixes for problems summarized by Nelson H. F. Beebe.
8493
8494 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
8495 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
8496 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
8497 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
8498 messes up because C++ code is compiled in 32-bit mode but linked
8499 in 64-bit mode.
8500
6fc0c024
PE
85012006-02-08 Paul Eggert <eggert@cs.ucla.edu>
8502
8503 More portability fixes for problems summarized by Nelson H. F. Beebe.
8504
7870f699
PE
8505 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
8506 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
8507
6fc0c024
PE
8508 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
8509 nodist_PROGRAMS, since we don't need to actually compile the
8510 example if we're just doing a plain 'make'. This avoids bothering
8511 the installer unnecessarily about problems due to weird C++
8512 compilers.
8513
fe6c2fde
PE
85142006-02-06 Paul Eggert <eggert@cs.ucla.edu>
8515
8516 More portability fixes for problems summarized by Nelson H. F. Beebe.
8517
8518 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
8519 than #include "...", and compile with -I'.'. The old method was
8520 not portable, according to Posix and the C standard, and it does
8521 not work with Sun C 5.7, where previous #line directives affect
8522 the working directory used in later #include "..." directives.
8523
927b425b
JMG
85242006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8525
8526 Various DJGGP specific issues in /djgpp
8527
d9735e9e
PE
85282006-02-02 Paul Eggert <eggert@cs.ucla.edu>
8529
8530 More portability fixes for problems summarized by Nelson H. F. Beebe.
8531
8532 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
8533 '#include <map>' works and that you can apply ++ to iterators.
8534
5a6755af
PE
85352006-02-01 Paul Eggert <eggert@cs.ucla.edu>
8536
67a0dc4f
PE
8537 Work around portability problems summarized by Nelson H. F. Beebe in
8538 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
8539
8c86f0ef
PE
8540 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
8541 that '#include <string>' works.
8542
de35dd59
PE
8543 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
8544 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
8545 "warning: sorry: semantics of inline function static data `const
8546 unsigned char translate_table[262]' are wrong (you'll wind up with
8547 multiple copies)".
8548
67a0dc4f
PE
8549 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
8550 or, xor to not_, and_, or_, and xor_, respectively. This works
8551 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
8552 random system header somewhere that includes the equivalent of
8553 <iso646.h>.
8554
5a6755af
PE
8555 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
8556 -E" works; it apparently doesn't work with PathScale EKO Compiler
67a0dc4f 8557 Suite Version 2.0.
5a6755af 8558
3f001415
JD
85592006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
8560
8561 During deterministic GLR operation, user actions should be able to
8562 influence the parse by changing yychar. To make this easier to fix and
8563 to make glr.c easier to evolve in general, don't maintain yytoken in
8564 parallel with yychar; just compute yytoken when needed.
8565 * tests/glr-regression.at (Incorrect lookahead during deterministic
8566 GLR): Check that setting yychar in a user action has the intended
8567 effect.
8568 * data/glr.c (yyGLRStack): Remove yytokenp member.
8569 (yyclearin): Don't set *yytokenp.
8570 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
8571 yychar rather than *yytokenp to determine the current lookahead.
8572 Compute yytoken locally when needed.
8573 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
8574 point to.
8575
8576 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
8577 after `--report' documentation.
8578
e2a8c0f5
PE
85792006-01-30 Paul Eggert <eggert@cs.ucla.edu>
8580
8581 * src/parse-gram.y (grammar_declaration): Location of printer
8582 symbol is @1, not list->location. Bug reported by twlevo.
8583 * tests/input.at (Incompatible Aliases): Adjust to above change.
8584
6b702268
PE
85852006-01-29 Paul Eggert <eggert@cs.ucla.edu>
8586
27622431
PE
8587 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
8588 all the test at once. This makes the output easier to read in the
8589 normal case.
8590
6b702268
PE
8591 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
8592 got from <http://bro-ids.org/download.html>. The bug is that
8593 when two actions appeared in succession, the second one was
8594 scanned before the first one was added to the grammar rule
8595 as a midrule action. Bison then output the incorrect warning
8596 "parse.y:905.17-906.36: warning: unused value: $3".
8597 * src/parse-gram.y (BRACED_CODE, action): These are no longer
8598 associated with a value.
8599 (rhs): Don't invoke grammar_current_rule_action_append.
8600 (action): Invoke it here instead.
8601 * src/reader.c (grammar_midrule_action): Now extern.
8602 (grammar_current_rule_action_append): Don't invoke
8603 grammar_midrule_action; that is now the scanner's job.
8604 * src/reader.h (last_string, last_braced_code_loc):
8605 (grammar_midrule_action): New decls.
8606 * src/scan-gram.l (last_string): Now extern, sigh.
8607 (last_braced_code_loc): New extern variable.
8608 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
8609 rule already has an action.
8610 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
8611 * tests/input.at (AT_CHECK_UNUSED_VALUES):
8612 Add some tests to check that the above changes fixed the bug.
8613
d40ba6c2
PE
86142006-01-27 Paul Eggert <eggert@cs.ucla.edu>
8615
8616 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
8617 All used changed. Check whether the symbol has a destructor,
8618 not whether it is typed.
8619 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
8620 that the values are still reported as unused. All line numbers
8621 adjusted.
8622
401aace6
PE
86232006-01-23 Paul Eggert <eggert@cs.ucla.edu>
8624
8625 Work around a bug in bro 0.8, which underparenthesizes its
8626 definition of YYLLOC_DEFAULT.
8627 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
8628 their arguments.
8629 * data/lalr1.cc: Likewise.
8630 * data/yacc.cc: Likewise.
8631
06f01bc4
PE
86322006-01-22 Paul Eggert <eggert@cs.ucla.edu>
8633
401aace6
PE
8634 Work around a bug in Pike 7.0, and give the Pike folks a
8635 better way to override the usual int widths.
8636 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
8637 user can override the types.
8638 (short): #undef, to work around a bug in Pike 7.0.
8639 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
8640 (union yyalloc.yyss): Use yytype_int16 rather than short.
8641 All uses changed.
8642 (yysigned_char): Remove.
8643 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
8644 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
8645 * tests/regression.at (Web2c Actions): Adjust to above changes.
8646
8647 * src/reader.c (check_and_convert_grammar): New function.
8648 (reader): Close the input file even if something went wrong during
8649 parsing. Minor file descriptor leak reported by twlevo.
8650
06f01bc4
PE
8651 * src/assoc.c (assoc_to_string): Use a default: abort (); case
8652 to pacify gcc -Wswitch-default.
8653 * src/scan-gram.l (adjust_location): Use a default: break; case
8654 to pacify gcc -Wswitch-default.
8655 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
8656 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8657 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8658 Move these decls to scan-skel.l, since they don't need to be
8659 visible elsewhere.
8660 * src/scan-skel.l: Accept the above decls.
8661 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
8662 is used.
8663
02650b7f
PE
86642006-01-21 Paul Eggert <eggert@cs.ucla.edu>
8665
8666 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
8667 since we don't want to insist on a version number at the start
8668 of the changelog every time.
8669 * Makefile.maint: Sync from coreutils a bit better.
8670 (sc_trailing_blank): Renamed from sc_trailing_space.
8671 All uses changed.
8672 (sc_no_if_have_config_h, sc_require_config_h):
8673 (sc_prohibit_assert_without_use): New rules.
8674 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
8675 (sc_dd_max_sym_length): Fix leading spaces in rule.
8676 (sc_system_h_headers): Prefix with @.
8677 (sc_useless_cpp_parens, m4-check): Output line numbers.
8678 (changelog-check): Allow version only in head.
8679 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
8680 satisfy new Makefile.maint rule.
8681 * data/glr.c: Likewise.
8682 * data/glr.cc: Likewise.
8683 * data/lalr1.cc: Likewise.
8684 * data/yacc.c: Likewise.
8685 * lib/ebitsetv.c: Likewise.
8686 * lib/lbitset.c: Likewise.
8687 * lib/subpipe.c: Likewise.
8688 * lib/timevar.c: Likewise.
8689 * src/system.h: Likewise.
8690 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
8691 * djgpp/Makefile.maint: Add copyright notice.
8692 * djgpp/README.in: Likewise.
8693 * djgpp/config.bat: Likewise.
8694 * djgpp/config.site: Likewise.
8695 * djgpp/config_h.sed: Likewise.
8696 * djgpp/djunpack.bat: Likewise.
8697 * djgpp/config.sed: Fix copyright notice to match standard format.
8698 * djgpp/subpipe.h: Likewise.
8699 * lib/bitsetv-print.c: Likewise.
8700 * lib/bitsetv.c: Likewise.
8701 * lib/subpipe.h: Likewise.
8702 * lib/timevar.c: Likewise.
8703 * lib/timevar.h: Likewise.
8704 * djgpp/subpipe.c: Use standard recipe for config.h.
8705 * lib/abitset.c: Likewise.
8706 * lib/bitset.c: Likewise.
8707 * lib/bitset_stats.c: Likewise.
8708 * lib/bitsetv-print.c: Likewise.
8709 * lib/bitsetv.c: Likewise.
8710 * lib/ebitsetv.c: Likewise.
8711 * lib/get-errno.c: Likewise.
8712 * lib/lbitset.c: Likewise.
8713 * lib/subpipe.c: Likewise.
8714 * lib/timevar.c: Likewise.
8715 * lib/vbitset.c: Likewise.
8716 * tests/local.at: Likewise.
8717 * src/scan-gram.l: Don't include verify.h, since system.h does
8718 that for us.
8719 * .x-sc_require_config_h: New file.
8720 * .x-sc_unmarked_diagnostics: New file.
8721
287c78f6
PE
87222006-01-20 Paul Eggert <eggert@cs.ucla.edu>
8723
287c78f6
PE
8724 Be a bit more systematic about using 'abort'.
8725 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
8726 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
8727 Put 'default: abort ();' before some other case, to satisfy older
8728 pedantic compilers.
8729 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8730 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
8731 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
8732 * src/conflicts.c (resolve_sr_conflict): Likewise.
68cae94e
PE
8733 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
8734 (get_decision_str, get_orientation_str, get_node_alignment_str):
8735 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
8736 (get_linestyle_str, get_arrowstyle_str): Likewise.
8737 * src/conflicts.c (resolve_sr_conflict):
8738 Use a default case rather than one for the one remaining enum
8739 value, to catch invalid enum values as well.
8740 * src/lalr.c (set_goto_map, map_goto):
8741 Prefer "assert (FOO);" to "if (!FOO) abort ();".
8742 * src/nullable.c (nullable_compute, token_definitions_output):
8743 Likewise.
8744 * src/reader.c (packgram, reader): Likewise.
8745 * src/state.c (transitions_to, state_new, state_reduction_find):
8746 Likewise.
8747 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
8748 (symbol_pack): Likewise.
8749 * src/tables.c (conflict_row, pack_vector): Likewise.
287c78f6
PE
8750 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
8751 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
68cae94e
PE
8752 * src/system.h: Don't include <assert.h>.
8753 (assert): New macro.
8754
8755 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
8756 (Destructor Decl, Parser Function, Pure Calling):
8757 Describe rules for braces inside C code more carefully.
287c78f6 8758
c66dfadd
PE
87592006-01-19 Paul Eggert <eggert@cs.ucla.edu>
8760
c21493b8
PE
8761 Fix some porting glitches found by Nelson H. F. Beebe.
8762 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
8763 compilers that don't understand that abort () does not return.
8764 * src/state.c (transitions_to): Likewise.
8765 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
8766 that '#include <cstdlib>' works.
8767 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
8768 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
8769 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
8770 for the benefit of some pre-C99 compilers.
8771
b6e3facf
PE
8772 * bootstrap: Undo changes to gnulib files that autoreconf made.
8773
c66dfadd
PE
8774 Minor fixups to get 'make maintainer-check' to work.
8775 * configure.ac: Don't use -Wnested-externs, as it's incompatible
8776 with the new verify.h implementation.
8777 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
8778 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
8779 * data/yacc.c (YYUSE): Likewise.
8780 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
8781 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
8782 * src/parse-gram.y (declaration): Don't pass a string constant
8783 to a function that expects char *, since GCC might complain
8784 about the constant value.
8785 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
8786 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
8787 before #defining them.
8788 * tests/glr-regression.at
8789 (Incorrectly initialized location for empty right-hand side in GLR):
8790 In yyerror, use the msg arg.
8791 (Corrupted semantic options if user action cuts parse):
8792 (Incorrect lookahead during deterministic GLR):
8793 (Incorrect lookahead during nondeterministic GLR):
8794 Don't name a local var 'index'; it shadows string.h's 'index'.
8795
ed94ef2a
AD
87962006-01-19 Akim Demaille <akim@epita.fr>
8797
8798 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
8799 location, not just parts of it.
8800
e9ad4aec
PE
88012006-01-18 Paul Eggert <eggert@cs.ucla.edu>
8802
d6ca7905
PE
8803 * NEWS: Document the fact that multiple %unions are now allowed.
8804 * doc/bison.texinfo (Union Decl): Likewise.
51cbef6f
PE
8805 * TODO: This feature is now implemented, so remove it from
8806 the wishlist.
d6ca7905 8807
ef1b70e0
PE
8808 * Makefile.maint: Merge with coreutils Makefile.maint.
8809 (CVS_LIST): Use build-aux version if available.
8810 (VERSION_REGEXP): New macro.
8811 (syntax-check-rules): Add sc_no_if_have_config_h,
8812 sc_prohibit_assert_without_use, sc_require_config_h,
8813 sc_useless_cpp_parens.
8814 (sc_obsolete_symbols): Check for O_NDELAY.
8815 (sc_dd_max_sym_length): Track coreutils.
8816 (sc_unmarked_diagnostics): Look in all files, not just *.c.
8817 (sc_useless_cpp_parens): New rule.
8818 (news-date-check): Look for version or today's date.
8819 (changelog-check): Don't require version number near head.
8820 (copyright-check): Use current year instead of hardwiring 2005.
8821 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
8822 (announcement): Add --gpg-key-ID.
8823
8824 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
8825 with "file system".
8826
2073ce56 8827 Avoid undefined behavior that addressed just before the start of an
e9ad4aec
PE
8828 array. Problem reported by twlevo.
8829 * src/reader.c (packgram): Prepend a new sentinel before ritem.
8830 * src/lalr.c (build_relations): Rely on new sentinel.
8831 * src/gram.c (gram_free): Adjust to new sentinel.
8832
b7691f15
JD
88332006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
8834
8835 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
8836 yylookaheadNeeds. All uses updated.
8837 (yysplitStack): Rename local yynewLookaheadStatuses to
8838 yynewLookaheadNeeds.
8839 * data/glr-regression.at (Incorrect lookahead during nondeterministic
8840 GLR): In comments, change `lookahead status' to `lookahead need'.
8841
ddee1b06
PH
88422006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8843
8844 * data/glr.c (yysplitStack): A little stylistic rewrite.
8845
12f4614d
PH
88462006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8847
8848 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
8849
32c29292
JD
88502006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
8851
8852 * doc/bison.texinfo: Fix some typos.
8853 (GLR Semantic Actions): New subsection discussing special
8854 considerations because GLR semantic actions might be deferred.
8855 (Actions): Mention look-ahead usage of yylval.
8856 (Actions and Locations): Mention look-ahead usage of yylloc.
8857 (Special Features for Use in Actions): Add YYEOF entry and mention it
8858 in the yychar entry.
8859 In the yychar entry, remove mention of the local yychar case (pure
8860 parser) since this is irrelevant information when writing semantic
148d66d8 8861 actions and since it's already discussed in `Table of Symbols' where
32c29292
JD
8862 yychar is otherwise described as an external variable.
8863 In the yychar entry, don't call it the `current' look-ahead since it
8864 isn't when semantic actions are deferred.
8865 In the yychar and yyclearin entries, add note about deferred semantic
8866 actions.
8867 Add yylloc and yylval entries discussing look-ahead usage.
8868 (Look-Ahead Tokens): When discussing yychar, don't call it the
8869 `current' look-ahead, and do mention yylval and yylloc.
8870 (Error Recovery): Cross-reference `Action Features' when mentioning
8871 yyclearin.
148d66d8 8872 (Table of Symbols): In the yychar entry, don't call it the `current'
32c29292
JD
8873 look-ahead.
8874 In the yylloc and yylval entries, mention look-ahead usage.
8875
de366a2f 88762006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2781dbd1
JD
8877
8878 * tests/glr-regression.at: Update copyright year to 2006.
8879
bf70fa87
JD
88802006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8881
8882 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
8883 use during nondeterministic operation to track which stacks have
8884 actually needed the current lookahead.
8885 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
8886 Allocate, deallocate, resize, and otherwise shuffle space for
8887 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
8888 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
8889 appropriately during nondeterministic operation.
8890 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
8891 members to store the current lookahead to be used by the deferred
8892 user action.
8893 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
8894 from which the RHS is taken. Set the lookahead members of the new
8895 yySemanticOption according to the lookahead status for stack yyk.
8896 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
8897 yyaddDeferredAction.
8898 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
8899 members of yySemanticOption before invoking yyuserAction, and then set
8900 them back to their current values afterward.
8901 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
8902 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
8903 * tests/glr-regression.at: Remove `.' from the ends of recent test case
8904 titles for consistency.
8905 (Leaked merged semantic value if user action cuts parse): In order to
8906 suppress lint warnings, use arguments in merge function, and assign
8907 char value < 128 in main.
8908 (Incorrect lookahead during deterministic GLR): New test case.
8909 (Incorrect lookahead during nondeterministic GLR): New test case.
8910
05449a2c
JD
89112006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8912
de366a2f 8913 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
05449a2c
JD
8914 !yyvaluep as signal that no semantic value is available to print.
8915 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
8916 to print a semantic value.
8917
4158e0a1 89182006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
fd2493f7 8919
4158e0a1
JD
8920 * tests/glr-regression.at: For consistency with my newer test cases,
8921 don't thank myself.
8922
d659304d
JD
89232006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
8924
8925 * data/glr.c (yyresolveValue): When merging semantic options, if at
8926 least one user action succeeds but a later one cuts the parse, then
8927 destroy the semantic value before returning rather than leaking it.
8928 (yyresolveStates): If a user action cuts the parse and thus
8929 yyresolveValue fails, ignore the (unset) semantic value rather than
8930 corrupting the yyGLRState, and empty the semantic options list since
8931 the user actions should have called all necessary destructors.
8932 Simplify code with YYCHK.
8933 * tests/glr-regression.at (Corrupted semantic options if user action
8934 cuts parse): New test case.
8935 (Undesirable destructors if user action cuts parse): New test case.
8936 Before applying any of this patch, this test case never actually failed
8937 for me... but only because the corrupted semantic options usually
8938 masked this bug.
8939 (Leaked merged semantic value if user action cuts parse): New test
8940 case.
8941
6ec2c0f2
AD
89422006-01-05 Akim Demaille <akim@epita.fr>
8943
8944 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
8945
1b9c21fb
PE
89462006-01-04 Paul Eggert <eggert@cs.ucla.edu>
8947
8948 * data/c.m4 (b4_c_modern): New macro, with a new provision for
8949 _MSC_VER. Problem reported by Cenzato Marco.
8950 (b4_c_function_def): Use it.
8951 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
8952 b4_c_modern.
8953 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
8954 than rolling our own.
8955
84866159
AD
89562006-01-04 Akim Demaille <akim@epita.fr>
8957
8958 Also warn about non-used mid-rule values.
8959 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
8960 member.
8961 (symbol_list_new): Adjust.
8962 * src/reader.c (symbol_typed_p): New.
8963 (grammar_rule_check): Use it.
8964 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
8965 Check its rule.
8966 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
8967 Use it.
8968 * tests/actions.at (Exotic Dollars): Adjust.
8969
378f4bd8
AD
89702006-01-04 Akim Demaille <akim@epita.fr>
8971
8972 * src/reader.c (grammar_midrule_action): If $$ is set in a
8973 mid-rule, move the `used' bit to its lhs.
8974 * tests/input.at (Unused values): New.
8975 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
8976
e2a21b6f
PE
89772006-01-03 Paul Eggert <eggert@cs.ucla.edu>
8978
54662697
PE
8979 * doc/bison.texinfo (Bison Options): Say more accurately what
8980 --yacc does.
8981 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
8982 about declarations in the grammar when in Yacc mode, as POSIX does
8983 not require a diagnostic when the grammar uses extensions.
8984
8985 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
8986
073f9288
PE
8987 Warn about dubious constructions like "%token T T".
8988 Reported by twlevo.
8989 * src/symtab.h (struct symbol.declared): New member.
8990 * src/symtab.c (symbol_new): Initialize it to false.
8991 (symbol_class_set): New arg DECLARING, specifying whether
8992 this is a declaration that we want to warn about, if there
8993 is more than one of them. All uses changed.
8994
1221b78a
PE
8995 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
8996 Allow multiple %union directives, whose contents concatenate.
8997 * src/parse-gram.y (grammar_declaration): Likewise.
8998 Use muscle_code_grow, so that we don't need stype_line any more.
8999 All uses changed.
9000
9001 * src/muscle_tab.c (muscle_grow): Fix comment.
9002
e2a21b6f
PE
9003 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
9004 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
9005 Update copyright year to 2006.
9006
8f7e3cf9
AD
90072006-01-03 Akim Demaille <akim@epita.fr>
9008
9009 Have glr.cc pass (some of) the calc.at tests.
9010 * data/glr.cc (b4_parse_param_orig): New.
9011 (b4_parse_param): Improve its definition, and bound it more
9012 clearly in the skeleton.
9013 (b4_epilogue): Append, instead of prepending, in order to keep
9014 #line consistency.
9015 Simplify the generation of auxiliary functions: locations and
9016 purity are mandated.
9017 (b4_global_tokens_and_yystype): Honor it.
9018 * data/location.cc (c++.m4): Don't include it.
9019 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
9020 and AT_SKEL_CC_IF.
9021 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
9022 AT_LALR1_CC_IF.
9023 Be sure to initialize the first position's filename.
9024 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
9025 mandated anyway.
9026 (AT_CHECK_CALC_GLR_CC): New.
9027 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
9028
3953ed88
AD
90292006-01-02 Akim Demaille <akim@epita.fr>
9030
9031 * src/output.c (output_skeleton): Don't hard wire the inclusion of
9032 c.m4.
0a96ba81 9033 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
3953ed88
AD
9034 * data/glr.cc: Do not include stack.hh.
9035
9ecafbbf
AD
90362006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
9037
9038 * data/glr.c: Reformat whitespace with tabs.
9039 (b4_lpure_formals): Remove this unused m4 macro.
9040 * tests/cxx-type.at: Reformat whitespace with tabs.
9041 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
9042 since it's a member. Rename type to isNterm for clarity.
9043
c4d497a0
AD
90442005-12-29 Akim <akim@sulaco.local>
9045
9046 Let glr.cc catch up with symbol_value_print.
9047 * data/glr.cc (b4_yysymprint_generate): Replace by...
9048 (b4_yy_symbol_print_generate): this.
9049 (yy_symbol_print, yy_symbol_value_print): Declare them.
9050
4517da37
PE
90512005-12-28 Paul Eggert <eggert@cs.ucla.edu>
9052
9053 * src/location.h (boundary): Note that a line or column equal
9054 to INT_MAX indicates an overflow.
9055 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
9056 (rule_length_overflow, increment_rule_length, add_column_width):
9057 New functions.
9058 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
9059 (<SC_BRACED_CODE>"}"):
9060 Use increment_rule_length rather than incrementing it by hand.
9061 (adjust_location, handle_syncline): Diagnose overflow.
9062 (handle_action_dollar, handle_action_at):
9063 Fix bug with monstrosities like $-2147483648.
9064 Remove now-unnecessary checks.
9065 (scan_integer): Verify assumptions and remove now-unnecessary checks.
9066 (convert_ucn_to_byte): Verify assumptions.
9067 (handle_syncline): New arg LOC. All callers changed.
9068 Don't store through a value derived from char const * pointer.
9069
9070 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
9071 GCC warnings.
9072
e3233bf6
PE
90732005-12-27 Paul Eggert <eggert@cs.ucla.edu>
9074
9075 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
9076 Remove unnecessary forward static decls.
9077
8f3596a6
AD
90782005-12-27 Akim Demaille <akim@epita.fr>
9079
9080 * src/reader.c (grammar_current_rule_check): Also check that $$
9081 is used.
9082 Take the rule to check as argument, hence rename as...
9083 (grammar_rule_check): this.
9084 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
9085 Rename as...
9086 (grammar_rule_begin, grammar_rule_end): these, for consistency.
9087 (grammar_midrule_action, grammar_symbol_append): Now static.
9088 * tests/torture.at (input): Don't rely on the default action
9089 being always performed.
9090 * tests/calc.at: "Set" $$ even when the action is "cut" with
9091 YYERROR or other.
9092 * tests/actions.at (Exotic Dollars): Instead of using unused
9093 values, check that the warning is issued.
9094
721be13c
PE
90952005-12-22 Paul Eggert <eggert@cs.ucla.edu>
9096
9097 * NEWS: Improve wording for unused-value warnings.
9098
a0af42fc
AD
90992005-12-22 Akim Demaille <akim@epita.fr>
9100
9101 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
9102 (b4_yysymprint_generate): Rename as...
9103 (b4_yy_symbol_print_generate): this.
9104 Generate yy_symbol_print instead of yysymprint.
9105 Generate also yy_symbol_value_print, and use it.
9106
affac613
AD
91072005-12-22 Akim Demaille <akim@epita.fr>
9108
721be13c 9109 * NEWS: Warn about unused values.
affac613
AD
9110 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
9111 a `used' member.
9112 (symbol_list_n_get, symbol_list_n_used_set): New.
9113 (symbol_list_n_type_name_get): Use symbol_list_n_get.
9114 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
9115 * src/reader.c (grammar_current_rule_check): Check that values are
9116 used.
9117 * src/symtab.c (symbol_print): Accept 0.
9118 * tests/existing.at: Remove the type information.
9119 Empty the actions.
9120 Remove useless actions (beware of mid-rule actions: perl -000
9121 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
9122 * tests/actions.at (Exotic Dollars): Use unused values.
9123 * tests/calc.at: Likewise.
9124 * tests/glr-regression.at (No users destructors if stack 0 deleted):
9125 Likewise.
9126
9127 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
9128 rule_useful_p.
9129
9d9b8b70
PE
91302005-12-21 Paul Eggert <eggert@cs.ucla.edu>
9131
8bb4c753
PE
9132 Undo 2005-12-01 tentative license wording change. The wording is
9133 still being reviewed by the lawyers, and we don't want to wait for
9134 them before publishing a test release. For now, revert to the
9135 previous wording.
9136 * NEWS: Undo 2005-12-01 change.
9137 * data/glr.c: Revert to previous license wording.
9138 * data/glr.cc: Likewise.
9139 * data/lalr1.cc: Likewise.
9140 * data/location.cc: Likewise.
9141 * data/yacc.c: Likewise.
9142
9d9b8b70
PE
9143 * NEWS: Reword %destructor vs YYABORT etc.
9144 * data/glr.c: Use American spacing, for consistency.
9145 * data/glr.cc: Likewise.
9146 * data/lalr1.cc: Likewise.
9147 * data/yacc.c: Likewise.
9148 * data/yacc.c: Reformat comments slightly.
9149 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
9150 for consistency. Fix some spelling errors and reword recently-included
9151 text slightly.
9152 * tests/cxx-type.at: Cast results of malloc, for C++.
9153
2c3b392a
AD
91542005-12-21 Joel E. Denny <address@hidden>
9155
9156 * tests/cxx-type.at: Construct a tree, count the parents of shared
9157 nodes, and free each node once and only once. Previously, the memory
9158 for semantic values was leaked instead.
9159
d6cff4dc
AD
91602005-12-21 Joel E. Denny <address@hidden>
9161
9162 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
9163 (yylval, yylloc): If pure, #define to yystackp->yyval and
9164 yystackp->yyloc similar to yychar and yynerrs.
9165 (yyparse): If pure, remove local yylval and yylloc. Add local
9166 yystackp to accommodate pure definitions of yylval and yylloc.
9167 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
9168 yylvalp and yyllocp to &yylval and &yylloc.
9169 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
9170 namespace. Previously, nerrs and char were missing, but lval and lloc
9171 weren't necessary.
9172 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
9173 yylvalp and yyllocp parameters since, if pure, these are now always
9174 accessible through yystackp. If not pure, they are still accessible
9175 globally.
9176 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
9177 `if (YYID (N))' to pacify lint.
9178
a85284cf
AD
91792005-12-21 Akim Demaille <akim@epita.fr>
9180
9181 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
9182 destroy the RHS symbols of a rule.
9183 * data/yacc.c (yylen): Initialize to 0.
9184 Keep its value to the number of items to possibly shift.
9185 In particular, a regular successful parse that ends on YYFINAL by
9186 a (internal) YYACCEPT must not have yylen != 0.
9187 (yyerrorlab, yyreturn): Pop the RHS.
9188 Reorder a bit to emphasize the `shifting' bits of code.
9189 (YYPOPSTACK): Now accept a number of items to pop.
9190 * data/lalr1.cc: Likewise.
9191 * data/glr.c: Formatting changes.
9192 Use goto instead of fall through.
9193 * doc/bison.texinfo (Destructor Decl): Complete.
9194
d508c281
JMG
91952005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9196
9197 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
9198 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
9199 * djgpp/config.bat: Replace every occurence of the file name
9200 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
9201 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
9202 * djgpp/config.sed: Replace every occurence of the file name
9203 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
9204 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
9205 * djgpp/djunpack.bat: DJGPP specific file.
9206 * djgpp/fnchange.lst: DJGPP specific file.
9207 * djgpp/README.in: Add new information about how to unpack the bison
9208 source on MSDOS and other systems which have 8.3 file name restrictions
9209 using djunpack.bat and fnchange.lst.
9210
3e7a2cd9
PE
92112005-12-12 Paul Eggert <eggert@cs.ucla.edu>
9212
9213 * bootstrap (build_cvs_prefix): Remove; unused.
9214 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
9215 when getting gnulib.
9216
92172005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
9218
9219 * data/glr.c: Reorder typedef declarations for structs to match order
9220 of struct declarations.
9221 Rename yystack everywhere to yystackp except in yyparse where it's not
9222 a pointer.
9223 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
9224 consistency.
9225 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
9226 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
9227 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
9228 lint.
9229
877519f8
PE
92302005-12-09 Paul Eggert <eggert@cs.ucla.edu>
9231
0eca5a39
PE
9232 * tests/sets.at (Accept): Fix typos in regular expression used to
9233 sed out the final state number.
9234
2cec9080
PE
9235 Work around portability problem on Solaris 10: flex-generated
9236 files include <stdio.h> before <config.h>, which messes up
9237 because the latter defines __EXTENSIONS__. Address the problem
9238 by creating two new little files that include <config.h> first,
9239 then include the flex-generated files. Rewrite everyone else
9240 to include <config.h> first, as well.
9241 * lib/timevar.c: Always include "config.h".
9242 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
9243 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
9244 (EXTRA_bison_SOURCES): New macro.
9245 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
9246 * src/system.h: Don't include config.h.
9247 * src/LR0.c: Include <config.h> first.
9248 * src/assoc.c: Likewise.
9249 * src/closure.c: Likewise.
9250 * src/complain.c: Likewise.
9251 * src/conflicts.c: Likewise.
9252 * src/derives.c: Likewise.
9253 * src/files.c: Likewise.
9254 * src/getargs.c: Likewise.
9255 * src/gram.c: Likewise.
9256 * src/lalr.c: Likewise.
9257 * src/location.c: Likewise.
9258 * src/main.c: Likewise.
9259 * src/muscle_tab.c: Likewise.
9260 * src/nullable.c: Likewise.
9261 * src/output.c: Likewise.
9262 * src/parse-gram.y: Likewise.
9263 * src/print.c: Likewise.
9264 * src/print_graph.c: Likewise.
9265 * src/reader.c: Likewise.
9266 * src/reduce.c: Likewise.
9267 * src/relation.c: Likewise.
9268 * src/state.c: Likewise.
9269 * src/symlist.c: Likewise.
9270 * src/symtab.c: Likewise.
9271 * src/tables.c: Likewise.
9272 * src/uniqstr.c: Likewise.
9273 * src/vcg.c: Likewise.
9274
877519f8
PE
9275 * src/parse-gram.y: Fix minor problems uncovered by lint.
9276 (current_lhs, current_lhs_location): Now static.
9277 (current_assoc): Remove unused variable.
9278
9279 Cleanups so that Bison-generated parsers have less lint.
9280 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
9281 Prepend /*ARGSUSED*/, for lint's sake.
9282 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
9283 definition if 'lint' is defined.
9284 (YYID): New macro (or function, if lint).
9285 All uses of /*CONSTCOND*/0 replaced by YYID(0).
9286 * data/yacc.c: Likewise.
9287 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
9288 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
9289 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
9290 is C++ only.
9291 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
9292 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
9293 Use YYID(0) rather than 0, for lint.
9294 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
9295 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
9296
f5228370
PE
92972005-12-07 Paul Eggert <eggert@cs.ucla.edu>
9298
9299 * tests/glr-regression.at
9300 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
9301 Close memory leak reported by twlevo.
9302
69ce078b
PE
93032005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
9304
6ff99711
PE
9305 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
9306 all stacks.
9307 (yyparse): Iterate another stack in order to call user destructors.
69ce078b
PE
9308 * tests/glr-regression.at (No users destructors if stack 0 deleted):
9309 New test case.
9310 (Duplicated user destructor for lookahead): This test now is expected
9311 to succeed.
9312
af3412cd
PE
93132005-12-01 Paul Eggert <eggert@cs.ucla.edu>
9314
32b5b719 9315 * NEWS: Document the following change.
af3412cd
PE
9316 * data/yacc.c: Say "parser skeleton" rather than "file", since
9317 it's no longer just a file.
9318 * data/glr.c: Grant a special exception for C GLR parsers, that
9319 reads like the already-existing exception for C LALR(1) parsers.
9320 * data/glr.cc: Likewise.
9321 * data/lalr1.cc: Likewise.
9322 * data/location.cc: Likewise.
9323 * data/yacc.c: Reword the "written by" statement to clarify that
9324 it was the parser skeleton, not the entire output file.
9325 * data/glr.c: Written by Paul Hilfinger.
9326 * data/glr.cc: Written by Akim Demaille.
9327 * data/lalr1.cc: Likewise.
9328
035aa4a0
PE
93292005-11-18 Paul Eggert <eggert@cs.ucla.edu>
9330
d9963c85
PE
9331 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
9332 Fix typos in previous change that broke 'make check'.
9333 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
9334 supported in C.
9335 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
9336 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
9337 We can revert this once things settle down.
9338
035aa4a0
PE
9339 * src/conflicts.c (conflicts_print): Don't print file name twice
9340 when %expect fails because there were no conflicts.
9341 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
9342 change.
9343 * tests/conflicts.at (%expect not enough, %expect too much):
9344 (%expect with reduce conflicts): Adjust to new behavior.
9345
93462005-11-18 Akim Demaille <akim@epita.fr>
9347
9348 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
9349 errors.
9350 * NEWS: Document this.
9351 * doc/bison.texinfo (Expect Decl): Likewise.
9352
d1ff7a7c
AD
93532005-11-16 Akim Demaille <akim@epita.fr>
9354
9355 Generalize the display of semantic values and locations in traces.
9356 * data/glr.c (yy_reduce_print): Fix indices (again).
9357 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
9358 literal integers.
9359 * data/lalr1.cc (yyreduce_print): Rename as...
9360 (yy_reduce_print): this.
9361 Display values and locations.
9362 * data/yacc.c (yy_reduce_print): Likewise.
9363 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
9364 (yysymprint): Move higher to be visible from yy_reduce_print).
9365 (yyparse): Adjust.
9366 * tests/calc.at: Adjust the expected length of the traces.
9367
6de5398d
AD
93682005-11-14 Akim Demaille <akim@epita.fr>
9369
9370 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
9371 from 1 to N, while values and location start at 0.
9372 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
9373
a1373f55
AD
93742005-11-14 Akim Demaille <akim@epita.fr>
9375
9376 * data/glr.c (yy_reduce_print): Fix the $ number.
9377
613d8952
AD
93782005-11-14 Akim Demaille <akim@epita.fr>
9379
9380 "Use" parse parameters.
9381 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
9382 * data/glr.c, data/glr.cc: Use them.
9383 * data/glr.c (YYUSE): Have a C++ definition that supports
9384 non-pointer types.
9385
b2741627
AD
93862005-11-14 Akim Demaille <akim@epita.fr>
9387
9388 * data/glr.c (yyexpandGLRStack): Declare only if defined.
9389
5059b5c8
AD
93902005-11-14 Akim Demaille <akim@epita.fr>
9391
42249483
AD
9392 * data/glr.cc: New.
9393 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
5059b5c8 9394
4626a15d
AD
93952005-11-12 Akim Demaille <akim@epita.fr>
9396
9397 Let position and location be PODs.
9398 * data/location.cc (position::initialize, location::initialize): New.
9399 (position::position, location::location): Define only if
9400 b4_location_constructors is defined.
9401 * data/lalr1.cc (b4_location_constructors): Define it for backward
9402 compatibility.
9403 * doc/bison.texinfo (Initial Action Decl): Use initialize.
9404
94052005-11-12 Akim Demaille <akim@epita.fr>
98ae9643
AD
9406
9407 * data/lalr1.cc: Move the body of the ctor and dtor into the
9408 parser file (instead of the header).
9409 Wrap the implementations in a "namespace yy".
9410
94112005-11-12 Akim Demaille <akim@epita.fr>
9412
9413 Have glr.c include its header file when created.
9414 * data/glr.c (b4_shared_declarations): New.
9415 Output them verbatim in the parser if !%defines, otherwise
9416 output then in the header file, and include it instead.
9417
1989d947
AD
94182005-11-11 Akim Demaille <akim@epita.fr>
9419
9420 * data/glr.c: Comment changes.
9421
94222005-11-11 Akim Demaille <akim@epita.fr>
62b08cfc
AD
9423
9424 When yydebug, report semantic and location values for reductions.
9425 * data/glr.c (yy_reduce_print): Report the semantic values and the
9426 locations.
9427 (YY_REDUCE_PRINT): Adjust.
9428 (yyglrReduce): Use them.
9429 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
9430 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
9431 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
9432 traces.
9433
02998094
AD
94342005-11-10 Akim Demaille <akim@epita.fr>
9435
9436 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
9437 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
9438 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
9439
5210672f
PE
94402005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
9441
9442 * m4/cxx.m4, examples/Makefile.am: Don't build
9443 examples/calc++ if no C++ compiler is available. (trivial change)
9444
a8991a1d
AD
94452005-11-09 Akim Demaille <akim@epita.fr>
9446
9447 * src/scan-skel.l: Use a couple of asserts.
9448
36b5e963
AD
94492005-11-03 Akim Demaille <akim@epita.fr>
9450
9451 In some (weird) cases, the final state number is incorrect.
9452 Reported by Alexandre Duret-Lutz.
9453 * src/LR0.c (state_list_append): Remove the computation of
9454 final_state.
9455 (save_reductions): Do it here.
9456 (get_state): Alpha conversion.
9457 (generate_states): Use a for loop.
9458 * src/gram.h (item_number_is_rule_number)
9459 (item_number_is_symbol_number): New.
9460 * src/state.c: Use assert.
9461 * src/system.h: Include assert.h.
9462 * tests/sets.at (Accept): New.
9463
44e7ead1
PH
94642005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9465
9466 * data/glr.c (yyfill): Adjust comment.
36b5e963 9467 (yyresolveAction): Initialize default location properly
44e7ead1
PH
9468 for empty right-hand sides.
9469 (yydoAction): Ditto.
9470 Add comment explaining apparently dead code.
36b5e963
AD
9471 * tests/glr-regression.at
9472 (Incorrectly initialized location for empty right-hand side in GLR):
44e7ead1 9473 New test.
36b5e963 9474
e10a80ee
PE
94752005-10-30 Paul Eggert <eggert@cs.ucla.edu>
9476
9477 * bootstrap (cleanup_gnulib): New function. Use it to clean up
9478 gnulib when interrupted. This fixes some race conditions and
9479 works around some portability problems (one noted by Paul
9480 Hilfinger).
9481
067b32ee
AD
94822005-10-22 Akim <akim@epita.fr>
9483
9484 * Makefile.cfg: Adjust to config -> build-aux.
9485 Reported by twledo.
9486
4b367315
AD
94872005-10-21 Akim Demaille <akim@epita.fr>
9488
9489 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
9490 the %parse-params.
9491 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
9492 * data/yacc.c (b4_Pure_if): Rename as...
9493 (b4_yacc_pure_if): this.
9494 (YY_SYMBOL_PRINT, yyparse): Adjust.
9495 * doc/bison.texinfo: Formatting changes.
9496
24cc23d9
AD
94972005-10-21 Akim Demaille <akim@epita.fr>
9498
9499 Finish the transition config -> build-aux.
9500 * configure.ac, Makefile.am: Use build-aux.
9501 * config/prev-version, config/announce-gen, config/Makefile.am:
9502 Move to...
9503 * build-aux/prev-version, build-aux/announce-gen,
9504 * build-aux/Makefile.am: here.
9505
d4476375
AD
95062005-10-14 Akim Demaille <akim@epita.fr>
9507
9508 * examples/calc++/test: Use set -x only when VERBOSE.
9509
302c0aee
PE
95102005-10-13 Paul Eggert <eggert@cs.ucla.edu>
9511
9512 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
9513 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
9514
7625ec2c
AD
95152005-10-13 Akim Demaille <akim@epita.fr>
9516
9517 * src/scan-skel.l: Output the base name parts of the parser and
9518 header file names.
302c0aee 9519 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7625ec2c
AD
9520 additional checks.
9521 Use this to exercise C++ outputs in subdirs.
9522 Reported by Oleg Smolsky.
9523
ba0fe3c7
PE
95242005-10-12 Paul Eggert <eggert@cs.ucla.edu>
9525
9526 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
9527 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
9528 Problem reported by John P. Hartmann.
9529 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
9530 already defined it.
9531
9b8a5ce0
AD
95322005-10-12 Akim Demaille <akim@epita.fr>
9533
9534 * src/parse-gram.y (version_check): Exit 63 to please missing
9535 (stands for "version mismatch).
9536 * tests/input.at, doc/bison.texinfo: Adjust.
9537
4f6e011e
PE
95382005-10-10 Paul Eggert <eggert@cs.ucla.edu>
9539
9540 Work around portability problems with Visual Age C compiler
9541 (xlc and xlC_r) reported by John P. Hartmann.
9542 * data/location.cc (initial_column, initial_line): Remove.
9543 All uses replaced by 0 and 1.
9544 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
9545 that xlc complains about.
9546 * src/scan-skel.l (skel_wrap): Likewise.
4d7aa45e 9547 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
ba0fe3c7 9548 as __STDC__.
4d7aa45e
PE
9549 * data/yacc.c (YYMODERN_C): New macro, which also looks at
9550 __STDC_VERSION__. Use it everywhere instead of looking at
9551 __STDC__ and __cplusplus.
4f6e011e 9552
a1b3bf8c
AD
95532005-10-10 Akim Demaille <akim@epita.fr>
9554
9555 * examples/calc++/test: Be quiet unless VERBOSE.
9556
412e44aa
PE
95572005-10-05 Paul Eggert <eggert@cs.ucla.edu>
9558
2a4647a3
PE
9559 * data/c.m4 (yydestruct, yysymprint):
9560 Use YYUSE instead of casting to void.
9561 * data/glr.c (YYUSE): New macro.
9562 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
9563 Use it instead of rolling our own.
9564 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
9565 (YYCHK1):
9566 Use /*CONSTCOND*/ to suppress lint warnings.
9567 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
9568 (YY_STACK_PRINT): Use 'false' not '0'.
9569 (YYUSE): New macro.
9570 (yysymprint_, yydestruct_): Use it instead of rolling our own.
9571 * data/yacc.c (YYUSE): New macro.
9572 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
9573 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
9574 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
9575
9576
412e44aa
PE
9577 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
9578 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
9579
88c6637f
PE
95802005-10-04 Paul Eggert <eggert@cs.ucla.edu>
9581
2f4f028d
PE
9582 Undo the parts of the unlocked-I/O change that substituted
9583 putc or puts for printf. This might hurt performance a bit,
9584 but some people prefer the printf style.
9585 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
9586 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
9587 All uses replaced by YYFPRINTF and YYDPRINTF.
9588 * data/yacc.c: Likewise.
9589 * lib/bitset.c (bitset_print): Likewise.
9590 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
9591 putc and puts.
9592 * lib/lbitset.c (debug_lbitset): Likewise.
9593 * src/closure.c (print_firsts, print_fderives): Likewise.
9594 * src/gram.c (grammar_dump): Likewise.
9595 * src/lalr.c (look_ahead_tokens_print): Likewise.
9596 * src/output.c (escaped_output): Likewise.
9597 (user_actions_output): Break apart two printfs.
9598 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
9599 * src/reduce.c (reduce_print): Likewise.
9600 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
9601 * src/system.h: Include unlocked-io.h rathe than stdio.h.
9602
88c6637f
PE
9603 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
9604 Use assignments rather than casts-to-void to suppress
9605 unused-variable warnings. This pacifies 'lint'.
9606 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
9607 unused-variable warnings.
9608
fb32e373
JMG
96092005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9610
9611 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
9612
edb8f44f
PE
96132005-10-02 Paul Eggert <eggert@cs.ucla.edu>
9614
fb9c0b33
PE
9615 Use unlocked I/O for a minor performance improvement on hosts like
9616 GNU/Linux and Solaris that support unlocked I/O. The basic idea
9617 is to use the gnlib unlocked-io module, and to prefer putc and
9618 puts to printf when either will work (since the latter doesn't
9619 come in an unlocked flavor).
9620 * bootstrap (gnulib_modules): Add unlocked-io.
9621 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
9622 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
9623 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
9624 and similarly for puts and putc and printf.
9625 * data/yacc.c: Likewise.
9626 * lib/bitset.c (bitset_print): Likewise.
9627 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
9628 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
9629 to printf.
9630 * lib/lbitset.c (debug_lbitset): Likewise.
9631 * src/closure.c (print_firsts, print_fderives): Likewise.
9632 * src/gram.c (grammar_dump): Likewise.
9633 * src/lalr.c (look_ahead_tokens_print): Likewise.
9634 * src/output.c (escaped_output): Likewise.
9635 (user_actions_output): Coalesce two printfs.
2f4f028d 9636 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
fb9c0b33
PE
9637 * src/reduce.c (reduce_print): Likewise.
9638 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2f4f028d 9639 * src/system.h: Include unlocked-io.h rather than stdio.h.
fb9c0b33 9640
edb8f44f
PE
9641 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
9642 this confuses xgettext.
9643
b50d2359
AD
96442005-10-02 Akim Demaille <akim@epita.fr>
9645
9646 * bootstrap (gnulib_modules): Add strverscmp.
9647 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
9648 * m4/.cvsignore: Add strverscmp.m4.
9649 * src/parse-gram.y (%require): New token, new rule.
9650 (version_check): New.
9651 * src/scan-gram.l (%require): Adjust.
9652 * tests/input.at (AT_REQUIRE): New.
9653 Use it.
9654 * doc/bison.texinfo (Require Decl): New.
9655 (Calc++ Parser): Use %require.
9656
21667f64
AD
96572005-10-02 Akim Demaille <akim@epita.fr>
9658
9659 * data/location.cc: New.
9660
2b81e969
AD
96612005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
9662 Akim Demaille <akim@epita.fr>
9663
9664 Make sure -odir/foo.cc creates dir/location.hh etc.
9665 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
9666 (spec_file_prefix, spec_verbose_file, spec_graph_file)
9667 (spec_defines_file): Now const.
9668 (dir_prefix): New.
9669 (short_base_name): Remove.
9670 * src/files.c: Adjust.
9671 (dirname.h): Include.
9672 (base_name): Don't prototype it.
9673 (finput): Remove, duplicates gram_in.
9674 (full_base_name, short_base_name): Replace by...
9675 (all_but_ext, all_but_tab_ext): these.
9676 (compute_base_names): Rename as...
9677 (compute_file_name_parts): this.
9678 Update to compute the new variables, including dir_prefix.
9679 Adjust dependencies.
9680 * src/output.c (prepare): Output them.
9681 * src/reader.c: Adjust to use gram_in, not finput.
9682 * src/scan-skel.l (@dir_prefix@): New.
9683
ad6a9b97
JMG
96842005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9685
9686 * lib/subpipe.c: New function end_of_output_subpipe() added
9687 to allow support for non-posix systems. This is a no-op function
9688 for posix systems.
9689
9690 * lib/subpipe.h: New function end_of_output_subpipe() added
9691 to allow support for non-posix systems. This is a no-op function
9692 for posix systems.
9693
9694 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
9695 handle the lack of pipe/fork functionality on non-posix systems.
9696
9697 * djgpp/Makefile.maint: DJGPP specific file.
9698
9699 * djgpp/README.in: DJGPP specific file.
9700
9701 * djgpp/config.bat: DJGPP specific configuration file.
9702
9703 * djgpp/config.sed: DJGPP specific configuration file.
9704
9705 * djgpp/config.site: DJGPP specific configuration file.
9706
9707 * djgpp/config_h.sed: DJGPP specific configuration file.
9708
9709 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
9710
9711 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
9712
fc695704
AD
97132005-10-02 Akim Demaille <akim@epita.fr>
9714
9715 * data/location.cc: New, extract from...
9716 * data/lalr1.cc: here.
9717 (location.hh): Include it after the user prologue, in case the
9718 filename type is defined by the user.
9719 Forward declation location and position before the pre-prologue.
9720 (yyresult_): Rename as...
9721 (yyresult): this, it's a local variable, not an attribute.
9722 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
9723
97242005-10-01 Akim Demaille <akim@epita.fr>
5215c87f
AD
9725
9726 * examples/extexi: Restore the #line generation.
9727
fb9712a9
AD
97282005-09-30 Akim Demaille <akim@epita.fr>,
9729 Alexandre Duret-Lutz <adl@gnu.org>
9730
9731 Move the token type and YYSTYPE in the parser class.
9732 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
9733 (parser::token): New, from the moved free definition of tokens.
9734 (parser::semantic_value): Now a full definition instead of an
9735 indirection to YYSTYPE.
9736 (b4_post_prologue): No longer included in the header file, but
9737 in the implementation file.
9738 * doc/bison.texi (C+ Language Interface): Update.
9739 * src/parse-gram.y: Support unary %define.
9740 * tests/actions.at: Define global_tokens_and_yystype for backward
9741 compatibility until we update the tests.
9742 * tests/calc.at: Idem.
9743 (first_line, first_column, last_line, last_column): Define for lalr1.cc
9744 to simplify the code.
9745
55f0c7b1
PE
97462005-09-29 Paul Eggert <eggert@cs.ucla.edu>
9747
9748 Port to SunOS 4.1.4, which lacks strtoul and strerror.
9749 Ah, the good old days! Problem reported by Peter Klein.
9750 * bootstrap (gnulib_modules): Add strerror, strtoul.
9751 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
9752 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
9753
fb9712a9 97542005-09-29 Akim Demaille <akim@epita.fr>
d4fb5e3c
AD
9755
9756 * data/c.m4 (b4_error_verbose_if): New.
9757 * data/lalr1.cc: Use it.
9758 (YYERROR_VERBOSE_IF): Remove.
9759 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
9760 parser members, replaced by...
9761 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
9762 local variables.
9763 (yysyntax_error_): Takes the state number as argument.
9764 (yyreduce_print_): Use the argument yyrule, not the former
9765 attribute yyn_.
9766
8a6f72f3
PE
97672005-09-26 Paul Eggert <eggert@cs.ucla.edu>
9768
9769 * bootstrap (gnulib_modules): Add verify.
9770 * lib/.cvsignore: Add verify.h.
9771 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
9772 * src/system.h (verify): Remove.
9773 Include verify.h instead.
9774 * src/tables.c (tables_generate): Use new API for 'verify'.
9775
0d50976f
PE
97762005-09-21 Paul Eggert <eggert@cs.ucla.edu>
9777
ebc3737e
PE
9778 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
9779 local variables whose names begin with 'yy'.
9780 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
9781 Trivial changes from Joel E. Denny.
9782
0d50976f
PE
9783 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
9784 it itself.
9785 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
9786 don't use alloca any more.
9787
9788 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
9789 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
62c4328e 9790 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
0d50976f
PE
9791 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
9792 to match yacc.c, to test more hosts.
9793
a05b79df
PE
97942005-09-20 Paul Eggert <eggert@cs.ucla.edu>
9795
55289366
PE
9796 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
9797 doesn't affect behavior.
9798 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
9799 Solaris, AIX, MSC.
9800 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
9801 This works a bit better with glibc, if user code has already included
9802 stdlib.h.
9803 * doc/bison.texinfo (Bison Parser): Document that users can't
9804 arbitrarily use malloc and free for other purposes. Document
9805 that <alloca.h> and <malloc.h> might be included.
9806 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
9807 user must declare alloca.
9808
a05b79df
PE
9809 * HACKING (release): Forwarn the Translation Project about
9810 stable releses.
9811
3ab2ca22
AD
98122005-09-20 Akim Demaille <akim@epita.fr>
9813
9814 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
9815
a9739e7c
PE
98162005-09-19 Paul Eggert <eggert@cs.ucla.edu>
9817
a702593e
PE
9818 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
9819 (YYSTACK_ALLOC_MAXIMUM): Use it.
9820 (yysyntax_error): New function.
9821 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
9822 multiple syntax errors are reported, and alloca is being used.
9823 Instead, reallocate buffers twice as big each time, so that
9824 we waste at most half the allocated memory. Start with a small
9825 (128-byte) buffer that will suffice in most cases anyway.
9826 Use yysyntax_error to do most of the work.
9827
9828 * doc/bison.texinfo (Error Reporting, Table of Symbols):
9829 yynerrs is the number of errors reported, not the number of
9830 errors encountered.
9831
a9739e7c
PE
9832 * tests/glr-regression.at (Duplicated user destructor for lookahead):
9833 Mark it as expected to fail.
9834 Cast result of malloc; problem reported by twlevo@xs4all.nl.
9835 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
9836 Don't start user-code symbols with "yy", to avoid name space problems.
9837
f479c6c6
AD
98382005-09-19 Akim Demaille <akim@epita.fr>
9839
9840 Remove the traits, failed experiment.
9841 It never proved useful, and anyway because of the current
9842 definition, it was not possible to have several specialization of
9843 this traits, making it useless.
9844 * data/lalr1.cc (yy:traits): Remove.
9845 Inline its definitions in the parser class.
9846
e2586f82
AD
98472005-09-19 Akim Demaille <akim@epita.fr>
9848
9849 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
9850 least Mac OSX with a /usr/local install of gettext.
9851
2e8cf949
AD
98522005-09-19 Akim Demaille <akim@epita.fr>
9853
9854 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
9855 and yytoken for similarity with the other skeletons.
9856
c7fb0b90
AD
98572005-09-19 Akim Demaille <akim@epita.fr>
9858
4e26c69e 9859 * NEWS, configure.ac: update version number to 2.1a.
c7fb0b90 9860
1bd0deda
PE
98612005-09-16 Paul Eggert <eggert@cs.ucla.edu>
9862
9863 * NEWS: Version 2.1.
9864
9865 * NEWS: Remove notice of yytname change, since it was never in an
9866 official release.
9867 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
9868 diagnostic.
9869 * src/output.c (prepare): Likewise.
9870 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
9871 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
9872 is not defined. This is an awful hack, but it's enough for now.
9873 All callers changed.
9874 * tests/glr-regression-at (make_value): Args are const pointers now,
9875 to avoid GCC warning.
9876 (Duplicated user destructor for lookahead): New test. Currently
9877 skipped. It fails on my host but I'm not sure it'll always fail.
9878
98792005-09-16 Akim Demaille <akim@epita.fr>
c1432f65
AD
9880
9881 * src/symtab.h (struct symbol): Declare the printer and destructor
9882 as const, to avoid accidental calls to free.
9883 (symbol_destructor_set, symbol_printer_set): Adjust.
9884 * src/symtab.c: Adjust.
9885
1bd0deda 98862005-09-16 Akim Demaille <akim@epita.fr>
cf147260
AD
9887
9888 * data/c.m4 (b4_token_enums): New.
9889 (b4_token_defines): Rename as...
9890 (b4_token_enums_defines): this.
9891 (b4_token_defines): New, output only the #defines.
9892 * data/yacc.c, data/glr.c: Adjust.
9893 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
9894 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
9895 as default values.
9896
dbcdae2d
AD
98972005-09-16 Akim Demaille <akim@epita.fr>
9898
9899 * data/lalr1.cc (yylex_): Remove, inline its code.
9900 (yyreport_syntax_error_): Remove, replaced by...
9901 (yysyntax_error_): this which returns a string and leaves to the
9902 caller the call to the users' error function.
9903 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
9904 Move from members of the parser object...
9905 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
9906 to local variables of the parse function.
9907
70d8f291
AD
99082005-09-16 Akim Demaille <akim@epita.fr>
9909
9910 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
9911 since it's in Bison's name space.
9912
b47dbebe
PE
99132005-09-15 Paul Eggert <eggert@cs.ucla.edu>
9914
ae199bf1
PE
9915 * data/glr.c (yyresolveValue): Add default case to pacify
9916 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
9917
b47dbebe
PE
9918 * NEWS: Document when yyparse started to return 2.
9919 * doc/bison.texinfo (Parser Function): Document when yyparse
9920 returns 2.
9921
9922 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
9923 (b4_filename_type): Renamed back from b4_file_name_type. All uses
9924 changed.
9925 (class position): file_name -> filename (reverting). All uses changed.
9926
99272005-09-14 Paul Eggert <eggert@cs.ucla.edu>
9928
9929 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
9930 do anything if $@ exists. This reverts part of the 2005-07-07
9931 patch.
9932
00292f66
PE
99332005-09-11 Paul Eggert <eggert@cs.ucla.edu>
9934
9935 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
9936 contains obsolete information and isn't worth distributing as a
9937 separate file anyway.
9938 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
9939 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
9940 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
9941 (yyparse): Abort if user code uses longjmp to throw an unexpected
9942 value.
9943
a420f962
PE
99442005-09-09 Paul Eggert <eggert@cs.ucla.edu>
9945
00292f66
PE
9946 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
9947 Suggested by twlevo@xs4all.nl.
9948
127287e9
PE
9949 * data/glr.c (YYCHK1): Do not assume YYE is in range.
9950 This avoids a diagnostic from gcc -Wswitch-enum.
9951 Problem reported by twlevo@xs4all.nl.
9952
a420f962
PE
9953 * doc/bison.texinfo: Don't use "filename", as per GNU coding
9954 standards. Use "file name" or "file" or "name", depending on
9955 the context.
9956 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
9957 not to hack/foo.tab.c.
9958 (Calc++ Top Level): 2nd arg of main is not const.
48b16bbc
PE
9959 * data/glr.c: b4_filename -> b4_file_name.
9960 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
9961 All uses changed.
9962 (class position): filename -> file_name. All uses changed.
9963 * data/yacc.c: b4_filename -> b4_file_name.
9964 * lib/bitset.h: filename -> file_name in local vars.
9965 * lib/bitset_stats.c: Likewise.
9966 * src/files.c: Likewise.
9967 * src/scan-skel.l ("@output ".*\n): Likewise.
9968 * src/files.c (file_name_split): Renamed from filename_split.
9969 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
a420f962
PE
9970
99712005-09-08 Paul Eggert <eggert@cs.ucla.edu>
9972
9973 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
9974 to accommodate latest gnulib.
9975
9976 * tests/glr-regression.at (Duplicate representation of merged trees):
9977 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
9978
9979 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
9980 needed.
9981
42a6501d
PE
99822005-08-26 Paul Eggert <eggert@cs.ucla.edu>
9983
9984 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
9985 All uses changed. Invoke user destructor after an error during a
9986 split parse (trivial change from Joel E. Denny).
9987
9988 * tests/glr-regression.at
9989 (User destructor after an error during a split parse): New test case.
9990 Problem reported by Joel E. Denny in:
9991 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
9992
ef9a1faf
PE
99932005-08-25 Paul Eggert <eggert@cs.ucla.edu>
9994
5b4aaf78
PE
9995 * README-cvs: Give URLs for recommended tools.
9996 Mention Gzip version problem, and bootstrapping issues.
9997 Remove troubleshooting section, as it's somewhat obsolete.
9998
b5240ba5
PE
9999 * bootstrap (no_cache): New var, to accommodate different wget
10000 variants. Use it instead of '-C off'. Problem reported by
10001 twlevo@xs4all.nl.
10002
ef9a1faf
PE
10003 * data/glr.c (yydestroyStackItem): New function.
10004 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
10005 debugging information. Problem reported by Joel E. Denny.
10006
e6efa9da
AD
100072005-08-25 Akim Demaille <akim@epita.fr>
10008
10009 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
10010
adc90f13
PE
100112005-08-24 Paul Eggert <eggert@cs.ucla.edu>
10012
10013 * data/glr.c (yyrecoverSyntaxError, yyreturn):
10014 Don't invoke destructor on unresolved entries.
10015 * tests/glr-regression.at
10016 (User destructor for unresolved GLR semantic value): New test case.
10017 Problem reported by Joel E. Denny in:
10018 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
10019
f9315de5
PE
100202005-08-21 Paul Eggert <eggert@cs.ucla.edu>
10021
15d29c1f
PE
10022 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
10023 Add strnlen.c.
10024 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
10025 lib-prefix.m4, po.m4.
10026
dd5f2af2
PE
10027 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
10028 in yydestruct diagnostic, since it might not be an error.
10029 Problem reported by Joel Denny near end of
10030 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
6250acbd 10031 * data/lalr1.cc (yyerturn): Likewise.
dd5f2af2
PE
10032 * data/yacc.c (yyreturn): Likewise.
10033 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
10034
10035 * src/files.c: Remove obsolete FIXME comment.
10036
10037 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
10038 with the other templates, and to fix bogus run-on messages such
10039 as the one reported at the end of
10040 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
10041 All callers changed to avoid the newline.
10042 (yyprocessOneStack): Output two lines rather than one, to accommodate
10043 the above change. This changes the debug output format slightly.
10044
f9315de5
PE
10045 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
10046 reported by Joel E. Denny in
10047 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
10048 (trivial change).
10049 * tests/glr-regression.at (Duplicate representation of merged trees):
10050 New test, from Joel E. Denny in:
10051 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
10052 * THANKS: Add Joel E. Denny.
10053
10054 * configure.ac (AC_INIT): Bump to 2.0c.
10055
04098407
PE
100562005-07-24 Paul Eggert <eggert@cs.ucla.edu>
10057
10058 * NEWS: Version 2.0b.
10059
ca5d2013
PE
10060 * Makefile.am (SUBDIRS): Put examples before tests, so that
10061 "make check" doesn't finish with "All 1 tests passed".
10062
3d54b576
PE
10063 * tests/regression.at (Token definitions): Don't rely on
10064 AT_PARSER_CHECK for data that contains backslashes. It currently
10065 uses 'echo', and 'echo' isn't portable if its argument contains
10066 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
10067 that the byte '\0xff' is not printable in the C locale; it is,
10068 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
10069 not printable, so use '\0x81' to test.
10070
d53ae497
PE
10071 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
10072 version of GCC, since the macro is used with non-GCC compilers.
10073
fc01665e
PE
10074 Fix core dump reported by Pablo De Napoli in
10075 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
10076 * tests/regression.at (Invalid inputs with {}): New test.
10077 * src/parse-gram.y (token_name): Translate type before using
10078 it as an index.
10079
04098407
PE
10080 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
10081 the user's name space. All uses changed to __attribute__
10082 ((__unused__)).
10083 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
10084 Add __attribute__ ((__noreturn__)).
10085
10086 * etc/clcommit: Remove. We weren't using it, and it failed
10087 "make maintainer-distcheck".
10088 * Makefile.maint: Merge from coreutils.
10089 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
10090 (syntax-check-rules): Change list of rules as described below.
10091 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
10092 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
10093 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
10094 (sc_trailing_space): New rules.
10095 (sc_xalloc_h_in_src): Remove.
10096 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
10097 (sc_space_tab, sc_error_exit_success, sc_changelog):
10098 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
10099 (makefile-check, po-check, author_mark_check):
10100 (makefile_path_separator_check, copyright-check):
10101 Use grep -n, to make it easier to find violations.
10102 Use CVS_LIST and CVS_LIST_EXCEPT.
10103 (header_regexp, h_re): Remove.
10104 (dd_c): New macro.
10105 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
10106 (my-distcheck): Use more-modern GCC flags.
10107 (signatures, %.asc): Remove.
10108 (rel-files, announcement): Remove signatures.
10109 Restore old updating code, even though we don't use it, so
10110 that we're the same as coreutils.
10111 (alpha, beta, major): Depend on news-date-check.
10112 Make the upload commands.
10113
10114 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
10115 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
10116 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
10117 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
10118 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
10119 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
10120 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
10121 * tests/sets.at: Likewise.
10122
10123 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
10124 we comment out the Autoconf version number.
10125 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
10126 it's error-prone and "make maintainer-distcheck" rejects it.
10127
10128 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
10129 Indent calls to "error" to pacify "make maintainer-distcheck",
10130 when the calls are not intended to be translated.
10131 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
10132
10133 * src/Makefile.am (DEFS): Use +=, to pacify
10134 "make maintainer-distcheck".
10135 (bison_SOURCES): Add scan-skel.h.
10136 (sc_tight_scope): New rule, from coreutils.
10137
10138 * src/files.c (src_extension, header_extension):
10139 Now static, not extern.
10140 * src/getargs.c (short_options): Likewise.
10141 * src/muscle_tab.c (muscle_table): Likewise.
10142 * src/parse-gram.y (current_class, current_type, current_prec):
10143 Likewise.
10144 * src/reader.c (grammar_end, previous_rule_end): Likewise.
10145 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
10146 * src/main.c (main): Cast bindtextdomain and textdomain calls to
10147 void, to avoid warning when NLS is disabled.
10148 * src/output.c: Include scan-skel.h.
10149 (scan_skel): Remove decl, since scan-skel.h does this.
10150 (output_skeleton):
10151 Indent calls to "error" to pacify "make maintainer-distcheck".
10152 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
10153 * src/reader.h (gram_end, gram_lineno): New decls to pacify
10154 "make maintainer-distcheck".
10155 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
10156 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
10157 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
10158 (skel_lex_destroy, scan_skel): Move these decls to...
10159 * src/scan-skel.h: New file.
10160 * src/uniqstr.c (uniqstr_assert):
10161 Indent calls to "error" to pacify "make maintainer-distcheck".
10162
10163 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
10164 not @VAR@.
10165
10166 * tests/torture.at: Revamp to avoid misuse of atoi that
10167 "make maintainer-distcheck" complained about.
10168
10169 * examples/extexi (message): Don't print a message more than once,
10170 and omit line-number decoration that makes Emacs compile think
10171 that informative messages are worth worrying about.
10172
101732005-07-22 Paul Eggert <eggert@cs.ucla.edu>
10174
10175 * configure.ac: Update version number.
10176
10177 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
10178 accidentally.
10179 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
10180 autogenerated by the maintainer.
10181 * examples/calc++/.cvsignore: Add *.yy.
10182
10183 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
10184 * lib/bitset_stats.c (bitset_stats_init): Likewise.
10185 * lib/bitsetv.c (bitsetv_alloc): Likewise.
10186
10187 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
10188
10189 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
10190 from maintainer-distcheck about casting the argument of 'free'.
10191
10192 * NEWS: Mention recent yytname changes.
10193 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
10194
10195 * bootstrap: For translations that have not yet been upgraded to
10196 the new runtime-po domain, prime the pump by extracting the
10197 relevant strings from the obsolete translations. This code can be
10198 removed once the bison-runtime domain has been translated by each
10199 team.
10200
10201 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
10202 now that token names are already quoted.
10203
10204 Fix problem reported by Anthony Heading.
10205 * data/glr.c (YYTOKEN_TABLE): New macro.
10206 (yytname): Define if YYTOKEN_TABLE.
10207 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
10208 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
10209 (YYERROR_VERBOSE): Define the same way the other skeletons do.
10210 * src/output.c (prepare_symbols): Output token_table_flag.
10211
0ffda363
PE
102122005-07-21 Paul Eggert <eggert@cs.ucla.edu>
10213
10214 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
10215 again if the first call fails.
10216
10217 * data/glr.c (yytnamerr): New function.
10218 (yyreportSyntaxError): Use it to dequote most string literals.
10219 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
10220 with other skeletons. All uses changed.
10221 (yytnameerr_): New function.
10222 (yyreport_syntax_error): Use it to dequote most string literals.
10223 * data/yacc.c (yytnamerr): New function.
10224 (yyerrlab): Use it to decode most string literals.
10225 * doc/bison.texinfo (Decl Summary, Calling Convention):
10226 Clarify quoting convention of yytname.
10227 * src/output.c (prepare_symbols): Quote all names. This undoes
10228 the 2005-04-17 change, which is now accomplished (mostly) via
10229 changes in the parsers as described above.
10230 * tests/regression.at (Token definitions, Web2c Actions):
10231 Undo most 2005-04-17 change here, too.
10232
102332005-07-20 Paul Eggert <eggert@cs.ucla.edu>
10234
10235 Fix more problems reported by twlevo@xs4all.nl.
10236 * tests/cxx-type.at: Don't pipe output of ./types through sed to
10237 remove trailing spaces. This loses the exit status of ./types,
10238 and isn't needed since ./types shouldn't be emitting trailing
10239 spaces.
10240 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
10241 as the stack isn't valid in that case.
10242
10243 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
10244 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
10245 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
10246 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
10247 is used.
10248 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
10249 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
10250 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
10251 Likewise.
10252
10253 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
10254 overly-picky compilers that reject 'char *foo = "bar";'.
10255
10256 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
10257 to FILE * parameter, not to stderr. This fixes a typo introduced
10258 in the 2005-07-12 change.
10259
10260 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
10261 warnings from GCC 4.
10262
10263 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
10264 (yyglrShiftDefer, yysplitStack):
10265 Remove unused parameters b4_pure_formals. All uses changed.
10266 (yyglrShift): Remove unused parameters b4_user_formals.
10267 All uses changed.
10268 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
10269
6100a9aa
PE
102702005-07-18 Paul Eggert <eggert@cs.ucla.edu>
10271
258b75ca
PE
10272 Destructor cleanups and regularization among the three skeletons.
10273 * NEWS: Document the behavior changes.
10274 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
10275 stack before failing, as the cleanup code will do it for us now.
10276 * data/lalr1.cc (yyerrlab): Likewise.
10277 * data/glr.c (yyparse): Pop everything off the stack before
10278 freeing it, so that destructors get called properly.
10279 * data/lalr1.cc (yyreturn): Likewise.
10280 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
10281 This is more consistent.
10282 * doc/bison.texinfo (Destructor Decl): Mention more reasons
10283 why destructors might be called. 1.875 -> 2.1.
10284 (Destructor Decl, Decl Summary, Table of Symbols):
10285 Some English-language cleanups for %destructor.
10286 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
10287 Add output line for destructor of start symbol.
10288 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
10289 because of that same extra output line.
10290
1a059451
PE
10291 * NEWS: Document minor wording changes in diagnostics of
10292 Bison-generated parsers.
10293 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
10294 Remove unused formals. All uses changed.
10295 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
10296 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
10297 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
10298 Rename yyoverflowab to yyexhaustedlab.
10299 When memory exhaustion occurs during syntax-error reporting,
10300 report it separately rather than in a single diagnostic; this
10301 eases translation.
10302 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
10303 (Memory Exhausted): Renamed from Parser Stack Overflow.
10304 Revamp wording slightly to prefer "memory exhaustion".
10305 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
10306
97460c78
PE
10307 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
10308
30757c8c
PE
10309 Add i18n support to the GLR skeleton. Partially fix the C++
10310 skeleton; a C++ expert needs to finish this. Remove debugging
10311 msgids; there's little point to having them translated, since they
10312 can be understood only by someone who can read the
10313 (English-language) source code.
10314
10315 Generate runtime-po/bison-runtime.pot automatically, so that we
10316 don't have to worry about garbage getting in that file. We'll
10317 make sure after the next official release that old msgids don't
10318 get lost. See
10319 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
10320
10321 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
10322 Now auto-generated.
10323 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
10324 Fix typos in explanations of the runtime file.
10325 * bootstrap: Change gettext keyword from YYI18N to YY_.
10326 Use standard Makefile.in.in in runtime-po, since we'll arrange
10327 for backward-compatible bison-runtime.po files in a different way.
10328 * data/glr.c (YY_): New macro, from yacc.c.
10329 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
10330 Translate messages intended for users.
10331 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
10332 the wording in the other skeletons. We don't know that the memory
10333 is virtual.
10334 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
10335 Use same method that yacc.c uses.
10336 Don't translate debugging messages.
10337 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
10338 it doesn't work (yet), and requires C++ expertise to fix.
10339 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
10340 Move defn to a more logical place, to be consistent with other
10341 skeletons.
10342 Don't translate debugging messages.
10343 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
10344 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
10345 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
10346 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
10347
ac8c5689
PE
10348 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
10349 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
10350 void, not int.
10351 * tests/glr-regression.at (Badly Collapsed GLR States):
10352 Likewise.
10353 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
10354 yylex should return 0 at EOF rather than aborting.
10355
6100a9aa
PE
10356 Improve tests for stack overflow in GLR parser.
10357 Problem reported by twlevo@xs4all.nl.
10358 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
10359 All uses removed.
10360 (yyStackOverflow): Just longjmp, but with value 2 so that caller
10361 can handle the problem.
10362 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
10363 (yyparse): New local variable yyresult to record the result.
10364 Use result of setjmp to set it, rather than storing itinto
10365 struct.
10366 (yyDone): Remove label.
10367 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
10368 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
10369 if YYABORT is used).
10370 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
10371 yyparse status; put status > 1 into diagnostic.
10372 Check that status==2 works.
10373 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
10374 Use exit status 3 for failure to open (which shouldn't happen).
10375
15f40952
PE
103762005-07-17 Paul Eggert <eggert@cs.ucla.edu>
10377
67fd79c4
PE
10378 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
10379 1 on syntax error; just let yyparse do its thing.
10380 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
10381 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
10382 (Exploding the Stack Size with Alloca):
10383 (Exploding the Stack Size with Malloc):
10384 Expect exit status 2, not 1, since the parser is supposed to blow
10385 its stack. Problem reported by twlevo@xs4all.nl.
10386
15f40952
PE
10387 * data/glr.c (yyparse): Don't assume that the initial calls
10388 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
10389 Print a stack-overflow message and fail instead.
10390 Initialize the line-number information before creating the stack,
10391 so that the stack-overflow message can report line zero safely.
10392
f32c66b5
PE
103932005-07-14 Paul Eggert <eggert@cs.ucla.edu>
10394
a22ff96f 10395 Fix problems reported by twlevo@xs4all.nl.
e2688cd9
PE
10396 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
10397 (yyuserMerge): Provide a default case if b4_mergers is empty.
10398 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
10399 * tests/glr-regression.at
10400 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
c70fdfcd 10401 Add casts to pacify C++ compilers.
1beb0b24
PE
10402 * tests/glr-regression.at (Improper merging of GLR delayed action
10403 sets): Declare yylex before using it.
f32c66b5 10404 * tests/Makefile.am (maintainer-check-g++): Fix a stray
a22ff96f
PE
10405 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
10406 test for valgrind; valgrind is independent of g++.
10407 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
10408 for compatibility with POSIX 1003.1-2001 (if running coreutils).
10409 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
10410 Use a destructor, so that we can expand the stack. Change
10411 YYSTYPE to char * so that we can free it. Cast result of malloc.
f32c66b5 10412
d741bd1b
PE
104132005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10414
10415 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
10416 a valgrind failure. Problem reported by twlevo@xs4all.nl.
10417
0410a6e0
PE
104182005-07-13 Paul Eggert <eggert@cs.ucla.edu>
10419
10420 * PACKAGING: New file, suggested by Bruno Haible and taken from
10421 similar wording in gettext's PACKAGING file.
10422 * NEWS: Mention PACKAGING.
10423 * Makefile.am (EXTRA_DIST): Add PACKAGING.
10424
f7ab6a50
PE
104252005-07-12 Paul Eggert <eggert@cs.ucla.edu>
10426
baf785db 10427 * NEWS: Document recent i18n improvements.
f7ab6a50
PE
10428 * bootstrap: Get runtime translations into runtime-po.
10429 Create runtime-po files automatically, if possible.
10430 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
10431 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
10432 does not infringe on the user's name space.
10433 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
10434 * doc/bison.texinfo (Internationalization): Revamp the English
10435 and Texinfo syntax a bit, to try to make it clearer.
10436 (Bison Options, Option Cross Key): Mention --print-localedir.
10437 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
10438 YYENABLE_NLS. Quote a bit more.
10439 * runtime-po/.cvsignore: New file.
10440 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
10441 * runtime-po/Rules-quot: Remove; now created by bootstrap.
10442 * runtime-po/quot.sed: Likewise.
10443 * runtime-po/boldquot.sed: Likewise.
10444 * runtime-po/en@quot.header: Likewise.
10445 * runtime-po/en@boldquot.header: Likewise.
10446 * runtime-po/insert-header.sin: Likewise.
10447 * runtime-po/remove-potcdate.sin: Likewise.
10448 * runtime-po/Makevars: Likewise.
10449 * runtime-po/LINGUAS: Likewise.
10450 * runtime-po/de.po: Likewise; we will rely on the translation project
10451 to maintain this, so "bootstrap" should get it.
0410a6e0 10452 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
f7ab6a50
PE
10453 its value.
10454 * src/main.c (main): Bind the bison-runtime domain, too.
10455
104562005-07-12 Bruno Haible <bruno@clisp.org>
10457
10458 * data/yacc.c: Include <libintl.h> when NLS is enabled.
10459 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
10460 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
10461 * runtime-po: New directory.
10462 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
10463 $(DOMAIN).pot-update rule, so that old messages are never dropped.
10464 * runtime-po/Rules-quot: New file, copied from po/.
10465 * runtime-po/quot.sed: Likewise.
10466 * runtime-po/boldquot.sed: Likewise.
10467 * runtime-po/en@quot.header: Likewise.
10468 * runtime-po/en@boldquot.header: Likewise.
10469 * runtime-po/insert-header.sin: Likewise.
10470 * runtime-po/remove-potcdate.sin: Likewise.
10471 * runtime-po/Makevars: New file.
10472 * runtime-po/POTFILES.in: New file.
10473 * runtime-po/LINGUAS: New file.
10474 * runtime-po/bison-runtime.pot: New file.
10475 * runtime-po/de.po: New file.
10476 * m4/bison.m4: New file.
10477 * Makefile.am (SUBDIRS): Add runtime-po.
10478 (aclocaldir, aclocal_DATA): New variables.
10479 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
10480 Define aclocaldir.
10481 * src/getargs.c (usage): Document --print-localedir option.
10482 (PRINT_LOCALEDIR_OPTION): New enum item.
10483 (long_options): Add --print-localedir option.
10484 (getargs): Handle --print-localedir option.
10485 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
10486 (Internationalization): New section.
10487
22dda0f0
AD
104882005-07-12 Akim Demaille <akim@epita.fr>
10489
10490 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
10491 for consistency with the rest of the code.
10492 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
10493 Add separators.
10494
82b248ad
AD
104952005-07-12 Akim Demaille <akim@epita.fr>
10496
10497 * src/parse-gram.y: Use %printer instead of YYPRINT.
10498
fa0e9314
AD
104992005-07-12 Akim Demaille <akim@epita.fr>
10500
867a3e00
AD
10501 * src/symtab.h, src/symtab.c (symbol_print): New.
10502 * src/symlist.h, src/symlist.c (symbol_list_print): New.
10503 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
10504
105052005-07-12 Akim Demaille <akim@epita.fr>
10506
10507 * data/glr.c (b4_syncline): Fix (swap) the definitions of
fa0e9314
AD
10508 b4_at_dollar and b4_dollar_dollar.
10509
e054b190
PE
105102005-07-11 Paul Eggert <eggert@cs.ucla.edu>
10511
10512 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
10513 and Pennello's paper.
10514
34160ec4
PE
105152005-07-09 Paul Eggert <eggert@cs.ucla.edu>
10516
407d4a75
PE
10517 * data/yacc.c (yyparse): Undo previous patch. Instead,
10518 set yylsp[0] and yyvsp[0] only if the initial action
10519 sets yylloc and yylval, respectively.
10520
34160ec4
PE
10521 * data/yacc.c (yyparse): In the initial action, set
10522 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
10523 This avoids the use of undefined variables if the initial
10524 action does not set yylloc and/or yylval.
10525
c3d5a4a7
PE
105262005-07-07 Paul Eggert <eggert@cs.ucla.edu>
10527
b34d96c1
PE
10528 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
10529 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
10530 Remove from CVS. These files are automatically generated.
10531 * examples/extexi: Clarify that this file is now part of Bison,
10532 not GNU M4, and that it works with any POSIX-compatible Awk.
10533 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
10534 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
10535 so that we also get calc++-parser.yy. Geneate it.
10536 Use $(AWK), not gawk, since any conforming Awk will do.
10537 Put comment before action, since older 'make' can't handle comment
10538 in action.
10539 $(BUILT_SOURCES): List all built sources, not just some of them.
10540 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
10541 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
10542 $($(calc_sources_generated)): Remove unnecessary test for existence
10543 of target. (This had a shell syntax error anyway; a stray "x".)
10544 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
10545 calc++-parser.yy.
10546 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
10547
c3d5a4a7
PE
10548 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
10549 implied by the other modules.
10550
828c373b
AD
105512005-07-06 Akim Demaille <akim@epita.fr>
10552
10553 Bind examples/calc++ to the package.
10554 * examples/calc++/Makefile: Remove, replaced by...
10555 * examples/calc++/Makefile.am: ... this new file.
10556 * examples/calc++/test: Remove input.
10557 * examples/calc++/compile: Remove.
10558 * examples/Makefile.am: New.
10559 * configure.ac, Makefile.am: Adjust.
10560 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
10561
63cb01d6
PE
105622005-07-05 Paul Eggert <eggert@cs.ucla.edu>
10563
fd2df2ed
PE
10564 * data/glr.c (yyFail): Drastically simplify; since the format argument
10565 never had any % directives, we can simply pass it to yyerror.
10566 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
10567 be modified later, as that is the usual style in glr.c.
10568 Problems reported by Paul Hilfinger.
10569
63cb01d6
PE
10570 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
10571 and size overflow errors.
10572 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
10573 in case the user prolog sets feature-test macros like _GNU_SOURCE.
10574 (YYSIZEMAX): New macro.
10575 (yystpcpy): New function, taken from yacc.c.
10576 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
10577 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
10578 so that we don't have to maintain their signatures.
10579 (yyFail): Check for buffer overflow, by using vsnprintf rather
10580 than vsprintf. Allocate a bigger buffer if possible.
10581 Report an error if buffer allocation fails.
10582 (yyStackOverflow): New function.
10583 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
10584 the initialization was successful. It might fail if storage was
10585 exhausted.
10586 (yyexpandGLRStack): Add more checks for storage allocation failure.
10587 Use yyStackOverflow to report failures.
10588 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
10589 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
10590 Don't assume stack number fits in int.
10591 (yysplitStack): Check for storage allocation failure.
10592 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
10593 can print diagnostics on storage allocation failure. All callers
10594 changed.
10595 (yyresolveValue): Use yybool for boolean.
10596 (yyreportSyntaxError): Check for size-calculation overflow.
10597 This code is taken from yacc.c.
10598 (yyparse): Check for storage allocation errors when allocating
10599 the initial stack.
10600
1c59e0a1
AD
106012005-07-05 Akim Demaille <akim@epita.fr>
10602
10603 Extract calc++ from the documentation.
10604 * doc/bison.texinfo (Calc++): Add the extraction marks.
10605 * examples/extexi: New, from the aborted GNU Programming 2E.
10606 Separate the different paragraph of a file with empty lines.
10607 * examples/Makefile: Use it to extract the whole calc++ example.
10608
8a0adb01
AD
106092005-06-24 Akim Demaille <akim@epita.fr>
10610
10611 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
10612 class typedefs.
10613
12545799
AD
106142005-06-22 Akim Demaille <akim@epita.fr>
10615
10616 * doc/bison.texinfo (C++ Language Interface): First stab.
10617 (C++ Parsers): Remove.
10618
99be0235
AD
106192005-06-22 Akim Demaille <akim@epita.fr>
10620
10621 * data/lalr1.cc (yylex_): Honor %lex-param.
10622
0ffd4fd1
AD
106232005-06-22 Akim Demaille <akim@epita.fr>
10624
10625 Start a set of simple examples.
10626 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
10627 * examples/calc++/calc++-driver.hh,
10628 * examples/calc++/calc++-parser.yy,
10629 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
10630 * examples/calc++/compile, examples/calc++/test: New.
10631
0925ebb4
PE
106322005-06-09 Paul Eggert <eggert@cs.ucla.edu>
10633
10634 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
10635 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
10636 which stems from the 2005-05-27 patch.
10637
43d3b664
PH
106382005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10639
10640 * data/glr.c: Modify treatment of unused parameters to permit use
10641 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
10642
3062864d
PE
106432005-05-30 Paul Eggert <eggert@cs.ucla.edu>
10644
10645 Fix infringement on user name space reported by Janos Zoltan Szabo.
10646 * data/yacc.c (yyparse): strlen -> yystrlen.
10647
989b5b8e
AD
106482005-05-30 Akim Demaille <akim@epita.fr>
10649
10650 * data/lalr1.cc (_): New.
10651 Translate the various messages.
10652
bedf57f5
PE
106532005-05-27 Paul Eggert <eggert@cs.ucla.edu>
10654
10655 Fix infringement on user name space reported by Bruno Haible.
10656 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
10657 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
10658 the user's name space.
10659 (alloca): Include <stdlib.h> to get it, if it's not built in.
10660 (YYMALLOC, YYFREE): Define only if needed.
10661 (malloc, free): Declare, but only if needed, as this infringes on
10662 the user name space.
10663
4d1801f1
PE
106642005-05-25 Paul Eggert <eggert@cs.ucla.edu>
10665
10666 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
10667 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
10668 with %d format.
10669 * lib/ebitset.c (min, max): Undef before defining.
10670 * lib/vbitset.c (min, max): Likewise.
10671 * lib/subpipe.c (create_subpipe): Save local variables in case
10672 vfork clobbers them.
10673
106742005-05-24 Bruno Haible <bruno@clisp.org>
10675
10676 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
10677 error message syntax used by gcc-4.0.
10678
b94a9e1e
PE
106792005-05-23 Paul Eggert <eggert@cs.ucla.edu>
10680
85ac3861
PE
10681 * README: Mention m4 1.4.3. Remove obsolete advice about
10682 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
10683
b94a9e1e
PE
10684 * bootstrap: Remove workaround for problem I encountered with
10685 gettext 0.14.1; it seems to be fixed now.
10686
51c30d21
PE
106872005-05-22 Paul Eggert <eggert@cs.ucla.edu>
10688
009ce67d
PE
10689 * NEWS: Version 2.0a.
10690
f2a97c62
PE
10691 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
10692 the previous change.
10693
c8775f93
PE
10694 Various maintainer cleanups.
10695 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
10696 conftest*, for benefit of CVS commands run at the same time as
10697 "configure". Add build-aux, since "bootstrap" now creates it and
10698 its subfiles.
10699 * Makefile.cfg (move_if_change): Remove.
10700 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
10701 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
10702 (po_repo, do-po-update, po-update, wget_files, get-targets):
10703 (config.guess-url_prefix, config.sub-url_prefix):
10704 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
10705 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
10706 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
10707 Remove.
10708 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
10709 this is now the recommended name.
10710 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
10711 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
10712 ylwrap. These files now go into build-aux.
10713 * config/move-if-change: Remove.
10714 * config/prev-version.txt: Bump from 1.75 to 2.0.
10715
3ea5f0ec
PE
10716 * bootstrap: Add stdio-safer, unistd-safer modules.
10717 Remove m4/glibc2.m4 (introduced by latest gnulib, but
10718 we don't need it).
10719 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
10720 fopen-safer.c, stdio-safer.h, unistd-safer.h.
10721 * lib/subpipe.c: Include "unistd-safer.h".
10722 (create_subpipe): Make sure all the newly-created
10723 file descriptors are > 2, so that diagnostics don't
10724 get sent down them (which might cause Bison to hang, in theory).
10725 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
10726 * src/files.c (xfopen): Use fopen_safer, not fopen.
10727
51c30d21
PE
10728 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
10729 yesterday's yacc.c fix.
10730
cea1469d
PE
107312005-05-21 Paul Eggert <eggert@cs.ucla.edu>
10732
3ea5f0ec
PE
10733 * data/glr.c, data/lalr1.cc: Update copyright date.
10734
cea1469d
PE
10735 Fix a destructor bug reported by Wolfgang Spraul in
10736 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
10737 * data/yacc.c (yyabortlab): Don't call destructor, and
10738 don't set yychar to EMPTY.
10739 (yyoverflowlab): Don't call destructor.
10740 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
10741 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
10742 since we no longer output the message "discarding lookahead token
10743 end of input ()".
10744
5e6f62f2
PH
107452005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10746
10747 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
10748 fix a small glitch in debugging output.
10749 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
10750 after YY_SYMBOL_PRINT where needed.
10751
10752 (struct yyGLRState): Add some comments.
10753 (struct yySemanticOption): Add some comments.
10754 (union yyGLRStackItem): Add comment.
10755
10756 (yymergeOptionSets): Correct this to properly perform the union,
10757 avoiding infinite reported by Michael Rosien.
10758 Update comment.
10759
10760 * tests/glr-regression.at: Add test for GLR merging error reported
10761 by M. Rosien.
cea1469d 10762
0fb669f9
PE
107632005-05-13 Paul Eggert <eggert@cs.ucla.edu>
10764
10765 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
10766 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
10767 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
10768 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
10769 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
10770 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
10771 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
10772 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
10773 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
10774 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
10775 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
10776 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
10777 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
10778 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
10779 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
10780 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
10781 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
10782 src/derives.h, src/files.c, src/files.h, src/getargs.c,
10783 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
10784 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
10785 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
10786 src/output.h, src/parse-gram.c, src/parse-gram.h,
10787 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
10788 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
10789 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
10790 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
10791 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
10792 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
10793 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
10794 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
10795 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
10796 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
10797 tests/reduce.at, tests/regression.at, tests/sets.at,
10798 tests/synclines.at, tests/testsuite.at, tests/torture.at:
10799 Update FSF postal mail address.
10800
51f4735e
PE
108012005-05-11 Paul Eggert <eggert@cs.ucla.edu>
10802
10803 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
10804 Problem reported by Ralf Menzel.
10805
80ce3401
PE
108062005-05-01 Paul Eggert <eggert@cs.ucla.edu>
10807
10808 * tests/actions.at: Test that stack overflow invokes destructors.
10809 From Marcus Holland-Moritz.
10810 * data/yacc.c (yyerrlab): Move the code that destroys the stack
10811 from here....
10812 (yyreturn): to here. That way, destructors are called properly
10813 even if the stack overflows, or the user calls YYACCEPT or
10814 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
10815 (yyoverflowlab): Destroy the lookahead.
10816
108172005-04-24 Paul Eggert <eggert@cs.ucla.edu>
10818
10819 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
10820
72f000b0
PE
108212005-04-17 Paul Eggert <eggert@cs.ucla.edu>
10822
10823 * NEWS: Bison-generated C parsers no longer quote literal strings
10824 associated with tokens.
10825 * src/output.c (prepare_symbols): Don't escape strings,
10826 since users don't want to see C escapes.
10827 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
10828 in diagnostics.
c19683bb 10829 * tests/input.at (Torturing the Scanner): Likewise.
72f000b0
PE
10830 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
10831
1094323f
PE
108322005-04-16 Paul Eggert <eggert@cs.ucla.edu>
10833
10834 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
10835 the data size is known to be too small and we can't increase it.
10836 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
10837
ca407bdf
PE
108382005-04-15 Paul Eggert <eggert@cs.ucla.edu>
10839
10840 * src/parse-gram.y: Include quotearg.h.
10841 (string_as_id): Quote $1 before using it as a key, since the
10842 lexer no longer quotes it for us.
10843 (string_content): Don't strip quotes, since lexer no longer
10844 quotes it for us.
10845 * src/scan-gram.l: Include quotearg.h.
10846 ("\""): Omit quote.
10847 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
10848 a key, since the rest of the lexer doesn't quote it.
10849 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
10850 * tests/regression.at (Token definitions): Check for backslashes
10851 in token strings.
10852
10853 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
10854 (YYSIZE_T): Define to unsigned long int when using an older compiler.
10855 (yyparse): Revamp code to generate long syntax error message, to
10856 make it easier to translate, and to avoid problems with arithmetic
10857 overflow. Change "virtual memory" to "memory" in diagnostic, since
10858 we don't know whether the memory is virtual.
10859
1ce59070
PE
108602005-04-13 Paul Eggert <eggert@cs.ucla.edu>
10861
10862 * NEWS: Bison-generated C parsers now use the _ macro to
10863 translate strings.
10864 * data/yacc.c (_) [!defined _]: New macro.
10865 All English strings wrapped inside this macro.
10866 * doc/bison.texinfo (Bison Parser): Document _.
10867 * po/POTFILES.in: Include src/parse-gram.c, since it now
10868 includes translateable strings that parse-gram.y doesn't.
10869
a749a695
PE
108702005-04-12 Paul Eggert <eggert@cs.ucla.edu>
10871
10872 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
10873 reverting the 2004-10-11 change to this function.
10874 (symbol_check_alias_consistency): Don't call symbol_type_set
10875 if the type name is already correct.
10876 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
10877
8fb1053b
PE
108782005-03-25 Paul Eggert <eggert@cs.ucla.edu>
10879
10880 * tests/regression.at (Token definitions): Don't use a token named
10881 c, as that generates a "#define c ..." that runs afoul of buggy
10882 stdlib.h that uses the identifier c as a member of struct
10883 drand48_data. Problem reported by Horst Wente.
10884
ff498c4a
PE
108852005-03-21 Paul Eggert <eggert@cs.ucla.edu>
10886
10887 * bootstrap: Change translation URL from
10888 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
10889 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
10890 redirection glitches. Problem reported by twlevo@xs4all.nl.
10891
65211d70
PE
108922005-03-20 Paul Eggert <eggert@cs.ucla.edu>
10893
10894 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
10895 after operands; POSIX says this isn't portable for the c99 command.
10896
9577fb1f
PE
108972005-03-18 Paul Eggert <eggert@cs.ucla.edu>
10898
10899 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
10900 immediately if a data overrun has occurred; this may help us track
10901 down what may be a spurious failure on MacOS.
10902
78b178f7
PE
109032005-03-17 Paul Eggert <eggert@cs.ucla.edu>
10904
a2599d0f
PE
10905 Respond to problems reported by twlevo@xs4all.nl.
10906
10907 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
10908
78b178f7
PE
10909 * src/vcg.h: Comment fix.
10910 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
10911 (G_CMAX): Change to -1 instead of INT_MAX.
10912
10913 * data/yacc.c (yyparse): Omit spaces before #line.
78b178f7 10914
7296e729
PE
109152005-03-15 Paul Eggert <eggert@cs.ucla.edu>
10916
10917 * src/tables.c (state_number_to_vector_number): Put it inside an
10918 "#if 0", since it's not currently used. Problem reported by
10919 Roland McGrath.
10920
05ac60f3
PE
109212005-03-06 Paul Eggert <eggert@cs.ucla.edu>
10922
10923 * src/output.c (escaped_output): Renamed from
10924 escaped_file_name_output, since we now use it for symbol tags as
10925 well. All uses changed.
10926 (symbol_destructors_output, symbol_printers_output):
10927 Escape symbol tags too.
10928 Problem reported by Matyas Forstner in
10929 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
10930
10931 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
10932 not needed.
10933 * src/output.c (user_actions_output, token_definitions_output,
10934 symbol_destructors_output, symbol_printers_output): Likewise.
10935 * src/reader.c (prologue_augment): Likewise.
10936 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
10937
10938 * src/vcg.c (output_edge): Don't quote linestyle arg.
10939 Problem reported by twlevo@xs4all.nl.
10940
7eb453ac
PE
109412005-02-28 Paul Eggert <eggert@cs.ucla.edu>
10942
10943 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
10944 example, reported by Derek M Jones. Also, make the example even
10945 more outrageous, to better illustrate how bad the problem is.
10946
4c04c52a
PE
109472005-02-24 Paul Eggert <eggert@cs.ucla.edu>
10948
10949 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
10950 putsym. Typo reported by Sebastian Piping.
10951
a61e1620
PE
109522005-02-23 Paul Eggert <eggert@cs.ucla.edu>
10953
10954 * doc/bison.texinfo (Language and Grammar): some -> same
10955 (Epilogue): int he -> in the
10956 Typos reported by Sebastian Piping via Justin Pence.
10957
9ec93868
PE
109582005-02-07 Paul Eggert <eggert@cs.ucla.edu>
10959
10960 * tests/glr-regression.at (Improper handling of embedded actions
10961 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
10962 embedded actions and $-N in GLR parsers", work around an Autoconf bug
10963 with dollar signs in test names.
10964 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
10965 for a similar reason.
10966
73ce7e7e
PE
109672005-01-28 Paul Eggert <eggert@cs.ucla.edu>
10968
10969 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
10970 wants to redefine G_VIEW.
10971
2e72b98e
PE
109722005-01-27 Paul Eggert <eggert@cs.ucla.edu>
10973
10974 * src/vcg.c (get_view_str): Remove case for normal_view.
10975 Problem reported by twlevo@xs4all.nl.
10976
e0d634e5
PE
109772005-01-24 Paul Eggert <eggert@cs.ucla.edu>
10978
ccf830a4
PE
10979 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
10980 Problem reported by twlevo@xs4all.nl.
10981
e0d634e5
PE
10982 * doc/bison.texinfo: Change @dircategory from "GNU programming
10983 tools" to "Software development". Requested by Richard Stallman
10984 via Karl Berry.
10985
7bbc8cb0
PE
109862005-01-23 Paul Eggert <eggert@cs.ucla.edu>
10987
10988 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
10989 Problem reported by twlevo@xs4all.nl.
10990
08b770bc
PE
109912005-01-21 Paul Eggert <eggert@cs.ucla.edu>
10992
10993 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
10994 keyword; it's not needed with modern compilers, and it doesn't
10995 affect correctness with older compilers. Suggested by
10996 twlevo@xs4all.nl.
10997
95f22ad2
PE
109982005-01-17 Paul Eggert <eggert@cs.ucla.edu>
10999
11000 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
11001 gcc -Wswitch-default.
11002 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11003 * data/yacc.c (yyparse): Likewise.
11004
d229d15c
PE
110052005-01-12 Paul Eggert <eggert@cs.ucla.edu>
11006
11007 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
11008 already. Let config.h define any nonstandard values.
11009
ecadd90f
PE
110102005-01-10 Paul Eggert <eggert@cs.ucla.edu>
11011
11012 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
11013 for the benefit of slower hosts. Problem reported by
11014 Nelson H. F. Beebe.
11015
213744b5
PE
110162005-01-07 Paul Eggert <eggert@cs.ucla.edu>
11017
11018 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
11019 being defined and not used.
11020 * data/lalr1.cc (yyparse): Likewise.
11021 Use "if (false)" rather than "if (0)".
11022
249d3236
PE
110232005-01-05 Paul Eggert <eggert@cs.ucla.edu>
11024
11025 * TODO: Mention that we should allow NUL bytes in tokens.
11026
987cc1fb
PE
110272005-01-02 Paul Eggert <eggert@cs.ucla.edu>
11028
11029 * src/scan-skel.l (<<EOF>>): Don't close standard output.
11030 Problem reported by Hans Aberg.
11031
08fe02d9
PE
110322005-01-01 Paul Eggert <eggert@cs.ucla.edu>
11033
11034 * src/getargs.c (version): Happy new year; update overall
11035 program copyright date from 2004 to 2005.
11036
11037 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
11038 Problem reported by Hans Aberg.
11039 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
11040 (Output file names.): Add a test for the case when standard output
11041 is closed.
11042
010c0266
PE
110432004-12-26 Paul Eggert <eggert@cs.ucla.edu>
11044
11045 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
11046 to fix an oversight in the Bison 2.0 manual.
11047
da12206a
PE
110482004-12-25 Paul Eggert <eggert@cs.ucla.edu>
11049
11050 * NEWS: Version 2.0. Reformat the existing news items since
11051 1.875, so that related items are grouped together.
3a4734aa 11052 * configure.ac (AC_INIT): Bump version to 2.0.
da12206a
PE
11053 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
11054
c935d934
PE
11055 * tests/torture.at (Exploding the Stack Size with Alloca): Set
11056 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
11057 otherwise, we're not testing alloca. Unfortunately there's no
11058 simple way to consult HAVE_ALLOCA here.
11059
da12206a
PE
11060 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
11061 for yymsg, too.
11062
11063 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
11064 hand. This avoids a warning about comparing int to size_t when
11065 GCC warnings are enabled.
11066
0a2c5137
PE
110672004-12-22 Paul Eggert <eggert@cs.ucla.edu>
11068
d7e14fc0
PE
11069 * NEWS: Bison-generated parsers no longer default to using the
11070 alloca function (when available) to extend the parser stack, due
11071 to widespread problems in unchecked stack-overflow detection.
11072 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
11073 responsibility to set it to a positive value. This lets the user
11074 specify a value that is not a preprocessor constant.
11075 * data/yacc.c (YYMAXDEPTH): Likewise.
11076 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
11077 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
11078 to be a compile-time constant. However, explain the constraints on it.
11079 Also, explain the constraints on YYINITDEPTH.
11080 (Table of Symbols): Explain that alloca is no longer the default.
11081 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
11082 to 1.
11083
0a2c5137
PE
11084 * doc/bison.texinfo (Location Default Action): Mention that n must
11085 be zero when k is zero. Suggested by Frank Heckenbach.
11086
e019c247
AD
110872004-12-22 Akim Demaille <akim@epita.fr>
11088
11089 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
11090 (parser::state_type, parser::semantic_type, parser::location_type):
11091 Private, not public.
11092 (parser::parse): Return ints, not bool.
11093 Returning a bool introduces a problem: 0 corresponds to false, and
11094 it seems weird to return false on success. Returning true changes
11095 the conventions for yyparse.
11096 Alternatively we could return void and send an exception.
11097 There is no clear consensus (yet?).
11098 (state_stack, semantic_stack, location_stack): Rename as...
11099 (state_stack_type, semantic_stack_type, location_stack_type): these.
11100 Private, not public.
11101 * tests/c++.at: New.
11102 * tests/testsuite.at, tests/Makefile.am: Adjust.
11103
72731bb7
AD
111042004-12-21 Akim Demaille <akim@epita.fr>
11105
11106 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
11107
9a0d8bec
AD
111082004-12-21 Akim Demaille <akim@epita.fr>
11109
11110 Don't impose std::string for filenames.
11111
11112 * data/lalr1.cc (b4_filename_type): New.
11113 (position::filename): Use it.
11114 (parser.hh): Move the inclusion of stack.hh and location.hh below
11115 the user code, so that needed headers for the filename type can be
11116 included first.
72731bb7
AD
11117 Forward declare them before the user code.
11118 * tests/Makefile.am (check-local, installcheck-local): Pass
11119 TESTSUITEFLAGS to the TESTSUITE.
9a0d8bec 11120
99880de5
AD
111212004-12-20 Akim Demaille <akim@epita.fr>
11122
11123 Use more STL like names: my_class instead of MyClass.
11124
11125 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
11126 (SemanticStack, SemanticType, StateStack, StateType)
11127 (TokenNumberType, Stack, Slice, Traits, Parser::location)
11128 (Parser::value): Rename as...
11129 (location_stack, location_type, rhs_number_type, semantic_stack)
11130 (semantic_type, state_stack, state_type, token_number_type, stack)
11131 (slice, traits, parser::yylloc, parser::yylval): these.
11132
11133 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
11134
9bec482e
PE
111352004-12-19 Paul Eggert <eggert@cs.ucla.edu>
11136
11137 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
11138 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
11139
f6fbd3da
PE
111402004-12-17 Paul Eggert <eggert@cs.ucla.edu>
11141
11142 Remove uses of 'short int' and 'unsigned short int'. This raises
11143 some arbitrary limits. It uses more memory but nowadays that's
11144 not much of an issue.
11145
11146 This change does not affect the generated parsers; that's a different
11147 task, as some users will want to conserve memory there.
11148
11149 Ideally we should use size_t to represent all object counts, and
11150 something like ptrdiff_t to represent signed differences of object
11151 counts; but that will require more code-cleanup than I have the
11152 time to do right now.
11153
11154 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
11155 Use size_t, not int or short int, to count objects.
11156 * src/closure.c (nritemset, closure): Likewise.
11157 * src/closure.h (nritemset, closure): Likewise.
11158 * src/nullable.c (nullable_compute): Likewise.
11159 * src/print.c (print_core): Likewise.
11160 * src/print_graph.c (print_core): Likewise.
11161 * src/state.c (state_compare, state_hash): Likewise.
11162 * src/state.h (struct state): Likewise.
11163 * src/tables.c (default_goto, goto_actions): Likewise.
11164
11165 * src/gram.h (rule_number, rule): Use int, not short int.
11166 * src/output.c (prepare_rules): Likewise.
11167 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
11168 errs, reductions): Likewise.
11169 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
11170 Likewise.
11171 * src/tables.c (vector_number, tally, action_number,
11172 ACTION_NUMBER_MINIMUM): Likewise.
11173 * src/output.c (muscle_insert_short_int_table): Remove.
11174
efeed023
AD
111752004-12-17 Akim Demaille <akim@epita.fr>
11176
11177 * data/lalr1.cc: Extensive Doxygenation.
11178 (error_): Rename as...
11179 (error): this, since it is visible to the user.
11180 Adjust callers.
11181 (Parser::message): Now an automatic variable from...
11182 (Parser::yyreport_syntax_error_): here.
11183 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
11184 Parser::error.
11185 * tests/input.at: Escape $.
11186
bc82c5a5
PE
111872004-12-16 Paul Eggert <eggert@cs.ucla.edu>
11188
11189 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
11190 Parenthesize rhs to avoid obscure problems with mistakes like
11191 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
11192 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
11193 b4_rhs_location): Likewise.
11194 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
11195 b4_rhs_location): Likewise.
11196
fd19f271
AD
111972004-12-16 Akim Demaille <akim@epita.fr>
11198
11199 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
11200 yacc.c: be sure to stay within yycheck_.
11201 * tests/actions.at: Re-enable C++ tests.
11202
10454ea4
AD
112032004-12-16 Akim Demaille <akim@epita.fr>
11204
11205 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
11206 real.
11207
c5b95ccf
AD
112082004-12-16 Akim Demaille <akim@epita.fr>
11209
11210 Use #define to handle the %name-prefix.
11211
11212 * data/glr.c, data/yacc.c: Comment changes.
11213 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
11214 so that one can refer to yylex in the parser file, and have it
11215 renamed, as is the case with other skeletons.
11216
617a8f12
AD
112172004-12-16 Akim Demaille <akim@epita.fr>
11218
11219 Move lalr1.cc internals into yy*.
11220
11221 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
11222 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
11223 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
11224 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
11225 (empty_, final_, terror_, errcode_, ntokens_)
11226 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
11227 (looka_, ilooka_, error_range_, nerrs_):
11228 Rename as...
11229 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
11230 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
11231 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
11232 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
11233 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
11234 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
11235 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
11236 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
11237 these.
11238
1e547e6e
PE
112392004-12-15 Paul Eggert <eggert@cs.ucla.edu>
11240
11241 Fix some problems reported by twlevo at xs4all.
11242 * src/symtab.c (symbol_new): Report an error if the input grammar
11243 contains too many symbols. This is better than calling abort() later.
11244 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
11245 (struct node, struct graph):
11246 Rename member expand to stretch. All uses changed.
11247 (struct graph): Remove member layoutalgorithm. All uses removed.
11248 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
11249 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
11250 All uses changed.
11251 (N_STRETCH): Rename from N_EXPAND. All uses changed.
11252
735d6bd4
AD
112532004-12-15 Akim Demaille <akim@epita.fr>
11254
11255 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
11256 Add more Doxygen comments.
11257 (symprint_, stack_print_, reduce_print_, destruct_, pop)
11258 (report_syntax_error_, translate_): Rename as...
11259 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
11260 (yypop_, yyreport_syntax_error_, yytranslate_): this.
11261
2e1f5829
AD
112622004-12-15 Akim Demaille <akim@epita.fr>
11263
11264 * data/lalr1.cc (lex_): Rename as...
11265 (yylex_): this.
11266 Move the trace here.
11267 Take the %name-prefix into account.
11268 Reported by Alexandre Duret-Lutz.
11269
a3cb6248
AD
112702004-12-15 Akim Demaille <akim@epita.fr>
11271
11272 Simplify the C++ parser constructor.
11273
11274 * data/lalr1.cc (debug_): Rename as...
11275 (yydebug_): so that the parser's internals are always in the yy*
11276 pseudo namespace.
11277 Adjust uses.
11278 (b4_parse_param_decl): Remove the leading comma as it is now only
11279 called as unique argument list.
11280 (Parser::Parser): Remove the constructor accepting a location and
11281 an initial debugging level.
11282 Remove from the other ctor the argument for the debugging level.
11283 (debug_level_type, debug_level, set_debug_level): New.
11284
11285 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
11286 constructor calls.
11287
07fed891
AD
112882004-12-15 Akim Demaille <akim@epita.fr>
11289
11290 Remove b4_root related material: failure experiment
a3cb6248 11291 (which goal was to allow to derive from a class).
07fed891
AD
11292
11293 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
11294 definitions and uses.
11295
e603eaa5
PE
112962004-12-14 Paul Eggert <eggert@cs.ucla.edu>
11297
11298 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
11299 not 2, since it's not portable to subtract 1 from the start of an
11300 array. The new item 0 is never set or used. All uses changed.
11301
11302 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
11303 the default definition of YYLLOC_DEFAULT. Problem reported
11304 by Frank Heckenbach.
11305
fafb007d
PE
113062004-12-12 Paul Eggert <eggert@cs.ucla.edu>
11307
11308 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
11309 the normal case and one for the error case. Just use the
11310 first one uniformly. Problem reported by Frank Heckenbach.
11311 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
11312 use exactly the same macro in both places.
11313 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
11314 so that the normal-case YYRHSLOC works for the error case too.
11315 All uses changed.
11316 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
11317 (YYLLOC_DEFAULT): Use the same macro as glr.c.
11318 * doc/bison.texinfo (Location Default Action): Don't claim that
11319 we have an array of locations. Use the same macro for both glr
11320 and lalr parsers. Mention YYRHSLOC. Mention what happens when
11321 the index is 0.
11322
48814dcd
PE
113232004-12-10 Paul Eggert <eggert@cs.ucla.edu>
11324
a4e1a53b
PE
11325 * HACKING: Update email addresses to send announcements to.
11326
48814dcd
PE
11327 * configure.ac (AC_INIT): Bump version to 1.875f.
11328
337116ba
PE
113292004-12-10 Paul Eggert <eggert@cs.ucla.edu>
11330
11331 * NEWS: Version 1.875e.
11332 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
11333
11334 * src/scan-skel.l: Include "complain.h", for "fatal".
11335
11336 * src/relation.h (relation_print, relation_digraph):
11337 Relation sizes are of type relation_node, not size_t (this is
11338 merely a doc fix, since the two types are equivalent).
11339 (relation_transpose): Relation sizes are of type relation_node,
11340 not int.
11341 * src/relation.c: Likewise.
11342 (top, infinity): Now of type relation_node, not int.
11343 (traverse, relation_transpose): Use relation_node, not int.
11344
11345 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
11346 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
11347 (yyparse): Remove unused local introduced in 2004-10-25 patch.
11348
11349 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
68b082af 11350 specifying whether the test should be skipped. Use it tp
337116ba 11351 specify that the [%defines %skeleton "lalr1.cc"] tests currently
68b082af 11352 fail on some hosts, and should be skipped.
337116ba 11353
da2a7671
PE
113542004-12-08 Paul Eggert <eggert@cs.ucla.edu>
11355
11356 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
11357 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
11358 unless otherwise specified below.
11359
11360 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
11361 to allocate kernel_base, kernel_items, kernel_size, since
11362 they needn't be initialized to 0.
11363 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
11364 * src/closure.c (new_closure): Likewise, for itemset.
11365 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
11366 * src/lalr.c (set_goto_map): Likewise, for temp_map.
11367 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
11368 (build_relations): Likewise for edge, states1, includes.
11369 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
11370 * src/reader.c (packgram): Likewise, for ritem, rules.
11371 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
11372 * src/relation.c (relation_digraph): Likewise for VERTICES.
11373 (relation_transpose): Likewise for new_R, end_R.
11374 * src/symtab.c (symbols_token_translations_init): Likewise for
11375 token_translations.
11376 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
11377 (token_actions): Likewise for yydefact, actrow, conflrow,
11378 conflict_list.
11379 (save_column): Likewise for froms[symno], tos[symno].
11380 (goto_actions): Likewise for state_count.
11381 (pack_table): Likewise for base, pos, check.
11382 (tables_generate): Likewise for width.
11383
11384 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
11385 for initial core. Just have a separate core, so we needn't worry
11386 about whether kernel_size and kernel_base are initialized.
11387
11388 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
11389 kernel_size, kernel_items): Remove unnecessary initialization.
11390 * src/conflicts.c (conflicts): Likewise.
11391 * src/derives.c (derives): Likewise.
11392 * src/muscle_tablc (muscle_insert): Likewise.
11393 * src/relation.c (relation_digraph): Likewise.
11394 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
11395 conflrow, conflict_table, conflict_list, table, check):
11396 Likewise.
11397
11398 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
11399 This is because all callers pass unsigned int.
11400 * src/closure.h (new_closure): Likewise.
11401
11402 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
11403 (build_relations): Initialize includes[i] in all cases.
11404 * src/reader.c (packgram): Always initialize rules[ruleno].prec
11405 and rules[ruleno].precsym. Initialize members in order.
11406 * src/relation.c (relation_transpose): Always initialize new_R[i]
11407 and end_R[i].
11408 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
11409
11410 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
11411 conflict_list[0] was always 0, but now it isn't initialized.
11412
11413 * src/table.c (table_grow): When conflict_table grew, the grown
11414 area wasn't cleared. Fix this.
11415
11416 * lib/.cvsignore: Add strdup.c, strdup.h.
11417 * m4/.cvsignore: Add strdup.m4.
11418
00baeeac
PE
114192004-12-07 Paul Eggert <eggert@cs.ucla.edu>
11420
11421 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
11422 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
11423 GOTO_NUMBER_MAXIMUM, since we occasionally compute
11424 ngotos + 1 without checking for overflow.
11425 (build_relations): Use END_NODE, not -1, to denote end of edges.
11426 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
11427 build_relations): Use goto_number, not int, for goto numbers.
11428 * src/tables.c (save_column, default_goto): Likewise.
11429
be3d9d42
AD
114302004-11-23 Akim Demaille <akim@epita.fr>
11431
11432 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
11433 of #defining from yystype.
11434 Don't typedef yystype, C++ does not need it.
11435 This lets it possible to forward declare it as union.
11436
78e526d5
PE
114372004-11-23 Paul Eggert <eggert@cs.ucla.edu>
11438
11439 * bootstrap (gnulib_modules): Add extensions.
11440 Problem reported by Jim Meyering.
11441
afbb696d
PE
114422004-11-22 Paul Eggert <eggert@cs.ucla.edu>
11443
11444 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
11445 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
11446 src/system.h, src/tables.c: XFREE -> free, to accommodate
11447 recent change to gnulib xalloc.h.
78e526d5 11448 Problem reported by Jim Meyering.
afbb696d 11449
c1f8f16a
AD
114502004-11-17 Akim Demaille <akim@epita.fr>
11451
11452 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
11453
db7e5eb5 114542004-11-17 Akim Demaille <akim@epita.fr>,
9a1e9989
AD
11455 Alexandre Duret-Lutz <adl@gnu.org>
11456
11457 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
11458 changes.
11459 (YYCDEBUG): Adjust.
11460 Use it instead of cdebug_.
11461 (Parser::debug_stream, Parser::set_debug_stream): New.
11462 (Parser::symprint_): Define cdebug_ for temporary backward
11463 compatibility.
11464 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
11465 debug_stream ().
11466
68e11668
AD
114672004-11-17 Akim Demaille <akim@epita.fr>
11468
11469 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
11470 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
11471 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
11472 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
11473
97cbc73e
PE
114742004-10-27 Paul Eggert <eggert@cs.ucla.edu>
11475
11476 * data/glr.c (yyloc_default): Remove; not used.
11477 Problem reported by Frank Heckenbach.
11478
e342c3be
AD
114792004-10-25 Akim Demaille <akim@epita.fr>
11480
11481 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
11482 Introduce another definition to address simple location arrays.
11483 (yyGLRStack): New member: yyerror_range.
11484 (yyrecoverSyntaxError, yyparse): Update it.
11485 (yyrecoverSyntaxError): Use it when shifting the error token to
11486 have an accurate range, equivalent to the one computed by both
11487 yacc.c and lalr1.cc.
11488 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
11489 that column numbers start at column 0, as per GNU Coding
11490 Standards, the others tests, and the doc.
11491 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
11492 Adjust to the above change (first column is 0).
11493 And adjust the location of the "<error>", now covering the whole
11494 line.
11495
93602feb 114962004-10-22 Akim Demaille <akim@epita.fr>
04098407 11497 and Paul Eggert <eggert@cs.ucla.edu>
93602feb
PE
11498
11499 Remove some arbitrary limits on goto numbers and relations.
11500 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
11501 initial values, since they're never used.
11502 (set_goto_map): ngotos is now unsigned, so test for overflow
11503 by seeing whether it wraps around to zero.
11504 * src/lalr.h (goto_number): Now size_t, not short int.
11505 (GOTO_NUMBER_MAXIMUM): Remove.
11506 * src/relation.c (relation_print, traverse, relation_transpose):
11507 Check for END_NODE rather than looking at sign.
11508 * src/relation.h (END_NODE): New macro.
11509 (relation_node): Now size_t, not short int.
11510
dba08b04
PE
115112004-10-22 Paul Eggert <eggert@cs.ucla.edu>
11512
11513 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
11514 keyword, not an identifier. Problem reported by Baron Schwartz in
11515 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
11516
df09ef2e
AD
115172004-10-11 Akim Demaille <akim@epita.fr>
11518
11519 * src/symtab.c (symbol_check_alias_consistency): Also check
11520 type names, destructors, and printers.
11521 Reported by Alexandre Duret-Lutz.
11522 Recode the handling of associativity and precedence in terms
11523 of symbol_precedence_set.
11524 Accept no redeclaration at all, not even equal to the previous
11525 value.
11526 (redeclaration): New.
11527 Use it to factor redeclaration complaints.
11528 (symbol_make_alias): Don't set the type of the alias, let
11529 symbol_check_alias_consistency do it as for other features.
11530 * src/symtab.h (symbol): Add new member prec_location, and
11531 type_location.
11532 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
11533 * tests/input.at (Incompatible Aliases): New.
11534
146bc99d
PE
115352004-10-09 Paul Eggert <eggert@cs.ucla.edu>
11536
11537 .cvsignore fixes to accommodate gnulib changes,
11538 and the practice of naming build directories "_build".
11539 * .cvsignore: Add "_*". Sort.
11540 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
11541 * m4/.cvsignore: Add "*_gl.m4".
11542
e503aa60
AD
115432004-10-06 Akim Demaille <akim@epita.fr>
11544
11545 * src/parse-gram.y (add_param): Fix the truncation of trailing
11546 spaces.
11547
b4a20338
AD
115482004-10-05 Akim Demaille <akim@epita.fr>
11549
11550 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
11551 whether the reducion was empty or not. This leaves room to
11552 improve the use of YYLLOC_DEFAULT in such a case.
11553 lalr1.cc is still experimental, so changing this is acceptable.
11554 And finally, there are probably not many users who changed the
11555 handling of locations in GLR, so changing is admissible too.
11556
11557 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
11558 empty reduction, set @$ to an empty location ending the previously
11559 stacked symbol.
11560 Adjust uses to make sure the code is triggered on empty
11561 reductions.
11562 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
11563 expected output: empty reductions have empty locations.
11564
f85a5e6f
AD
115652004-09-29 Akim Demaille <akim@epita.fr>
11566
11567 * data/lalr1.cc: Move towards a more standard C++ coding style
11568 for templates: Class < T > -> Class<T>.
11569
b203fc2c
AD
115702004-09-29 Akim Demaille <akim@epita.fr>
11571
11572 * data/lalr1.cc: Reinstall the former ctor, for sake of
11573 compatibility, but warn it will be removed.
11574 Move towards a more standard C++ coding style (i.e., type *var ->
11575 type* var).
11576
5b7e1e73
PE
115772004-09-27 Paul Eggert <eggert@cs.ucla.edu>
11578
3fee967f
PE
11579 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
11580 since it's less likely to work if NULs are involved in the future.
5b7e1e73 11581
0dcca5c2
AD
115822004-09-27 Akim Demaille <akim@epita.fr>
11583
11584 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
11585
6dde1c82
AD
115862004-09-27 Akim Demaille <akim@epita.fr>
11587
11588 * data/lalr1.cc (b4_parse_param_decl_1): New.
b203fc2c 11589 (b4_parse_param_decl): Use it to have different names between attribute
6dde1c82
AD
11590 and argument names.
11591 (b4_cc_constructor_call): Likewise.
11592
b233d555
AD
115932004-09-24 Akim Demaille <akim@epita.fr>
11594
11595 * src/parse-gram.y (add_param): Strip the leading and trailing
11596 blanks from a formal argument declaration.
11597 (YY_LOCATION_PRINT): New.
11598
619404e3
AD
115992004-09-24 Akim Demaille <akim@epita.fr>
11600
11601 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
11602 after the location.
11603
dd8d9022
AD
116042004-09-24 Akim Demaille <akim@epita.fr>
11605
11606 * doc/bison.texinfo (Table of Symbols): Sort.
11607
0092f063
AD
116082004-09-21 Akim Demaille <akim@epita.fr>
11609
11610 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
11611 the useless parentheses.
11612 Suggested by Paul Eggert.
11613
451364ed
AD
116142004-09-20 Akim Demaille <akim@epita.fr>
11615
11616 Let the initial-action act on the look-ahead, and use it for the
11617 "initial push" (corresponding to an hypothetical beginning-of-file).
11618 And let lalr1.cc honor %initial-action.
11619
11620 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
11621 example.
11622 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
11623 (Parser::Parser): Remove the ctor that used to initialize it.
11624 (Parser::parse): Like in the other skeletons, issue the "starting
11625 parse" message before any action.
11626 Honor %initial-action.
11627 Initialize the stacks with the lookahead.
11628 * data/yacc.c: Let $$ and @$ in %initial-action designate the
11629 look-ahead.
11630 Push them in the stacks.
11631 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
11632
18d192f0
AD
116332004-09-20 Akim Demaille <akim@epita.fr>
11634
11635 * doc/bison.texinfo (Initial Action Decl): New.
11636
b8458aa5
AD
116372004-09-20 Akim Demaille <akim@epita.fr>
11638
11639 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
11640 clearer criterion to define it.
11641 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
11642 When reducing on an empty RHS, use the latest stacked location as
11643 location.
11644 yylloc is not always available.
11645 * data/glr.c: Likewise.
11646 Also, honor initial-actions.
11647
3fc16193
AD
116482004-09-20 Akim Demaille <akim@epita.fr>
11649
11650 * data/yacc.c (YY_LOCATION_PRINT): New.
11651 Define when we know YYLTYPE's structure, i.e., when the default
11652 YYLLOC_DEFAULT is used.
11653 * data/c.m4 (b4_yysymprint_generate): Use it.
11654 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
11655 value of the result.
11656 (error_start_): Replace with...
11657 (error_range_): this location array.
11658 This allows to replace code relying on the implementation of
11659 locations by portable code.
11660 * data/yacc.c (yylerrsp): Replace with...
11661 (yyerror_range): this.
11662 Every time a token is popped, update yyerror_range[0], to have an
11663 accurate location for the error token.
11664 * data/glr.c (YY_LOCATION_PRINT): New.
11665 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
11666 deference a pointer.
11667 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
11668 report the location in %printers.
11669
11670 * src/scan-skel.l: Instead of abort, report error messages to ease
11671 understanding skeleton scanning failures.
11672
ecfe33e7
AD
116732004-09-16 Akim Demaille <akim@epita.fr>
11674
11675 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
11676 (iterator, const_iterator): these, to be more in the C++ spirit.
11677 Also, return reverse iterators so that when displaying the stack
11678 we display its bottom first.
11679 (Parser::stack_print_, Parser::reduce_print_): Match the messages
11680 from yacc.c.
11681 We should probably use vector here though.
11682
1576d44d
AD
116832004-09-16 Akim Demaille <akim@epita.fr>
11684
11685 Have more complete shift traces.
11686
11687 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
11688 to report Shifts instead of ad hoc YYDPRINTF invocations,
11689 including for the error token.
11690 * data/lalr1.cc (symprint_): Output the location.
11691 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
11692 output the location within the %printer.
11693 Activate GLR tests, at least to make sure they compile properly.
11694 They still don't pass though.
11695 * tests/calc.at: Adjust expect verbose output, since now "Entering
11696 state..." is on a different line than the "Shifting" message.
11697
9c66f418
AD
116982004-09-08 Akim Demaille <akim@epita.fr>
11699
11700 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
11701 Bison directive from the Bison file to the invocation of this
11702 macro, so that these directives are passed to
11703 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
11704 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
11705 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
11706 the extra Bison directives instead of the whole series.
11707 Change the grammar so that there are recoverable errors, and
11708 unrecoverable errors. Now we can have the parser give up before
11709 consuming the whole input. As a result we now can observe that
11710 the lookahead is freed when needed.
11711 Change the parser source to parse argv[1] instead of a hard coded
11712 string.
11713 Simplify yylex, and give a value and location to EOF.
11714 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
11715 passed directives already coded in the file.
11716 Add some tests to check the location of "error".
11717 For some tests, the C++ parser is correct, and not yacc.c.
11718 For other tests, they provide different, but unsatisfying, values,
11719 so keep the C++ value so that at least one parser is "correct"
11720 according to the test suite.
11721 (Actions after errors): Remove, this is subsumed by the
11722 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
11723
52d5733f
AD
117242004-09-06 Akim Demaille <akim@epita.fr>
11725
11726 * data/lalr1.cc: Adjust the indentation of the labels.
04098407 11727 (Parser::pop): New.
52d5733f
AD
11728 Use it.
11729
a0e68930
AD
117302004-09-06 Akim Demaille <akim@epita.fr>
11731
11732 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
11733 argument, an informative message.
11734 Call YY_SYMBOL_PRINT.
11735 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
11736 * data/lalr1.cc (destruct_): Likewise.
11737 In addition, no longer depend on b4_yysymprint_generate and
11738 b4_yydestruct_generate to generate these functions, do it "by
11739 hand".
11740
e757bb10
AD
117412004-09-03 Akim Demaille <akim@epita.fr>
11742
11743 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
11744 invoked, yydestruct the lookahead.
11745 * tests/calc.at (Calculator $1): Update the expected lengths of
11746 traces: there is an added line for the discarded lookahead.
11747 * doc/bison.texinfo (Destructor Decl): Some rewording.
11748 Define "discarded" symbols.
11749
0fe1f06d
AD
117502004-09-02 Akim Demaille <akim@epita.fr>
11751
11752 * data/lalr1.cc (translate_, destruct_): No reason to be static.
11753
284acc8b
AD
117542004-09-02 Akim Demaille <akim@epita.fr>
11755
11756 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
11757 (YYDSYMPRINTF): Rename as...
11758 (YY_SYMBOL_PRINT): this.
11759 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
11760 two.
11761 Use it instead of direct symprint_ calls.
11762 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
11763 one.
11764
a5eb1ed2
AD
117652004-09-02 Akim Demaille <akim@epita.fr>
11766
b7c72fe1
AD
11767 * data/lalr1.cc (b4_yysymprint_generate): New.
11768 (symprint_): New member function, defined when YYDEBUG.
11769 Use it consistently instead of token/nterm debugging output by
11770 hand.
a5eb1ed2
AD
11771 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
11772 %printer calls to use cdebug_ when using lalr1.cc.
11773
417141dd
AD
117742004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
11775
11776 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
11777 with #ifdef YYDEBUG.
11778
2fa09258
AD
117792004-08-26 Akim Demaille <akim@epita.fr>
11780
11781 * doc/bison.texinfo (Implementing Loops): Rename as...
11782 (Implementing Gotos/Loops): this.
11783
9378b508
PE
117842004-08-13 Paul Eggert <eggert@cs.ucla.edu>
11785
11786 Adjust to latest gnulib.
11787 * bootstrap (gnulib_modules): Add xalloc-die.
11788 Set LC_ALL=C so that file names sort consistently.
11789 Prefer the gnulib copies of gettext.m4, glibc21.m4,
11790 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
11791 uintmax_t.m4, ulonglong.m4.
11792 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
11793 po.m4 since we are now using _gl.m4 instead.
11794
87a8ad5c
PE
117952004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
11796
11797 * src/scan-action.l: Remove. Scanning of semantic actions is
11798 handled in scan-gram.l.
11799
dca81a78
PE
118002004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
11801
11802 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
11803
11804 * src/location.h (struct): The file member is a uniqstr.
11805 (equal_boundaries): Use UNIQSTR_EQ for comparison.
11806
c9cbf7c5
PE
118072004-07-22 Paul Eggert <eggert@cs.ucla.edu>
11808
11809 Fix bug with non-%union parsers that have printers or destructors,
11810 which led to a Bison core dump. Reported by Peter Fales in
11811 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
2fa09258 11812
c9cbf7c5
PE
11813 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
11814 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
11815 not to our own type.
11816 * src/output.c (symbol_destructors_output, symbol_printers_output):
11817 Don't assume %union.
11818 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
11819 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
11820 UNION-FLAG. All callers changed.
11821 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
11822 Use type char, not unsigned int, when declaring an array of char;
11823 this lets us remove a cast.
11824 (Printers and Destructors): Add non-%union test cases.
11825
fa7e68c3
PE
118262004-06-21 Paul Eggert <eggert@cs.ucla.edu>
11827
11828 * doc/bison.texinfo: Minor editorial changes, mostly to the new
11829 GLR writeups. E.g., avoid frenchspacing and the future tense,
11830 change "lookahead" to "look-ahead", and change "wrt" to "with
11831 respect to".
2fa09258 11832
fa7e68c3
PE
118332004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11834
11835 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
11836 New sections, split off from the GLR Parsers section. Put the new
11837 Simple GLR Parser near the start of the GLR section, for clarity.
11838 Rewrite connective text.
11839
99a9344e
PE
118402004-06-21 Frank Heckenbach <frank@g-n-u.de>
11841
11842 * doc/bison.texinfo (Simple GLR Parsers): New section.
11843
8dd162d3
PE
118442004-06-21 Paul Eggert <eggert@cs.ucla.edu>
11845
11846 * NEWS, TODO, doc/bison.texinfo:
11847 Use "look-ahead" instead of "lookahead", to be consistent.
11848 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
11849 while we're fixing "look-ahead".
11850 * src/conflicts.c (shift_set): Renamed from shiftset.
11851 (look_ahead_set): Renamed from lookaheadset.
11852 * src/print.c: Likewise.
11853 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
11854 name for "lookahead".
11855 (report_types, usage): Likewise.
11856 * src/getargs.h (report_look_ahead_tokens): Renamed from
11857 report_lookaheads.
11858 * src/lalr.c (compute_look_ahead_tokens): Renamed from
11859 compute_lookaheads.
11860 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
11861 (look_ahead_tokens_print): Renamed from lookaheads_print.
11862 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
11863 state_rule_lookaheads_print.
11864 * src/state.h: Likewise.
11865 (reductions.look_ahead_tokens): Renamed from lookaheads.
11866 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
11867 AT_DATA_LOOKAHEADS_GRAMMAR.
11868
57a90331
PE
118692004-06-03 Paul Eggert <eggert@cs.ucla.edu>
11870
11871 * README: Update location of patched M4 distribution.
11872
8ed3234a
PE
118732004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
11874
11875 Don't assume the C++ compiler takes the same arguments as the C compiler
11876 (trivial change).
11877 * configure.ac (O0CXXFLAGS): New var.
11878 * tests/atlocal.in (CXXFLAGS): Use it.
11879
07971983
PE
118802004-05-29 Paul Eggert <eggert@cs.ucla.edu>
11881
11882 Fix some "make check" problems with C++ reported by
11883 Albert Chin-A-Young for Tru64 C++ in this thread:
11884 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
11885
11886 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
11887 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11888 Output to a .cc file for C++, not to a .c file.
11889 * tests/calc.at (AT_CHECK_CALC): Likewise.
11890 * tests/regression.at (AT_CHECK_DANCER): Likewise.
11891 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
11892
29058652
PE
118932004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
11894
11895 * tests/calc.at, tests/actions.at: Workaround for SGI
11896 C++ compiler. (trivial change)
11897
62cb8a99
PE
118982004-05-27 Paul Eggert <eggert@cs.ucla.edu>
11899
fd418816
PE
11900 Spent a few hours checking out which prerequisite versions the
11901 current sources actually require. I went all the way back to
11902 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
11903 a seemingly endless set of combinations of versions more recent
11904 than that. The bottom line is that the current sources require
11905 fairly recent versions of the build tools, and it'll be some work
11906 to change this.
11907 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
11908 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
11909 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
11910 Add comments explaining why those particular versions are
11911 currently needed.
2fa09258 11912
62cb8a99
PE
11913 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
11914 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
161a71f3 11915 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
62cb8a99
PE
11916
11917 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
11918 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
11919
caa52c10
PE
119202004-05-26 Paul Eggert <eggert@cs.ucla.edu>
11921
11922 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
11923 0.11.5. Suggested by Bruno Haible.
11924 * bootstrap: Remove gettext version checking.
11925
11926 * doc/bison.texinfo (Decl Summary): Also mention that %union
11927 can depend on prerequisite types. Problem reported by Tim
11928 Van Holder.
11929
4bfd5e4e
PE
119302004-05-25 Paul Eggert <eggert@cs.ucla.edu>
11931
2cef3017
PE
11932 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
11933 * README-alpha: Don't tell people not to package this.
11934
b9c85d5c
PE
11935 * bootstrap: Don't assume $(...) works; use `...` instead.
11936 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
11937 gettext better.
11938
4bfd5e4e
PE
11939 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
11940 put into the -d output file, and mention what to do if YYSTYPE is
11941 defined as a macro.
11942
6a36ff94
PE
119432004-05-24 Paul Eggert <eggert@cs.ucla.edu>
11944
6712933e
PE
11945 Undo change made earlier today: it caused autopoint to not bring
11946 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
11947 autopoint's.
11948
11949 * bootstrap: Check that gettext version matches what's in
11950 configure.ac. Warn users to ignore robots.txt ERROR 404.
11951 * bootstrap: Undo today's earlier change (logged below).
11952 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
b9c85d5c 11953
6a36ff94
PE
11954 The gettext version checking is causing more trouble than it's
11955 curing; remove it. Problem reported by Paul Hilfinger.
11956
11957 * bootstrap: Issue a warning that one can expect a message
11958 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
11959 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
11960
209ea708
PE
119612004-05-23 Paul Eggert <eggert@cs.ucla.edu>
11962
11963 Ensure that the C++ compiler used for testing actually works on a
11964 simple test program; if not, skip the C++-related tests. Problem
11965 reported by Vin Shelton in:
161a71f3 11966 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
209ea708
PE
11967
11968 * m4/cxx.m4: New file.
11969 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
11970 * tests/atlocal.in (BISON_CXX_WORKS): Add.
11971 * tests/local.at (AT_COMPILE_CXX): Use it.
11972
41ca2549
PE
119732004-05-21 Paul Eggert <eggert@cs.ucla.edu>
11974
383e69dc
PE
11975 * data/glr.c (yylloc): Output this macro even if locations are not
11976 being generated, as the GLR parser needs it even in that case.
11977 Problem reported by Troy A. Johnson
11978 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
11979
41ca2549
PE
11980 * configure.ac (AC_INIT): Update to 1.875e.
11981
e476c87d
PE
119822004-05-21 Paul Eggert <eggert@cs.ucla.edu>
11983
11984 * NEWS: Version 1.875d.
11985 * configure.ac (AC_INIT): Likewise.
11986 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
11987
11988 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
11989 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
11990 lalr1.cc runs afoul of the first, and the last two are no longer
11991 supported by GCC 3.4.0.
11992 * README: Mention GNU m4 1.4 or later; mention m4 patches.
11993 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
11994
233a88ad
PE
119952004-05-06 Paul Eggert <eggert@cs.ucla.edu>
11996
11997 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
11998 unsigned int, for compatibility with latest gnulib hash module.
11999 * src/state.c (state_hash, state_hasher): Likewise.
12000 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
12001 * src/uniqstr.c (hash_uniqstr): Likewise.
e476c87d 12002
12ffdd28
PE
120032004-05-03 Paul Eggert <eggert@cs.ucla.edu>
12004
12005 * NEWS: Unescaped newlines are no longer allowed in char & strings.
12006
12007 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
12008 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
12009 character and string literals.
12010 (unexpected_end): New function.
12011 (unexpected_eof): Use it.
12012 (unexpected_newline): New function.
12013 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
12014 actions.
e476c87d 12015
12ffdd28
PE
12016 * NEWS: Document %expect-rr.
12017
12018 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
12019 Fix typo by replacing $1 with $option.
12020 Remove more 'intl'-related files.
9668e2be 12021 Don't DEFUN AM_INTL_SUBDIR twice.
12ffdd28
PE
12022
12023 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
12024 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
12025 strtoul.c.
12026 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
12027 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
12028 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
12029 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
12030 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
12031 * src/.cvsignore: Add *.output.
12032
12033 * src/parse-gram.y: Put copyright notice inside %{ %} so it
12034 gets copied to the output file.
e476c87d 12035
1f65350a
PE
120362004-04-28 Paul Eggert <eggert@twinsun.com>
12037
12038 Get files from the gnulib and po repositories, instead of relying
12039 on them being in our CVS. Upgrade to latest versions of gnulib
12040 and Automake.
12041
12042 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
12043 * bootstrap: Bootstrap from gnulib and po repositories.
12044 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
12045 * README-cvs: Document these changes. Remove version numbers from
12046 mentions of build tools, since they change so often. Mention Flex.
12047
12048 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
12049 (gl_USE_SYSTEM_EXTENSIONS): Add.
12ffdd28
PE
12050 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
12051 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
1f65350a 12052 does this for us.
12ffdd28
PE
12053 (AC_ISC_POSIX): Remove; we no longer support this
12054 ancient OS, as it gets in the way of latest Autoconf & gnulib.
1f65350a
PE
12055 (AC_HEADER_STDC): Remove: we now assume C89 or better.
12056 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
12057 Do not check for C89 headers, except for locale.h which is used
12058 by the Yacc library and must port to K&R hosts.
12059 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
12060 Do not check for C89 functions, except for setlocale which is
12061 used by the Yacc library.
12062 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
12063 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
12064 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
12065 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
12066 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
12067 AM_GNU_GETTEXT): Remove; now done by:
12068 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
12069 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
12070 for us.
12071
12072 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
12073 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
12074 Define to empty, as gnulib.mk will do the rest for us.
12075 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
12076 for us.
12077 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
12078 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
12079
12080 * src/files.c: Include gnulib's xstrndup.h.
12081
12082 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
12083 (REALLOC): Use xnrealloc, for likewise.
12084 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
12085 (strnlen, memrchr): Remove decls; functions no longer used.
12086 Include <stpcpy.h>.
12087
12088 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
12089 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
12090 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
12091 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
12092 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
12093 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
12094 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
12095 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
12096 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
12097 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
12098 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
12099 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
12100 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
12101 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
12102 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
12103 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
12104 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
12105 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
12106 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
12107 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
12108 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
12109 Remove, as these files are now generated automatically
12110 by bootstrap or automake.
12111
12112 * po/ChangeLog: Remove: all but one entry was a duplicate
12113 of this file, and I moved that 2000-11-02 entry here.
12114
12115 * config/.cvsignore: Add Makefile, depcomp, install-sh.
12116 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
12117 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
12118 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
12119 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
12120 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
12121 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
12122 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
12123 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
12124 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
12125 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
12126 xstrndup.h.
12127 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
12128 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
12129 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
12130 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
12131 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
12132 * src/.cvsignore: Remove *_.c.
12133
12134
12135 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
12136 support it. (The latest stable gzip doesn't.)
12137
121382004-04-27 Paul Eggert <eggert@twinsun.com>
12139
12140 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
12141 case, as stos_ is now used by destructors due to the 2004-02-09
12142 change.
12143
12144 Remove more K&R C support.
12145 * lib/libiberty.y (PARAMS): Remove. All uses removed.
12146 * lib/subpipe.c (errno): Remove decl.
12147 Include <stdlib.h> unconditionally.
12148 (EXIT_FAILURE): Remove macro.
12149 * src/complain.c (vfprintf, strerror): Remove.
12150 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
12151 unconditionally.
12152 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
12153 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
12154 (strchr, strspn, memchr): Remove decls.
12155 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
12156 unconditionally. Do not declare perror.
12157 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
12158 unconditionally.
12159
12160 * src/complain.c (_): Remove useless defn, as system.h defines this.
12161
12162 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
12163 with latest obstack.h.
12164 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
12165 to procedure types, as obstack.h now does that for us.
12166 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
12167
12168 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
12169 so that this include file can stand alone.
12170 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
12171 does this now. Include subpipe.h first after config.h, to
12172 test whether it can stand alone.
12173
12174 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
12175 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
12176 unused declaration.
12177
12178 * tests/synclines.at (%union synch line): Put a dummy member in
12179 the union, because empty unions aren't allowed in C. Caught
12180 by GCC 3.4.0.
12181
4f16766c
PE
121822004-04-13 Jim Meyering <jim@meyering.net>
12183
12184 * src/conflicts.c (conflicts_print): Correct format string typo:
12185 use `%%' to produce literal `%'. (trivial change)
12186
779e7ceb
PE
121872004-03-30 Paul Eggert <eggert@twinsun.com>
12188
12189 * src/getargs.c (version): Update copyright year to 2004.
12190
12191 * data/c.m4 (b4_int_type): Use 'short int' rather than
12192 'short', and similarly for 'long', 'unsigned', etc.
12193 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
12194 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
12195 yy_yypstack, yydumpstack): Likewise.
12196 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
12197 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
12198 Likewise.
12199 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
12200 yy_stack_print, yyparse): Likewise.
12201 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
12202 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
12203 * lib/bitset.c (bitset_print): Likewise.
12204 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
12205 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
12206 * lib/bitsetv.c (bitsetv_dump): Likewise.
12207 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
12208 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
12209 Likewise.
12210 * src/LR0.c (allocate_itemsets): Likewise.
12211 * src/gram.h (rule_number, rule): Likewise.
12212 * src/lalr.h (goto_number): Likewise.
12213 * src/nullable.c (nullable_compute): Likewise.
12214 * src/output.c (prepare_rules): Likewise.
12215 * src/relation.c (relation_print, relation_digraph): Likewise.
12216 * src/relation.h (relation_node): Likewise.
12217 * src/state.h (state_number, transitions, errs, reductions,
12218 struct state): Likewise.
12219 * src/symtab.h (symbol_number, struct symbol): Likewise.
12220 * src/tables.c (vector_number, tally, action_number,
12221 default_goto, goto_actions): Likewise.
12222 * tests/existing.at (GNU Cim Grammar): Likewise.
12223 * tests/regression.at (Web2c Actions): Likewise.
12224
12225 * src/output.c (muscle_insert_short_int_table): Renamed from
12226 muscle_insert_short_table. All uses changed.
12227
d6328241
PH
122282004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
12229
12230 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
12231 (declaration): Replace expected_conflicts with expected_sr_conflicts.
12232 Add %expect-rr rule.
4f16766c 12233
d6328241
PH
12234 * src/scan-gram.l: Recognize %expect-rr.
12235
4f16766c 12236 * src/conflicts.h (expected_sr_conflicts): Rename from
d6328241 12237 expected_conflicts.
4f16766c 12238 (expected_rr_conflicts): Declare.
d6328241
PH
12239
12240 * src/conflicts.c (expected_sr_conflicts): Rename from
12241 expected_conflicts.
12242 (expected_rr_conflicts): Define.
12243 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
12244 for GLR parsers.
12245 Use expected_sr_conflicts in place of expected_conflicts.
12246 Warn if expected_rr_conflicts used in non-GLR parser.
4f16766c 12247
d6328241 12248 * doc/bison.texinfo: Add documentation for %expect-rr.
4f16766c 12249
1452af69
PE
122502004-03-08 Paul Eggert <eggert@gnu.org>
12251
12252 Add support for hex token numbers. Suggested by Odd Arild Olsen in
161a71f3 12253 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
1452af69
PE
12254
12255 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
12256 in lalr1.cc.
12257 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
12258 * src/scan-gram.l (scan_integer): New function.
12259 ({int}): Use it.
12260 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
12261 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
12262 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
12263 Say "long int", not "long", for uniformity with GNU style.
12264
006d217d
PE
122652004-02-25 Paul Eggert <eggert@twinsun.com>
12266
12267 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
12268 compilers. This fixes a problem with Intel's C++ compiler being
12269 chatty, reported by Guido Trentalancia in
161a71f3 12270 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
006d217d 12271
c2729758
ADL
122722004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
12273
12274 Support %destructor and merge error locations in lalr1.cc.
12275
12276 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
12277 (Parser::stos_): Define unconditionally.
12278 (Parser::destruct_): New method. Generate its body with
12279 b4_yydestruct_generate.
12280 (Parser::error_start_): New attribute.
12281 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
12282 token which are discarded.
12283 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
12284 error_start_ when erroneous token are discarded.
12285 (Parser::parse) <yyerrlab1>: Compute the location of the error
12286 token so that it covers all the discarded tokens.
12287 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
12288 it can be called with `%skeleton "lalr1.cc"', and do that.
12289
dd0e0635
PE
122902004-02-02 Paul Eggert <eggert@twinsun.com>
12291
12292 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
12293 $(top_srcdir)/lib and ../lib. This fixes a bug reported
12294 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
12295 There's no need to mention top_builddir since Automake does that
12296 for us.
12297 (INCLUDES): Remove, as Automake says it's obsolescent.
12298 Contents migrated into AM_CPPFLAGS as described above.
12299 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
12300
123012004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
12302
12303 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
12304 (yyreportSyntaxError): Handle case where lookahead token is
12305 YYEMPTY.
12306
be16239b
PH
123072004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12308
12309 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
12310 resulting parsers are compilable with C++.
12311
5fa90832
PE
123122003-12-23 Paul Eggert <eggert@twinsun.com>
12313
12314 * config/depcomp, config/install-sh: Sync with Automake 1.8.
12315 * src/output.c (output_skeleton): Rename local var.
12316 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
12317 Bison tokens, as this runs afoul of the 2003-10-07 change that
12318 disallowed NUL bytes in character constants or string literals.
12319
12320 * tests/local.at: Require Autoconf 2.59's Autotest.
12321 * tests/testsuite.at: Don't include local.at, since we now assume
12322 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
12323 including it.
12324 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
12325 multiple inclusion warnings.
dd0e0635 12326
b165c324
AD
123272003-12-02 Akim Demaille <akim@epita.fr>
12328
12329 * doc/bison.texinfo (How Can I Reset the Parser): More about start
12330 conditions.
12331 From Bruno Haible.
12332
26e06a21
ADL
123332003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
12334
12335 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
12336
92ac3705
PE
123372003-10-07 Paul Eggert <eggert@twinsun.com>
12338
6a5ecb38
PE
12339 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
12340 if testsuite doesn't exist.
12341
92ac3705
PE
12342 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
12343 literals, unfortunately.
12344 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
12345 Complain about NUL bytes in character constants or string literals.
12346
91d2c560
PE
123472003-10-05 Paul Eggert <eggert@twinsun.com>
12348
12349 * NEWS: Don't document %no-default-prec, as it's still
12350 too experimental.
12351 * doc/bison.texinfo: Document %no-default-prec only if
12352 the defaultprec flag is set. Normally it's not.
12353
0cc3da3a
PE
123542003-10-04 Paul Eggert <eggert@twinsun.com>
12355
12356 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
12357 non-modifiable lvalue, instead of a modifiable one.
12358 * doc/bison.texinfo (Actions): Document that $$ can
12359 be assigned to. Do not claim that $$ and $N are
12360 array element references: user code should not rely on this.
12361
22fccf95
PE
123622003-10-01 Paul Eggert <eggert@twinsun.com>
12363
12364 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
12365 (grammar_declaration): Use it.
12366 * src/scan-gram.l: New token %no-default-prec.
12367 * tests/conflicts.at: Revamp tests to use %no-default-prec.
12368 * NEWS, doc/bison.texinfo: Document the above.
12369
fc8f2965
AD
123702003-10-01 Akim Demaille <akim@epita.fr>
12371
12372 VCG no longer supports long_straight_phase.
12373
12374 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
12375 * src/print_graph.c (print_graph): Adjust.
12376
39a06c25
PE
123772003-09-30 Frank Heckenbach <frank@g-n-u.de>
12378 and Paul Eggert <eggert@twinsun.com>
12379
12380 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
12381 Table of Symbols): Document %default-prec.
12382 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
12383 (grammar_declaration): Set default_prec on %default-prec.
12384 * src/scan-gram.l (%default-prec): New token.
12385 * src/reader.h (default_prec): New flag.
12386 * src/reader.c: Likewise.
12387 (packgram): Handle it.
12388 * tests/conflicts.at (%default-prec without %prec,
12389 %default-prec with %prec, %default-prec 1): New tests.
fc8f2965 12390
39a06c25
PE
123912003-09-30 Paul Eggert <eggert@twinsun.com>
12392
12393 * tests/testsuite.at: Include local.at, not input.at, fixing
12394 a typo in the 2003-08-25 patch.
12395
62b6aef9
AD
123962003-08-27 Akim Demaille <akim@epita.fr>
12397
12398 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
12399 GCC warnings.
12400
89e1cc61
AD
124012003-08-26 Akim Demaille <akim@epita.fr>
12402
12403 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
12404 "<\#" to avoid magic from Gnus when posting parts of this script.
12405
a08460b0
AD
124062003-08-26 Akim Demaille <akim@epita.fr>
12407
12408 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
12409 (Parser::parse): here.
12410 Adjust: nerrs and errstatus is now replaced by...
12411 (Parser::nerrs_, Parser::errstatus_): New.
12412
603f1cfd
AD
124132003-08-25 Akim Demaille <akim@epita.fr>
12414
12415 * config/announce-gen, Makefile.cfg: New.
12416 * Makefile.am: Adjust.
12417 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
12418 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
12419
cd3684cf
AD
124202003-08-25 Akim Demaille <akim@epita.fr>
12421
12422 When reducing initial empty rules, Bison parser read an initial
12423 location that is not defined. This results in garbage, and that
12424 affects Bison's own parser. Therefore we need (i) to extend Bison
12425 to support a means to initialize this location, and (ii) to use
12426 this CVS Bison to fix CVS Bison's parser.
12427
12428 * src/reader.h, reader.c (epilogue_augment): Remove, replace
12429 with...
12430 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
12431 * src/parse-gram.y: Adjust.
12432 (%initial-action): New.
12433 (%error-verbose): Since we require CVS Bison, there is no reason
12434 not to use it.
12435 * src/scan-gram.l: Adjust.
12436 * src/Makefile.am (YACC): New, to make sure we use our own parser.
12437 * data/yacc.c (yyparse): Use b4_initial_action.
12438
4e03e201
AD
124392003-08-25 Akim Demaille <akim@epita.fr>
12440
12441 * doc/bison.texinfo: Don't promote stdout for error messages.
12442
8c182d05
AD
124432003-08-25 Akim Demaille <akim@epita.fr>
12444
12445 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
12446 From Alexandre Duret-Lutz.
12447
6a60c4cf
PE
124482003-08-25 Akim Demaille <akim@epita.fr>
12449
12450 Version 1.875c.
12451
25f66e1a
AD
124522003-08-25 Akim Demaille <akim@epita.fr>
12453
12454 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
12455 Use them.
12456
5348bfbe
AD
124572003-08-25 Akim Demaille <akim@epita.fr>
12458
12459 * data/lalr1.cc (Parser::reduce_print_): New.
12460 Use it.
12461
47301314
AD
124622003-08-25 Akim Demaille <akim@epita.fr>
12463
12464 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
12465 error recovery loops. This patch is based on
161a71f3 12466 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
47301314
AD
12467 Also, augment the similarity between lalr1.cc and yacc.c.
12468 Note: the locations of error recovery rules are not correct yet.
12469
12470 * data/lalr1.cc: Comment changes to augment the similarity between
12471 lalr1.cc and yacc.c.
12472 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
12473 (yyerrlab1): Remove, but where it used to be (now the bottom part of
12474 yyerrlab), when hitting EOF, pop the whole stack here instead of
12475 merely falling thru the default error handling mechanism.
12476 (yyerrorlab): New label, with the old contents of YYERROR,
12477 plus the following change: pop the stack of rhs corresponding
12478 to the production that invoked YYERROR. That is how Yacc
12479 behaves (required by POSIX).
12480 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
12481 fail.
12482
1f7a61ff
AD
124832003-08-25 Akim Demaille <akim@epita.fr>
12484
12485 Tune local.at so that people can "autom4te -l autotest calc.at -o
12486 calc" for instance, to extract a sub test suite.
12487
12488 * tests/testsuite.at: Move the initialization, Autotest version
12489 requirement, and AT_TESTED invocation into...
12490 * tests/local.at: here.
12491 * tests/testsuite.at: Include it for compatibility with Autoconf
12492 2.57.
12493 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
12494 be ignore.
12495
327b5b56
PE
124962003-08-04 Paul Eggert <eggert@twinsun.com>
12497
12498 Rework code slightly to avoid gcc -Wtraditional warnings.
12499 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
12500 The returned value is now stored in *YY0. All callers changed.
12501 * src/output.c (merge_output): Adjust to the above change.
12502
0051e3ed
PE
125032003-07-26 Paul Eggert <eggert@twinsun.com>
12504
12505 * data/glr.c (YYASSERT): New macro.
12506 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
12507 yyresolveStates, yyprocessOneStack):
12508 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
12509 Derived from a suggestion by Frank Heckenbach.
1f7a61ff 12510
137437c6
PE
125112003-07-25 Paul Eggert <eggert@twinsun.com>
12512
5b620e06
PE
12513 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
12514 for portability to K&R C (after ansi2knr, presumably). See
161a71f3 12515 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5b620e06
PE
12516 by Frank Heckenbach, though I have omitted the structure-initialization
12517 part of his glr-knr.diff patch since I recall that the Portable
12518 C Compiler didn't require that change.
12519
137437c6
PE
12520 Let the user specify how to allocate and free memory.
12521 Derived from a suggestion by Frank Heckenbach in
161a71f3 12522 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
137437c6
PE
12523 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
12524 All uses of free, malloc, realloc changed to use these macros,
12525 and unnecessary casts removed.
12526 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
12527
ddb85ca5
PE
125282003-07-06 Matthias Mann <MatthiasMann@gmx.de>
12529
12530 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
12531 use s.empty() rather than s == "" to test for empty string; see
161a71f3 12532 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
ddb85ca5
PE
12533 (trivial change)
12534
39910e09
AD
125352003-06-25 Akim Demaille <akim@epita.fr>
12536
12537 * config/depcomp, config/install-sh: Update from masters.
12538
0ae99356
PE
125392003-06-20 Paul Eggert <eggert@twinsun.com>
12540
12541 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
12542 and return properly parenthesized result.
12543 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
12544 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
12545 Remove unnecessary parentheses from uses.
12546 * doc/bison.texinfo (Location Default Action): Describe the
12547 conventions for parentheses.
12548
cd05d13c
PE
125492003-06-19 Paul Eggert <eggert@twinsun.com>
12550
81fd08ca
PE
12551 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
12552 yyreportTree): Do not assume that size_t is the same width as int,
12553 when printing sizes. Print sizes using an unsigned format.
12554 Problem reported by Frank Heckenbach in
161a71f3 12555 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
4dcf140b 12556
cd05d13c
PE
12557 Port to Forte Developer 7 C compiler.
12558 * data/glr.c (struct YYLTYPE): If locations are not being used,
12559 declare a single dummy member, as empty structs do not conform
12560 to the C standard.
12561 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
12562 the Forte Developer 7 C compiler complains that end-of-loop
12563 code is not reached.
12564
4dcf140b
PE
125652003-06-17 Paul Eggert <eggert@twinsun.com>
12566
12567 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
12568 avoid warnings from picky compilers about redefinition of PARAMS.
12569
8dd76bee
PE
125702003-06-17 Paul Eggert <eggert@twinsun.com>
12571
12572 Version 1.875b.
12573
12574 * NEWS: Document 1.875b.
12575
12576 * lib/bbitset.h: Do not include config.h; that's the includer's job.
12577 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
12578 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
12579 Don't use 'index' in comments, as it's a builtin fn on some hosts.
12580 * lib/bitset_stats.c: Include gettext.h unconditionally, as
12581 per recent gettext manual's suggestion.
12582 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
12583 Use prototypes, not old-style definitions.
12584 * lib/lbitset.c (lbitset_unused_clear): Likewise.
12585 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
12586 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
12587 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
12588 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
12589 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
12590 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
12591 vbitset_or_and_cmp, vbitset_copy): Likewise.
12592
12593 * lib/libiberty.h: Do not include config.h; that's the includer's job.
12594 Do not include <stdlib.h>.
12595 (PARAMS): Define unconditionally for C89.
12596 (ATTRIBUTE_NORETURN): Remove.
12597 (ATTRIBUTE_UNUSED): Define unconditionally.
12598
12599 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
161a71f3 12600 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
8dd76bee
PE
12601 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
12602 * lib/vbitset.c, lib/vbitset.h: New files.
12603 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
12604 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
12605 from libbitset.
12606
12607 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
12608 `How Can I Reset @code{yyparse}', since texinfo does not allow
12609 arbitrary @ in node names.
12610
12611 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
12612 shouldn't be needed according to the gettext 0.12.1 documentation
12613 but which seem to be needed anyway: codeset.m4 glibc21.m4
f8e8262e 12614 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
8dd76bee 12615 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
f8e8262e 12616 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
cd05d13c 12617
8dd76bee
PE
12618 * lib/.cvsignore: Add stdbool.h.
12619 * m4/.cvsignore: Add nls.m4, po.m4.
12620
12621 Upgrade to CVS gnulib.
12622 * stdbool_.h: File renamed from stdbool.h.in.
12623 * configure.ac (AM_STDBOOL_H): Invoke this instead of
12624 AC_HEADER_STDBOOL.
12625 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
12626 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
12627 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
12628 (MOSTLYCLEANFILES): New var.
12629 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
12630 (stdbool.h): New rule.
12631 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
12632 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
12633 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
12634 m4/quote.m4: Upgrade to today's gnulib.
12635
12636 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
12637 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
12638 the tests right now.
12639 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
12640 yyerror are declared before use; C99 requires this.
12641
25005f6a
PH
126422003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12643
12644 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
12645 first.
12646 (yyrecoverSyntaxError): Correct the logic for setting and testing
12647 yyerrState.
12648 Correct comment on handling EOF.
12649 Allow states with only a default reduction, rather than failing
8dd76bee 12650 (I can't quite reconstruct why these were not allowed before).
25005f6a 12651
137437c6 12652 Fixes to avoid problem that $-N rules in GLR parsers can cause
25005f6a 12653 buffer overruns, corrupting state.
8dd76bee
PE
12654
12655 * src/output.c (prepare_rules): Output max_left_semantic_context
25005f6a
PH
12656 definition.
12657 * src/reader.h (max_left_semantic_context): New variable declaration.
12658 * src/scan-gram.l (max_left_semantic_context): Define.
12659 (handle_action_dollar): Update max_left_semantic_context.
12660 * data/glr.c (YYMAXLEFT): New definition.
12661 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
12662 (yyresolveAction): Ditto.
12663
12664 Fixes to problems with location handling in GLR parsers reported by
12665 Frank Heckenbach (2003/06/05).
12666
12667 * data/glr.c (YYLTYPE): Make trivial if locations not used.
12668 (YYRHSLOC): Add parentheses, and define only if locations used.
12669 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
12670 locations not used.
12671 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
12672 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8dd76bee 12673
25005f6a
PH
12674 * tests/cxx-type.at: Exercise location information; update tests
12675 to differentiate output with and without locations.
8dd76bee 12676 Remove forward declarations of yylex and yyerror---caused errors
25005f6a
PH
12677 because default YYLTYPE not yet defined.
12678 Change semantic actions to compute strings, rather than printing
12679 them directly (to test proper passing of semantics values). Change
12680 output to prefix notation and update test data and expected results.
12681 (yylex): Track locations.
12682 (stmtMerge): Return value rather than printing, and include arguments
12683 in value.
8dd76bee 12684
711f40b7
PE
126852003-06-03 Paul Eggert <eggert@twinsun.com>
12686
12687 Avoid warnings generated by GCC 2.95.4 when Bison is
12688 configured with --enable-gcc-warnings.
12689 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
12690 yy::]b4_parser_class_name[::translate_,
12691 yy::Stack::operator[] (unsigned),
12692 yy::Stack::operator[] (unsigned) const,
12693 yy::Slice::operator[] (unsigned),
12694 yy::Slice::operator[] (unsigned) const):
12695 Rename local vars to avoid warnings.
12696 * tests/glr-regression.at (Improper handling of embedded actions
12697 and $-N in GLR parsers): Remove unused local variable from yylex.
12698 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
12699 (void) as arg when not pure, since we now assume C89 when building
12700 Bison. Pacify GCC by using parameter.
12701
ac695f7d
PE
127022003-06-02 Paul Eggert <eggert@twinsun.com>
12703
12704 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
12705 yy::Location::lines, yy::Location::columns): Rename arguments
12706 to avoid shadowing; this removes a warning generated by GCC 3.3.
12707
26ec81e0
PE
127082003-06-01 Paul Eggert <eggert@twinsun.com>
12709
12710 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
12711 to g++, as GCC 3.3 complains if you do it.
12712 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
12713 everything that WARNING_CFLAGS has, except omit warnings
12714 not suitable for C++.
12715 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
12716 * tests/atlocal.in (CXXFLAGS): New var.
12717 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
12718
12719 Fix a GLR parser bug I reported in February; see
161a71f3 12720 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
26ec81e0
PE
12721 The problem was that GLR parsers did not conform to the C standard,
12722 because actions like { $1 = $2 + $3; } expanded to expressions
12723 that invoked YYFILL in separate subexpressions, and YYFILL assigned
12724 to a local variable. The C standard says that expressions
12725 like (var = f ()) + (var = f ()) have undefined behavior.
12726 Another problem was that GCC sometimes issues warnings that
12727 yyfill and its parameters are unused.
12728
12729 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
12730 as possibly unused.
12731 (yyfill): New function.
12732 (YYFILL): Use it.
12733 (yyuserAction): Change type of yynormal to bool, so that it matches
12734 the new yyfill signature. Mark it as possibly unused.
12735
12736
12737 Follow up on a bug I reported in February, where a Bison-generated
12738 parser can loop. Provide a test case and a fix for yacc.c. I
12739 don't have a fix for lalr1.cc or for glr.c, unfortunately.
12740 The original bug report is in:
161a71f3 12741 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
26ec81e0
PE
12742
12743 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
12744 macro's size was becoming unwieldy.
12745 (yyerrlab): Do not discard an empty lookahead symbol, as this
12746 might destroy garbage.
12747 (yyerrorlab): New label, with the old contents of YYERROR,
12748 plus the following change: pop the stack of rhs corresponding
12749 to the production that invoked YYERROR. That is how Yacc
12750 behaves, and POSIX requires this behavior.
12751 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
12752 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
12753 Define 'alarm' to do nothing if unistd.h is not available.
12754 Add a new rule "exp: '-' error;" to test the above change to
12755 data/yacc.c. Use 'alarm' to abort any test taking longer than
12756 10 seconds, as it's probably looping.
12757 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
12758 Also, the new yacc.c generates two fewer diagnostics for an
12759 existing test.
12760
d0829076
PE
127612003-05-24 Paul Eggert <eggert@twinsun.com>
12762
c6ae27df
PE
12763 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
12764 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
12765 This fixes a problem reported by John Bowman when the Compaq/HP
12766 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
12767 -ansi -Wall -gall).
12768 * data/yacc.c (union yyalloc): Likewise.
12769 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
26ec81e0 12770
d0829076
PE
12771 Switch from 'int' to 'bool' where that makes sense.
12772
12773 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
12774 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
12775 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
12776 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
12777 Return or accept bool, not int. All callers changed.
12778 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
12779 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
12780 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
12781 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
12782 bitset_or_and_cmp_): Likewise.
12783 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
12784 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
12785 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
12786 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
12787 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
12788 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
12789 bitset_stats_or_and_cmp): Likewise.
12790 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
12791 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
12792 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
12793 ebitset_xor_cmp): Likewise.
12794 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
12795 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
12796 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
12797 lbitset_xor_cmp): Likewise.
12798 * lib/bbitset.h: Include <stdbool.h>.
12799 (struct bitset_vtable): The following members now return bool, not
12800 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
12801 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
12802 or_and_cmp).
12803 * src/conflicts.c (count_rr_conflicts): Likewise.
12804 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
12805 All uses changed.
12806 * lib/ebitset.c (ebitset_obstack_init): Likewise.
12807 * lib/lbitset.c (lbitset_obstack_init): Likewise.
12808 * src/getargs.c (debug_flag, defines_flag, locations_flag,
12809 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
12810 graph_flag): Likewise.
12811 * src/getargs.h (debug_flag, defines_flag, locations_flag,
12812 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
12813 graph_flag): Likewise.
12814 * src/output.c (error_verbose): Likewise.
12815 * src/output.h (error_verbose): Likewise.
12816 * src/reader.c (start_flag, typed): Likewise.
12817 * src/reader.h (typed): Likewise.
12818 * src/getargs.c (LOCATIONS_OPTION): New constant.
12819 (long_options, getargs): Use it.
12820 * src/lalr.c (build_relations): Use bool, not int.
12821 * src/nullable.c (nullable_compute): Likewise.
12822 * src/print.c (print_reductions): Likewise.
12823 * src/tables.c (action_row, pack_vector): Likewise.
12824 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
12825 * src/output.c (prepare): Use it.
12826 * src/output.c (token_definitions_output,
12827 symbol_destructors_output, symbol_destructors_output): Use string,
12828 not boolean integer, to keep track of whether to output separator.
12829 * src/print_graph.c (print_core): Likewise.
12830 * src/state.c (state_rule_lookaheads_print): Likewise.
12831
12832 * config/install-sh: Sync from automake 1.7.5.
12833
6b2584b7
PE
128342003-05-14 Paul Eggert <eggert@twinsun.com>
12835
12836 * src/parse-gram.y (rules_or_grammar_declaration): Require a
12837 semicolon after a grammar declaration, in the interest of possible
12838 future changes to the Bison input language.
12839 Do not allow a stray semicolon at the start of the grammar.
12840 (rhses.1): Allow one or more semicolons after any rule, including
12841 just before "|" as required by POSIX.
12842 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
12843 grammar.
12844
caf37a36
ADL
128452003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
12846
12847 %parse-param support for lalr1.cc.
12848
12849 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
12850 b4_cc_constructor_calls, b4_cc_constructor_call,
12851 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
12852 definitions.
12853 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
12854 parse-param arguments.
12855 (yy::b4_parser_class_name): Declare instance variables to
12856 hold parse-param arguments.
12857 * tests/calc.at: s/value/semantic_value/ because value clashes
12858 with a member of yy::b4_parser_class_name. Adjust C++ code
12859 to handle %parse-param. Enable %parse-param test in C++.
12860
3ab37077
PE
128612003-05-12 Paul Eggert <eggert@twinsun.com>
12862
12863 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
12864 English a bit. Fix fclose typo. Change "const char" to "char
12865 const", and use ANSI C rather than K&R for "main". Suggest
12866 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
12867 and suggest yy_switch_to_buffer.
12868
128692003-05-05 Paul Eggert <eggert@twinsun.com>
163ab321
PE
12870
12871 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
12872 C89. This avoids a diagnostic on compilers that define __STDC__
12873 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
161a71f3 12874 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
163ab321 12875
e743727f
PE
128762003-05-03 Paul Eggert <eggert@twinsun.com>
12877
12878 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
12879 Do not overrun array bounds.
12880 This should fix a bug reported today by Olatunji Oluwabukunmi in
161a71f3 12881 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
e743727f 12882
916708d5
AD
128832003-04-29 Akim Demaille <akim@epita.fr>
12884
12885 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
12886 * src/getargs.c, src/getargs.h: here, as bool, not int.
12887 (nondeterministic_parser): New.
12888 * src/parse-gram.y, src/scan-gram.l: Support
12889 %nondeterministic-parser.
12890 * src/output.c (prepare): Use nondeterministic_parser instead
12891 of glr_parser where appropriate.
12892 * src/tables.c (conflict_row, action_row, save_row)
12893 (token_actions, token_actions, pack_vector): Ditto.
12894
a06ea4aa
AD
128952003-04-29 Akim Demaille <akim@epita.fr>
12896
12897 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
12898
211074ca
AD
128992003-04-29 Akim Demaille <akim@epita.fr>
12900
12901 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
12902 with %pure-parser and %locations to exercise the patch from Yakov
12903 Markovitch below.
12904
6175ffe3
PE
129052003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
12906
12907 * data/yacc.c: (b4_lex_param): Corrected for the case where
12908 %lex-param is provided and %pure-parser isn't.
12909
b1e95857
PE
129102003-04-27 Paul Eggert <eggert@twinsun.com>
12911
12912 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
161a71f3 12913 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
b1e95857
PE
12914 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
12915 if it is not defined.
12916 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
12917
acda9df6
PE
129182003-04-26 Paul Eggert <eggert@twinsun.com>
12919
3470c57b
PE
12920 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
12921 Declare to be of type suitable for the ninf value itself, not of
12922 type suitable for the corresponding table, since the latter might
12923 be unsigned but the ninf value might be negative. This fixes a
12924 bug reported by Alexandre Duret-Lutz in
161a71f3 12925 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
3470c57b 12926
acda9df6
PE
12927 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
12928 invokes it. We shouldn't invoke it twice because it will attempt
12929 to put error.o in the archive twice. This fixes a glitch reported
12930 by Martin Mokrejs in
161a71f3 12931 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
acda9df6 12932
b5250f26
PE
129332003-04-21 Paul Eggert <eggert@twinsun.com>
12934
12935 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
12936 to gnulib.
12937
089ac0f1
PE
129382003-04-21 Yakov Markovitch <Markovitch@iso.ru>
12939
12940 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
12941 Fix obvious typo that results in uncompilable GLR parsers
12942 when both %pure-parser and %locations are used. (trivial change)
12943
5ededac6
PE
129442003-04-17 Paul Eggert <eggert@twinsun.com>
12945
1b8f2fff
PE
12946 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
12947 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
12948 Do not insert the expected token via unput, as this runs afoul
12949 of a POSIX-compatibility bug in flex 2.5.31.
12950 All uses changed to BEGIN the parent state,
12951 since we no longer insert the expected token via unput.
12952 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
12953 that is no longer emitted after the above change.
12954
5ededac6
PE
12955 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
12956 the first one. This change is from Paul Hilfinger, and it fixes
12957 regression reported by Werner Lemberg in
161a71f3 12958 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5ededac6
PE
12959
12960 (resolve_sr_conflict): Don't invoke state_errs_set
12961 unless one or more tokens have been explicitly made errors.
12962 Otherwise, the above change causes Bison to abort.
12963
12964 * tests/existing.at (GNU pic Grammar): New test case, taken from
12965 Lemberg's email.
12966
b8be9132
AD
129672003-03-31 Akim Demaille <akim@epita.fr>
12968
12969 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
12970
d423d460
AD
129712003-03-31 Akim Demaille <akim@epita.fr>
12972
12973 * src/output.c (prepare_symbols): Avoid trailing spaces in the
12974 output.
12975
c7e441b4
AD
129762003-03-31 Akim Demaille <akim@epita.fr>
12977
12978 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
12979 From Paul Hilfinger.
12980
231897ad
AD
129812003-03-29 Akim Demaille <akim@epita.fr>
12982
12983 * m4/error.m4: Do not put under dynamic conditions some code which
12984 expansion is under static control.
12985
5b066063
AD
129862003-03-29 Akim Demaille <akim@epita.fr>
12987
12988 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
12989
22a74fec
AD
129902003-03-29 Akim Demaille <akim@epita.fr>
12991
12992 * doc/bison.texinfo (Strings are Destroyed): New.
12993
0eee27e7
PE
129942003-03-13 Paul Eggert <eggert@twinsun.com>
12995
12996 * .cvsignore: Add configure.lineno.
12997 * src/.cvsignore: Add yacc.
12998 * tests/.cvsignore: Add testsuite.log.
12999 * doc/fdl.texi: Sync with latest FSF version.
13000
f61aad93
PE
130012003-03-12 Paul Eggert <eggert@twinsun.com>
13002
537636c7
PE
13003 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
13004 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
13005 cursor, instead of leaving it undefined. This fixes a bug
13006 reported by Tim Van Holder in
161a71f3 13007 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
537636c7
PE
13008 * tests/input.at (Torturing the Scanner): Test the scanner on
13009 an empty input file, which was Tim Van Holder's test case.
13010
13011 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
13012 <sys/resource.h> can be included, include sys/time.h and
13013 sys/times.h first, if available. This works around the SunOS
13014 4.1.4 porting bug reported by Bruce Becker in
161a71f3 13015 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
537636c7
PE
13016
13017 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
13018 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
13019 AC_HEADER_SYS_WAIT.
13020
f61aad93
PE
13021 Merge changes from gnulib. This was prompted because the CVS
13022 snapshot didn't build on Solaris 7 due to strnlen problems.
13023
13024 These changes need to be merged back into gnulib:
13025 * lib/hash.c: Include <stdbool.h> unconditionally.
13026 * m4/onceonly.m4 (m4_quote): New macro.
13027 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
13028 Quote AC_FOREACH variable-expansions properly.
13029 The 2003-01-03 obstack.h change also needs merging.
13030 {end of changes requiring merging}
5b066063 13031
f61aad93
PE
13032 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
13033 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
13034 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
13035 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
13036 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
13037 New files, imported from gnulib.
13038 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
13039 above.
13040
13041 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
13042 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
13043 gnulib sources.
13044
13045 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
13046 Add.
13047 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
13048 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
13049 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
13050 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
13051 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
13052 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
13053 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
13054 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
13055 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
13056 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
13057 (jm_PREREQ_ARGMATCH): Remove.
13058 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
13059 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
13060
13061 * src/system.h: Include <stdbool.h> unconditionally.
13062
13063 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
13064 assuming at least C89 in the bitset code for some time now.
13065
d2ffe116
AD
130662003-03-03 Akim Demaille <akim@epita.fr>
13067
13068 * ro.po: New.
13069
052826fd
AD
130702003-03-02 Akim Demaille <akim@epita.fr>
13071
13072 * doc/bison.texinfo (Table of Symbols): Reactivate the
13073 documentation for %lex-param, and %parse-param.
13074
c4749565
AD
130752003-03-02 Akim Demaille <akim@epita.fr>
13076
13077 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
13078 generate verbose error messages.
13079 Use the number of tokens as an upper bound in yytname, as it
13080 cannot be a non terminal.
13081
d5286af1
AD
130822003-03-02 Akim Demaille <akim@epita.fr>
13083
13084 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
13085 message.
13086
22e304a6
AD
130872003-03-02 Akim Demaille <akim@epita.fr>
13088
22e304a6
AD
13089 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
13090 Use them to exercise yycheck overrun.
13091 Based on Andrew Suffield's grammar.
13092
67a25fed
AD
130932003-03-02 Akim Demaille <akim@epita.fr>
13094
13095 Create tests/local.at for Bison generic testing macros.
13096
13097 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
13098 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
13099 This new file.
13100 * tests/calc.at (AT_CHECK_CALC): Adjust.
13101 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
13102 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
13103 * tests/local.at: here.
13104 (AT_COMPILE_CXX): Tags the tests using it as c++.
13105 Ignore the test if CXX is not functional.
13106
9c2b381f
PE
131072003-03-01 Paul Eggert <eggert@twinsun.com>
13108
13109 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
13110 not loc->end, since loc->end might contain garbage and this leads
13111 to undefined behavior on some platforms.
13112 (id_loc, token_start): Use (IF_LINTed) initial values that do not
13113 depend on *loc, so that the reader doesn't give the the false
13114 impression that *loc is initialized.
13115 (<INITIAL>"%%"): Do not bother setting code_start, since its value
13116 does not survive the return.
13117
0433ba88
AD
131182003-03-01 Akim Demaille <akim@epita.fr>
13119
13120 * src/scan-gram.l (code_start): Always initialize it when entering
13121 into yylex, as SC_EPILOGUE is activated *before* the corresponding
13122 yylex invocation. An alternative would be making it static, but
13123 then it starts with the second %%'s beginning, instead of its end.
13124
b305ea69
PE
131252003-02-28 Paul Eggert <eggert@twinsun.com>
13126
13127 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
13128 around a UnixWare 7.1.1 porting bug reported by John Hughes in
161a71f3 13129 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
b305ea69 13130
c3d25e01
PE
131312003-02-26 Paul Eggert <eggert@twinsun.com>
13132
13133 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
13134 Remove Sequent/Pyramid discussion (nobody uses them any more).
13135 Merge VMS and MS-DOS discussion; these ports may well be dead
13136 but let's keep mentioning them for now. Put <> around email
13137 addresses. Add copyright notice.
13138
c267ffbc
PE
131392003-02-24 Paul Eggert <eggert@twinsun.com>
13140
13141 * data/glr.c (yy_reduce_print): yylineno -> yylno,
13142 to avoid collision with flex use of yylineno.
13143 Problem reported by Bruce Lilly in
161a71f3 13144 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
c267ffbc
PE
13145 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
13146 * data/yacc.c (yy_reduce_print): Likewise.
13147
13148 * config/depcomp: Sync with Automake 1.7.3.
13149
f939fc12
AD
131502003-02-21 Akim Demaille <akim@epita.fr>
13151
13152 * data/lalr1.cc: Use temporary variables instead of casts to
13153 change integer types.
13154 Suggested by Paul Eggert.
13155
95923bd6
AD
131562003-02-21 Akim Demaille <akim@epita.fr>
13157
13158 * doc/bison.texinfo: Use "location" consistently to refer to @n,
13159 to avoid confusions with lalr1.cc's notion of Position.
13160 Suggested by Paul Eggert.
13161
2cdc240e
AD
131622003-02-20 Akim Demaille <akim@epita.fr>
13163
13164 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
13165 before initial_columns.
13166 (location.hh): Use consistent variable names when defining the
13167 operator<<.
13168 Use "last" so that we subtract from Positions, not from unsigned.
13169
5d003116
AD
131702003-02-20 Akim Demaille <akim@epita.fr>
13171
13172 * data/lalr1.cc (position.hh): New subfile, including the extended
13173 and Doxygen'ed documentation of class Position.
13174 (location.hh): Use it.
13175 Document a` la Doxygen.
ba1ecc07 13176 With the help of Benoit Perrot.
5d003116 13177
d02b25f9
AD
131782003-02-20 Akim Demaille <akim@epita.fr>
13179
13180 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
13181 AT_YACC_IF.
13182 Redefine AT_YYERROR_SEES_LOC_IF using it.
13183 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
13184 not defined.
13185 Don't use the location in yy::Parser::error_ and
13186 yy::Parser::print_ when not %locations.
13187 Activate more lalr1.cc tests.
13188
0d1c3a04
AD
131892003-02-19 Akim Demaille <akim@epita.fr>
13190
13191 * data/lalr1.cc: When displaying a line number, be sure to make it
13192 an int.
13193
60a777aa
AD
131942003-02-19 Akim Demaille <akim@epita.fr>
13195
13196 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
13197 Remove, useless.
13198 (YYABORT, YYACCEPT, YYERROR): New.
13199 * tests/calc.at: Renable the lalr1.cc test.
13200
0b86fc41
AD
132012003-02-19 Akim Demaille <akim@epita.fr>
13202
13203 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
13204 error recovery, mixing with/without pops and discarding of the
13205 lookahead.
13206 Exercise YYERROR.
13207 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
13208
da99a5dc
PE
132092003-02-17 Paul Eggert <eggert@twinsun.com>
13210
13211 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
13212 * tests/testsuite.at (AT_COMPILE): Use them.
13213 This fixes the testsuite problem reported by Robert Lentz in
161a71f3 13214 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
da99a5dc 13215
93b8c255
PE
132162003-02-12 Paul Eggert <eggert@twinsun.com>
13217
13218 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
13219 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
161a71f3 13220 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
93b8c255
PE
13221 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
13222 Check for malloc failure, for consistency with yacc.c.
13223 (yytname_size): Remove, for consistency with yacc.c.
13224
13225 The bug still remains in data/lalr1.cc, as I didn't have time
13226 to fix it there.
13227
7548fed2
AD
132282003-02-06 Akim Demaille <akim@epita.fr>
13229
13230 * configure.ac (GXX): Rename as...
13231 (CXX): this, to keep the original Autoconf semantics.
13232 Require 2.57.
13233 * data/lalr1.cc: Fix b4_copyright invocations.
13234 If YYDEBUG is not defined, don't depend upon name_ being defined.
13235 (location.hh): Include string and iostream.
13236 (Position::filename): New member.
13237 (Position::Position ()): New.
13238 (operator<< (Position)): New.
13239 (operator- (Position, int)): New.
13240 (Location::first, Location::last): Rename as...
13241 (Location::begin, Location::end): these, to mock the conventional
13242 iterator names.
13243 (operator<< (Location)): New.
13244 * tests/atlocal.in (CXX): New.
13245 * tests/testsuite.at (AT_COMPILE_CXX): New.
13246 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
13247 locations in a more synthetic way.
13248 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
13249 lalr1.cc is used.
13250 Adjust the C locations to match those from Emacs: first column is
13251 column 0.
13252 Change all the expected results.
13253 Conform to the GCS: simplify the locations when applicable.
13254 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
13255 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
13256 these CPP macros with the m4 macros new defined by...
13257 (AT_CHECK_PUSHDEFS): this, i.e.:
13258 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
d02b25f9 13259 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
7548fed2
AD
13260 New macros.
13261 (AT_CHECK_POPDEFS): Undefine them.
13262 (AT_CHECK_CALC_LALR1_CC): New.
13263 Use it for the first lalr1.cc test.
13264
43a176ef
AD
132652003-02-04 Akim Demaille <akim@epita.fr>
13266
13267 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
13268 Location as is defined.
13269
fc049e9c
AD
132702003-02-04 Akim Demaille <akim@epita.fr>
13271
13272 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
13273 name_ being defined.
13274
a737b216
PE
132752003-02-03 Paul Eggert <eggert@twinsun.com>
13276
13277 * src/gram.h (start_symbol): Remove unused decl.
13278
13279 Use more-consistent naming conventions for local vars.
13280
13281 * src/derives.c (derives_compute): Change type of local var from
13282 int to rule_number.
13283 * src/gram.c (grammar_rules_partial_print): Likewise.
13284 * src/print.c (print_core): Likewise.
13285 * src/reduce.c (reduce_grammar_tables): Likewise.
13286
13287 * src/gram.c (grammar_dump): Change name of item_number *
13288 local var from r to rp.
13289 * src/nullable.c (nullable_compute): Likewise.
13290
13291 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
13292
13293 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
13294 for symbol or symbol_number var.
13295 * src/reader.c (grammar_start_symbol_set): Likewise.
13296 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
13297 Likewise.
13298 * src/state.c (transitions_to): Likewise.
13299 * src/state.h: Likewise.
13300 * src/tables.c (symbol_number_to_vector_number): Likewise.
13301
13302 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
13303 char * var.
13304
13305 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
13306 var.
13307
13308 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
13309 var.
13310
13311 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
13312 Use str, not s, for char * var. Use ch, not c, for character var.
13313 Use size for size var.
13314
13315 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
13316 char * var.
13317 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
13318 uniqstr var.
13319 * src/uniqstr.h: Likewise.
13320
13321 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
13322 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
13323 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
13324 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
13325 param to have same name as that of enum, so that we don't use
13326 "s" to stand for a non-state.
13327
68e93ad5
AD
133282003-02-02 Akim Demaille <akim@epita.fr>
13329
13330 * src/scan-skel.l: Scan more than one inert character per yylex
13331 invocation.
13332
92898986
PE
133332003-02-01 Paul Eggert <eggert@twinsun.com>
13334
13335 Version 1.875a.
13336
1d9d5d71
PE
13337 * po/LINGUAS: Add ms.
13338
0435d061
AD
133392003-01-30 Akim Demaille <akim@epita.fr>
13340
13341 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
13342
6029a57f
PH
133432003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13344
13345 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
13346 of $1.
0435d061
AD
13347
13348 Changes in response to error report by S. Eken: GLR mode does not
6029a57f 13349 handle negative $ indices or $ indices in embedded rules correctly.
161a71f3 13350 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
0435d061 13351
6029a57f
PH
13352 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
13353 (b4_rhs_location): Ditto.
0435d061 13354 (yyfill): New function to copy from stack tree into array
6029a57f 13355 incrementally.
0435d061
AD
13356 (yyuserAction): Modify to allow incremental move of semantic values
13357 to rhs array when in GLR mode.
13358 Define YYFILL to use in user-defined actions to fill semantic array
6029a57f
PH
13359 as needed.
13360 Remove dummy use of yystack, as there is now a guaranteed use.
13361 (yydoAction): Modify to allow incremental move of semantic values
13362 to rhs array when in GLR mode.
13363 (yyresolveAction): Ditto.
13364 (yyglrShiftDefer): Update comment.
0435d061 13365 (yyresolveStates): Use X == NULL for pointers, not !X.
6029a57f
PH
13366 (yyglrReduce): Ditto.
13367 (yydoAction): Ditto
0435d061 13368
6029a57f
PH
13369 * tests/glr-regr1.at: Rename to ...
13370 * tests/glr-regression.at: Add new regression test for the problems
13371 described above (adapted from S. Eken).
13372 Update copyright notice.
13373 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
13374 * tests/Makefile.am: Ditto.
13375
6cee6297
PE
133762003-01-28 Paul Eggert <eggert@twinsun.com>
13377
13378 * data/lalr1.cc: Do not use @output_header_name@ unless
13379 b4_defines_flag is set. This fixes two bugs reported by
13380 Tim Van Holder in
161a71f3
PE
13381 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
13382 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6cee6297 13383
b2a836b5
PE
133842003-01-21 Paul Eggert <eggert@twinsun.com>
13385
13386 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
13387 we don't need to worry about yyerrlab1 being reported as an
13388 "unused label" by non-GCC C compilers. The downside is that if
13389 locations are used then a couple of statements are duplicated each
13390 time YYERROR is invoked, but the upside is that the warnings
13391 should vanish.
13392 (yyerrlab1): Move code to YERROR.
13393 (yyerrlab2): Remove. Change uses back to yyerrlab1.
13394 This reverts some of the 2002-12-27 change.
13395
4196b931
PE
133962003-01-17 Paul Eggert <eggert@twinsun.com>
13397
13398 * src/output.c (symbol_printers_output): Fix typo that led
13399 to core dump. Problem reported by Antonio Rus in
161a71f3 13400 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
4196b931 13401
3ae831b4
AD
134022003-01-13 Akim Demaille <akim@epita.fr>,
13403 Quoc Peyrot <chojin@lrde.epita.fr>,
13404 Robert Anisko <anisko_r@lrde.epita.fr>
13405
13406 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
13407 when the stacks contain one element, as the loop would otherwise
13408 free the last state, and then use the top state (the one we just
13409 popped). This means that the initial elements will not be freed
13410 explicitly, as is the case in yacc.c; it is not a problem, as
13411 these elements have fake values.
13412
e3aa65c5
PE
134132003-01-11 Paul Eggert <eggert@twinsun.com>
13414
13415 * NEWS: %expect-violations are now just warnings, reverting
13416 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
13417 bootstrapping problem reported by Matthias Klose; see
161a71f3 13418 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
e3aa65c5
PE
13419 * src/conflicts.c (conflicts_print): Likewise.
13420 * tests/conflicts.at (%expect not enough, %expect too much,
13421 %expect with reduce conflicts): Likewise.
13422 * doc/bison.texinfo (Expect Decl): Document this. Also mention
13423 that the warning is enabled if the number of conflicts changes
13424 (not necessarily increases).
13425
13426 * src/getargs.c (version): Update copyright year.
13427
f0057011
AD
134282003-01-09 Akim Demaille <akim@epita.fr>
13429
13430 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
13431
1ee6d2a0
PE
134322003-01-08 Paul Eggert <eggert@twinsun.com>
13433
13434 * Makefile.maint (WGETFLAGS):
13435 New macro, containing "-C off" to disable proxy caches.
13436 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
13437 (rel-check): Use $(WGET) instead of wget.
13438
d4fd77c4
PE
134392003-01-06 Paul Eggert <eggert@twinsun.com>
13440
13441 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
13442 the GLR paper of Scott, Johnstone and Hussain.
13443
464c6927
PE
134442003-01-04 Paul Eggert <eggert@twinsun.com>
13445
d600ee67
PE
13446 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
13447 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
13448 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
13449 (EXTRA_LIBRARIES): New var, for liby.a.
13450 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
13451 (EXTRA_SCRIPTS): New var, for yacc.
13452
464c6927
PE
13453 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
13454 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
13455 Problem reported by Nelson H. F. Beebe.
13456
134572003-01-03 Paul Eggert <eggert@twinsun.com>
13458
13459 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
13460 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
13461 when compiling Bison 1.875's `bitset bset = obstack_alloc
13462 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
13463
13464 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
13465 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
13466 grow to a huge size with typical invocation.
d600ee67 13467
464c6927
PE
13468 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
13469 Use the pattern recommended by Autoconf 2.57, except also protect
13470 against double-definition.
13471 * src/system.h: Likewise.
13472 Portability issues reported by Nelson H. F. Beebe.
d600ee67 13473
464c6927
PE
13474 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
13475 All uses changed. Provide a definition in both C and C++.
13476 (yytrue, yyfalse): Define even if defined (__cplusplus).
13477
13478 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
13479 Reported by Nelson H. F. Beebe.
d600ee67 13480
464c6927
PE
13481 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
13482
0f42c7d5
PE
134832003-01-02 Paul Eggert <eggert@twinsun.com>
13484
13485 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
13486 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
13487 Bug reported by Nelson H. F. Beebe.
13488
dc546b0f
PE
134892003-01-01 Paul Eggert <eggert@twinsun.com>
13490
13491 * Version 1.875.
13492
2c09b6a7
PE
134932002-12-30 Paul Eggert <eggert@twinsun.com>
13494
13495 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
13496 Moved here from...
13497 (<INITIAL>","): Here. This causes stray "," to be treated
13498 more uniformly.
13499
dc546b0f 13500 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
2c09b6a7
PE
13501 last brace in braced code when not in Yacc mode, for compatibility
13502 with Bison 1.35. This resurrects the 2001-12-15 patch to
13503 src/reader.c.
13504
13505 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
13506 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
13507
535c0f63
PE
135082002-12-28 Paul Eggert <eggert@twinsun.com>
13509
13510 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
13511 that of SYM's type. This fixes Debian bug 168069, reported by
13512 Thomas Olsson.
d600ee67 13513
963fcc17
PE
135142002-12-28 Paul Eggert <eggert@twinsun.com>
13515
13516 Version 1.75f.
13517
13518 Switch back to the Yacc style of conflict reports, undoing some
13519 of the 2002-07-30 change.
13520 * doc/bison.texinfo (Understanding): Use Yacc style for
13521 conflict reports. Also, use new way of locating rules.
13522 * src/conflicts.c (conflict_report):
13523 Renamed from conflict_report_yacc, removing the old
13524 'conflict_report'. Translate the entire conflict report at once,
13525 so that we don't assume that "," has the same interpretation in
13526 all languages.
13527 (conflicts_output): Use Yacc-style conflict report for each state,
13528 instead of our more-complicated style.
13529 (conflicts_print): Use Yacc-style conflict report, except print
13530 the input file name when not emulating Yacc.
13531 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
13532 Conflicted Reduction, %expect not enough, %expect too much,
13533 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
13534 * tests/existing.at (GNU Cim Grammar): Likewise.
13535 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
13536
13537 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
13538 fatal): Don't invoke fflush; it's not needed and it might even be
13539 harmful for stdout, as stdout might not be open.
13540 * src/reduce.c (reduce_print): Likewise.
13541
b1efe548
PE
135422002-12-27 Paul Eggert <eggert@twinsun.com>
13543
13544 Fix a bug where error locations were not being recorded correctly.
13545 This problem was originally reported by Paul Hilfinger in
161a71f3 13546 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
b1efe548
PE
13547
13548 * data/yacc.c (yyparse): New local var yylerrsp, to record the
13549 top of the location stack's error locations.
13550 (yyerrlab): Set it. When discarding a token, push its location
13551 onto yylerrsp so that we don't lose track of the error's end.
13552 (yyerrlab1): Now is only the target of YYERROR, so that we can
13553 properly record the location of the action that failed. For GCC
13554 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
13555 GCC warning about yyerrlab1 being unused if YYERROR is unused.
13556 (yyerrlab2): New label, which yyerrlab now falls through to.
13557 Compute the error's location by applying YYLLOC_DEFAULT to
13558 the locations of all the symbols that went into the error.
13559 * doc/bison.texinfo (Location Default Action): Mention that
13560 YYLLOC_DEFAULT is also invoked for syntax errors.
13561 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
13562 Error locations include the locations of all the tokens that were
13563 discarded, not just the last token.
d600ee67 13564
983c5c2c
PE
135652002-12-26 Paul Eggert <eggert@twinsun.com>
13566
b1efe548
PE
13567 * src/files.c: Include quote.h.
13568 (compute_output_file_names): Warn if we detect conflicting
13569 outputs to the same file. This should catch the misunderstanding
13570 exemplified by Debian Bug 165349, reported by Bruce Stephens..
13571
13572 * src/conflicts.c (conflicts_print): If the user specifies
13573 "%expect N", report an error if there are any reduce/reduce
13574 conflicts. This is what the manual says should happen.
13575 This fixes Debian bug 130890, reported by Anthony DeRobertis.
13576 * tests/conflicts.at (%expect with reduce conflicts): New test.
13577
983c5c2c
PE
13578 Don't use m4_include on relative file names, as it doesn't work as
13579 desired if there happens to be a file with that name under ".".
d600ee67 13580
983c5c2c
PE
13581 * m4sugar/version.m4: Remove; it was included but it wasn't used.
13582 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
13583 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
13584 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
13585 * src/output.c (output_skeleton): Use full path names when
13586 specifying a file to include; don't rely on include path, as
13587 it's unreliable when the working file contains a file with
13588 that name.
d600ee67 13589
983c5c2c
PE
135902002-12-25 Paul Eggert <eggert@twinsun.com>
13591
13592 Remove obsolete references to bison.simple and bison.hairy.
13593 Problem mentioned by Aubin Mahe in
161a71f3 13594 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
983c5c2c
PE
13595 * data/glr.c: Comment fix.
13596 * doc/bison.1: Remove references. Also, mention "yacc".
13597
13598 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
13599 with -g option.
13600
13601 * src/parse-gram.y (declaration): Use enum "report_states" rather
13602 than its numeric value 1.
13603
13604 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
13605 opening a new one. This fixes Debian bug 165349, reported by
13606 Bruce Stephens.
13607
23f2d9dc
PE
136082002-12-24 Paul Eggert <eggert@twinsun.com>
13609
13610 Version 1.75e.
13611
13612 * Makefile.maint (cvs-update): Don't assume that the shell
13613 supports $(...), as Solaris sh doesn't.
13614
13615 * src/parse-gram.y (lloc_default): Remove test for empty
13616 nonterminals at the end, since it didn't change the result.
13617
136182002-12-24 Paul Eggert <eggert@twinsun.com>
33167b8b
PE
13619
13620 If the user does not define YYSTYPE as a macro, Bison now declares it
13621 using typedef instead of defining it as a macro. POSIX requires this.
13622 For consistency, YYLTYPE is also declared instead of defined.
13623
13624 %union directives can now have a tag before the `{', e.g., the
13625 directive `%union foo {...}' now generates the C code
13626 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
13627 The default union tag is `YYSTYPE', for compatibility with Solaris 9
13628 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
13629 instead of `yyltype'.
13630
13631 `yystype' and `yyltype' are now obsolescent macros instead of being
13632 typedefs or tags; they are no longer documented and will be
13633 withdrawn in a future release.
13634
13635 * data/glr.c (b4_location_type): Remove.
13636 (YYSTYPE): Renamed from yystype.
13637 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
13638 (struct YYLTYPE): Renamed from struct yyltype.
13639 (YYLTYPE): Renamed from yyltype.
13640 (yyltype, yystype): New (and obsolescent) macros,
13641 for backward compatibility.
13642 * data/yacc.c: Likewise.
13643
13644 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
13645 does not specify a union tag. This is for compatibility with
13646 Solaris 9 yacc.
13647
13648 * src/parse-gram.y (add_param): 2nd arg is now char * not char
13649 const *, since it is now modified by stripping surrounding { }.
13650 (current_braced_code): Remove.
13651 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
13652 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
13653 trailing " {...}". Now of type <chars>.
13654 (grammar_declaration): Adjust to bundled tokens.
13655 (code_content): Remove; stripping is now done by add_param.
13656 (print_token_value): Print contents of bundled tokens.
13657 (token_name): New function.
13658
13659 * src/reader.h (braced_code, current_braced_code): Remove.
13660 (token_name): New decl.
13661
13662 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
13663 token_type, not braced_code code_kind. All uses changed.
13664 (SC_PRE_CODE): New state, for scanning after a keyword that
13665 has (or usually has) an immediately-following braced code.
13666 (token_type): New local var, to keep track of which token type
13667 to return when scanning braced code.
13668 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
dc546b0f 13669 <INITIAL>"%parse-param", <INITIAL>"%printer",
33167b8b
PE
13670 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
13671 instead of returning a token type immediately.
13672 (<INITIAL>"{"): Set token type.
13673 (<SC_BRACED_CODE>"}"): Use it.
13674 (handle_action_dollar, handle_action_at): Now returns bool
13675 indicating success. Fail if ! current_rule; this prevents a core dump.
13676 (handle_symbol_code_dollar, handle_symbol_code_at):
13677 Remove; merge body into caller.
13678 (handle_dollar, handle_at): Complain in invalid contexts.
13679
13680 * NEWS, doc/bison.texinfo: Document the above.
13681 * NEWS: Fix years and program names in copyright notice.
13682
879ca4f8
PE
136832002-12-17 Paul Eggert <eggert@twinsun.com>
13684
13685 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
13686 Reporting, Table of Symbols): Omit mentions of %lex-param and
13687 %parse-param from the documentation for now.
13688
1c5fe69d
PE
136892002-12-15 Paul Eggert <eggert@twinsun.com>
13690
13691 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
13692 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
13693 lookahead symbol, and which sets yychar in parser actions) and it
7ea9026a
PE
13694 disagreed with the Bison documentation. Bug
13695 reported by Andrew Walrond.
d600ee67 13696
1c5fe69d
PE
13697 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
13698 as the caller now does that.
13699 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
13700 (YYEMPTY): Parenthesize right hand side, since others use it.
13701 (yyparse): Don't assume that our generated code is the only code
13702 that sets yychar.
13703
d1de5372
PE
137042002-12-13 Paul Eggert <eggert@twinsun.com>
13705
13706 Version 1.75d.
13707
13708 POSIX requires a "yacc" command.
13709 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
13710 (MOSTLYCLEANFILES): Add yacc.
13711 (yacc): New rule.
1c5fe69d 13712 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
d1de5372
PE
13713 as an alias for bison y.
13714
13715 * po/LINGUAS: Add da.
d600ee67 13716
d1de5372
PE
13717 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
13718 problem with latest <getopt.h>.
13719 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
13720
13721 * doc/fdl.texi: Upgrade to 1.2.
13722 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
13723 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
13724 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
13725 gnulib.
13726 * config/install-sh: Sync with autotools.
13727
13728 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
161a71f3 13729 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
d1de5372
PE
13730 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
13731 locations are requested.
13732 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
13733 locations are requested.
13734
d0f3fe23
PE
137352002-12-12 Paul Eggert <eggert@twinsun.com>
13736
13737 Remove unportable casts and storage allocation tricks.
13738 While we're at it, remove almost all casts, since they
13739 usually aren't needed and are a sign of trouble.
13740
13741 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
13742
13743 * src/derives.c (derives_compute): Do not subtract NTOKENS from
13744 the pointer DSET returned by malloc; this isn't portable.
13745 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
13746 Similarly for DERIVES.
13747 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
13748 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
13749 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
13750
13751 * src/derives.c (derives_compute): Do not bother invoking
13752 int_of_rule_number, since rule numbers are integers.
13753
13754 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
13755 rather than XMALLOC (char, N).
13756
13757 * src/files.c (filename_split): Rewrite to avoid cast.
13758
13759 * src/gram.h (symbol_number_as_item_number,
13760 item_number_as_symbol_number, rule_number_as_item_number,
13761 item_number_as_rule_number):
13762 Now inline functions rather than macros, to avoid casts.
13763 * src/state.h (state_number_as_int): Likewise.
13764 * src/tables.c (state_number_to_vector_number,
13765 symbol_number_to_vector_number): Likewise.
13766
13767 * src/gram.h (int_of_rule_number): Remove; no longer used.
13768
13769 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
13770 since the resulting storage is always stored into.
13771
13772 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
13773 where it's needed.
13774
13775 * src/muscle_tab.c (muscle_m4_output):
13776 Now inline. Return bool, not int.
13777 * src/state.c (state_compare): Likewise.
13778 * src/symtab.c (symbol_check_defined,
13779 symbol_check_alias_consistency, symbol_pack, symbol_translation,
13780 hash_compare_symbol, hash_symbol):
13781 Likewise.
13782 * src/uniqstr.c (uniqstr_print): Likewise.
13783 * src/muscle_tab.c (muscle_m4_output_processor):
13784 New function, to avoid casts.
13785 * src/state.c (state_comparator, stage_hasher): Likewise.
13786 * src/symtab.c (symbol_check_defined_processor,
13787 symbol_check_alias_consistency_processor, symbol_pack_processor,
13788 symbol_translation_processor, hash_symbol_comparator,
13789 hash_symbol_hasher): Likewise.
13790 * src/uniqstr.c (uniqstr_print_processor): Likewise.
13791 * src/muscle_tab.c (muscles_m4_output):
13792 Use new functions instead of casting old functions unportably.
13793 * src/state.c (state_hash_new): Likewise.
13794 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
13795 symbols_token_translations_init):
13796 Likewise.
13797 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
13798
13799 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
13800 var instead of casting to long, to avoid casts.
13801 (prepare_states): Use MALLOC rather than alloca, so that we don't
13802 have to worry about alloca.
13803 * src/state.c (state_hash_lookup): Likewise.
13804
13805 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
13806 local var instead of casting to unsigned char, to avoid casts.
13807
13808 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
13809 STATE_ALLOC): Remove.
13810 (transitions_new, errs_new, reductions_new, state_new): Use malloc
13811 rather than calloc, and use offsetof to avoid allocating slightly
13812 too much storage.
13813 (state_new): Initialize all members.
13814
13815 * src/state.c (state_hash): Use unsigned accumulator, not signed.
13816
13817 * src/symtab.c (symbol_free): Remove; unused.
13818 (symbol_get): Remove cast in lhs of assignment.
13819 (symbols_do): Now static. Accept generic arguments, not
13820 hashing-related ones.
13821
13822 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
13823 (symbol_processor): Remove.
13824 (symbols_do): Remove decl; now static.
13825
13826 * src/system.h (alloca): Remove; decl no longer needed.
13827 (<stddef.h>): Include, for offsetof.
13828 (<inttypes.>, <stdint.h>): Include if available.
13829 (uintptr_t): New type, if system lacks it.
13830 (CALLOC, MALLOC, REALLOC): New macros.
13831 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
13832 new macros.
13833
13834 * src/tables.c (table_size): Now int, to pacify GCC.
13835 (table_grow, table_ninf_remap): Use signed table size.
13836 (save_row): Don't bother initializing locals when not needed.
13837 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
13838 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
13839
13840 * src/vcg.h: Correct misspellings.
13841
13842 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
13843
13844
13845 * src/getargs.c (getargs): Don't assume EOF == -1.
13846
26b4a969
PE
138472002-12-09 Paul Eggert <eggert@twinsun.com>
13848
13849 Change identifier spellings to avoid collisions with names
13850 that are reserved by POSIX.
13851
13852 Don't use names ending in _t, since POSIX reserves them.
13853 For consistency, remove _e and _s endings -- they're weren't
13854 needed to remove ambiguity. All uses changed.
13855 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
13856 turn was just renamed from struniq_t.
13857 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
13858 which in turn was just renamed from struniq_processor_t.
13859 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
13860 in turn was renamed from hash_compare_struniq_t.
13861 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
13862 (state_list): Renamed from state_list_t.
13863 * src/assoc.h (assoc): Renamed from assoc_t.
13864 * src/conflicts.c (enum conflict_resolution): Renamed from
13865 enum conflict_resolution_e.
13866 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
13867 (rule_list): Renamed from rule_list_t.
13868 * src/getargs.h (enum trace): Renamed from enum trace_e.
13869 (enum report): Renamed from enum report_e.
13870 * src/gram.h (item_number): Renamed from item_number_t.
13871 (rule_number): Renamed from rule_number_t.
13872 (struct rule_s): Remove the "rule_s" part; not used.
13873 (rule): Renamed from rule_t.
13874 (rule_filter): Renamed from rule_filter_t.
13875 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
13876 (goto_list): Renamed from goto_list_t.
13877 * src/lalr.h (goto_number): Renamed from goto_number_t.
13878 * src/location.h (location): Renamed from location_t.
13879 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
13880 and moved here from:
13881 * src/muscle_tab.h (muscle_entry_t): here.
13882 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
13883 (rule_list): Renamed from rule_list_t.
13884 * src/print_graph.c (static_graph): Renamed from graph.
13885 * src/reader.h (braced_code): Renamed from braced_code_t.
13886 Remove brace_code_e tag.
13887 * src/relation.h (relation_node): Renamed from relation_node_t.
13888 (relation_nodes): Renamed from relation_nodes_t.
13889 (relation): Renamed from relation_t.
13890 * src/state.h (state_number): Renamed from state_number_t.
13891 (struct state): Renamed from struct state_s.
13892 (state): Renamed from state_t.
13893 (transitions): Renamed from transitions_t. Unused (and
13894 misspelled) transtion_s tag removed.
13895 (errs): Renamed from errs_t. Unused errs_s tag removed.
13896 (reductions): Renamed from reductions_t. Unused tag
13897 reductions_s removed.
13898 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
13899 (struct symbol_list): Renamed from struct symbol_list_s.
13900 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
13901 (struct symbol): Renamed from struct symbol_s.
13902 (symbol): Renamed from symbol_t.
13903 * src/tables.c (vector_number): Renamed from vector_number_t.
13904 (action_number): Renamed from action_t.
13905 * src/tables.h (base_number): Renamed from base_t.
13906 * src/vcg.h (enum color): Renamed from enum color_e.
13907 (enum textmode): Renamed from enum textmode_e.
13908 (enum shape): Renamed from enum shape_e.
13909 (struct colorentry): Renamed from struct colorentry_s.
13910 (struct classname): Renamed from struct classname_s.
13911 (struct infoname): Renamed from struct infoname_s.
13912 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
13913 (enum decision): Renamed from enum decision_e.
13914 (enum orientation): Renamed from enum orientation_e.
13915 (enum alignment): Renamed from enum alignment_e.
13916 (enum arrow_mode): Renamed from enum arrow_mode_e.
13917 (enum crossing_type): Renamed from enum crossing_type_e.
13918 (enum view): Renamed from enum view_e.
13919 (struct node): Renamed from struct node_s.
13920 (node): Renamed from node_t.
13921 (enum linestyle): Renamed from enum linestyle_e.
13922 (enum arrowstyle): Renamed from enum arrowstyle_e.
13923 (struct edge): Renamed from struct edge.
13924 (edge): Renamed from edge_t.
13925 (struct graph): Renamed from struct graph_s.
13926 (graph): Renamed from graph_t.
13927 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
13928 Rename value_t -> value.
13929 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
13930 value_t_as_yystype -> value_as_yystype.
13931
13932 Don't include <errno.h> in the mainstream code, since it
13933 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
13934 * lib/get-errno.c, lib/get-errno.h: New files.
13935 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
13936 get-errno.c.
13937 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
13938 * src/output.c (output_skeleton): Likewise.
13939 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
13940 instead of errno.
13941 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
13942 Likewise.
13943 (handle_action_dollar, handle_action_at): Likewise.
13944 * src/system.h: Do not include <errno.h>.
13945 (TAB_EXT): Renamed from EXT_TAB.
13946 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
13947
13948 Avoid str[a-z]*, since <string.h> reserves that name space.
13949 Change all instances of "struniq" in names to "uniqstr", and
13950 likewise for "STRUNIQ" and "UNIQSTR".
13951 * src/uniqstr.c: Renamed from src/struniq.c.
13952 * src/uniqstr.h: Renamed from src/struniq.h.
13953 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
13954 * src/files.c (strsuffix): Remove; unused.
13955 (concat2): Renamed from stringappend. Now static.
13956 * src/files.h (strsuffix, stringappend): Remove; unused.
13957 * src/parse-gram.y (<chars>): Renamed from <string>.
13958 (<uniqstr>): Renamed from <struniq>.
13959 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
13960 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
13961 (struct graph_s.expand): Renamed from struct graph_s.stretch.
13962 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
13963 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
13964 (N_EXPAND): Renamed from N_STRETCH.
13965
13966 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
13967 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
13968 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
13969 Remove; unused.
13970 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
13971 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
13972 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
13973 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
13974 (BASE_MAXIMUM): Renamed from BASE_MAX.
13975 (BASE_MINIMUM): Renamed from BASE_MIN.
13976 (ACTION_MAX): Remove; unused.
13977 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
13978 Unnecessary casts removed from above defines.
13979
13980
13981 Fix misspelling in names.
13982 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
13983 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
13984 G_NODE_ALIGNEMENT.
13985
13986
13987 * lib/timevar.c (timevar_report): Renamed from time_report,
13988 for consistency with other names.
13989 * lib/timevar.h (timevar_report): New decl.
13990 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
13991
13992
13993 Sort include-file uses.
13994
13995 Reorder all include files under src to be in the order "system.h".
13996 then the ../lib include files in angle brackets (alphabetized),
13997 then the . include files in double-quotes (alphabetized). Fix
13998 dependency breakages encountered in this process, as follows:
13999 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
14000 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
14001 * src/state.h: Include "symtab.h".
14002
996b1c7e
PE
140032002-12-08 Paul Eggert <eggert@twinsun.com>
14004
14005 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
14006 since this causes problems when __file__ contains character
14007 sequences like "@" that are treated specially by src/scan-skel.l.
14008 Instead, just use the file's basename. This fixes the bug
14009 reported by Martin Mokrejs in
161a71f3 14010 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
996b1c7e 14011
e19c4e5d
PE
140122002-12-06 Paul Eggert <eggert@twinsun.com>
14013
14014 Add support for rules that do not have trailing semicolons, as
14015 POSIX requires. Improve the quality of locations in Bison
14016 diagnostics.
26b4a969 14017
e19c4e5d
PE
14018 * src/location.c: Include <quotearg.h>.
14019 (empty_location): Now const.
14020 (location_print): New function. Follow the recommendation of the
14021 GNU Coding Standards for locations that span file boundaries.
14022 * src/location.h: Do not include <quotearg.h>; no longer needed.
14023 (boundary): New type.
14024 (location_t): Use it. This allows locations to span file boundaries.
14025 All member uses changed: file -> start.file or end.file (as needed),
14026 first_line -> start.line, first_column -> start.column,
14027 last_line -> end.line, last_column -> end.column.
14028 (equal_boundaries): New function.
14029 (LOCATION_RESET, LOCATION_STEP): Remove.
14030 (LOCATION_PRINT): Remove. All callers changed to use location_print.
14031 (empty_location): Now const.
14032 (location_print): New decl.
14033 * src/parse-gram.y (lloc_default): New function, which handles
14034 empty locations more accurately.
14035 (YYLLOC_DEFAULT): Use it.
14036 (%token COLON): Remove.
14037 (%token ID_COLON): New token.
26b4a969 14038 (rules): Use it.
e19c4e5d
PE
14039 (declarations, rules): Remove trailing semicolon.
14040 (declaration, rules_or_grammar_declaration):
14041 Allow empty (";") declaration.
14042 (symbol_def): Remove empty actions; no longer needed.
14043 (rules_or_grammar_declaration): Remove trailing semicolon.
14044 (semi_colon.opt): Remove.
14045 * src/reader.h: Include location.h.
14046 (scanner_cursor): New decl.
14047 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
14048 rolling our own.
14049 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
14050 of *loc.
14051 (STEP): Remove. No longer needed, now that adjust_location does
14052 the work. All uses removed.
14053 (scanner_cursor): New var.
14054 (adjust_location): Renamed from extend_location. It now sets
14055 *loc and adjusts the scanner cursor. All uses changed.
14056 Don't bother testing for CR.
14057 (handle_syncline): Remove location arg; now updates scanner cursor.
14058 All callers changed.
14059 (unexpected_end_of_file): Now accepts start boundary of token or
14060 comment, not location. All callers changed. Update scanner cursor,
14061 not the location.
14062 (SC_AFTER_IDENTIFIER): New state.
14063 (context_state): Renamed from c_context. All uses changed.
14064 (id_loc, code_start, token_start): New local vars.
14065 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
14066 processing of Yacc white space and equivalents here.
14067 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
14068 instead of returning ID immediately, since we need to search for
14069 a subsequent colon.
14070 (<INITIAL>"'", "\""): Save token_start.
14071 (<INITIAL>"%{", "{", "%%"): Save code_start.
14072 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
14073 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
14074 BEGIN context_state at end, not INITIAL.
14075 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
14076 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
14077 Return correct token start.
14078 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
14079 the start of a character, string or multiline comment is found.
14080 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
14081 Reduction): Adjust reported locations to match the more-precise
14082 results now expected.
14083 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
14084 * tests/reduce.at (Useless Rules, Reduced Automaton,
14085 Underivable Rules): Likewise.
14086 * tests/regression.at (Invalid inputs): No longer `expecting ";"
14087 or "|"' now that so many other tokens are allowed by the new grammar.
14088
14089 * src/complain.h (current_file): Remove duplicate decl;
14090 current_file is now owned by files.h.
14091 * src/complain.c, src/scan-gram.l: Include files.h.
14092
140932002-12-06 Paul Eggert <eggert@twinsun.com>
26b4a969 14094
e19c4e5d
PE
14095 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
14096 promotes to int; it might be unsigned int.
14097 * data/yacc.c (yy_reduce_print): Likewise.
14098
14099 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
14100 be #defined in the prologue, not in the Bison declarations.
14101 This fixes Debian Bug 102878, reported by Shaul Karl.
26b4a969 14102
b64755e3
PE
141032002-12-02 Paul Eggert <eggert@twinsun.com>
14104
14105 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
14106 * lib/strtoul.c: New file, from gnulib.
14107 This fixes a porting bug reported by Peter Klein in
161a71f3 14108 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
b64755e3 14109
6e746484
PE
141102002-11-30 Paul Eggert <eggert@twinsun.com>
14111
b64755e3
PE
14112 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
14113 and put only a forward declaration in the prologue. This is for
14114 consistency with the other scanner helper functions.
14115
6ba55592
PE
14116 Type clashes now generate warnings, not errors, since it
14117 appears that POSIX may allow some grammars with type clashes.
14118 * src/reader.c (grammar_current_rule_check): Warn about
14119 type clashes instead of complaining.
14120 * tests/input.at (Type Clashes): Expect warnings, not complaints.
14121
6e746484
PE
14122 Add Yacc library, since POSIX requires it.
14123 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
14124 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
14125 * lib/main.c, lib/yyerror.c: New files.
14126
14127 gram_error can be static; it need not be extern.
14128 * src/reader.h (gram_error): Remove decl.
14129 * src/parse-gram.y (gram_error): Now static. Add static decl.
14130 (print_token_value): Omit parameter names from forward decl,
14131 for consistency.
14132
88510f9c
PE
141332002-11-29 Paul Eggert <eggert@twinsun.com>
14134
6e746484
PE
14135 * doc/bison.texinfo: Emphasize that yylex and yyerror must
14136 be declared before being used. E.g., one should typically
14137 declare them in the prologue. Use GNU coding style in examples.
14138 Put "const" consistently after the type it modifies. Mention
14139 that C99 supports "inline". Mention that yyerror traditionally
14140 returns "int".
14141
88510f9c
PE
14142 %parse-param and %lex-param now take just one argument, the
14143 declaration; the argument name is deduced from the declaration.
14144
14145 * doc/bison.texinfo (Parser Function, Pure Calling, Error
14146 Reporting, Table of Symbols): Document this.
14147 * src/parse-gram.y (add_param): New function.
14148 (COMMA): Remove.
14149 (declaration): Implement new rule for %parse-param and %lex-param.
14150 * src/scan-gram.l: "," now elicits a warning, rather than being
14151 a token; this is more compatible with byacc.
14152 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
14153
bb92250c
PE
141542002-11-27 Paul Eggert <eggert@twinsun.com>
14155
14156 Rename identifiers to avoid real and potential collisions.
14157
14158 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
14159 to avoid collision with lex macro described by Bruce Lilly in
161a71f3 14160 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
bb92250c
PE
14161 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
14162 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
14163 * src/parse-gram.y (print_token_value): Renamed from yyprint.
14164 All uses changed.
14165 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
14166 The name "yycontrol" violates the name space rules, and this stuff
14167 wasn't being used anyway.
14168 (input): Remove action; this stuff wasn't being used.
14169 (gram_error): Rename local variable yylloc -> loc.
14170 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
14171 (YY_DECL): Don't use "yy" at start of local variables.
14172 All uses changed, e.g., yylloc -> loc.
14173 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
14174 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
14175 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
14176 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
14177
14178 * src/parse-gram.y (gram_error): loc is now const *.
14179 * src/reader.h (gram_error): Likewise.
14180
3af4feb2
PE
141812002-11-24 Paul Eggert <eggert@twinsun.com>
14182
14183 Version 1.75c.
14184
14185 * tests/actions.at (Actions after errors): Use an output format
14186 more similar to that of the Printers and Destructors test.
14187 Test the position of the ';' token too.
14188 (Printers and Destructors): Likewise.
14189 (Printers and Destructors: %glr-parser): Remove for now, to avoid
14190 unnecessarily alarming people when the test fails.
14191
14192 * data/yacc.c (yyerrlab1): Move this label down, so that the
14193 parser does not discard the lookahead token if the user code
14194 invokes YYERROR. This change is required for POSIX conformance.
14195
14196 * lib/error.c: Sync with gnulib.
14197
141982002-11-22 Paul Eggert <eggert@twinsun.com>
14199
14200 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
14201 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
14202 * lib/xmalloc.c: Likewise.
26b4a969 14203
58004308
PE
142042002-11-20 Paul Eggert <eggert@twinsun.com>
14205
14206 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
14207
142082002-11-20 Paul Eggert <eggert@twinsun.com>
26b4a969 14209
58004308
PE
14210 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
14211 should use `if (! x) abort ();' rather than `assert (x);', and
14212 anyway it's one less thing to worry about configuring.
14213
14214 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
14215 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
14216 and replace all instances of assert with abort.
14217 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
14218 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
14219
14220 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
14221 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
14222 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
14223 hash_find_entry, hash_rehash, hash_insert): Likewise.
14224 * src/conflicts.c (resolve_sr_conflict): Likewise.
14225 * src/lalr.c (set_goto_map, map_goto): Likewise.
14226 * src/nullable.c (nullable_compute): Likewise.
14227 * src/output.c (prepare_rules, token_definitions_output): Likewise.
14228 * src/reader.c (packgram, reader): Likewise.
14229 * src/state.c (state_new, state_free, state_transitions_set,
14230 state_reduction_find): Likewise.
14231 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
14232 symbol_pack): Likewise.
14233 * src/tables.c (conflict_row, pack_vector): Likewise.
14234 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
14235 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
14236 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
14237 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
14238
14239 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
14240 (ARGMATCH_CONSTRAINT): New macro.
14241 (ARGMATCH_ASSERT): Use it.
14242
14243 * src/system.h (verify): New macro.
14244 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
14245 rather than assert.
14246 * src/tables.c (tables_generate): Likewise.
14247
14248 * src/struniq.c (struniq_assert): Now returns void, and aborts
14249 if the assertion is false.
14250 (struniq_assert_p): Remove.
14251 * src/struniq.h: Likewise.
14252
76ae8198
PE
142532002-11-18 Paul Eggert <eggert@twinsun.com>
14254
14255 * data/glr.c (yygetLRActions): Replace `yyindex' with
14256 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
14257 This fixes the regression with Sun ONE Studio 7 cc that I reported in
161a71f3 14258 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
76ae8198 14259
d3c4e709
AD
142602002-11-18 Akim Demaille <akim@epita.fr>
14261
14262 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
14263 space.
14264 From Tim Van Holder.
14265
8d8a7238
PE
142662002-11-17 Paul Eggert <eggert@twinsun.com>
14267
14268 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
14269 to "SyntaxError" for consistency with my 2002-11-15 change.
14270
14271 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
14272 not define to {}, since this breaks the common use of `YYDPRINTF
14273 ((...));' if a single statement is desired (e.g. before `else').
14274 Work around GCC warnings by surrounding corresponding calls with
14275 {} if needed.
14276 (yyhasResolvedValue): Remove unused function.
14277 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
14278 loop body.
14279 (yyreportSyntaxError): Renamed from yyreportParseError.
14280 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
14281 All uses changed.
14282 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
14283 extern when possible. Remove unused initializations.
14284
b0937b22
AD
142852002-11-16 Akim Demaille <akim@epita.fr>
14286
14287 Augment the similarity between GLR and LALR traces.
14288
14289 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
14290 (YY_REDUCE_PRINT): New.
14291 (yyparse): Use them.
14292 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
14293 YYDPRINT here.
14294 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
14295 state reached after the reduction/recovery, since...
14296 (yyparse, yyprocessOneStack): Report the state we are entering in.
14297
c5e3e510
AD
142982002-11-16 Akim Demaille <akim@epita.fr>
14299
14300 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
14301 Add support for --trace=skeleton.
14302 * src/scan-skel.l: %option debug.
14303 Scan strings of non-@ or \n instead of character by character.
14304 (scan_skel): Handle trace_skeleton.
14305 (QPUTS): New.
14306 (@output_parser_name@, @output_header_name@): ``Restore'' their
14307 support (used to be M4 macros).
14308 * data/yacc.c: Quote larger chunks, a la glr.c.
14309 * data/lalr1.cc: Likewise.
14310 The header guards are no longer available, so use some other
14311 string than `YYLSP_NEEDED'.
14312
4c6cc1db
AD
143132002-11-16 Akim Demaille <akim@epita.fr>
14314
14315 Make the ``Printers and Destructors'' test more verbose, taking
14316 `yacc.c''s behavior as (possibly wrong) reference.
14317
14318 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
14319 instead of fprint on stdout.
14320 Set and report the last_line of the symbols.
14321 Consistently display values and locations.
14322
6d9e8019
PE
143232002-11-16 Paul Eggert <eggert@twinsun.com>
14324
14325 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
14326
6e649e65
PE
143272002-11-15 Paul Eggert <eggert@twinsun.com>
14328
b25d88f6
PE
14329 * tests/actions.at (Actions after errors): New test case.
14330
6e649e65
PE
14331 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
14332 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
14333 tests/action.at, tests/calc.at, tests/conflicts.at,
14334 tests/cxx-type.at, tests/regression.at:
14335 "parse error" -> "syntax error" for POSIX compatibility.
14336 "parsing stack overflow..." -> "parser stack overflow" so
14337 that code matches Bison documentation.
14338
0f39aab9
AD
143392002-11-15 Akim Demaille <akim@epita.fr>
14340
14341 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
14342 take two BRACED_CODE, not two string_content.
14343 Free the scanner's obstack when we are done.
14344 (code_content): New.
14345 * tests/calc.at: Adjust.
14346 * doc/bison.texinfo: Adjust.
14347 Also, make sure to include the `,' for these declarations.
14348
761c1926
AD
143492002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
14350
14351 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
14352 definition; avoids potential autoreconf problems.
14353
b0f98b10
AD
143542002-11-15 Akim Demaille <akim@epita.fr>
14355
14356 Always check the value returned by yyparse.
14357
14358 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
14359 returned by yyparse.
14360 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
14361 Adjust calls.
14362 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
14363 returned by yyparse.
14364
970785f1
PH
143652002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14366
14367 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
14368 on input.at test.
14369
8fcc7db1
PE
143702002-11-14 Paul Eggert <eggert@twinsun.com>
14371
7ec1b48e
PE
14372 * src/output.c (output_skeleton): Call xfopen instead of
14373 duplicating xfopen's body.
14374
cfff7583 14375 Fix bugs reported by Nelson H. F. Beebe in
161a71f3 14376 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
cfff7583 14377
8fcc7db1
PE
14378 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
14379 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
14380 Group compiler. Instead, use "$CC -E bar.c". Include the .h
14381 file twice in the grammar, as an extra check.
14382
14383 * tests/input.at (Torturing the Scanner): Surround the
14384 backslash-newline tests with "#if 0", to make it less likely that
14385 we'll run into compiler bugs. Bring back solitary \ inside
14386 comment, but add a closing comment to work around HP C bug. Don't
e3aa65c5 14387 test backslash-newline in C character constant.
8fcc7db1 14388
4e8d992c
AD
143892002-11-14 Akim Demaille <akim@epita.fr>
14390
14391 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
14392 status of the compiler.
f32b346d 14393 Calling `exit 1' is no longer needed.
4e8d992c
AD
14394 Reported by Nelson H. F. Beebe.
14395
9501dc6e
AD
143962002-11-14 Akim Demaille <akim@epita.fr>
14397
14398 * tests/atlocal.in (CPPFLAGS): We have config.h.
14399 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
14400 New.
14401 * tests/actions.at, tests/calc.at, tests/conflicts.at,
14402 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
14403 * tests/regression.at, tests/torture.at: Use them for all the
14404 grammars that are to be compiled.
14405 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
14406 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
14407 * doc/bison.texinfo (GLR Parsers): Document `inline'.
14408
18b519c0
AD
144092002-11-14 Akim Demaille <akim@epita.fr>
14410
14411 * doc/bison.texinfo: Various formatting changes (alignments in
14412 samples, additional @group/@end group, GCS in samples.
14413 Use @deffn instead of simple @table to define the directives,
14414 macros, variables etc.
14415
9a86cdb9
PE
144162002-11-13 Paul Eggert <eggert@twinsun.com>
14417
daa33def 14418 Fix some bugs reported by Albert Chin-A-Young in
161a71f3 14419 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
18b519c0 14420
daa33def 14421 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8fcc7db1 14422 -o c"; the HP C compiler chatters during compilation.
daa33def
PE
14423 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
14424 * tests/headers.at (export YYLTYPE): Likewise.
14425
14426 * tests/input.at (Torturing the Scanner): Remove lines containing
8fcc7db1 14427 solitary backslashes, as they tickle a bug in the HP C compiler.
daa33def 14428
9a86cdb9
PE
14429 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
14430 comments, since they're not portable. Use GNU coding style.
14431
9c1e26bd
AD
144322002-11-13 Akim Demaille <akim@epita.fr>
14433
14434 * data/yacc.c: Leave bigger chunks of quoted text.
14435 (YYDSYMPRINTF): New.
14436 Use it to report symbol activities.
14437 * data/glr.c (YYDSYMPRINTF): New.
14438 Use it.
14439
87f721cc
PE
144402002-11-12 Paul Eggert <eggert@twinsun.com>
14441
14442 Version 1.75b.
14443
14444 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
14445 (yyglrReduce): Return yyok, not 0.
14446 This should avoid the enumerated-type warnings reported
464c6927 14447 by Nelson H. F. Beebe in
161a71f3 14448 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
87f721cc
PE
14449
14450 * lib/bbitset.h (BITSET_INLINE): Remove.
14451 * lib/bitset.h [! BITSET_INLINE]: Remove.
14452 (bitset_set, bitset_reset, bitset_test): Rename local vars
14453 to avoid shadowing warnings by GCC.
14454
14455 * data/glr.c (inline): Remove #define. It's the user's
14456 responsibility to #define it away, just like 'const'.
464c6927 14457 This fixes one of the bugs reported by Nelson H. F. Beebe in
161a71f3 14458 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
18b519c0 14459
87f721cc
PE
14460 * Makefile.maint (po-check): Scan .l and .y files instead of the
14461 .c and the .h files that they generate. This fixes the bug
14462 reported by Tim Van Holder in:
161a71f3 14463 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
87f721cc
PE
14464 Look for N_ as well as for _. Try to avoid matching #define for
14465 N_ and _.
14466 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
14467 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
14468 * src/scan-gram.l: Revamp regular expressions so that " and '
14469 do not confuse xgettext.
14470
14471 * src/struniq.h (struniq_new): Do not declare the return type
14472 to be 'const'; this violates the C standard.
14473 * src/struniq.c (struniq_new): Likewise.
14474
be14ade5
AD
144752002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
14476
14477 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
14478 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
14479 linker.
14480
05291fbc
AD
144812002-11-12 Akim Demaille <akim@epita.fr>
14482
14483 * Makefile.maint: Sync with Autoconf:
14484 (local_updates): New.
14485
1f5fd52e
AD
144862002-11-12 Akim Demaille <akim@epita.fr>
14487
14488 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
14489
283f1e64
AD
144902002-11-12 Akim Demaille <akim@epita.fr>
14491
14492 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
14493 locations.
14494
886b69d1
AD
144952002-11-12 Akim Demaille <akim@epita.fr>
14496
14497 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
14498 not yyvalue.
14499
3df37415
AD
145002002-11-12 Akim Demaille <akim@epita.fr>
14501
14502 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
14503 Use it to test the GLR parser.
14504
7bd6c77e
AD
145052002-11-12 Akim Demaille <akim@epita.fr>
14506
14507 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
14508 defines it.
14509 * data/glr.c (yystos): New.
14510 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
14511 (YYDSYMPRINT): New.
14512 (yyval): Don't define it, it is handled via M4.
14513 (yyrecoverParseError): Free verbosely the discarded symbols.
14514 * data/yacc.c (yysymprint): Remove, rather...
14515 (b4_yysymprint_generate): invoke.
14516 * data/c.m4 (b4_yysymprint_generate): New.
14517 Accept pointers as arguments, as opposed to the version from
14518 yacc.c.
14519 (b4_yydestruct_generate): Likewise.
14520 * tests/cations.at (Printers and Destructors): Use Bison directives
14521 instead of CPP macros.
14522 Don't rely on internal details.
14523
b0400cc6
AD
145242002-11-12 Akim Demaille <akim@epita.fr>
14525
14526 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
14527 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
14528 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
14529 it against YYEMPTY and so forth), work on yytoken (i.e., set
14530 it to YYEMPTY etc.).
14531 (yydestruct): Replace with a b4_yydestruct_generate invocation.
14532 (b4_symbol_actions): Remove.
14533 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
14534 for 0, end-of-input.
14535
72f889cc
AD
145362002-11-12 Akim Demaille <akim@epita.fr>
14537
14538 * doc/bison.texinfo (Destructor Decl): New.
14539
b1ae9233
AD
145402002-11-12 Akim Demaille <akim@epita.fr>
14541
14542 * src/tables.c (tables_generate): Use free for pointers that
14543 cannot be NULL, not XFREE.
14544 (pack_vector): Use assert, not fatal, for bound violations.
14545 * src/state.c (state_new): Likewise.
14546 * src/reader.c (reader): Likewise.
14547 * src/lalr.c (set_goto_map): Likewise.
72f889cc 14548 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
b1ae9233
AD
14549 the file name.
14550
7ec2d4cd
AD
145512002-11-12 Akim Demaille <akim@epita.fr>
14552
14553 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
14554 Restore.
14555 * src/scan-gram.l (last_string): Is global to the file, not to
14556 yylex.
14557 * src/parse-gram.y (input): Don't append the epilogue here,
14558 (epilogue.opt): do it here, and free the scanner's obstack.
14559 * src/reader.c (epilogue_set): Rename as...
14560 (epilogue_augment): this.
14561 * data/c.m4 (b4_epilogue): Defaults to empty.
14562
573a6cd3
AD
145632002-11-12 Akim Demaille <akim@epita.fr>
14564
14565 * src/getargs.c (long_options): Remove duplicates.
14566 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
14567 Remove.
14568 * doc/bison.rnh: Remove.
14569 * doc/bison.texinfo (VMS Invocation): Remove.
14570
95612cfa
AD
145712002-11-12 Akim Demaille <akim@epita.fr>
14572
14573 * src/struniq.h, src/struniq.c (struniq_t): Is const.
14574 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
14575
14576 Use struniq for symbols.
14577
14578 * src/symtab.h (symbol_t): The tag member is a struniq.
14579 (symbol_type_set): Adjust.
14580 * src/symtab.c (symbol_new): Takes a struniq.
14581 (symbol_free): Don't free the tag member.
14582 (hash_compare_symbol_t, hash_symbol_t): Rename as...
14583 (hash_compare_symbol, hash_symbol): these.
14584 Use the fact that tags as struniqs.
14585 (symbol_get): Use struniq_new.
14586 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
14587 Returns a strniq.
14588 * src/reader.h (merger_list, grammar_currentmerge_set): The name
14589 and type members are struniqs.
14590 * src/reader.c (get_merge_function)
14591 (grammar_current_rule_merge_set): Adjust.
14592 (TYPE, current_type): Are struniq.
14593
14594 Use struniq for file names.
14595
14596 * src/files.h, src/files.c (infile): Split into...
14597 (grammar_file, current_file): these.
14598 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
14599 * src/reduce.c (reduce_print): Likewise.
14600 * src/getargs.c (getargs): Likewise.
14601 * src/complain.h, src/complain.c: Likewise.
14602 * src/main.c (main): Call struniqs_new early enough to use it for
14603 file names.
14604 Don't free the input file name.
14605
3e6656f9
AD
146062002-11-12 Akim Demaille <akim@epita.fr>
14607
14608 * src/symtab.c (symbol_free): Remove dead deactivated code:
14609 type_name are properly removed.
14610 Don't use XFREE to free items that cannot be NULL.
14611 * src/struniq.h, src/struniq.c: New.
14612 * src/main.c (main): Initialize/free struniqs.
14613 * src/parse-gram.y (%union): Add astruniq member.
14614 (yyprint): Adjust.
14615 * src/scan-gram.l (<{tag}>): Return a struniq.
14616 Free the obstack bit that used to store it.
14617 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
14618
7672019c
PE
146192002-11-11 Paul Eggert <eggert@twinsun.com>
14620
14621 Revamp to fix many (but not all) of the C- and M4-related quoting
14622 problems. Among other things, this fixes the Bison bug reported
14623 by Jan Hubicka when processing the Bash grammar; see:
161a71f3 14624 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7672019c
PE
14625
14626 Use new @ escapes consistently. Represent brackets with @{ and @}
14627 rather than @<:@ and @:>@, since this works a bit better with dumb
14628 editors like vi. Represent @ with @@, since @ is now consistently
14629 an escape. Use @oline@ and @ofile@ rather than __oline__ and
14630 __ofile__, to avoid unexpected expansions. Similarly, use @output
14631 rather than #output.
14632
14633 * data/c.m4 (b4_copyright): Omit file name from comment, since
14634 the file name could contain "*/".
14635 (b4_synclines_flag): Don't quote the 2nd argument; it should already
14636 be quoted. All uses changed.
14637
14638 * data/glr.c: Use new @ escapes consistently.
14639 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
14640 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
14641 Remove, since they couldn't handle arbitrary characters in file
14642 names.
14643 * data/lalr1.cc: Likewise.
14644 * data/yacc.c: Likewise.
14645
14646 * src/files.c (output_infix): Remove; all uses removed.
14647 * src/files.h: Likewise.
14648
14649 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
14650 mishandled funny characters in file names, and anyway it isn't
14651 needed any more.
14652 * data/yacc.c: Likewise.
14653 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
14654
14655 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
14656 * data/yacc.c: Likewise.
14657
14658 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
14659 strings now.
14660 (muscle_init): Quote filename as a C string.
14661 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
14662 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
14663 * src/output.c (escaped_file_name_output): New function.
14664 (prepare_symbols): Quote tokens for M4.
14665 (prepare): Don't insert output_infix, output_prefix,
14666 output_parser_name, output_header_name; this is now down by scan-skel.
14667 Insert skeleton as a C string.
14668
14669 * src/output.c (user_actions_output, symbol_destructors_output,
14670 symbol_printers_output): Quote filenames for C and M4.
14671 * src/reader.c (prologue_augment, epilogue_set): Likewise.
14672
14673 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
14674 escapes other than \\ and \'; this simplifies the code.
14675 (<SC_STRING>): Likewise, for \\ and \".
14676 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
14677 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
14678 Use new escapes @{ and @} for [ and ].
14679
14680 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
14681 them with auto vars.
14682 Switch to new escape scheme, where @ is the escape character uniformly.
14683 Abort if a stray escape character is found. Avoid unbounded input
14684 buffer when parsing non-escaped text.
14685
14686 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
14687 __oline__, #output, $@, and @{ do not have unintended meanings.
14688
acea4f3b
PE
146892002-11-09 Paul Eggert <eggert@twinsun.com>
14690
14691 Fix the test failure due to GCC warnings described in
161a71f3 14692 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
acea4f3b
PE
14693 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
14694 evaluate to 0 if it's impossible for NINF to be in the respective
14695 table.
14696 (yygetLRActions, yyrecoverParseError): Use them.
14697
14698 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
14699 counted in the token inserted at end of file. Now takes
14700 location_t *, not location_t, so that the location can be
14701 adjusted. All uses changed.
14702
14703 * tests/regression.at (Invalid inputs): Adjust wording in
14704 diagnostic to match the new behavior.
14705
14706 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
14707 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
14708 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
14709 abort ();'. This reduces the runtime of the "Many lookaheads"
14710 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
14711 GCC 3.2.
14712
20ef1ad5
PE
147132002-11-07 Paul Eggert <eggert@twinsun.com>
14714
14715 * src/parse-gram.y (CHARACTER): Remove unused token.
14716 All uses removed.
14717
14718 * src/scan-gram.l: Remove stack option. We no longer use the
14719 stack, since the stack was never deeper than 1; instead, use the
14720 new auto var c_context to record the stacked value.
14721
14722 Remove nounput option. At an unexpected end of file, we now unput
14723 the minimal input necessary to end cleanly; this simplifies the
14724 code.
14725
14726 Avoid unbounded token sizes where this is easy.
14727
14728 (unexpected_end_of_file): New function.
14729 Use it to systematize the error message on unexpected EOF.
14730 (last-string): Now auto, not static.
14731 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
14732 (scanner_last_string_free): Remove; not used.
14733 (percent_percent_count): Move decl to just before use.
14734 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
14735 not the (never otherwised-used) CHARACTER.
14736
93724f13
AD
147372002-11-07 Akim Demaille <akim@epita.fr>
14738
14739 Let yyerror always receive the msg as last argument, so that
14740 yyerror can be variadic.
14741
14742 * data/yacc.c (b4_yyerror_args): New.
14743 Use it when calling yyerror.
14744 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
14745 Use it when calling yyerror.
14746 * doc/bison.texinfo (Error Reporting): Adjust.
14747 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
14748 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
14749
6e40b4eb
AD
147502002-11-06 Akim Demaille <akim@epita.fr>
14751
14752 #line should have quoted strings.
14753 Ideally, this should be done by m4_quotearg.
14754
14755 * src/scan-skel.l: Include quotearg.h.
14756 Quote __ofile__.
14757 * src/output.c (symbol_printers_output)
14758 (symbol_destructors_output): Quote the file name.
14759
2dfbfc12
AD
147602002-11-06 Akim Demaille <akim@epita.fr>
14761
14762 * tests/regression.at (Invalid inputs): Adjust to the recent
14763 messages.
14764
437c2d80
AD
147652002-11-06 Akim Demaille <akim@epita.fr>
14766
14767 Restore --no-lines.
14768 Reported by Jim Kent.
14769
14770 * data/c.m4 (b4_syncline): New.
14771 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
14772 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
14773 * src/output.c (user_actions_output): Likewise.
14774 (prepare): Define 'b4_synclines_flag'.
2dfbfc12 14775 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
437c2d80 14776
900c5db5
AD
147772002-11-06 Akim Demaille <akim@epita.fr>
14778
14779 * src/main.c (main): Free `infile'.
14780 * src/scan-gram.l (handle_syncline): New.
14781 Recognize `#line'.
14782 * src/output.c (user_actions_output, symbol_destructors_output)
14783 (symbol_printers_output): Use the location's file name, not
14784 infile.
14785 * src/reader.c (prologue_augment, epilogue_set): Likewise.
14786
e183b123 147872002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
51b4a04c 14788
e183b123 14789 * src/tables.c (matching_state): Don't allow states to match if
51b4a04c 14790 either has GLR conflict entries.
e183b123 14791
193eb6b7
PE
147922002-11-05 Paul Eggert <eggert@twinsun.com>
14793
e183b123
PE
14794 * src/scan-gram.l: Use more accurate diagnostics, e.g.
14795 "integer out of range" rather than "invalid value".
14796 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
14797 accordingly.
14798
193eb6b7
PE
14799 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
14800 Also, remove one static variable in the scanner.
14801
14802 * src/scan-gram.l (braces_level): Now auto, not static.
14803 Initialize to zero if the compiler is being picky.
14804 (INITIAL): Clear braces_level instead of incrementing it.
14805 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
14806 as POSIX 1003.1-2001 requires.
14807 * src/system.h (IF_LINT): New macro, taken from coreutils.
14808 * configure.ac: Define "lint" if --enable-gcc-warnings.
14809
29c01725
AD
148102002-11-05 Akim Demaille <akim@epita.fr>
14811
14812 * src/scan-gram.l: When it starts with `%', complain about the
14813 whole directive, not just that `invalid character: %'.
14814
8aeac3ca
AD
148152002-11-04 Akim Demaille <akim@epita.fr>
14816
14817 * Makefile.maint: Update from Autoconf.
14818 (update, cvs-update, po-update, do-po-update): New.
14819
793a58bb
AD
148202002-11-04 Akim Demaille <akim@epita.fr>
14821
14822 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
14823 and yyerror.
14824 Have yyerror `use' its arguments.
14825 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
14826 returns true when location & yacc & pure & parse-param.
14827 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
14828
c4d720cd
AD
148292002-11-04 Akim Demaille <akim@epita.fr>
14830
14831 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
14832 clashes.
14833 * src/scan-gram.l: Use [\'] instead of ['] to pacify
14834 font-lock-mode.
14835 Use complain_at.
14836 Use quote, not quote_n since LOCATION_PRINT no longer uses the
14837 slot 0.
14838
613a0dc5
PE
148392002-11-03 Paul Eggert <eggert@twinsun.com>
14840
14841 * src/reader.c (get_merge_function, grammar_current_rule_check):
14842 Use consistent diagnostics for reporting type name clashes.
14843 Quote the types with <>, for consistency with Yacc.
14844 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
14845
2a8d363a
AD
148462002-11-03 Akim Demaille <akim@epita.fr>
14847
14848 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
14849 New.
14850 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
14851 (b4_parse_param): Remove.
14852 Use b4_identification.
14853 Propagate b4_pure_args where needed to pass them to yyerror.
14854 * data/glr.m4 (b4_parse_param): Remove.
14855 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
14856 (b4_lpure_formals): New.
14857 Use b4_identification.
14858 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
14859 b4_user_formals and b4_user_args.
14860 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
14861 (yyreportAmbiguity): When using a pure parser, also need
14862 the location, and the parse-params.
14863 Adjust callers.
14864 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
14865 When using a pure parser, also need the parse-params.
14866 Adjust callers.
14867 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
14868 (%pure-parser + %parse-param) LALR and GLR parsers.
14869 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
14870 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
14871 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
14872 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
14873 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
14874 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
14875 * doc/bison.texinfo: Untabify the whole file.
14876 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
14877 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
14878 (Error Reporting): Adjust to these new directives.
14879 Document %error-verbose, deprecate YYERROR_VERBOSE.
14880
9e32add8
AD
148812002-11-03 Akim Demaille <akim@epita.fr>
14882
14883 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
14884 AT_CHECK_CALC_GLR invocations to use % directives, instead of
14885 command line options.
14886 * tests/cxx-type.at: Formatting changes.
14887
b02d90a5
PE
148882002-11-03 Paul Eggert <eggert@twinsun.com>
14889
14890 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
14891 to count columns correctly, and to check for invalid inputs.
9e32add8 14892
b02d90a5
PE
14893 Use mbsnwidth to count columns correctly. Account for tabs, too.
14894 Include mbswidth.h.
14895 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
14896 (extend_location): New function.
14897 (YY_LINES): Remove.
14898
14899 Handle CRLF in C code rather than in Lex code.
14900 (YY_INPUT): New macro.
14901 (no_cr_read): New function.
14902
14903 Scan UCNs, even though we don't fully handle them yet.
14904 (convert_ucn_to_byte): New function.
14905
14906 Handle backslash-newline correctly in C code.
14907 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
14908 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
14909 all uses changed.
14910 (tag, splice): New EREs. Do not allow NUL or newline in tags.
14911 Use {splice} wherever C allows backslash-newline.
14912 YY_STEP after space, newline, vertical-tab.
14913 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
9e32add8 14914
b02d90a5
PE
14915 (letter, id): Don't assume ASCII; e.g., spell out a-z.
14916
14917 ({int}, handle_action_dollar, handle_action_at): Check for integer
14918 overflow.
9e32add8 14919
b02d90a5
PE
14920 (YY_STEP): Omit trailing semicolon, so that it's more like C.
14921
14922 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
14923 as well as \000. Check for UCHAR_MAX, not 255.
14924 Allow \x with an arbitrary positive number of digits, as in C.
14925 Check for overflow here.
14926 Allow \? and UCNs, for compatibility with C.
14927
14928 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
14929 with quote slot used by complain_at.
14930
14931 * tests/input.at: Add tests for backslash-newline, m4 quotes
14932 in symbols, long literals, and funny escapes in strings.
14933
14934 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
14935 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
14936 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
14937 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
14938 * m4/mbswidth.m4: New file, from GNU coreutils.
14939
14940 * doc/bison.texinfo (Grammar Outline): Document // comments.
14941 (Symbols): Document that trigraphs have no special meaning in Bison,
14942 nor is backslash-newline allowed.
14943 (Actions): Document that trigraphs have no special meaning.
14944
14945 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
14946 no longer used.
14947
149482002-11-02 Paul Eggert <eggert@twinsun.com>
14949
14950 * src/reader.c: Don't include quote.h; not needed.
14951 (get_merge_function): Reword warning to be consistent with
14952 type clash diagnostic in grammar_current_rule_check.
14953
14954 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
14955 bug in trigraph handling.
14956
14957 * src/output.c (prepare_symbols): When printing token names,
14958 escape "[" as "@<:@" and likewise for "]".
14959
14960 * src/system.h (errno): Remove declaration, as we are now
14961 assuming C89 or better, and C89 guarantees errno.
14962
762b212b
PE
149632002-10-30 Paul Eggert <eggert@twinsun.com>
14964
14965 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
14966 Check for close failures.
14967 * src/files.h (xfclose): Return void, not int, since it always
14968 returned zero.
14969 * src/files.c (xfclose): Likewise. Report I/O error if ferror
14970 indicates one.
14971 * src/output.c (output_skeleton): Use xfclose rather than fclose
14972 and ferror. xfclose now checks ferror.
14973
14974 * data/glr.c (YYLEFTMOST_STATE): Remove.
14975 (yyreportTree): Use a stack-based leftmost state. This avoids
14976 our continuing battles with bogus warnings about initializers.
14977
56100c60
AD
149782002-10-30 Akim Demaille <akim@epita.fr>
14979
14980 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
14981 #if.
14982
51b4a04c
PH
149832002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14984
14985 * tests/glr-regr1.at: New test for reported regressions.
14986 * tests/testsuite.at: Add glr-regr1.at test.
14987 * tests/Makefile.am: Add glr-regr1.at test.
e183b123 14988
bf1ebda2
PE
149892002-10-24 Paul Eggert <eggert@twinsun.com>
14990
5c16c6b1
PE
14991 Version 1.75a.
14992
bf1ebda2
PE
14993 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
14994 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
14995 we use malloc. Don't assume 'A' through 'Z' are contiguous.
14996 Don't assume strdup exists; POSIX says its an XSI extension.
14997 Check for buffer overflow on input.
14998
b526ee61
AD
149992002-10-24 Akim Demaille <akim@epita.fr>
15000
15001 * src/output.c (output_skeleton): Don't disable M4sugar comments
15002 too soon: it results in comments being expanded.
15003 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
15004 first output.
15005
f1886bb2
AD
150062002-10-24 Akim Demaille <akim@epita.fr>
15007
15008 * data/yacc.c (m4_int_type): New.
15009 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
15010 char' as only yacc.c wants K&R portability.
15011 * data/glr.c (yysigned_char): Remove.
15012 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
15013 Reported by Quoc Peyrot.
15014
c5576256
PE
150152002-10-23 Paul Eggert <eggert@twinsun.com>
15016
15017 * src/main.c (main): With --trace=time, report times even if a
15018 non-fatal error occurs. Formerly, the times were reported in some
15019 such cases but not in others.
15020 * src/reader.c (reader): Just return if a complaint has been issued,
15021 instead of exiting, so that 'main' can report times.
15022
27b0ffea
AD
150232002-10-22 Akim Demaille <akim@epita.fr>
15024
15025 * src/system.h: Include sys/types.
15026 Reported by Bert Deknuydt.
15027
223a7883
PE
150282002-10-23 Paul Eggert <eggert@twinsun.com>
15029
15030 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
15031 Suggested by Art Haas.
15032
150332002-10-22 Paul Eggert <eggert@twinsun.com>
15034
15035 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
15036 decl; not needed any more.
15037 * src/main.c (main): Use return to exit, undoing yesterday's change.
15038 The last OS that we could find where this wouldn't work is
15039 SunOS 3.5, and that's too old to worry about now.
15040
15041 * data/glr.c (struct yyltype): Define members even when not
15042 doing locations. This is more consistent with yacc.c, and it
15043 works around the following bug reports:
161a71f3
PE
15044 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
15045 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
27b0ffea 15046
223a7883
PE
15047 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
15048 @acronym consistently. Standardize on "Yacc" instead of "YACC",
15049 "Algol" instead of "ALGOL". Give a bit more history about BNF.
15050
8b76775a
AD
150512002-10-22 Akim Demaille <akim@epita.fr>
15052
15053 * data/README: New.
15054
6db10d14
PE
150552002-10-21 Paul Eggert <eggert@twinsun.com>
15056
15057 Be consistent about 'bool'; the old code used an enum in one
15058 module and an int in another, and this violates the C standard.
15059 * m4/stdbool.m4: New file, from coreutils 4.5.3.
15060 * configure.ac (AC_HEADER_STDBOOL): Add.
15061 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
15062 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
15063 * src/symtab.c (hash_compare_symbol_t): Likewise.
15064 * src/system.h (bool, false, true): Use a definition consistent
15065 with ../lib/hash.c. All uses changed.
15066
15067 * src/complain.c (warning_issued): Renamed from warn_message_count,
15068 so that we needn't worry about integer overflow (!).
15069 Now of type bool. All uses changed.
15070 (complaint_issued): Renamed from complain_message_count; likewise.
15071
15072 * src/main.c (main): Use exit to exit with failure.
27b0ffea 15073
6db10d14
PE
15074 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
15075 rather than 1 and 0.
15076 * src/main.c (main): Likewise.
15077 * src/getargs.c (getargs): Likewise.
15078 * src/reader.c (reader): Likewise.
15079
15080 * src/getarg.c (getargs): Remove duplicate code for
15081 "Try `bison --help'".
15082
15083 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
15084 What was that "2" for?
15085
15086 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
15087 * src/getargs.c (usage): Likewise.
15088
15089 * src/getargs.c (getargs): When there are too few operands, report
15090 the last one. When there are too many, report the first extra
15091 one. This is how diffutils does it.
15092
92a060fd
PE
150932002-10-20 Paul Eggert <eggert@twinsun.com>
15094
15095 Remove K&R vestiges.
15096 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
15097 * src/complain.c (VA_START): Remove. Assume prototypes.
15098 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
15099 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
15100 fatal): Assume prototypes.
15101 * src/complain.h: Assume prototypes.
15102 * src/system.h (PARAMS): Remove.
15103 Include <limits.h> unconditionally, since it's guaranteeed even
15104 for a freestanding C89 compiler.
15105 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
15106 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8b76775a 15107
e7cb57c0
AD
151082002-10-20 Akim Demaille <akim@epita.fr>
15109
15110 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
15111 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
15112 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
15113 (yyresolveStates, yyresolveAction, yyresolveStack)
15114 (yyprocessOneStack): Use them.
15115 (yy_reduce_print): New.
15116 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
15117
0245f82d
AD
151182002-10-20 Akim Demaille <akim@epita.fr>
15119
15120 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
15121 arguments and output `void'.
15122 (b4_c_function): Rename as...
15123 (b4_c_function_def): this.
15124 (b4_c_function_decl, b4_c_ansi_function_def)
15125 (b4_c_ansi_function_decl): New.
15126 Change the interpretation of the arguments: before `int, foo', now
15127 `int foo, foo'.
15128 * data/yacc.c (yyparse): Prototype and define thanks to these.
15129 Adjust b4_c_function_def uses.
15130 * data/glr.c (yyparse): Likewise, but ANSI only.
15131
39912f52
AD
151322002-10-20 Akim Demaille <akim@epita.fr>
15133
15134 * src/output.c (prepare): Move the definition of `tokens_number',
15135 `nterms_number', `undef_token_number', `user_token_number_max'
15136 to...
15137 (prepare_tokens): Here.
15138 (prepare_tokens): Rename as...
15139 (prepare_symbols): this.
15140 (prepare): Move the definition of `rules_number' to...
15141 (prepare_rules): here.
15142 (prepare): Move the definition of `last', `final_state_number',
15143 `states_number' to...
15144 (prepare_states): here.
15145 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
15146
20c1e2ad
AD
151472002-10-20 Akim Demaille <akim@epita.fr>
15148
15149 * src/tables.h, src/tables.c, src/output.c: Comment changes.
15150
21964f43
AD
151512002-10-20 Akim Demaille <akim@epita.fr>
15152
15153 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
15154 * data/c.m4: here.
15155
66d30cd4
AD
151562002-10-20 Akim Demaille <akim@epita.fr>
15157
15158 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
15159 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
15160 `pair'.
15161 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
15162 `name' to...
15163 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
15164 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
15165 These.
15166
95f2c9fe
PE
151672002-10-19 Paul Eggert <eggert@twinsun.com>
15168
15169 Do not create a temporary file, as that involves security and
15170 cleanup headaches. Instead, use a pair of pipes.
15171 Derived from a suggestion by Florian Krohm.
15172 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
15173 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
15174 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
15175 (BISON_PREREQ_SUBPIPE): Add.
15176 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
15177 Add subpipe.h, subpipe.c.
15178 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
15179 * po/POTFILES.in: Add lib/subpipe.c.
15180 * src/output.c: Include "subpipe.h".
15181 (m4_invoke): Remove decl.
15182 (scan_skel): New decl.
15183 (output_skeleton): Use pipe rather than temporary file for m4 input.
15184 Check that m4sugar.m4 is readable, to avoid deadlock.
15185 Check for pipe I/O error.
15186 * src/scan-skel.l (readpipe): Remove decl.
15187 (scan_skel): New function, to be used in place of m4_invoke.
15188 Read from stream rather than file.
66d30cd4 15189
95f2c9fe
PE
15190 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
15191 float, as this generates a warning on Solaris 8 + GCC 3.2 with
15192 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
15193 this generates a more-accurate value anyway.
15194
15195 * lib/timevar.c (timervar_accumulate): Rename locals to
15196 avoid confusion with similarly-named more-global.
15197 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
15198
15199 * src/output.c (prepare): Use xstrdup to convert char const *
15200 to char *, to avoid GCC warning.
15201
c19988b7
AD
152022002-10-19 Akim Demaille <akim@epita.fr>
15203
15204 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
15205 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
15206 Use them to have `calc.y' ready for %pure-parser.
15207 * data/yacc.c (YYLEX): Pass a yylex return type to
15208 b4_c_function_call.
15209
ae7453f2
AD
152102002-10-19 Akim Demaille <akim@epita.fr>
15211
15212 Prototype support of %lex-param and %parse-param.
15213
15214 * src/parse-gram.y: Add the definition of the %lex-param and
15215 %parse-param tokens, plus their rules.
15216 Drop the `_' version of %glr-parser.
15217 Add the "," token.
15218 * src/scan-gram.l (INITIAL): Scan them.
15219 * src/muscle_tab.c: Comment changes.
15220 (muscle_insert, muscle_find): Rename `pair' as `probe'.
15221 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
15222 (muscle_entry_s): The `value' member is no longer const.
15223 Adjust all dependencies.
15224 * src/muscle_tab.c (muscle_init): Adjust: use
15225 MUSCLE_INSERT_STRING.
15226 Initialize the obstack earlier.
15227 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
15228 (muscle_pair_list_grow): New.
15229 * data/c.m4 (b4_c_function_call, b4_c_args): New.
15230 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
15231 * tests/calc.at: Use %locations, not --locations.
15232 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
15233
0e575721
AD
152342002-10-19 Akim Demaille <akim@epita.fr>
15235
15236 * src/getargs.c (usage): Take status as argument and exit
15237 accordingly.
15238 Report the traditional `Try ... --help' message when status != 0.
15239 (usage, version): Don't take a FILE * as arg, it is pointless.
15240 (getargs): When there is an incorrect number of arguments, make it
15241 an error, and report it GNUlically thanks to `usage ()'.
15242
724ce7f5
PE
152432002-10-18 Paul Eggert <eggert@twinsun.com>
15244
3a781eb2
PE
15245 * data/glr.c (yyreportParseError): Don't assume that sprintf
15246 yields the length of the printed string, as this is not true
15247 on SunOS 4.1.4. Reported by Peter Klein.
15248
724ce7f5
PE
15249 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
15250 * tests/conflicts.at (%nonassoc and eof): Likewise.
15251 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
15252
473d0a75
AD
152532002-10-17 Akim Demaille <akim@epita.fr>
15254
15255 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
15256 * src/getargs.c (trace_types, trace_args): Adjust.
15257 * src/reader.c (grammar_current_rule_prec_set)
15258 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
15259 Standardize error messages.
15260 And s/@prec/%prec/!
15261 (reader): Use trace_flag to enable scanner/parser debugging,
15262 instead of an adhoc scheme.
15263 * src/scan-gram.l: Remove trailing debugging code.
15264
e76d2469
PE
152652002-10-16 Paul Eggert <eggert@twinsun.com>
15266
93e2236a
PE
15267 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
15268 MUSCLE_TAB_H.
15269
e76d2469
PE
15270 * NEWS: Officially drop support for building Bison with K&R C,
15271 since it didn't work anyway and it's not worth worrying about.
15272 * Makefile.maint (wget_files): Remove ansi2knr.c.
15273 (ansi2knr.c-url_prefix): Remove.
15274 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
15275 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
15276 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
15277
5bd1c419
PE
152782002-10-15 Paul Eggert <eggert@twinsun.com>
15279
15280 Stop using the "enum_" trick for K&R-style function definitions;
15281 it confused me, and I was the author! Instead, assume that people
15282 who want to use K&R C compilers (when using these modules in GCC,
15283 perhaps?) will run ansi2knr.
15284
15285 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
15286 All uses of "enum_" changed to "enum ".
15287 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
15288 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
e76d2469 15289
5bd1c419
PE
15290 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
15291 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
15292 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
15293 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
15294 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
15295 abitset_not, abitset_ones, abitset_or, abitset_or_and,
15296 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
15297 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
15298 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
15299 Use function prototypes; this removes the need for declaring
15300 static functions simply to provide their prototypes.
15301 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
15302 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
15303 bitset_count_, bitset_create, bitset_dump, bitset_first,
15304 bitset_free, bitset_init, bitset_last, bitset_next,
15305 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
15306 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
15307 bitset_print, bitset_release_memory, bitset_toggle_,
15308 bitset_type_choose, bitset_type_get, bitset_type_name_get,
15309 debug_bitset): Likewise.
15310 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
15311 * lib/bitset_stats.c (bitset_log_histogram_print,
15312 bitset_percent_histogram_print, bitset_stats_and,
15313 bitset_stats_and_cmp, bitset_stats_and_or,
15314 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
15315 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
15316 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
15317 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
15318 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
15319 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
15320 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
15321 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
15322 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
15323 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
15324 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
15325 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
15326 bitset_stats_zero): Likewise.
15327 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
15328 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
15329 bitsetv_dump, debug_bitsetv): Likewise.
15330 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
15331 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
15332 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
15333 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
15334 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
15335 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
15336 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
15337 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
15338 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
15339 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
15340 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
15341 Likewise.
15342 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
15343 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
15344 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
15345 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
15346 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
15347 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
15348 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
15349 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
15350 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
15351 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
15352 lbitset_xor_cmp, lbitset_zero): Likewise.
e76d2469 15353
ae26e1f0
AD
153542002-10-14 Akim Demaille <akim@epita.fr>
15355
15356 Version 1.75.
15357
d43baf71
AD
153582002-10-14 Akim Demaille <akim@epita.fr>
15359
15360 * tests/Makefile.am (maintainer-check-posix): New.
15361
7ebc83e3
AD
153622002-10-14 Akim Demaille <akim@epita.fr>
15363
15364 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
15365 member.
15366
05846dae
AD
153672002-10-14 Akim Demaille <akim@epita.fr>
15368
15369 * src/tables.c (table_ninf_remap): base -> tab.
15370 Reported by Matt Rosing.
15371
1318e37d
PE
153722002-10-14 Paul Eggert <eggert@twinsun.com>
15373
447fbb17
PE
15374 * tests/action.at, tests/calc.at, tests/conflicts.at,
15375 tests/cxx-type.at, tests/headers.at, tests/input.at,
15376 tests/regression.at, tests/synclines.at, tests/torture.at:
15377 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
15378 so that the tests still work even if POSIXLY_CORRECT is set.
15379 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
05846dae 15380
1318e37d
PE
15381 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
15382 for portability to K&R hosts. Fix typo: signed char is guaranteed
15383 only to 127, not to 128.
15384 * data/glr.c (yysigned_char): New type.
15385 * data/yacc.c (yysigned_char): Likewise.
15386 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
15387
cc0f0794
PE
153882002-10-13 Paul Eggert <eggert@twinsun.com>
15389
5038f418
PE
15390 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
15391 true due to limited range of data type" warning from GCC.
15392
cc0f0794
PE
15393 * data/c.m4 (b4_token_defines): Protect against double-inclusion
15394 by wrapping enum yytokentype's definition inside #ifndef
15395 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
15396
6fed0802
AD
153972002-10-13 Akim Demaille <akim@epita.fr>
15398
15399 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
15400 Un yy- yyrhs to avoid the name clash with the global YYRHS.
15401
32f0598d
AD
154022002-10-13 Akim Demaille <akim@epita.fr>
15403
15404 * Makefile.maint: Update from Autoconf 2.54.
15405 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
15406
7ea9a33f
AD
154072002-10-13 Akim Demaille <akim@epita.fr>
15408
15409 * src/print.c (print_state): Separate the list of solved conflicts
15410 from the other items.
15411 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
15412
ea99527d
AD
154132002-10-13 Akim Demaille <akim@epita.fr>
15414
15415 Let nondeterministic skeletons be usable with deterministic
15416 tables.
15417
15418 With the patch, GAWK compiled by GCC without -O2 passes its test
15419 suite using a GLR parser driven by LALR tables. It fails with -O2
15420 because `struct stat' gives two different answers on my machine:
15421 88 (definition of an auto var) and later 96 (memset on this var).
15422 Hence the stack is badly corrumpted. The headers inclusion is to
15423 blame: if I move the awk.h inclusion before GLR's system header
15424 inclusion, the two struct stat have the same size.
15425
15426 * src/tables.c (pack_table): Always create conflict_table.
15427 (token_actions): Always create conflict_list.
15428 * data/glr.c (YYFLAG): Remove, unused.
15429
f377f69f
AD
154302002-10-13 Akim Demaille <akim@epita.fr>
15431
15432 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
15433 (O0FLAGS): New.
15434 (VALGRIND, GXX): New.
15435 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
15436 * tests/bison.in: Run $PREBISON a pre-command.
15437 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
15438 (maintainer-check-g++): New.
15439 * Makefile.am (maintainer-check): New.
15440
2a1fe6ed
AD
154412002-10-13 Akim Demaille <akim@epita.fr>
15442
15443 * data/glr.c: Formatting changes.
15444 Tweak some trace messages to match yacc.c's.
15445
f50adbbd
AD
154462002-10-13 Akim Demaille <akim@epita.fr>
15447
15448 GLR parsers sometimes raise parse errors instead of performing the
15449 default reduction.
15450 Reported by Charles-Henry de Boysson.
15451
15452 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
ba0fe3c7 15453 check the length of the traces when %glr.
f50adbbd
AD
15454 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
15455 GLR's traces.
15456 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
15457 Test GLR parsers.
15458 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
15459 (yyltype): Remove the yy prefix from the member names.
15460 (yytable): Complete its comment.
15461 (yygetLRActions): Map error action number from YYTABLE from
15462 YYTABLE_NINF to 0.
15463 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
15464 (which was a bug: it should have been YYTABEL_NINF, and yet it was
15465 not satisfying as we could compare an YYACTION computed from
15466 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
15467 only value for error actions.
15468 (yyreportParseError): In verbose parse error messages, don't issue
15469 `error' in the list of expected tokens.
15470 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
15471 next action to perform to match glr.c's decoding.
15472 (yytable): Complete its comment.
15473
bcbad5b9
PE
154742002-10-13 Paul Eggert <eggert@twinsun.com>
15475
15476 Fix problem reported by Henrik Grubbstroem in
161a71f3 15477 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
bcbad5b9
PE
15478 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
15479 because the Bison parser reads the second action before reducing
15480 the first one.
15481 * src/scan-gram.l (rule_length): New static var.
15482 Use it to keep track of the rule length in the scanner, since
15483 we can't expect the parser to be in lock-step sync with the scanner.
15484 (handle_action_dollar, handle_action_at): Use this var.
15485 * tests/actions.at (Exotic Dollars): Test for the problem.
05846dae 15486
14904b89
PE
154872002-10-12 Paul Eggert <eggert@twinsun.com>
15488
1fe611e5
PE
15489 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
15490 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
15491 Include <sys/time.h> when checking for clock_t and struct tms.
15492 Use same include order as source.
15493 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
161a71f3 15494 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
05846dae 15495
1fe611e5
PE
15496 * lib/timevar.c: Update copyright date and clarify comments.
15497 (get_time) [IN_GCC]: Keep the GCC version for reference.
05846dae 15498
1fe611e5
PE
15499 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
15500 GCC version as of today, then merge Bison's changes.
15501 Change "GCC" to "Bison" in copyright notice. timevar.def's
15502 author is Akim, so change that too.
15503
98194095
PE
15504 * src/reader.c (grammar_current_rule_check):
15505 Don't worry about the default action if $$ is untyped.
15506 Prevents bogus warnings reported by Jim Gifford in
161a71f3 15507 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
98194095 15508
14904b89
PE
15509 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
15510 * data/glr.c, data/lalr1.cc, data/yacc.c:
15511 Output token definitions before the first part of user declarations.
15512 Fixes compatibility problem reported by Jim Gifford for kbd in
161a71f3 15513 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14904b89 15514
ff6dca18
PE
155152002-10-11 Paul Eggert <eggert@twinsun.com>
15516
15517 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
15518 (yyparse): here. This undoes some of the 2002-07-25 change.
15519 Compatibility problem reported by Ralf S. Engelschall with
15520 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
15521
eb714592
AD
155222002-10-11 Akim Demaille <akim@epita.fr>
15523
15524 * tests/regression.at Characters Escapes): New.
15525 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
15526 characters.
15527 Reported by Jan Nieuwenhuizen.
15528
b7195100
AD
155292002-10-11 Akim Demaille <akim@epita.fr>
15530
15531 * po/id.po: New.
15532
f28a0f2d
PE
155332002-10-10 Paul Eggert <eggert@twinsun.com>
15534
15535 Portability fixes for bitsets; this also avoids several GCC
15536 warnings.
15537
15538 * lib/abitset.c: Include <stddef.h>, for offsetof.
15539 * lib/lbitset.c: Likewise.
15540
15541 * lib/abitset.c (abitset_bytes): Return a size that is aligned
15542 properly for vectors of objects. Do not assume that adding a
15543 header size to a multiple of a word size yields a value that is
15544 properly aligned for the whole union.
15545 * lib/bitsetv.c (bitsetv_alloc): Likewise.
15546
15547 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
15548 unique names for structures.
15549 * lib/ebitset.c (ebitset_bytes): Likewise.
15550 * lib/lbitset.c (lbitset_bytes): Likewise.
15551
15552 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
15553 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
15554 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
15555 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
15556 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
15557 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
15558 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
15559 to improve the type-checking that GCC can do.
15560 * lib/bitset.c (bitset_op4_cmp): Likewise.
15561 * lib/bitset_stats.c (bitset_stats_count,
15562 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
15563 bitset_stats_copy, bitset_stats_disjoint_p,
15564 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
15565 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
15566 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
15567 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
15568 bitset_stats_and_or_cmp, bitset_stats_andn_or,
15569 bitset_stats_andn_or_cmp, bitset_stats_or_and,
15570 bitset_stats_or_and_cmp): Likewise.
15571 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
15572 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
15573 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
15574 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
15575
15576 * lib/abitset.h: Include bitset.h, not bbitset.h.
15577 * lib/ebitset.h: Likewise.
15578 * lib/lbitset.h: Likewise.
15579
15580 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
15581 All instances of parameters of type enum bitset_opts are now of
15582 type enum_bitset_opts, to conform to the C Standard, and similarly
15583 for enum_bitset_type.
15584 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
15585 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
15586
15587 Do not use "struct bitset_struct" to mean different things in
15588 different modules. Not only is this confusing, it violates
15589 the C Standard, which requires that structure types in different
15590 modules must be compatible if one is to be passed to the other.
15591 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
15592 All instances of "struct bitset_struct *" replaced with "bitset".
15593 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
15594 (union bitset_union, struct abitset_struct, struct ebitset_struct,
15595 struct lbitset_struct, struct bitset_stats_struct): New types.
15596 All uses of struct bitset_struct changed to union bitset_union,
15597 etc.
ba0fe3c7 15598 * lib/abitset.c (struct abitset_struct, abitset,
f28a0f2d
PE
15599 struct bitset_struct): Remove.
15600 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
15601 struct bitset_struct): Remove.
15602 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
15603 bitset_struct): Remove.
15604 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
15605 Likewise.
15606
15607 Do not call a function of type T using a call that assumes the
15608 function is of a different type U. Standard C requires that a
15609 function must be called with a type that is compatible with its
15610 definition.
15611 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
15612 New decls.
15613 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
15614 New functions.
15615 * lib/ebitset.c (PFV): Remove.
15616 * lib/lbitset.c (PFV): Likewise.
15617 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
15618 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
15619 decls.
15620 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
15621 (ebitset_vtable): Use them.
15622 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
15623 lbitset_xor): New functions.
15624 (lbitset_vtable): Use them.
15625
15626 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
15627 Declare.
15628
15629 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
15630 GCC warning.
15631 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
15632 Use offsetof, for simplicity.
15633
6fbe4984
PE
156342002-10-06 Paul Eggert <eggert@twinsun.com>
15635
15636 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
15637 the same width as int. This reapplies a hunk of the 2002-08-12 patch
161a71f3 15638 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
6fbe4984
PE
15639 which was inadvertently undone by the 2002-09-30 patch.
15640 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
15641 the same width as int.
15642
420f93c8
PE
156432002-10-04 Paul Eggert <eggert@twinsun.com>
15644
15645 Version 1.50.
15646
15647 * configure.ac (AC_INIT), NEWS: Increment version number.
15648
15649 * doc/bison.texinfo: Minor spelling, grammar, and white space
15650 fixes.
15651 (Symbols): Mention that any negative value returned from yylex
15652 signifies end-of-input. Warn about negative chars. Mention
15653 the portable Standard C character set.
15654
15655 The GNU coding standard says CFLAGS and YFLAGS are reserved
15656 for the installer to set.
15657 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
15658 * src/Makefile.am (AM_CFLAGS): Likewise.
15659 (AM_YFLAGS): Renamed from YFLAGS.
15660
15661 Fix some MAX and MIN problems.
15662 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
15663 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
15664 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
15665 * src/reader.c (reader): Use it.
15666
15667 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
15668 POSIX 1003.1-2001 has removed fgrep.
15669
156702002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
15671
15672 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
15673 interpreted as signed.
15674 * lib/ebitset.c (ebitset_list): Fix bug.
15675
ff68026d
PE
156762002-10-01 Paul Eggert <eggert@twinsun.com>
15677
15678 More fixes for 64-bit hosts and large bitsets.
15679
15680 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
15681 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
15682 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
15683 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
15684 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
15685 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
15686 bitset_count_): Likewise.
15687 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
15688 bitset_first, bitset_last): Likewise.
15689 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
15690 bitset_stats_list_reverse, bitset_stats_size,
15691 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
15692 Likewise.
15693 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
15694 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
15695 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
15696 bitsetv_reflexive_transitive_closure): Likewise.
15697 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
15698 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
15699 Likewise.
15700 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
15701 Likewise.
420f93c8 15702
ff68026d
PE
15703 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
15704 Use size_t, not unsigned int, to count bytes.
15705 * lib/abitset.h (abitset_bytes): Likewise.
15706 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
15707 Likewise.
15708 * lib/bitset.h (bitset_bytes): Likewise.
15709 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
15710 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
15711 * lib/bitsetv.c (bitsetv_alloc): Likewise.
15712 * lib/ebitset.c (ebitset_bytes): Likewise.
15713 * lib/ebitset.h (ebitset_bytes): Likewise.
15714 * lib/lbitset.c (lbitset_bytes): Likewise.
15715 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 15716
ff68026d
PE
15717 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
15718 abitset_subset_p, abitset_disjoint_p, abitset_and,
15719 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
15720 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
15721 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
15722 abitset_or_and, abitset_or_and_cmp):
15723 Use bitset_windex instead of unsigned int.
15724 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
15725 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
15726 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
15727 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
15728 Likewise.
15729 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 15730
ff68026d
PE
15731 * lib/bitset.c (bitset_print):
15732 Use proper printf formats for widths of integer types.
15733 * lib/bitset_stats.c (bitset_percent_histogram_print,
15734 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
15735 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
15736 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
15737 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 15738
ff68026d
PE
15739 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
15740 BITSET_SIZE_MAX): New macros.
15741 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
15742 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
15743 to BITSET_WINDEX_MAX.
15744
15745 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
15746 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
15747 since we now return the bitset_bindex type (not int).
15748
15749 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
15750 when computing sizes.
15751 * lib/ebitset.c (ebitset_elts_grow): Likewise.
15752
15753 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
15754 and avoid cast to unsigned.
15755
6aa452a6
AD
157562002-09-30 Akim Demaille <akim@epita.fr>
15757
15758 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
15759 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
15760 Updates from Michael Hayes.
15761
927f7817
AD
157622002-09-30 Art Haas <ahaas@neosoft.com>
15763
15764 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
15765 invocations.
15766 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
15767 defined.
15768
9738f41e
AD
157692002-09-27 Akim Demaille <akim@epita.fr>
15770
15771 Version 1.49c.
15772
a5c75d7f
AD
157732002-09-27 Akim Demaille <akim@epita.fr>
15774
15775 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
15776 (Because of AC_LIBSOURCE).
15777
8280e179
AD
157782002-09-27 Akim Demaille <akim@epita.fr>
15779
15780 Playing with Autoscan.
15781
15782 * configure.ac: Remove the old LIBOBJ tweaks.
15783 (AC_REPLACE_FUNCS): Add strrchr and strtol.
15784 * lib/strrchr.c: New.
15785 * lib/strtol.c: New, from the Coreutils 4.5.1.
15786
ae64af35
AD
157872002-09-27 Akim Demaille <akim@epita.fr>
15788
15789 Playing with Autoscan.
15790
15791 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
15792 * lib/Makefile.am (libbison_a_SOURCES): No longer include
15793 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
15794 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
15795 Coreutils 4.5.1.
15796
d1a1114f
AD
157972002-09-24 Akim Demaille <akim@epita.fr>
15798
15799 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
15800 (Frequently Asked Questions, Parser Stack Overflow): New.
15801
b906441c
AD
158022002-09-13 Akim Demaille <akim@epita.fr>
15803
15804 Playing with autoscan.
15805
15806 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
15807 * src/files.c (skeleton_find): Remove, unused.
15808 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
15809 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
15810
bd701811
AD
158112002-09-13 Akim Demaille <akim@epita.fr>
15812
15813 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
15814 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
15815
e0a13e7b
AD
158162002-09-13 Akim Demaille <akim@epita.fr>
15817
15818 * configure.ac: Require 2.54.
15819 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
15820 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
15821 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
15822 Remove, provided by Autoconf macros.
15823
c97011bf
AD
158242002-09-12 Akim Demaille <akim@epita.fr>
15825
15826 * m4/prereq.m4: Update, from Coreutils 4.5.1.
15827
d862b1be
AD
158282002-09-12 Akim Demaille <akim@epita.fr>
15829
15830 * m4/prereq.m4: Update, from Fileutils 4.1.5.
15831 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
15832 Reported by Martin Mokrejs.
15833
3d38c03a
AD
158342002-09-10 Akim Demaille <akim@epita.fr>
15835
15836 * src/parse-gram.y: Associate a human readable string to each
15837 token type.
15838 * tests/regression.at (Invalid inputs): Adjust.
15839
b6347355
AD
158402002-09-10 Gary V. Vaughan <gary@gnu.org>
15841
15842 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
15843 with an Autoconf-2.5x style configure.ac.
15844
09ba4ab2
PE
158452002-09-06 Paul Eggert <eggert@twinsun.com>
15846
15847 * doc/bison.texinfo (Conditions): Make explicit that the GPL
15848 exception applies only to yacc.c. This is a modification of a
15849 patch originally suggested by Akim Demaille.
15850
21846f69
AD
158512002-09-06 Akim Demaille <akim@epita.fr>
15852
09ba4ab2
PE
15853 * data/c.m4 (b4_copyright): Move the GPL exception comment from
15854 here to...
15855 * data/yacc.c: here.
15856
21846f69
AD
15857 * data/lalr1.cc (struct yyltype): Don't define it, since we use
15858 LocationType.
15859 (b4_ltype): Default to yy::Location from location.hh.
15860
c0ad8bf3
AD
158612002-09-04 Jim Meyering <jim@meyering.net>
15862
15863 * data/yacc.c: Guard the declaration of yytoknum also with
15864 `#ifdef YYPRINT', so it is declared only when used.
15865
3a93251e
AD
158662002-09-04 Akim Demaille <akim@epita.fr>
15867
15868 * configure.in: Rename as...
15869 * configure.ac: this.
15870 Bump to 1.49c.
15871
427c0dda
AD
158722002-09-04 Akim Demaille <akim@epita.fr>
15873
15874 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
15875 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
15876 translate maintainer only messages.
15877
6a254321
PE
158782002-08-12 Paul Eggert <eggert@twinsun.com>
15879
645e30d1
PE
15880 Version 1.49b.
15881
6a254321
PE
15882 * Makefile.am (SUBDIRS): Remove intl.
15883 (DISTCLEANFILES): Remove.
15884 * NEWS: Mention that GNU M4 is now required. Clarify what is
15885 meant by "larger grammars". Mention the pt_BR translation.
15886 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
15887 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
15888 Bump version from 0.11.2 to 0.11.5.
15889 (BISON_PREREQ_STAGE): Remove.
15890 (AM_GNU_GETTEXT): Use external gettext.
15891 (AC_OUTPUT): Remove intl/Makefile.
15892
15893 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
15894
15895 * data/glr.c: Include string.h, for strlen.
15896 (yyreportParseError): Use size_t for yysize.
15897 (yy_yypstack): No longer nested inside yypstates, as nested
15898 functions are not portable. Do not assume size_t is the
15899 same width as int.
15900 (yypstates): Do not assume that ptrdiff_t is the same width
15901 as int, and similarly for yyposn and YYINDEX.
15902
15903 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
15904
15905 * lib/Makefile.am (INCLUDES): Do not include from the intl
15906 directory, which has been removed.
15907 * src/Makefile.am (INCLUDES): Likewise.
15908
15909 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
15910 (bitsets_sources, additional_bitsets_sources, timevars_sources):
15911 New vars.
15912
15913 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
15914 * tests/Makefile.am (EXTRA_DIST): Likewise.
15915
15916 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
15917 Do not assume that bitset_windex is the same width as unsigned.
15918
15919 * lib/abitset.c (abitset_unused_clear): Do not assume that
15920 bitset_word is the same width as int.
15921 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
15922 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
15923 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
15924 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
15925 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
15926
15927 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
15928 portability to one's complement hosts!).
15929 * lib/ebitset.c (ebitset_op1): Likewise.
15930 * lib/lbitset.c (lbitset_op1): Likewise.
15931
15932 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
15933 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
15934 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
15935 Sync with fileutils.
15936 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
15937 lib/gettext.h: Sync with diffutils.
15938
15939 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
15940 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
15941
15942 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
15943 PROTOTYPES to check for prototypes, and "defined __STDC__" to
15944 check for void *.
15945
15946 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
15947 size_t; the old version tried to do this but casted improperly.
15948 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
15949 (bitset_test): Now returns int, not unsigned long.
15950
15951 * lib/bitset_stats.c: Include "gettext.h".
15952 (_): New macro.
15953 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
15954 name locals "index", as it generates unnecessary warnings on some
15955 hosts that have an "index" function.
15956
15957 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
15958 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
15959 they need translation.
15960 * src/LR0.c (state_list_append, new_itemsets, get_state,
15961 append_states, generate_states): Likewise.
15962 * src/assoc.c (assoc_to_string): Likewise.
15963 * src/closure.c (print_closure, set_firsts, closure): Likewise.
15964 * src/gram.c (grammar_dump): Likewise.
15965 * src/injections.c (injections_compute): Likewise.
15966 * src/lalr.c (lookaheads_print): Likewise.
15967 * src/relation.c (relation_transpose): Likewise.
15968 * src/scan-gram.l: Likewise.
15969 * src/tables.c (table_grow, pack_vector): Likewise.
15970
15971 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
15972 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
15973 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
15974 * m4/mbstate_t.m4: Sync with fileutils.
15975 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
15976
15977 * po/LINGUAS: Add pt_BR.
15978 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
15979 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
15980 lib/timevar.c.
15981 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
15982 manual recommends.
15983 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
15984
15985 * src/complain.c (strerror_r): Remove decl; not needed.
15986 (strerror): Use same pattern as ../lib/error.c.
15987
15988 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
15989
15990 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
15991
15992 * src/main.c (main): Cast result of bindtextdomain and textdomain
15993 to void, to avoid a GCC warning when --disable-nls is in effect.
15994
15995 * src/scan-gram.l: Use strings rather than escapes when possible,
15996 to minimize the number of warnings from xgettext.
15997 (handle_action_dollar, handle_action_at): Don't use isdigit,
15998 as it mishandles negative chars and it may not work as expected
15999 outside the C locale.
16000
16001 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
16002 this is a GCC extension and is not portable to other compilers.
16003
16004 * src/system.h (alloca): Use same pattern as ../lib/error.c.
16005 Do not include <ctype.h>; no longer needed.
16006 Do not include <malloc.h>; no longer needed (and generates
16007 warnings on OpenBSD 3.0).
16008
16009 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
16010 it's not portable.
16011
16012 * tests/regression.at: Do not use 'cc -c input.c -o input';
16013 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
16014
16015 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
16016 exit status as failure, not just exit status 1. Sun C exits
16017 with status 2 sometimes.
16018
16019 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
16020 Use it for the two large tests.
16021
c8f002c7
AD
160222002-08-02 Akim Demaille <akim@epita.fr>
16023
16024 * src/conflicts.c (conflicts_output): Don't output rules never
16025 reduced here, since anyway that computation doesn't work.
16026 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
16027 (rule_useless_p, rule_never_reduced_p): New.
16028 (grammar_rules_partial_print): Use a filter instead of a range.
16029 Display the title only if needed.
16030 (grammar_rules_print): Adjust.
16031 (grammar_rules_never_reduced_report): New.
16032 * src/tables.c (action_row): Move the computation of rules never
16033 reduced to...
16034 (token_actions): here.
16035 * src/main.c (main): Make the parser before making the report, so
16036 that rules never reduced are computed.
16037 Call grammar_rules_never_reduced_report.
16038 * src/print.c (print_results): Report rules never reduced.
16039 * tests/conflicts.at, tests/reduce.at: Adjust.
16040
cd08e51e
AD
160412002-08-01 Akim Demaille <akim@epita.fr>
16042
16043 Instead of attaching lookaheads and duplicating the rules being
16044 reduced by a state, attach the lookaheads to the reductions.
16045
16046 * src/state.h (state_t): Remove the `lookaheads',
16047 `lookaheads_rule' member.
16048 (reductions_t): Add a `lookaheads' member.
16049 Use a regular array for the `rules'.
16050 * src/state.c (reductions_new): Initialize the lookaheads member
16051 to 0.
16052 (state_rule_lookaheads_print): Adjust.
16053 * src/state.h, src/state.c (state_reductions_find): New.
16054 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
16055 (count_rr_conflicts): Adjust.
16056 * src/lalr.c (LArule): Remove.
16057 (add_lookback_edge): Adjust.
16058 (state_lookaheads_count): New.
16059 (states_lookaheads_initialize): Merge into...
16060 (initialize_LA): this.
16061 (lalr_free): Adjust.
16062 * src/main.c (main): Don't free nullable and derives too early: it
16063 is used by --verbose.
16064 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
16065
bb0027a9
AD
160662002-08-01 Akim Demaille <akim@epita.fr>
16067
16068 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
16069 `rule_number_t**'.
16070 (set_derives, free_derives): Rename as...
16071 (derives_compute, derives_free): this.
16072 Adjust all dependencies.
16073 * src/nullable.c (set_nullable, free_nullable): Rename as...
16074 (nullable_compute, nullable_free): these.
16075 (rule_list_t): Store rule_t *, not rule_number_t.
16076 * src/state.c (state_rule_lookaheads_print): Directly compare rule
16077 pointers, instead of their numbers.
16078 * src/main.c (main): Call nullable_free, and derives_free earlier,
16079 as they were lo longer used.
16080
3325ddc4
AD
160812002-08-01 Akim Demaille <akim@epita.fr>
16082
16083 * lib/timevar.c (get_time): Include children time.
16084 * src/lalr.h (LA, LArule): Don't export them: used with the
16085 state_t.
16086 * src/lalr.c (LA, LArule): Static.
16087 * src/lalr.h, src/lalr.c (lalr_free): New.
16088 * src/main.c (main): Call it.
16089 * src/tables.c (pack_vector): Check whether loc is >= to the
16090 table_size, not >.
16091 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
16092 (tables_generate): do it, since that's also it which allocates
16093 them.
16094 Don't free LA and LArule, main does.
16095
c6f1a33c
AD
160962002-07-31 Akim Demaille <akim@epita.fr>
16097
16098 Separate parser tables computation and output.
16099
16100 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
16101 (conflict_list, conflict_list_cnt, table, check, table_ninf)
16102 (yydefgoto, yydefact, high): Move to...
16103 * src/tables.h, src/tables.c: here.
16104 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
16105 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
16106 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
16107 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
16108 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
16109 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
16110 (action_row, save_row, token_actions, save_column, default_goto)
16111 (goto_actions, sort_actions, matching_state, pack_vector)
16112 (table_ninf_remap, pack_table, prepare_actions): Move to...
16113 * src/tables.c: here.
16114 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
16115 * src/output.c (token_actions, output_base, output_conflicts)
16116 (output_check): Merge into...
16117 (prepare_actions): this.
16118 (actions_output): Rename as...
16119 (user_actions_output): this.
16120 * src/main.c (main): Call tables_generate and tables_free.
16121
1509d42f
AD
161222002-07-31 Akim Demaille <akim@epita.fr>
16123
16124 Steal GCC's --time-report support.
16125
16126 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
16127 stolen/adjusted from GCC.
16128 * m4/stage.m4: Remove time related checks.
16129 * m4/timevar.m4: New.
16130 * configure.in: Adjust.
16131 * src/system.h: Adjust to using timevar.h.
16132 * src/getargs.h, src/getargs.c: Support trace_time for
16133 --trace=time.
16134 * src/main.c (stage): Remove.
16135 (main): Replace `stage' invocations with timevar calls.
16136 * src/output.c: Insert pertinent timevar calls.
16137
273a74fa
AD
161382002-07-31 Akim Demaille <akim@epita.fr>
16139
16140 Let --trace have arguments.
16141
16142 * src/getargs.h (enum trace_e): New.
16143 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
16144 (long_options, short_options): --trace/-T takes an optional
16145 argument.
16146 Change all the uses of trace_flag to reflect the new flags.
16147 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
16148
16149 Strengthen `stage' portability.
16150
16151 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
16152 * configure.in: Use it.
16153 Don't check for malloc.h and sys/times.h.
16154 * src/system.h: Include them when appropriate.
16155 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
16156 times and struct tms are available.
16157
217598da
AD
161582002-07-30 Akim Demaille <akim@epita.fr>
16159
16160 In verbose parse error message, don't report `error' as an
16161 expected token.
16162 * tests/actions.at (Printers and Destructors): Adjust.
16163 * tests/calc.at (Calculator $1): Adjust.
16164 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
16165 error message, do not report the parser accepts the error token in
16166 that state.
16167
52489d44
AD
161682002-07-30 Akim Demaille <akim@epita.fr>
16169
16170 Normalize conflict related messages.
16171
16172 * src/complain.h, src/complain.c (warn, complain): New.
16173 * src/conflicts.c (conflicts_print): Use them.
16174 (conflict_report_yacc): New, extracted from...
16175 (conflicts_print): here.
16176 * tests/conflicts.at, tests/existing.at: Adjust.
16177
e8832397
AD
161782002-07-30 Akim Demaille <akim@epita.fr>
16179
16180 Report rules which are never reduced by the parser: those hidden
16181 by conflicts.
16182
16183 * src/LR0.c (save_reductions): Don't make the final state too
16184 different: save its reduction (accept) instead of having a state
16185 without any action (no shift or goto, no reduce).
16186 Note: the final state is now a ``regular'' state, i.e., the
16187 parsers now contain `reduce 0' as default reduction.
16188 Nevertheless, since they decide to `accept' when yystate =
16189 final_state, they still will not reduce rule 0.
16190 * src/print.c (print_actions, print_reduction): Adjust.
16191 * src/output.c (action_row): Track reduced rules.
16192 (token_actions): Report rules never reduced.
16193 * tests/conflicts.at, tests/regression.at: Adjust.
16194
caf23d24
AD
161952002-07-30 Akim Demaille <akim@epita.fr>
16196
16197 `stage' was accidently included in a previous patch.
16198 Initiate its autoconfiscation.
16199
16200 * configure.in: Look for malloc.h and sys/times.h.
16201 * src/main.c (stage): Adjust.
16202 Report only when trace_flag.
16203
640748ee
AD
162042002-07-29 Akim Demaille <akim@epita.fr>
16205
16206 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
16207 state_number_t.
16208 (errs_t): symbol_t*, not symbol_number_t.
16209 (reductions_t): rule_t*, not rule_number_t.
16210 (FOR_EACH_SHIFT): New.
16211 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
16212 * src/print.c, src/print_graph.c: Adjust.
16213
88bce5a2
AD
162142002-07-29 Akim Demaille <akim@epita.fr>
16215
16216 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
16217
16218 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
16219 (endtoken, accept): these.
16220 * src/reader.c (reader): Set endtoken's default tag to "$end".
16221 Set undeftoken's tag to "$undefined" instead of "$undefined.".
16222 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
16223 Adjust.
16224
1bfb97db
AD
162252002-07-29 Akim Demaille <akim@epita.fr>
16226
16227 * src/reduce.c (reduce_grammar): When the language is empty,
16228 complain about the start symbol, not the axiom.
16229 Use its location.
16230 * tests/reduce.at (Empty Language): New.
16231
fc5734fe
AD
162322002-07-26 Akim Demaille <akim@epita.fr>
16233
16234 * src/reader.h, src/reader.c (gram_error): ... can't get
16235 yycontrol without making too strong assumptions on the parser
16236 itself.
16237 * src/output.c (prepare_tokens): Use the real 0th value of
16238 token_translations instead of `0'.
16239 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
16240 visible here.
16241 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
16242 for the time being: %locations ought to provide it to yyerror.
16243
3650b4b8
AD
162442002-07-25 Akim Demaille <akim@epita.fr>
16245
16246 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
16247 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
16248 * tests/regression.at (Web2c Actions): Adjust.
16249
4b3d3a8e
AD
162502002-07-25 Akim Demaille <akim@epita.fr>
16251
16252 Stop storing rules from 1 to nrules + 1.
16253
16254 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
16255 * src/nullable.c, src/output.c, src/print.c, src/reader.c
16256 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
16257 Iterate from 0 to nrules.
16258 Use rule_number_as_item_number and item_number_as_rule_number.
16259 Adjust to `derive' now containing possibly 0.
16260 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
16261 Handle the `- 1' part in rule numbers from/to item numbers.
16262 * src/conflicts.c (log_resolution): Fix the message which reversed
16263 shift and reduce.
16264 * src/output.c (action_row): Initialize default_rule to -1.
16265 (token_actions): Adjust.
16266 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
16267 expected output.
16268 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
16269
4a2a22f4
AD
162702002-07-25 Akim Demaille <akim@epita.fr>
16271
16272 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
16273 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
16274 (b4_c_knr_arg_decl): New.
16275 * data/yacc.c: Use it to define yysymprint, yydestruct, and
16276 yyreport_parse_error.
16277
b8df3223
AD
162782002-07-25 Akim Demaille <akim@epita.fr>
16279
16280 * data/yacc.c (yyreport_parse_error): New, extracted from...
16281 (yyparse): here.
16282 (yydestruct, yysymprint): Move above yyparse.
16283 Be K&R compliant.
16284
a762e609
AD
162852002-07-25 Akim Demaille <akim@epita.fr>
16286
16287 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
16288 replace...
16289 (b4_sint_type, b4_uint_type): these.
16290 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
16291 * tests/regression.at (Web2c Actions): Adjust.
16292
12b0043a
AD
162932002-07-25 Akim Demaille <akim@epita.fr>
16294
16295 * src/gram.h (TIEM_NUMBER_MAX): New.
16296 (item_number_of_rule_number, rule_number_of_item_number): Rename
16297 as...
16298 (rule_number_as_item_number, item_number_as_rule_number): these.
16299 Adjust dependencies.
16300 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
16301 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
16302 (symbol_number_to_vector_number): New.
16303 (order): Of vector_number_t* type.
16304 (base_t, BASE_MAX, BASE_MIN): New.
16305 (froms, tos, width, pos, check): Of base_t type.
16306 (action_number_t, ACTION_MIN, ACTION_MAX): New.
16307 (actrow): Of action_number_t type.
16308 (conflrow): Of unsigned int type.
16309 (table_ninf, base_ninf): New.
16310 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
16311 (muscle_insert_int_table, muscle_insert_base_table)
16312 (muscle_insert_rule_number_table): New.
16313 (prepare_tokens): Output `toknum' as int_table.
16314 (action_row): Returns a rule_number_t.
16315 Use ACTION_MIN, not SHRT_MIN.
16316 (token_actions): yydefact is rule_number_t*.
16317 (table_ninf_remap): New.
16318 (pack_table): Use it for `base' and `table'.
16319 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
16320 replaced with...
16321 (YYPACT_NINF, YYTABLE_NINF): these.
16322 (yypact, yytable): Compute their types instead of hard-coded
16323 `short'.
16324 * tests/regression.at (Web2c Actions): Adjust.
16325
5dde258a
AD
163262002-07-19 Akim Demaille <akim@epita.fr>
16327
16328 * src/scan-gram.l (id): Can start with an underscore.
16329
a945ec39
AD
163302002-07-16 Akim Demaille <akim@epita.fr>
16331
16332 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
16333 Adjust all former `associativity' dependencies.
16334 * src/symtab.c (symbol_new): Default associativity is `undef', not
16335 `right'.
16336 (symbol_check_alias_consistence): Adjust.
16337
fae437e8
AD
163382002-07-09 Akim Demaille <akim@epita.fr>
16339
16340 * doc/bison.texinfo: Properly set the ``header'' part.
16341 Use @dircategory ``GNU programming tools'' as per Texinfo's
16342 documentation.
16343 Use @copying.
16344
1a715ef2
AD
163452002-07-09 Akim Demaille <akim@epita.fr>
16346
16347 * lib/quotearg.h: Protect against multiple inclusions.
16348 * src/location.h (location_t): Add a `file' member.
16349 (LOCATION_RESET, LOCATION_PRINT): Adjust.
16350 * src/complain.c (warn_at, complain_at, fatal_at): Drop
16351 `error_one_per_line' support.
16352
a5d50994
AD
163532002-07-09 Akim Demaille <akim@epita.fr>
16354
16355 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
16356 * src/reader.c (lineno): Remove.
16357 Adjust all dependencies.
16358 (get_merge_function): Take a location and use complain_at.
16359 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
16360 * tests/regression.at (Invalid inputs, Mixing %token styles):
16361 Adjust.
16362
b275314e
AD
163632002-07-09 Akim Demaille <akim@epita.fr>
16364
16365 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
16366 recovery rule, and forbid extensions when --yacc.
16367 (gram_error): Use complain_at.
16368 * src/reader.c (reader): Exit if there were parse errors.
16369
865b9df1
AD
163702002-07-09 Akim Demaille <akim@epita.fr>
16371
16372 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
16373 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
16374 Reported by R Blake <blakers@mac.com>.
16375
c76e14da
AD
163762002-07-09 Akim Demaille <akim@epita.fr>
16377
16378 * data/yacc.c: Output the copyright notive in the header.
16379
7db2ed2d
AD
163802002-07-03 Akim Demaille <akim@epita.fr>
16381
16382 * src/output.c (froms, tos): Are state_number_t.
16383 (save_column): sp, sp1, and sp2 are state_number_t.
16384 (prepare): Rename `final' as `final_state_number', `nnts' as
16385 `nterms_number', `nrules' as `rules_number', `nstates' as
16386 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
16387 unused.
16388 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
16389 * data/lalr1.cc (nsym_): Remove, unused.
16390
e68e0410
AD
163912002-07-03 Akim Demaille <akim@epita.fr>
16392
16393 * src/lalr.h, src/lalr.c (goto_number_t): New.
16394 * src/lalr.c (goto_list_t): New.
16395 Propagate them.
16396 * src/nullable.c (rule_list_t): New.
16397 Propagate.
16398 * src/types.h: Remove.
16399
e1a4f3a4
AD
164002002-07-03 Akim Demaille <akim@epita.fr>
16401
16402 * src/closure.c (print_fderives): Use rule_rhs_print.
16403 * src/derives.c (print_derives): Use rule_rhs_print.
16404 (rule_list_t): New, replaces `shorts'.
16405 (set_derives): Add comments.
16406 * tests/sets.at (Nullable, Firsts): Adjust.
16407
536545f3
AD
164082002-07-03 Akim Demaille <akim@epita.fr>
16409
16410 * src/output.c (prepare_actions): Free `tally' and `width'.
16411 (prepare_actions): Allocate and free `order'.
16412 * src/symtab.c (symbols_free): Free `symbols'.
16413 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
16414 * src/output.c (m4_invoke): Move to...
16415 * src/scan-skel.l: here.
16416 (<<EOF>>): Close yyout, and free its name.
16417
8b752b00
AD
164182002-07-03 Akim Demaille <akim@epita.fr>
16419
16420 Fix some memory leaks, and fix a bug: state 0 was examined twice.
16421
16422 * src/LR0.c (new_state): Merge into...
16423 (state_list_append): this.
16424 (new_states): Merge into...
16425 (generate_states): here.
16426 (set_states): Don't ensure a proper `errs' state member here, do it...
16427 * src/conflicts.c (conflicts_solve): here.
16428 * src/state.h, src/state.c: Comment changes.
16429 (state_t): Rename member `shifts' as `transitions'.
16430 Adjust all dependencies.
16431 (errs_new): For consistency, also take the values as argument.
16432 (errs_dup): Remove.
16433 (state_errs_set): New.
16434 (state_reductions_set, state_transitions_set): Assert that no
16435 previous value was assigned.
16436 (state_free): New.
16437 (states_free): Use it.
16438 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
16439 temporary storage: use `errs' and `nerrs' as elsewhere.
16440 (set_conflicts): Allocate and free this `errs'.
16441
613f5e1a
AD
164422002-07-02 Akim Demaille <akim@epita.fr>
16443
16444 * lib/libiberty.h: New.
16445 * lib: Update the bitset implementation from upstream.
16446 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
16447 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
16448 * src/main.c: Adjust bitset stats calls.
16449
26e0cadc
PE
164502002-07-01 Paul Eggert <eggert@twinsun.com>
16451
16452 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
16453 char, so that negative chars don't collide with $.
16454
1154cced
AD
164552002-06-30 Akim Demaille <akim@epita.fr>
16456
16457 Have the GLR tests be `warning' checked, and fix the warnings.
16458
16459 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
16460 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
16461 (yyremoveDeletes): `yyi' and `yyj' are size_t.
16462 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
16463 (yyaddDeferredAction): static.
16464 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
16465 (yyreportParseError): yyprefix is const.
16466 yytokenp is used only when verbose.
16467 (yy__GNUC__): Replace with __GNUC__.
16468 (yypdumpstack): yyi is size_t.
16469 (yypreference): Un-yy local variables and arguments, to avoid
16470 clashes with `yyr1'. Anyway, we are not in the user name space.
16471 (yytname_size): be an int, as is compared with ints.
16472 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
16473 Use them.
16474 * tests/cxx-gram.at: Use quotation to protect $1.
16475 Use AT_COMPILE to enable warnings hunts.
16476 Prototype yylex and yyerror.
16477 `Use' argc.
16478 Include `string.h', not `strings.h'.
16479 Produce and prototype stmtMerge only when used.
16480 yylex takes a location.
16481
97650f4e
AD
164822002-06-30 Akim Demaille <akim@epita.fr>
16483
16484 We spend a lot of time in quotearg, in particular when --verbose.
16485
16486 * src/symtab.c (symbol_get): Store a quoted version of the key.
16487 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
16488 Adjust all callers.
16489
d2576365
AD
164902002-06-30 Akim Demaille <akim@epita.fr>
16491
16492 * src/state.h (reductions_t): Rename member `nreds' as num.
16493 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
16494 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
16495
ccaf65bc
AD
164962002-06-30 Akim Demaille <akim@epita.fr>
16497
16498 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
16499 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
16500 (shifts_to): Rename as...
16501 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
16502 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
16503 (TRANSITION_IS_DISABLED, transitions_to): these.
16504
87675353
AD
165052002-06-30 Akim Demaille <akim@epita.fr>
16506
16507 * src/print.c (print_shifts, print_gotos): Merge into...
16508 (print_transitions): this.
16509 (print_transitions, print_errs, print_reductions): Align the
16510 lookaheads columns.
16511 (print_core, print_transitions, print_errs, print_state,
16512 print_grammar): Output empty lines separator before, not after.
16513 (state_default_rule_compute): Rename as...
16514 (state_default_rule): this.
16515 * tests/conflicts.at (Defaulted Conflicted Reduction),
16516 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
16517 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
16518
ce4ccb4b
AD
165192002-06-30 Akim Demaille <akim@epita.fr>
16520
16521 Display items as we display rules.
16522
16523 * src/gram.h, src/gram.c (rule_lhs_print): New.
16524 * src/gram.c (grammar_rules_partial_print): Use it.
16525 * src/print.c (print_core): Likewise.
16526 * tests/conflicts.at (Defaulted Conflicted Reduction),
16527 (Unresolved SR Conflicts): Adjust.
16528 (Unresolved SR Conflicts): Adjust and rename as...
16529 (Resolved SR Conflicts): this, as was meant.
16530 * tests/regression.at (Web2c Report): Adjust.
16531
bc933ef1
AD
165322002-06-30 Akim Demaille <akim@epita.fr>
16533
16534 * src/print.c (state_default_rule_compute): New, extracted from...
16535 (print_reductions): here.
16536 Pessimize, but clarify the code.
16537 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
16538
53d4308d
AD
165392002-06-30 Akim Demaille <akim@epita.fr>
16540
16541 * src/output.c (action_row): Let default_rule be always a rule
16542 number.
16543
574fb2d5
AD
165442002-06-30 Akim Demaille <akim@epita.fr>
16545
16546 * src/closure.c (print_firsts, print_fderives, closure):
16547 Use BITSET_EXECUTE.
16548 * src/lalr.c (lookaheads_print): Likewise.
16549 * src/state.c (state_rule_lookaheads_print): Likewise.
16550 * src/print_graph.c (print_core): Likewise.
16551 * src/print.c (print_reductions): Likewise.
16552 * src/output.c (action_row): Likewise.
16553 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
16554
05811fd7
AD
165552002-06-30 Akim Demaille <akim@epita.fr>
16556
16557 * src/print_graph.c: Use report_flag.
16558
0e4d5753
AD
165592002-06-30 Akim Demaille <akim@epita.fr>
16560
16561 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
16562 to...
16563 * src/relation.h, src/relation.c (traverse, relation_digraph)
16564 (relation_print, relation_transpose): New.
16565
24c7d800
AD
165662002-06-30 Akim Demaille <akim@epita.fr>
16567
16568 * src/state.h, src/state.c (shifts_to): New.
16569 * src/lalr.c (build_relations): Use it.
16570
9222837b
AD
165712002-06-30 Akim Demaille <akim@epita.fr>
16572
16573 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
16574 (item_number_of_rule_number, rule_number_of_item_number): New.
16575 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
16576 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
16577 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
16578 Propagate their use.
16579 Much remains to be done, in particular wrt `shorts' from types.h.
16580
260008e5
AD
165812002-06-30 Akim Demaille <akim@epita.fr>
16582
16583 * src/symtab.c (symbol_new): Initialize the `printer' member.
16584
8a731ca8
AD
165852002-06-30 Akim Demaille <akim@epita.fr>
16586
16587 * src/LR0.c (save_reductions): Remove, replaced by...
16588 * src/state.h, src/state.c (state_reductions_set): New.
16589 (reductions, errs): Rename as...
16590 (reductions_t, errs_t): these.
16591 Adjust all dependencies.
16592
32e1e0a4
AD
165932002-06-30 Akim Demaille <akim@epita.fr>
16594
16595 * src/LR0.c (state_list_t, state_list_append): New.
16596 (first_state, last_state): Now symbol_list_t.
16597 (this_state): Remove.
16598 (new_itemsets, append_states, save_reductions): Take a state_t as
16599 argument.
16600 (set_states, generate_states): Adjust.
16601 (save_shifts): Remove, replaced by...
16602 * src/state.h, src/state.c (state_shifts_set): New.
16603 (shifts): Rename as...
16604 (shifts_t): this.
16605 Adjust all dependencies.
16606 * src/state.h (state_t): Remove the `next' member.
16607
e5fb6710
AD
166082002-06-30 Akim Demaille <akim@epita.fr>
16609
16610 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
16611 escaped in slot 0.
16612
c7ca99d4
AD
166132002-06-30 Akim Demaille <akim@epita.fr>
16614
16615 Use hash.h for the state hash table.
16616
16617 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
16618 (allocate_storage): Use state_hash_new.
16619 (free_storage): Use state_hash_free.
16620 (new_state, get_state): Adjust.
16621 * src/lalr.h, src/lalr.c (states): Move to...
16622 * src/states.h (state_t): Remove the `link' member, no longer
16623 used.
16624 * src/states.h, src/states.c: here.
16625 (state_hash_new, state_hash_free, state_hash_lookup)
16626 (state_hash_insert, states_free): New.
16627 * src/states.c (state_table, state_compare, state_hash): New.
16628 * src/output.c (output_actions): Do not free states now, since we
16629 still need to know the final_state number in `prepare', called
16630 afterwards. Do it...
16631 * src/main.c (main): here: call states_free after `output'.
16632
df0e7316
AD
166332002-06-30 Akim Demaille <akim@epita.fr>
16634
16635 * src/state.h, src/state.c (state_new): New, extracted from...
16636 * src/LR0.c (new_state): here.
16637 * src/state.h (STATE_ALLOC): Move to...
16638 * src/state.c: here.
16639 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
16640 * src/state.h, src/state.c: here.
16641
39f41916
AD
166422002-06-30 Akim Demaille <akim@epita.fr>
16643
16644 * src/reader.c (gensym): Rename as...
16645 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
16646 (getsym): Rename as...
16647 (symbol_get): this.
16648
d57650a5
AD
166492002-06-30 Akim Demaille <akim@epita.fr>
16650
16651 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
16652 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
16653 * src/output.c, src/print.c, src/print_graph.c: Propagate.
16654 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
16655
5a08f1ce
AD
166562002-06-30 Akim Demaille <akim@epita.fr>
16657
16658 Make the test suite pass with warnings checked.
16659
16660 * tests/actions.at (Printers and Destructors): Improve.
16661 Avoid unsigned vs. signed issues.
16662 * tests/calc.at: Don't exercise the scanner here, do it...
16663 * tests/input.at (Torturing the Scanner): here.
16664
720623af
PH
166652002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16666
88e7e941 16667 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
16668 reorganize first lines parallel to yacc.c.
16669
fb8135fa
AD
166702002-06-28 Akim Demaille <akim@epita.fr>
16671
16672 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
16673 (b4_token_enum, b4_token_defines): New, factored from...
16674 * data/lalr1.cc, data/yacc.c, glr.c: here.
16675
41442480
AD
166762002-06-28 Akim Demaille <akim@epita.fr>
16677
16678 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
16679 unused variables.
16680 * src/output.c (merger_output): static.
16681
e0e5bf84
AD
166822002-06-28 Akim Demaille <akim@epita.fr>
16683
ba0fe3c7 16684 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
e0e5bf84
AD
16685 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
16686 pacify GCC.
16687 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 16688
676385e2
PH
166892002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16690
16691 Accumulated changelog for new GLR parsing features.
16692
6a254321 16693 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
16694 conflicts_total_count.
16695 * src/conflicts.h: Ditto.
16696 * src/output.c (token_actions): Use the new name.
16697 (output_conflicts): Change conflp => conflict_list_heads, and
16698 confl => conflict_list for better readability.
16699 * data/glr.c: Use the new names.
16700 * NEWS: Add self to GLR announcement.
e0e5bf84 16701
676385e2
PH
16702 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
16703
16704 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
16705 Akim Demaille.
16706
16707 * data/bison.glr: Change name to glr.c
16708 * data/glr.c: Renamed from bison.glr.
16709 * data/Makefile.am: Add glr.c
e0e5bf84
AD
16710
16711 * src/getargs.c:
16712
676385e2 16713 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
ba0fe3c7 16714 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 16715
676385e2
PH
16716 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16717
16718 * data/bison.glr: Be sure to restore the
16719 current #line when returning to the skeleton contents after having
16720 exposed the input file's #line.
16721
16722 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16723
16724 * data/bison.glr: Bring up to date with changes to bison.simple.
16725
16726 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16727
16728 * data/bison.glr: Correct definitions that use b4_prefix.
16729 Various reformatting.
16730 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
16731 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
16732 yytokenp argument; now part of stack.
16733 (yychar): Define to behave as documented.
16734 (yyclearin): Ditto.
e0e5bf84 16735
676385e2
PH
16736 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16737
16738 * src/reader.h: Add declaration for free_merger_functions.
16739
16740 * src/reader.c (merge_functions): New variable.
16741 (get_merge_function): New function.
16742 (free_merger_functions): New function.
16743 (readgram): Check for %prec that is not followed by a symbol.
16744 Handle %dprec and %merge declarations.
16745 (packgram): Initialize dprec and merger fields in rules array.
16746
16747 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
16748 conflict_list_cnt, conflict_list_free): New variables.
16749 (table_grow): Also grow conflict_table.
e0e5bf84 16750 (prepare_rules): Output dprec and merger tables.
676385e2 16751 (conflict_row): New function.
e0e5bf84 16752 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
16753 default reduction in conflicted states for GLR parser so that there
16754 are spaces for the conflict lists.
16755 (save_row): Also save conflict information.
16756 (token_actions): Allocate conflict list.
16757 (merger_output): New function.
16758 (pack_vector): Pack conflict table, too.
16759 (output_conflicts): New function to output yyconflp and yyconfl.
16760 (output_check): Allocate conflict_tos.
16761 (output_actions): Output conflict tables, also.
16762 (output_skeleton): Output b4_mergers definition.
16763 (prepare): Output b4_max_rhs_length definition.
16764 Use 'bison.glr' as default skeleton for GLR parsers.
16765
16766 * src/gram.c (glr_parser): New flag.
16767 (grammar_free): Call free_merger_functions.
16768
16769 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
16770 all pairs of conflicting reductions, rather than just all tokens
16771 causing conflicts. Needed to size conflict tables.
e0e5bf84 16772 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
16773 interface.
16774 (conflicts_print): Ditto.
16775 (count_total_conflicts): New function.
16776
16777 * src/reader.h (merger_list): New type.
16778 (merge_functions): New variable.
16779
16780 * src/lex.h (tok_dprec, tok_merge): New token types.
16781
16782 * src/gram.h (rule_s): Add dprec and merger fields.
16783 (glr_parser): New flag.
16784
16785 * src/conflicts.h (count_total_conflicts): New function.
16786
16787 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
16788
16789 * doc/bison.texinfo (Generalized LR Parsing): New section.
16790 (GLR Parsers): New section.
16791 (Language and Grammar): Mention GLR parsing.
16792 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
16793 Correct typo ("tge" -> "the").
16794
16795 * data/bison.glr: New skeleton for GLR parsing.
16796
16797 * tests/cxx-gram.at: New tests for GLR parsing.
16798
16799 * tests/testsuite.at: Include cxx-gram.at.
16800
16801 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 16802
676385e2
PH
16803 * src/parse-gram.y:
16804
16805 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
16806
16807 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 16808
b5480d74 168092002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
16810
16811 * src/options.h, src/options.c: Remove.
16812 * src/getargs.c (short_options, long_options): New.
16813
60491a94
AD
168142002-06-27 Akim Demaille <akim@epita.fr>
16815
16816 * data/bison.simple, data/bison.c++: Rename as...
16817 * data/yacc.c, data/lalr1.cc: these.
16818 * doc/bison.texinfo (Environment Variables): Remove.
16819
9be0c25b
AD
168202002-06-25 Raja R Harinath <harinath@cs.umn.edu>
16821
16822 * src/getargs.c (report_argmatch): Initialize strtok().
16823
1ae72863
AD
168242002-06-20 Akim Demaille <akim@epita.fr>
16825
16826 * data/bison.simple (b4_symbol_actions): New, replaces...
16827 (b4_symbol_destructor, b4_symbol_printer): these.
16828 (yysymprint): Be sure to call YYPRINT only for tokens, and using
16829 user token numbers.
16830
87542d29
AD
168312002-06-20 Akim Demaille <akim@epita.fr>
16832
16833 * data/bison.simple (yydestructor): Rename as...
16834 (yydestruct): this.
16835
1a31ed21
AD
168362002-06-20 Akim Demaille <akim@epita.fr>
16837
16838 * src/symtab.h, src/symtab.c (symbol_type_set)
16839 (symbol_destructor_set, symbol_precedence_set): The location is
16840 the last argument.
16841 Adjust all callers.
16842
e776192e
AD
168432002-06-20 Akim Demaille <akim@epita.fr>
16844
16845 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
16846 internals.
16847 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
16848 Takes a location.
16849 * src/symtab.h, src/symtab.c (symbol_class_set)
16850 (symbol_user_token_number_set): Likewise.
16851 Adjust all callers.
16852 Promote complain_at.
16853 * tests/input.at (Type Clashes): Adjust.
16854
5c1180b3
AD
168552002-06-20 Akim Demaille <akim@epita.fr>
16856
16857 * data/bison.simple (YYLEX): Fix the declaration when
16858 %pure-parser.
16859
e3170060
AD
168602002-06-20 Akim Demaille <akim@epita.fr>
16861
16862 * data/bison.simple (yysymprint): Don't print the token number,
16863 just its name.
16864 * tests/actions.at (Destructors): Rename as...
16865 (Printers and Destructors): this.
16866 Also exercise %printer.
16867
253862fd
AD
168682002-06-20 Akim Demaille <akim@epita.fr>
16869
16870 * data/bison.simple (YYDSYMPRINT): New.
16871 Use it to remove many of the #if YYDEBUG/if (yydebug).
16872
366eea36
AD
168732002-06-20 Akim Demaille <akim@epita.fr>
16874
16875 * src/symtab.h, src/symtab.c (symbol_t): printer and
16876 printer_location are new members.
16877 (symbol_printer_set): New.
16878 * src/parse-gram.y (PERCENT_PRINTER): New token.
16879 Handle its associated rule.
16880 * src/scan-gram.l: Adjust.
16881 (handle_destructor_at, handle_destructor_dollar): Rename as...
16882 (handle_symbol_code_at, handle_symbol_code_dollar): these.
16883 * src/output.c (symbol_printers_output): New.
16884 (output_skeleton): Call it.
16885 * data/bison.simple (yysymprint): New. Cannot be named yyprint
16886 since there are already many grammar files with a user `yyprint'.
16887 Replace the calls to YYPRINT to calls to yysymprint.
16888 * tests/calc.at: Adjust.
16889 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
16890 taking advantage of parser very internal details (stack size!).
16891
4f25ebb0
AD
168922002-06-20 Akim Demaille <akim@epita.fr>
16893
16894 * src/scan-gram.l: Complete the scanner with the missing patterns
16895 to pacify Flex.
16896 Use `quote' and `symbol_tag_get' where appropriate.
16897
93b68a0e
AD
168982002-06-19 Akim Demaille <akim@epita.fr>
16899
16900 * tests/actions.at (Destructors): Augment to test locations.
16901 * data/bison.simple (yydestructor): Pass it the current location
16902 if locations are enabled.
16903 Prototype only when __STDC__ or C++.
16904 Change the argument names to move into the yy name space: there is
16905 user code here.
16906
58612f1d
AD
169072002-06-19 Akim Demaille <akim@epita.fr>
16908
74310291
AD
16909 * data/bison.simple (b4_pure_if): New.
16910 Use it instead of #ifdef YYPURE.
16911
169122002-06-19 Akim Demaille <akim@epita.fr>
16913
16914 * data/bison.simple (b4_location_if): New.
58612f1d
AD
16915 Use it instead of #ifdef YYLSP_NEEDED.
16916
f25bfb75
AD
169172002-06-19 Akim Demaille <akim@epita.fr>
16918
16919 Prepare @$ in %destructor, but currently don't bind it in the
16920 skeleton, as %location use is not cleaned up yet.
16921
16922 * src/scan-gram.l (handle_dollar, handle_destructor_at)
16923 (handle_action_at): New.
16924 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
16925 a braced_code_t and a location as additional arguments.
16926 (handle_destructor_dollar): Instead of requiring `b4_eval', just
16927 unquote one when outputting `b4_dollar_dollar'.
16928 Adjust callers.
16929 * data/bison.simple (b4_eval): Remove.
16930 (b4_symbol_destructor): Adjust.
16931 * tests/input.at (Invalid @n): Adjust.
16932
c732d2c6
AD
169332002-06-19 Zack Weinberg <zack@codesourcery.com>
16934
16935 * doc/bison.texinfo: Document ability to have multiple
16936 prologue sections.
16937
8c165d89
AD
169382002-06-18 Akim Demaille <akim@epita.fr>
16939
16940 * src/files.c (compute_base_names): When computing the output file
16941 names from the input file name, strip the directory part.
16942
ca98bf57
AD
169432002-06-18 Akim Demaille <akim@epita.fr>
16944
16945 * data/bison.simple.new: Comment changes.
16946 Reported by Andreas Schwab.
16947
0bfb02ff
AD
169482002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
16949
16950 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
16951 there are no `label `yyoverflowlab' defined but not used' warnings
16952 when yyoverflow is defined.
16953
24c0aad7
AD
169542002-06-18 Akim Demaille <akim@epita.fr>
16955
16956 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
16957 new member.
16958 (symbol_destructor_set): Adjust.
16959 * src/output.c (symbol_destructors_output): Output the destructor
16960 locations.
16961 Output the symbol name.
16962 * data/bison.simple (b4_symbol_destructor): Adjust.
16963
5719c109
AD
169642002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
16965 and Akim Demaille <akim@epita.fr>
16966
16967 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
16968 what's left on the stack when the error recovery hits EOF.
16969 * tests/actions.at (Destructors): Complete to exercise this case.
16970
9280d3ef
AD
169712002-06-17 Akim Demaille <akim@epita.fr>
16972
16973 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
16974 arguments is really empty, not only equal to `[]'.
16975 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
16976 member.
16977 (symbol_destructor_set): New.
16978 * src/output.c (symbol_destructors_output): New.
16979 * src/reader.h (brace_code_t, current_braced_code): New.
16980 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
16981 (handle_dollar): Rename as...
16982 (handle_action_dollar): this.
16983 (handle_destructor_dollar): New.
16984 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
16985 (grammar_declaration): Use it.
16986 * data/bison.simple (yystos): Is always defined.
16987 (yydestructor): New.
16988 * tests/actions.at (Destructors): New.
16989 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
16990
dafdc66f
AD
169912002-06-17 Akim Demaille <akim@epita.fr>
16992
16993 * src/symlist.h, src/symlist.c (symbol_list_length): New.
16994 * src/scan-gram.l (handle_dollar, handle_at): Compute the
16995 rule_length only when needed.
16996 * src/output.c (actions_output, token_definitions_output): Output
16997 the full M4 block.
16998 * src/symtab.c: Don't access directly to the symbol tag, use
16999 symbol_tag_get.
17000 * src/parse-gram.y: Use symbol_list_free.
17001
56c47203
AD
170022002-06-17 Akim Demaille <akim@epita.fr>
17003
17004 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
17005 (symbol_list_prepend, get_type_name): Move to...
17006 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
17007 (symbol_list_prepend, symbol_list_n_type_name_get): here.
17008 Adjust all callers.
17009 (symbol_list_free): New.
17010 * src/scan-gram.l (handle_dollar): Takes a location.
17011 * tests/input.at (Invalid $n): Adjust.
17012
1e0bab92
AD
170132002-06-17 Akim Demaille <akim@epita.fr>
17014
17015 * src/reader.h, src/reader.c (symbol_list_new): Export it.
17016 (symbol_list_prepend): New.
17017 * src/parse-gram.y (%union): `list' is a new member.
17018 (symbols.1): New, replaces...
17019 (terms_to_prec.1, nterms_to_type.1): these.
17020 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
17021 Take a location as additional argument.
17022 Adjust all callers.
17023
04e60654
AD
170242002-06-15 Akim Demaille <akim@epita.fr>
17025
17026 * src/parse-gram.y: Move %token in the declaration section so that
17027 we don't depend upon CVS Bison.
17028
10e5b8bd
AD
170292002-06-15 Akim Demaille <akim@epita.fr>
17030
17031 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
17032 * src/print.c (print_core): Use it.
17033
9801d40c
AD
170342002-06-15 Akim Demaille <akim@epita.fr>
17035
17036 * src/conflicts.c (log_resolution): Accept the rule involved in
17037 the sr conflicts instead of the lookahead number that points to
17038 that rule.
17039 (flush_reduce): Accept the current lookahead vector as argument,
17040 instead of the index in LA.
17041 (resolve_sr_conflict): Accept the current number of lookahead
17042 bitset to consider for the STATE, instead of the index in LA.
17043 (set_conflicts): Adjust.
17044 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
17045
c0263492
AD
170462002-06-15 Akim Demaille <akim@epita.fr>
17047
17048 * src/state.h (state_t): Replace the `lookaheadsp' member, a
17049 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
17050 Adjust all dependencies.
17051 * src/lalr.c (initialize_lookaheads): Split into...
17052 (states_lookaheads_count, states_lookaheads_initialize): these.
17053 (lalr): Adjust.
17054
9757c359
AD
170552002-06-15 Akim Demaille <akim@epita.fr>
17056
17057 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
17058 out of...
17059 (grammar_rules_print): here.
17060 * src/reduce.c (reduce_output): Use it.
17061 * tests/reduce.at (Useless Rules, Reduced Automaton)
17062 (Underivable Rules): Adjust.
17063
6b98e4b5
AD
170642002-06-15 Akim Demaille <akim@epita.fr>
17065
17066 Copy BYacc's nice way to report the grammar.
17067
17068 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
17069 New.
17070 Don't print the rules' location, it is confusing and useless.
17071 (rule_print): Use grammar_rhs_print.
17072 * src/print.c (print_grammar): Use grammar_rules_print.
17073
6b98e4b5
AD
170742002-06-15 Akim Demaille <akim@epita.fr>
17075
17076 Complete and rationalize `useless thing' warnings.
17077
17078 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
17079 (symbol_tag_print): New.
17080 Use them everywhere in place of accessing directly the tag member.
17081 * src/gram.h, src/gram.c (rule_print): New.
17082 Use it where a rule used to be printed `by hand'.
17083 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
17084 (reduce_grammar_tables): Report the useless rules.
17085 (reduce_print): Useless things are a warning, not an error.
17086 Report it as such.
17087 * tests/reduce.at (Useless Nonterminals, Useless Rules):
17088 (Reduced Automaton, Underivable Rules): Adjust.
17089 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
17090 * tests/conflicts.at (Unresolved SR Conflicts)
17091 (Solved SR Conflicts): Adjust.
17092
ee000ba4
AD
170932002-06-15 Akim Demaille <akim@epita.fr>
17094
17095 Let symbols have a location.
17096
17097 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
17098 (getsym): Adjust.
17099 Adjust all callers.
17100 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
17101 Use location_t, not int.
17102 * src/symtab.c (symbol_check_defined): Take advantage of the
17103 location.
17104 * tests/regression.at (Invalid inputs): Adjust.
17105
8efe435c
AD
171062002-06-15 Akim Demaille <akim@epita.fr>
17107
17108 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
17109 (input): Don't try to initialize yylloc here, do it in the
17110 scanner.
17111 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
17112 * src/gram.h (rule_t): Change line and action_line into location
17113 and action_location, of location_t type.
17114 Adjust all dependencies.
17115 * src/location.h, src/location.c (empty_location): New.
17116 * src/reader.h, src/reader.c (grammar_start_symbol_set)
17117 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
17118 (grammar_current_rule_symbol_append)
17119 (grammar_current_rule_action_append): Expect a location as argument.
17120 * src/reader.c (grammar_midrule_action): Adjust to attach an
17121 action's location as dummy symbol location.
17122 * src/symtab.h, src/symtab.c (startsymbol_location): New.
17123 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
17124 the line numbers.
17125
1921f1d7
AD
171262002-06-14 Akim Demaille <akim@epita.fr>
17127
17128 Grammar declarations may be found in the grammar section.
17129
17130 * src/parse-gram.y (rules_or_grammar_declaration): New.
17131 (declarations): Each declaration may end with a semicolon, not
17132 just...
17133 (grammar_declaration): `"%union"'.
17134 (grammar): Branch to rules_or_grammar_declaration.
17135
4515534c
AD
171362002-06-14 Akim Demaille <akim@epita.fr>
17137
17138 * src/main.c (main): Invoke scanner_free.
17139
f958596b
AD
171402002-06-14 Akim Demaille <akim@epita.fr>
17141
17142 * src/output.c (m4_invoke): Extracted from...
17143 (output_skeleton): here.
17144 Free tempfile.
17145
2c569025
AD
171462002-06-14 Akim Demaille <akim@epita.fr>
17147
17148 * src/parse-gram.y (directives, directive, gram)
17149 (grammar_directives, precedence_directives, precedence_directive):
17150 Rename as...
17151 (declarations, declaration, grammar, grammar_declaration)
17152 (precedence_declaration, precedence_declarator): these.
17153 (symbol_declaration): New.
17154
592e8d4d
AD
171552002-06-14 Akim Demaille <akim@epita.fr>
17156
17157 * src/files.c (action_obstack): Remove, unused.
17158 (output_obstack): Remove it, and all its dependencies, as it is no
17159 longer needed.
17160 * src/reader.c (epilogue_set): Build the epilogue in the
17161 muscle_obstack.
17162 * src/output.h, src/output.c (muscle_obstack): Move to...
17163 * src/muscle_tab.h, src/muscle_tab.h: here.
17164 (muscle_init): Initialize muscle_obstack.
17165 (muscle_free): New.
17166 * src/main.c (main): Call it.
17167
0c15323d
AD
171682002-06-14 Akim Demaille <akim@epita.fr>
17169
17170 * src/location.h: New, extracted from...
17171 * src/reader.h: here.
17172 * src/Makefile.am (noinst_HEADERS): Merge into
17173 (bison_SOURCES): this.
17174 Add location.h.
17175 * src/parse-gram.y: Use location_t instead of Bison's.
17176 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
17177 Use location_t instead of ints.
17178
e96c9728
AD
171792002-06-14 Akim Demaille <akim@epita.fr>
17180
17181 * data/bison.simple, data/bison.c++: Be sure to restore the
17182 current #line when returning to the skeleton contents after having
17183 exposed the input file's #line.
17184
75d1fe16
AD
171852002-06-12 Akim Demaille <akim@epita.fr>
17186
17187 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
17188 eager.
17189 * tests/actions.at (Exotic Dollars): New.
17190
6c35d22c
AD
171912002-06-12 Akim Demaille <akim@epita.fr>
17192
17193 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
17194 ['"/] too eagerly.
17195 * tests/input.at (Torturing the Scanner): New.
17196
1d6412ad
AD
171972002-06-11 Akim Demaille <akim@epita.fr>
17198
17199 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
17200 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
17201 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
17202 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
17203 * src/reader.c (reader): Use it.
17204
4cdb01db
AD
172052002-06-11 Akim Demaille <akim@epita.fr>
17206
17207 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
17208 Adjust all callers.
17209 (scanner_last_string_free): New.
17210
44995b2e
AD
172112002-06-11 Akim Demaille <akim@epita.fr>
17212
17213 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
17214 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
17215 (last_string, YY_OBS_FREE): New.
17216 Use them when returning an ID.
17217
e9955c83
AD
172182002-06-11 Akim Demaille <akim@epita.fr>
17219
17220 Have Bison grammars parsed by a Bison grammar.
17221
17222 * src/reader.c, src/reader.h (prologue_augment): New.
17223 * src/reader.c (copy_definition): Remove.
17224
17225 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
17226 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
17227 (grammar_current_rule_prec_set, grammar_current_rule_check)
17228 (grammar_current_rule_symbol_append)
17229 (grammar_current_rule_action_append): Export.
17230 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
17231 (symbol_list_action_append): Remove.
17232 Hook the routines from reader.
17233 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
17234 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
17235
17236 * src/reader.c (read_declarations): Remove, unused.
17237
17238 * src/parse-gram.y: Handle the epilogue.
17239 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
17240 (grammar_start_symbol_set): this.
17241 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
17242 * src/reader.c (readgram): Remove, unused.
17243 (reader): Adjust to insert eoftoken and axiom where appropriate.
17244
17245 * src/reader.c (copy_dollar): Replace with...
17246 * src/scan-gram.h (handle_dollar): this.
17247 * src/parse-gram.y: Remove `%thong'.
17248
17249 * src/reader.c (copy_at): Replace with...
17250 * src/scan-gram.h (handle_at): this.
17251
17252 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
17253 New.
17254
17255 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
17256 time being.
17257
17258 * src/reader.h, src/reader.c (grammar_rule_end): New.
17259
17260 * src/parse.y (current_type, current_class): New.
17261 Implement `%nterm', `%token' support.
17262 Merge `%term' into `%token'.
17263 (string_as_id): New.
17264 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
17265 type name.
17266
17267 * src/parse-gram.y: Be sure to handle properly the beginning of
17268 rules.
17269
17270 * src/parse-gram.y: Handle %type.
17271 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
17272
17273 * src/parse-gram.y: More directives support.
17274 * src/options.c: No longer handle source directives.
17275
17276 * src/parse-gram.y: Fix %output.
17277
17278 * src/parse-gram.y: Handle %union.
17279 Use the prologue locations.
17280 * src/reader.c (parse_union_decl): Remove.
17281
17282 * src/reader.h, src/reader.c (epilogue_set): New.
17283 * src/parse-gram.y: Use it.
17284
17285 * data/bison.simple, data/bison.c++: b4_stype is now either not
17286 defined, then default to int, or to the contents of %union,
17287 without `union' itself.
17288 Adjust.
17289 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
17290
17291 * src/output.c (actions_output): Don't output braces, as they are
17292 already handled by the scanner.
17293
17294 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
17295 characters to themselves.
17296
17297 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
17298 that the epilogue has a proper #line.
17299
17300 * src/parse-gram.y: Handle precedence/associativity.
17301
17302 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
17303 a terminal.
17304 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
17305 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
17306 at all to define terminals that cannot be emitted.
17307
17308 * src/scan-gram.l: Escape M4 characters.
17309
17310 * src/scan-gram.l: Working properly with escapes in user
17311 strings/characters.
17312
17313 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
17314 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
17315 grammar.
17316 Use more modest sizes, as for the time being the parser does not
17317 release memory, and therefore the process swallows a huge amount
17318 of memory.
17319
17320 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
17321 stricter %token grammar.
17322
17323 * src/symtab.h (associativity): Add `undef_assoc'.
17324 (symbol_precedence_set): Do nothing when passed an undef_assoc.
17325 * src/symtab.c (symbol_check_alias_consistence): Adjust.
17326
17327 * tests/regression.at (Invalid %directive): Remove, as it is now
17328 meaningless.
17329 (Invalid inputs): Adjust to the new error messages.
17330 (Token definitions): The new grammar doesn't allow too many
17331 eccentricities.
17332
17333 * src/lex.h, src/lex.c: Remove.
17334 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
17335 (copy_character, copy_string2, copy_string, copy_identifier)
17336 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
17337 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
17338 (parse_action): Remove.
17339 * po/POTFILES.in: Adjust.
17340
2e047461
AD
173412002-06-11 Akim Demaille <akim@epita.fr>
17342
cd05d13c 17343 * src/reader.c (parse_action): Don't store directly into the
2e047461
AD
17344 rule's action member: return the action as a string.
17345 Don't require `rule_length' as an argument: compute it.
17346 (grammar_current_rule_symbol_append)
17347 (grammar_current_rule_action_append): New, eved out from
17348 (readgram): here.
17349 Remove `action_flag', `rulelength', unused now.
17350
9af3fbce
AD
173512002-06-11 Akim Demaille <akim@epita.fr>
17352
17353 * src/reader.c (grammar_current_rule_prec_set).
17354 (grammar_current_rule_check): New, eved out from...
17355 (readgram): here.
17356 Remove `xaction', `first_rhs': useless.
17357 * tests/input.at (Type clashes): New.
17358 * tests/existing.at (GNU Cim Grammar): Adjust.
17359
1485e106
AD
173602002-06-11 Akim Demaille <akim@epita.fr>
17361
17362 * src/reader.c (grammar_midrule_action): New, Eved out from
17363 (readgram): here.
17364
da4160c3
AD
173652002-06-11 Akim Demaille <akim@epita.fr>
17366
17367 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
17368 New.
17369 (readgram): Use them as replacement of inlined code, crule and
17370 crule1.
17371
f6d0f937
AD
173722002-06-11 Akim Demaille <akim@epita.fr>
17373
17374 * src/reader.c (grammar_end, grammar_symbol_append): New.
17375 (readgram): Use them.
17376 Make the use of `p' as local as possible.
17377
69078d4b
AD
173782002-06-10 Akim Demaille <akim@epita.fr>
17379
17380 GCJ's parser requires the tokens to be defined before the prologue.
17381
17382 * data/bison.simple: Output the token definition before the user's
17383 prologue.
17384 * tests/regression.at (Braces parsing, Duplicate string)
17385 (Mixing %token styles): Check the output from bison.
17386 (Early token definitions): New.
17387
5e424082
AD
173882002-06-10 Akim Demaille <akim@epita.fr>
17389
17390 * src/symtab.c (symbol_user_token_number_set): Don't complain when
17391 assigning twice the same user number to a token, so that we can
17392 use it in...
17393 * src/lex.c (lex): here.
17394 Also use `symbol_class_set' instead of hand written code.
17395 * src/reader.c (parse_assoc_decl): Likewise.
17396
44536b35
AD
173972002-06-10 Akim Demaille <akim@epita.fr>
17398
17399 * src/symtab.c, src/symtab.c (symbol_class_set)
17400 (symbol_user_token_number_set): New.
17401 * src/reader.c (parse_token_decl): Use them.
17402 Use a switch instead of ifs.
17403 Use a single argument.
17404
8b9f2372
AD
174052002-06-10 Akim Demaille <akim@epita.fr>
17406
17407 Remove `%thong' support as it is undocumented, unused, duplicates
17408 `%token's job, and creates useless e-mail traffic with people who
17409 want to know what it is, why it is undocumented, unused, and
17410 duplicates `%token's job.
17411
17412 * src/reader.c (parse_thong_decl): Remove.
17413 * src/options.c (option_table): Remove "thong".
17414 * src/lex.h (tok_thong): Remove.
17415
3ae2b51f
AD
174162002-06-10 Akim Demaille <akim@epita.fr>
17417
17418 * src/symtab.c, src/symtab.c (symbol_type_set)
17419 (symbol_precedence_set): New.
17420 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
17421 (value_components_used): Remove, unused.
17422
2f1afb73
AD
174232002-06-09 Akim Demaille <akim@epita.fr>
17424
17425 Move symbols handling code out of the reader.
17426
17427 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
17428 (axiom): Move to...
17429 * src/symtab.h, src/symtab.c: here.
17430
17431 * src/gram.c (start_symbol): Remove: use startsymbol->number.
17432 * src/reader.c (startval): Rename as...
17433 * src/symtab.h, src/symtab.c (startsymbol): this.
17434 * src/reader.c: Adjust.
17435
17436 * src/reader.c (symbol_check_defined, symbol_make_alias)
17437 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
17438 (token_translations_init)
17439 Move to...
17440 * src/symtab.c: here.
17441 * src/reader.c (packsymbols): Move to...
17442 * src/symtab.h, src/symtab.c (symbols_pack): here.
17443 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
17444 argument.
17445
e9bca3ad
AD
174462002-06-03 Akim Demaille <akim@epita.fr>
17447
17448 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
17449 then statements.
17450
86eff183
AD
174512002-06-03 Akim Demaille <akim@epita.fr>
17452
17453 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
17454 structs with non literals.
17455 * src/scan-skel.l: never-interactive.
17456 * src/conflicts.c (enum conflict_resolution_e): No trailing
17457 comma.
17458 * src/getargs.c (usage): Split long literal strings.
17459 Reported by Hans Aberg.
17460
717be197
AD
174612002-05-28 Akim Demaille <akim@epita.fr>
17462
17463 * data/bison.c++: Use C++ ostreams.
17464 (cdebug_): New member.
17465
670ddffd
AD
174662002-05-28 Akim Demaille <akim@epita.fr>
17467
17468 * src/output.c (output_skeleton): Be sure to allocate enough room
17469 for `/' _and_ for `\0' in full_skeleton.
17470
769b430f
AD
174712002-05-28 Akim Demaille <akim@epita.fr>
17472
17473 * data/bison.c++: Catch up with bison.simple:
17474 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17475 and Paul Eggert <eggert@twinsun.com>: `error' handing.
17476 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
17477 and popping traces.
17478
7067cb36
PH
174792002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17480
17481 * src/output.c (output_skeleton): Put an explicit path in front of
17482 the skeleton file name, rather than relying on the -I directory,
17483 to partially alleviate effects of having a skeleton file lying around
17484 in the current directory.
769b430f 17485
4a713ec2
PH
174862002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17487
769b430f 17488 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
17489 obstack_printf should be obstack_fgrow1.
17490
b408954b
AD
174912002-05-26 Akim Demaille <akim@epita.fr>
17492
17493 * src/state.h (state_t): `solved_conflicts' is a new member.
17494 * src/LR0.c (new_state): Set it to 0.
17495 * src/conflicts.h, src/conflicts.c (print_conflicts)
17496 (free_conflicts, solve_conflicts): Rename as...
17497 (conflicts_print, conflicts_free, conflicts_solve): these.
17498 Adjust callers.
17499 * src/conflicts.c (enum conflict_resolution_e)
17500 (solved_conflicts_obstack): New, used by...
17501 (log_resolution): this.
17502 Adjust to attach the conflict resolution to each state.
17503 Complete the description with the precedence/associativity
17504 information.
17505 (resolve_sr_conflict): Adjust.
17506 * src/print.c (print_state): Output its solved_conflicts.
17507 * tests/conflicts.at (Unresolved SR Conflicts)
17508 (Solved SR Conflicts): Exercise --report=all.
17509
a49aecd5
AD
175102002-05-26 Akim Demaille <akim@epita.fr>
17511
17512 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
17513 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
17514 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
17515 (token_number_t, item_number_as_token_number)
17516 (token_number_as_item_number, muscle_insert_token_number_table):
17517 Rename as...
17518 (symbol_number_t, item_number_as_symbol_number)
17519 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
17520 these, since it is more appropriate.
17521
5504898e
AD
175222002-05-26 Akim Demaille <akim@epita.fr>
17523
17524 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
17525 `Error:' lines.
17526 * data/bison.simple (yystos) [YYDEBUG]: New.
17527 (yyparse) [YYDEBUG]: Display the symbols which are popped during
17528 error recovery.
17529 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
17530
ec3bc396
AD
175312002-05-25 Akim Demaille <akim@epita.fr>
17532
17533 * doc/bison.texinfo (Debugging): Split into...
17534 (Tracing): this new section, its former contents, and...
17535 (Understanding): this new section.
17536 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
17537 by...
17538 (report_flag): this.
17539 Adjust all dependencies.
17540 (report_args, report_types, report_argmatch): New.
17541 (usage, getargs): Report/support -r, --report.
17542 * src/options.h
17543 (struct option_table_struct): Rename as..,
17544 (struct option_table_s): this.
17545 Rename the `set_flag' member to `flag' to match with getopt_long's
17546 struct.
17547 * src/options.c (option_table): Split verbose into an entry for
17548 %verbose, and another for --verbose.
17549 Support --report/-r, so remove -r from the obsolete --raw.
17550 * src/print.c: Attach full item sets and lookaheads reports to
17551 report_flag instead of trace_flag.
17552 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
17553
78df8250
PE
175542002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17555 and Paul Eggert <eggert@twinsun.com>
769b430f 17556
78df8250
PE
17557 * data/bison.simple (yyparse): Correct error handling to conform to
17558 POSIX and yacc. Specifically, after syntax error is discovered,
17559 do not reduce further before shifting the error token.
17560 Clean up the code a bit by removing the labels yyerrdefault,
17561 yyerrhandle, yyerrpop.
17562 * NEWS: Document the above.
17563
c0c9ea05
PH
175642002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17565
17566 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
17567 type; it isn't always big enough, since it doesn't necessarily
17568 include non-terminals.
769b430f 17569 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
17570 the latter can be removed.
17571 (yy_token_number_type): Remove, only one use.
17572 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
17573 don't use TokenNumberType as element type.
769b430f 17574
c0c9ea05
PH
17575 * tests/regression.at: Modify expected output to agree with change
17576 to yyr1 and yytranslate.
769b430f 17577
6390a83f
FK
175782002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
17579
17580 * src/reader.c (parse_action): Use copy_character instead of
17581 obstack_1grow.
17582
db7c8e9a
AD
175832002-05-13 Akim Demaille <akim@epita.fr>
17584
17585 * tests/regression.at (Token definitions): Prototype yylex and
17586 yyerror.
17587
fcc61800
PH
175882002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17589
158c687b 17590 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
17591 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
17592 32-bit arithmetic.
17593 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
17594
5683e9b2
AD
175952002-05-07 Akim Demaille <akim@epita.fr>
17596
17597 * tests/synclines.at: Be sure to prototype yylex and yyerror to
17598 avoid GCC warnings.
17599
0c2d3f4c
AD
176002002-05-07 Akim Demaille <akim@epita.fr>
17601
17602 Kill GCC warnings.
17603
17604 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
17605 over the RHS of each rule.
17606 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
17607 * src/state.h (state_t): Member `nitems' is unsigned short.
17608 * src/LR0.c (get_state): Adjust.
17609 * src/reader.c (packgram): Likewise.
17610 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
17611 `Type'.
17612 (muscle_insert_int_table): Remove, unused.
17613 (prepare_rules): Remove `max'.
17614
1565b720
AD
176152002-05-06 Akim Demaille <akim@epita.fr>
17616
17617 * src/closure.c (print_firsts): Display of the symbol tags.
17618 (bitmatrix_print): Move to...
17619 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
17620 here.
17621 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
17622
cfaee611
AD
176232002-05-06 Akim Demaille <akim@epita.fr>
17624
17625 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
17626 hash_do_for_each.
17627
458be8e0
AD
176282002-05-06 Akim Demaille <akim@epita.fr>
17629
17630 * src/LR0.c (new_state, get_state): Instead of using the global
17631 `kernel_size' and `kernel_base', have two new arguments:
17632 `core_size' and `core'.
17633 Adjust callers.
17634
a900a624
AD
176352002-05-06 Akim Demaille <akim@epita.fr>
17636
17637 * src/reader.c (packgram): No longer end `ritem' with a 0
17638 sentinel: it is not used.
17639
d4e7d3a1
AD
176402002-05-05 Akim Demaille <akim@epita.fr>
17641
17642 New experimental feature: display the lookaheads in the report and
17643 graph.
17644
17645 * src/print (print_core): When --trace-flag, display the rules
17646 lookaheads.
17647 * src/print_graph.c (print_core): Likewise.
17648 Swap the arguments.
17649 Adjust caller.
17650
39ceb25b
AD
176512002-05-05 Akim Demaille <akim@epita.fr>
17652
17653 * tests/torture.at (Many lookaheads): New test.
17654
5372019f
AD
176552002-05-05 Akim Demaille <akim@epita.fr>
17656
17657 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
17658 (GENERATE_MUSCLE_INSERT_TABLE): this.
17659 (output_int_table, output_unsigned_int_table, output_short_table)
17660 (output_token_number_table, output_item_number_table): Replace with...
17661 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
17662 (muscle_insert_short_table, muscle_insert_token_number_table)
17663 (muscle_insert_item_number_table): these.
17664 Adjust all callers.
17665 (prepare_tokens): Don't free `translations', since...
17666 * src/reader.h, src/reader.c (grammar_free): do it.
17667 Move to...
17668 * src/gram.h, src/gram.c (grammar_free): here.
17669 * data/bison.simple, data/bison.c++: b4_token_number_max is now
17670 b4_translate_max.
17671
5df5f6d5
AD
176722002-05-05 Akim Demaille <akim@epita.fr>
17673
17674 * src/output.c (output_unsigned_int_table): New.
17675 (prepare_rules): `i' is unsigned.
17676 `prhs', `rline', `r2' are unsigned int.
17677 Rename muscle `rhs_number_max' as `rhs_max'.
17678 Output muscles `prhs_max', `rline_max', and `r2_max'.
17679 Free rline and r1.
17680 * data/bison.simple, data/bison.c++: Adjust to use these muscles
17681 to compute types instead of constant types.
17682 * tests/regression.at (Web2c Actions): Adjust.
17683
b87f8b21
AD
176842002-05-04 Akim Demaille <akim@epita.fr>
17685
17686 * src/symtab.h (SALIAS, SUNDEF): Rename as...
17687 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
17688 Adjust dependencies.
17689 * src/output.c (token_definitions_output): Be sure not to output a
17690 `#define 'a'' when fed with `%token 'a' "a"'.
17691 * tests/regression.at (Token definitions): New.
17692
8bb936e4
PE
176932002-05-03 Paul Eggert <eggert@twinsun.com>
17694
17695 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
17696 for K&R C.
17697
176982002-05-03 gettextize <bug-gnu-gettext@gnu.org>
17699
17700 * Makefile.am (SUBDIRS): Remove intl.
17701 (EXTRA_DIST): Add config/config.rpath.
17702
53c71a12
AD
177032002-05-03 Akim Demaille <akim@epita.fr>
17704
17705 * data/bison.simple (m4_if): Don't output empty enums.
17706 And actually, output valid enum definitions :(.
17707
289dd0cf
AD
177082002-05-03 Akim Demaille <akim@epita.fr>
17709
17710 * configure.bat: Remove, completely obsolete.
17711 * Makefile.am (EXTRA_DIST): Adjust.
17712 Don't distribute config.rpath...
17713 * config/Makefile.am (EXTRA_DIST): Do it.
17714
db85e524
AD
177152002-05-03 Akim Demaille <akim@epita.fr>
17716
17717 * configure.in (GETTEXT_VERSION): New.
17718 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
17719
83ccf991
AD
177202002-05-03 Akim Demaille <akim@epita.fr>
17721
17722 * data/bison.simple (b4_token_enum): New.
17723 (b4_token_defines): Use it to output tokens both as #define and
17724 enums.
17725 Suggested by Paul Eggert.
17726 * src/output.c (token_definitions_output): Don't output spurious
17727 white spaces.
17728
1f418995
AD
177292002-05-03 Akim Demaille <akim@epita.fr>
17730
17731 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
17732
45119f04
RA
177332002-05-02 Robert Anisko <robert@lrde.epita.fr>
17734
17735 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
17736 Update the stack class, give a try to deque as the default container.
17737
b2d52318
AD
177382002-05-02 Akim Demaille <akim@epita.fr>
17739
17740 * data/bison.simple (yyparse): Do not implement @$ = @1.
17741 (YYLLOC_DEFAULT): Adjust to do it.
17742 * doc/bison.texinfo (Location Default Action): Fix.
17743
3a8b4109
AD
177442002-05-02 Akim Demaille <akim@epita.fr>
17745
17746 * src/reader.c (parse_braces): Merge into...
17747 (parse_action): this.
17748
84614e13
AD
177492002-05-02 Akim Demaille <akim@epita.fr>
17750
17751 * configure.in (ALL_LINGUAS): Remove.
17752 * po/LINGUAS, hr.po: New.
17753
fdbcd8e2
AD
177542002-05-02 Akim Demaille <akim@epita.fr>
17755
17756 Remove the so called hairy (semantic) parsers.
17757
17758 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
17759 * src/gram.h, src/gram.c (semantic_parser): Remove.
17760 (rule_t): Remove the guard and guard_line members.
17761 * src/lex.h (token_t): remove tok_guard.
17762 * src/options.c (option_table): Remove %guard and %semantic_parser
17763 support.
17764 * src/output.c, src/output.h (guards_output): Remove.
17765 (prepare): Adjust.
17766 (token_definitions_output): Don't output the `T'
17767 tokens (???).
17768 (output_skeleton): Don't output the guards.
17769 * src/files.c, src/files.c (attrsfile): Remove.
17770 * src/reader.c (symbol_list): Remove the guard and guard_line
17771 members.
17772 Adjust dependencies.
17773 (parse_guard): Remove.
17774 * data/bison.hairy: Remove.
17775 * doc/bison.texinfo (Environment Variables): Remove occurrences of
17776 BISON_HAIRY.
17777
82b6cb3f
AD
177782002-05-02 Akim Demaille <akim@epita.fr>
17779
17780 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
17781 (parse_guard): Rename the formal argument `stack_offset' as
17782 `rule_length', which is more readable.
17783 Adjust callers.
17784 (copy_at, copy_dollar): Instead of outputting the hard coded
17785 values of $$, $n and so forth, output invocation to b4_lhs_value,
17786 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
17787 Note: this patch partially drops `semantic-parser' support: it
17788 always does `rule_length - n', where semantic parsers ought to
17789 always use `-n'.
82b6cb3f
AD
17790 * data/bison.simple, data/bison.c++ (b4_lhs_value)
17791 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
17792
6cbfbcc5
AD
177932002-05-02 Akim Demaille <akim@epita.fr>
17794
17795 * configure.in (AC_INIT): Bump to 1.49b.
17796 (AM_INIT_AUTOMAKE): Short invocation.
17797
b8548114
AD
177982002-05-02 Akim Demaille <akim@epita.fr>
17799
17800 Version 1.49a.
17801
c20cd1fa
AD
178022002-05-01 Akim Demaille <akim@epita.fr>
17803
17804 * src/skeleton.h: Remove.
17805
8a9566d4
AD
178062002-05-01 Akim Demaille <akim@epita.fr>
17807
17808 * src/skeleton.h: Fix the #endif.
17809 Reported by Magnus Fromreide.
17810
8c6d399a
PE
178112002-04-26 Paul Eggert <eggert@twinsun.com>
17812
17813 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
17814 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 17815 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 17816
2b7ed18a
RA
178172002-04-25 Robert Anisko <robert@lrde.epita.fr>
17818
17819 * src/scan-skel.l: Postprocess quadrigraphs.
17820
17821 * src/reader.c (copy_character): New function, used to output
17822 single characters while replacing `[' and `]' with quadrigraphs, to
17823 avoid troubles with M4 quotes.
17824 (copy_comment): Output characters with copy_character.
17825 (read_additionnal_code): Likewise.
17826 (copy_string2): Likewise.
17827 (copy_definition): Likewise.
17828
17829 * tests/calc.at: Exercise M4 quoting.
17830
34a89c50
AD
178312002-04-25 Akim Demaille <akim@epita.fr>
17832
17833 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
17834 between `!' and the command.
17835 Reported by Paul Eggert.
17836
0dd1580a
RA
178372002-04-24 Robert Anisko <robert@lrde.epita.fr>
17838
17839 * tests/calc.at: Exercise prologue splitting.
17840
17841 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
17842 `b4_post_prologue' instead of `b4_prologue'.
17843
17844 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
17845 muscles.
17846 (output): Free pre_prologue_obstack and post_prologue_obstack.
17847 * src/files.h, src/files.c (attrs_obstack): Remove.
17848 (pre_prologue_obstack, post_prologue_obstack): New.
17849 * src/reader.c (copy_definition): Add a parameter to specify the
17850 obstack to fill, instead of using attrs_obstack unconditionally.
17851 (read_declarations): Pass pre_prologue_obstack to copy_definition if
17852 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
17853
83c1796f
PE
178542002-04-23 Paul Eggert <eggert@twinsun.com>
17855
17856 * data/bison.simple: Remove unnecessary commentary and white
17857 space differences from 1_29-branch.
17858 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
17859
17860 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
17861 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
17862 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
17863 constructors or destructors.
17864
17865 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
17866
1207eeac
AD
178672002-04-23 Akim Demaille <akim@epita.fr>
17868
17869 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
17870 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
17871 location with columns.
17872 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
17873 All reported by Paul Eggert.
17874
78ab8f67
AD
178752002-04-22 Akim Demaille <akim@epita.fr>
17876
17877 * src/reduce.c (dump_grammar): Move to...
17878 * src/gram.h, src/gram.c (grammar_dump): here.
17879 Be sure to separate long item numbers.
17880 Don't read the members of a rule's prec if its nil.
17881
133c20e2
AD
178822002-04-22 Akim Demaille <akim@epita.fr>
17883
17884 * src/output.c (table_size, table_grow): New.
17885 (MAXTABLE): Remove, replace uses with table_size.
17886 (pack_vector): Instead of dying when the table is too big, grow it.
17887
9515e8a7
AD
178882002-04-22 Akim Demaille <akim@epita.fr>
17889
17890 * data/bison.simple (yyr1): Its type is that of a token number.
17891 * data/bison.c++ (r1_): Likewise.
17892 * tests/regression.at (Web2c Actions): Adjust.
17893
23c5a174
AD
178942002-04-22 Akim Demaille <akim@epita.fr>
17895
17896 * src/reader.c (token_translations_init): 256 is now the default
17897 value for the error token, i.e., it will be assigned another
17898 number if the user assigned 256 to one of her tokens.
17899 (reader): Don't force 256 to error.
17900 * doc/bison.texinfo (Symbols): Adjust.
17901 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
17902 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
17903 etc. instead of 10, 20, 30 (which was used to `jump' over error
17904 (256) and undefined (2)).
17905
5fbb0954
AD
179062002-04-22 Akim Demaille <akim@epita.fr>
17907
17908 Propagate more token_number_t.
17909
17910 * src/gram.h (token_number_as_item_number)
17911 (item_number_as_token_number): New.
17912 * src/output.c (GENERATE_OUTPUT_TABLE): New.
17913 Use it to create output_item_number_table and
17914 output_token_number_table.
17915 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
17916 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
17917 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
17918 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
17919
4f940944
AD
179202002-04-22 Akim Demaille <akim@epita.fr>
17921
17922 * src/output.h, src/output.c (get_lines_number): Remove.
17923
3ded9a63
AD
179242002-04-19 Akim Demaille <akim@epita.fr>
17925
17926 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
17927 as Lex/Flex'.
17928 (Debugging): More details about enabling the debugging features.
17929 (Table of Symbols): Describe $$, $n, @$, and @n.
17930 Suggested by Tim Josling.
17931
e0c471a9
AD
179322002-04-19 Akim Demaille <akim@epita.fr>
17933
17934 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
17935
fecc10cd
AD
179362002-04-10 Akim Demaille <akim@epita.fr>
17937
17938 * src/system.h: Rely on HAVE_LIMITS_H.
17939 Suggested by Paul Eggert.
17940
51dec47b
AD
179412002-04-09 Akim Demaille <akim@epita.fr>
17942
17943 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
17944 full stderr, and strip it according to the bison options, instead
17945 of composing the error message from different bits.
17946 This makes it easier to check for several error messages.
17947 Adjust all the invocations.
17948 Add an invocation exercising the error token.
17949 Add an invocation demonstrating a stupid error message.
17950 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
17951 Adjust the tests.
17952 Error message are for stderr, not stdout.
17953
007a50a4
AD
179542002-04-09 Akim Demaille <akim@epita.fr>
17955
17956 * src/gram.h, src/gram.c (error_token_number): Remove, use
17957 errtoken->number.
17958 * src/reader.c (reader): Don't specify the user token number (2)
17959 for $undefined, as it uselessly prevents using it.
17960 * src/gram.h (token_number_t): Move to...
17961 * src/symtab.h: here.
17962 (state_t.number): Is a token_number_t.
17963 * src/print.c, src/reader.c: Use undeftoken->number instead of
17964 hard coded 2.
17965 (Even though this 2 is not the same as above: the number of the
17966 undeftoken remains being 2, it is its user token number which
17967 might not be 2).
17968 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
17969 `user_token_number_max'.
17970 Output `undef_token_number'.
17971 * data/bison.simple, data/bison.c++: Use them.
17972 Be sure to map invalid yylex return values to
17973 `undef_token_number'. This saves us from gratuitous SEGV.
17974
17975 * tests/conflicts.at (Solved SR Conflicts)
17976 (Unresolved SR Conflicts): Adjust.
17977 * tests/regression.at (Web2c Actions): Adjust.
17978
06446ccf
AD
179792002-04-08 Akim Demaille <akim@epita.fr>
17980
17981 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
17982 Adding #line.
17983 Remove the duplicate `typedefs'.
17984 (RhsNumberType): Fix the declaration and various other typos.
17985 Use __ofile__.
17986 * data/bison.simple: Use __ofile__.
17987 * src/scan-skel.l: Handle __ofile__.
17988
62a3e4f0
AD
179892002-04-08 Akim Demaille <akim@epita.fr>
17990
17991 * src/gram.h (item_number_t): New, the type of item numbers in
17992 RITEM. Note that it must be able to code symbol numbers as
17993 positive number, and the negation of rule numbers as negative
17994 numbers.
17995 Adjust all dependencies (pretty many).
17996 * src/reduce.c (rule): Remove this `short *' pointer: use
17997 item_number_t.
17998 * src/system.h (MINSHORT, MAXSHORT): Remove.
17999 Include `limits.h'.
18000 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
18001 (shortcpy): Remove.
18002 (MAXTABLE): Move to...
18003 * src/output.c (MAXTABLE): here.
18004 (prepare_rules): Use output_int_table to output rhs.
18005 * data/bison.simple, data/bison.c++: Adjust.
18006 * tests/torture.at (Big triangle): Move the limit from 254 to
18007 500.
18008 * tests/regression.at (Web2c Actions): Ajust.
18009
18010 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
18011 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
18012 passes, but produces negative #line number, once fixed, GCC is
18013 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
18014 C), it passes.
18015 * src/state.h (state_h): Code input lines on ints, not shorts.
18016
bb88b0fc
AD
180172002-04-08 Akim Demaille <akim@epita.fr>
18018
18019 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
18020 and then the grammar.
18021
9a636f47
AD
180222002-04-08 Akim Demaille <akim@epita.fr>
18023
18024 * src/system.h: No longer using strndup.
18025
680e8701
AD
180262002-04-07 Akim Demaille <akim@epita.fr>
18027
18028 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
18029 * src/output.c (output_table_data): Return the longest number.
18030 (prepare_tokens): Output `token_number_max').
18031 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
18032 New.
18033 Use them to define yy_token_number_type/TokenNumberType.
18034 Use this type for yytranslate.
18035 * tests/torture.at (Big triangle): Push the limit from 124 to
18036 253.
18037 * tests/regression.at (Web2c Actions): Adjust.
18038
817e9f41
AD
180392002-04-07 Akim Demaille <akim@epita.fr>
18040
18041 * tests/torture.at (Big triangle): New.
18042 (GNU AWK Grammar, GNU Cim Grammar): Move to...
18043 * tests/existing.at: here.
18044
5123689b
AD
180452002-04-07 Akim Demaille <akim@epita.fr>
18046
18047 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
18048 nritems.
18049 Adjust dependencies.
18050
f3849179
AD
180512002-04-07 Akim Demaille <akim@epita.fr>
18052
18053 * src/reader.c: Normalize increments to prefix form.
18054
bd02036a
AD
180552002-04-07 Akim Demaille <akim@epita.fr>
18056
18057 * src/reader.c, symtab.c: Remove debugging code.
18058
db8837cb
AD
180592002-04-07 Akim Demaille <akim@epita.fr>
18060
18061 Rename all the `bucket's as `symbol_t'.
18062
18063 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
18064 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
18065 * src/symtab.c, src/symtab.h (bucket): Rename as...
18066 (symbol_t): this.
18067 (symbol_list_new, bucket_check_defined, bucket_make_alias)
18068 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
18069 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
18070 (buckets_new, buckets_free, buckets_do): Rename as...
18071 (symbol_list_new, symbol_check_defined, symbol_make_alias)
18072 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
18073 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
18074 (symbols_new, symbols_free, symbols_do): these.
18075
72a23c97
AD
180762002-04-07 Akim Demaille <akim@epita.fr>
18077
18078 Use lib/hash for the symbol table.
18079
18080 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
18081 EOF.
18082 * src/lex.c (lex): Set the `number' member of new terminals.
18083 * src/reader.c (bucket_check_defined, bucket_make_alias)
18084 (bucket_check_alias_consistence, bucket_translation): New.
18085 (reader, grammar_free, readgram, token_translations_init)
18086 (packsymbols): Adjust.
18087 (reader): Number the predefined tokens.
18088 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
18089 for predefined tokens.
18090 * src/symtab.h (bucket): Remove all the hash table related
18091 members.
18092 * src/symtab.c (symtab): Replace by...
18093 (bucket_table): this.
18094 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
18095 (buckets_new, buckets_do): New.
18096
280a38c3
AD
180972002-04-07 Akim Demaille <akim@epita.fr>
18098
18099 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
18100 (start_symbol, max_user_token_number, semantic_parser)
18101 (error_token_number): Initialize.
18102 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
18103 Initialize.
18104 (reader): Don't.
18105 (errtoken, eoftoken, undeftoken, axiom): Extern.
18106
03b31c0c
AD
181072002-04-07 Akim Demaille <akim@epita.fr>
18108
18109 * src/gram.h (rule_s): prec and precsym are now pointers
18110 to the bucket giving the priority/associativity.
18111 Member `associativity' removed: useless.
18112 * src/reduce.c, src/conflicts.c: Adjust.
18113
8b3df748
AD
181142002-04-07 Akim Demaille <akim@epita.fr>
18115
18116 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
18117 Properly escape the symbols' TAG when outputting them.
18118
e601aa1d
AD
181192002-04-07 Akim Demaille <akim@epita.fr>
18120
18121 * src/lalr.h (LA): Is a bitsetv, not bitset*.
18122
b0299a2e
AD
181232002-04-07 Akim Demaille <akim@epita.fr>
18124
18125 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
18126 (LArule): this, which is an array to rule_t*.
18127 * src/print.c, src/conflicts.c: Adjust.
18128
d7e1f00c
AD
181292002-04-07 Akim Demaille <akim@epita.fr>
18130
18131 * src/gram.h (rule_t): Rename `number' as `user_number'.
18132 `number' is a new member.
18133 Adjust dependencies.
18134 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
18135
cc9305dd
AD
181362002-04-07 Akim Demaille <akim@epita.fr>
18137
18138 As a result of the previous patch, it is no longer needed
18139 to reorder ritem itself.
18140
18141 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
18142
b0940840
AD
181432002-04-07 Akim Demaille <akim@epita.fr>
18144
18145 Be sure never to walk through RITEMS, but use only data related to
18146 the rules themselves. RITEMS should be banished.
18147
18148 * src/output.c (output_token_translations): Rename as...
18149 (prepare_tokens): this.
18150 In addition to `translate', prepare the muscles `tname' and
18151 `toknum', which were handled by...
18152 (output_rule_data): this.
18153 Remove, and move the remainder of its outputs into...
18154 (prepare_rules): this new routines, which also merges content from
18155 (output_gram): this.
18156 (prepare_rules): Be sure never to walk through RITEMS.
18157 (output_stos): Rename as...
18158 (prepare_stos): this.
18159 (output): Always invoke prepare_states, after all, just don't use it
18160 in the output if you don't need it.
18161
643a5994
AD
181622002-04-07 Akim Demaille <akim@epita.fr>
18163
18164 * src/LR0.c (new_state): Display `nstates' as the name of the
18165 newly created state.
18166 Adjust to initialize first_state and last_state if needed.
18167 Be sure to distinguish the initial from the final state.
18168 (new_states): Create the itemset of the initial state, and use
18169 new_state.
18170 * src/closure.c (closure): Now that the initial state has its
18171 items properly set, there is no need for a special case when
18172 creating `ruleset'.
18173
18174 As a result, now the rule 0, reducing to $axiom, is visible in the
18175 outputs. Adjust the test suite.
18176
18177 * tests/conflicts.at (Solved SR Conflicts)
18178 (Unresolved SR Conflicts): Adjust.
18179 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
18180 * tests/conflicts.at (S/R in initial): New.
18181
b4c4ccc2
AD
181822002-04-07 Akim Demaille <akim@epita.fr>
18183
18184 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
18185 the RHS of the rules.
18186 * src/output.c (output_gram): Likewise.
18187
bba97eb2
AD
181882002-04-07 Akim Demaille <akim@epita.fr>
18189
18190 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
18191 bucket.
18192 Adjust all dependencies.
18193 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
18194 `number' of the buckets too.
18195 * src/gram.h: Include `symtab.h'.
18196 (associativity): Move to...
18197 * src/symtab.h: here.
18198 No longer include `gram.h'.
18199
c3b407f4
AD
182002002-04-07 Akim Demaille <akim@epita.fr>
18201
18202 * src/gram.h, src/gram.c (rules_rhs_length): New.
18203 (ritem_longest_rhs): Use it.
18204 * src/gram.h (rule_t): `number' is a new member.
18205 * src/reader.c (packgram): Set it.
18206 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
18207 the end of `rules', and count them out of `nrules'.
18208 (reduce_output, dump_grammar): Adjust.
18209 * src/print.c (print_grammar): It is no longer needed to check for
18210 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
18211 * tests/reduce.at (Reduced Automaton): New test.
18212
11652ab3
AD
182132002-04-07 Akim Demaille <akim@epita.fr>
18214
18215 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
18216 lacking `+ 1' to nrules, Bison reported as useless a token if it
18217 was used solely to set the precedence of the last rule...
18218
26b23c1a
AD
182192002-04-07 Akim Demaille <akim@epita.fr>
18220
18221 * data/bison.c++, data/bison.simple: Don't output the current file
18222 name in #line, to avoid useless diffs between two identical
18223 outputs under different names.
18224
18bcecb0
AD
182252002-04-07 Akim Demaille <akim@epita.fr>
18226
18227 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
18228 Normalize loops to using `< nrules + 1', not `<= nrules'.
18229
fa770c86
AD
182302002-04-07 Akim Demaille <akim@epita.fr>
18231
18232 * TODO: Update.
18233
d9b739c3
AD
182342002-04-07 Akim Demaille <akim@epita.fr>
18235
18236 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
18237 bucket.value as bucket.number.
18238
99013900
AD
182392002-04-07 Akim Demaille <akim@epita.fr>
18240
18241 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
18242 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
18243 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
18244 RHS, instead of being an index in RITEMS.
18245
e966383b
PE
182462002-04-04 Paul Eggert <eggert@twinsun.com>
18247
18248 * doc/bison.texinfo: Update copyright date.
18249 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
18250 (Symbols): Warn about running Bison in one character set,
18251 but compiling and/or running in an incompatible one.
18252 Warn about character code 256, too.
18253
182542002-04-03 Paul Eggert <eggert@twinsun.com>
18255
18256 * src/bison.data (YYSTACK_ALLOC): Depend on whether
18257 YYERROR_VERBOSE is nonzero, not whether it is defined.
18258
18259 Merge changes from bison-1_29-branch.
c307773e 18260
8d6c48b9
PE
182612002-03-20 Paul Eggert <eggert@twinsun.com>
18262
18263 Merge fixes from Debian bison_1.34-1.diff.
18264
18265 * configure.in (AC_PREREQ): 2.53.
18266
e53c6322
AD
182672002-03-20 Akim Demaille <akim@epita.fr>
18268
18269 * src/conflicts.c (log_resolution): Argument `resolution' is const.
18270
9ffbeca7
PE
182712002-03-19 Paul Eggert <eggert@twinsun.com>
18272
21db0b2a
PE
18273 * src/bison.simple (YYCOPY): New macro.
18274 (YYSTACK_RELOCATE): Use it.
18275 Remove Type arg; no longer needed. All callers changed.
18276 (yymemcpy): Remove; no longer needed.
18277
9ffbeca7
PE
18278 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
18279 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
18280
642cb8f8
AD
182812002-03-19 Akim Demaille <akim@epita.fr>
18282
18283 Test and fix the #line outputs.
18284
18285 * tests/atlocal.at (GCC): New.
18286 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
0ffd4fd1 18287 (Prologue synch line, %union synch line, Postprologue synch line)
642cb8f8
AD
18288 (Action synch line, Epilogue synch line): New tests.
18289 * src/reader.c (parse_union_decl): Define the muscle stype_line.
18290 * data/bison.simple, data/bison.c++: Use it.
18291
3c31a486
AD
182922002-03-19 Akim Demaille <akim@epita.fr>
18293
18294 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
18295 (Solved SR Conflicts, %expect not enough, %expect right)
18296 (%expect too much): Move to...
18297 * tests/conflicts.at: this new file.
18298
0d8bed56
AD
182992002-03-19 Akim Demaille <akim@epita.fr>
18300
18301 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
18302 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
18303 that we can move to enums for instance.
18304 * src/output.c (token_definitions_output): Output a list of
18305 `token-name, token-number' instead of the #define.
18306 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
18307
9208d17f
AD
183082002-03-14 Akim Demaille <akim@epita.fr>
18309
18310 Use Gettext 0.11.1.
18311
af27eacb
RA
183122002-03-09 Robert Anisko <robert@lrde.epita.fr>
18313
18314 * data/bison.c++: Make the user able to add members to the generated
18315 parser by subclassing.
18316
9101a310
RA
183172002-03-05 Robert Anisko <robert@lrde.epita.fr>
18318
18319 * src/reader.c (read_additionnal_code): `c' should be an integer, not
18320 a character.
18321 Reported by Nicolas Tisserand and Nicolas Burrus.
18322
fff9bf0b
RA
183232002-03-04 Robert Anisko <robert@lrde.epita.fr>
18324
18325 * src/reader.c: Warn about lacking semi-colons, do not complain.
18326
64dba31e
RA
183272002-03-04 Robert Anisko <robert@lrde.epita.fr>
18328
18329 * data/bison.c++: Remove a debug line.
18330
374f5a14
RA
183312002-03-04 Robert Anisko <robert@lrde.epita.fr>
18332
18333 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
18334 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
18335 provide a default implementation.
18336
bfcf1f3a
AD
183372002-03-04 Akim Demaille <akim@epita.fr>
18338
18339 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
18340 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
18341 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
18342 * tests/semantic.at (Parsing Guards): Similarly.
18343 * src/reader.at (readgram): Complain if the last rule is not ended
18344 with a semi-colon.
18345
65ccf9fc
AD
183462002-03-04 Akim Demaille <akim@epita.fr>
18347
18348 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
18349 * src/closure.c: here.
18350 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
18351 RTC.
18352 * src/warshall.h, src/warshall.c: Remove.
18353 * tests/sets.at (Broken Closure): Adjust.
18354
d0039cbc
AD
183552002-03-04 Akim Demaille <akim@epita.fr>
18356
18357 * src/output.c (output_skeleton): tempdir is const.
18358 bytes_read is unused.
18359
345cea78
AD
183602002-03-04 Akim Demaille <akim@epita.fr>
18361
18362 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
18363 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
18364 Update.
18365 From Michael Hayes.
18366
564801f7
AD
183672002-03-04 Akim Demaille <akim@epita.fr>
18368
18369 * src/closure.c (closure): `r' is unused.
18370
e5352bc7
AD
183712002-03-04 Akim Demaille <akim@epita.fr>
18372
18373 * tests/sets.at (Broken Closure): Add the ending `;'.
18374 * src/reader.at (readgram): Complain if a rule is not ended with a
18375 semi-colon.
18376
914feea9
AD
183772002-03-04 Akim Demaille <akim@epita.fr>
18378
18379 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
18380 (count_sr_conflicts): Use bitset_count.
18381 * src/reduce.c (inaccessable_symbols): Ditto.
18382 (bits_size): Remove.
18383 * src/warshall.h, src/warshall.c: Convert to bitsetv.
18384
f0250de6
AD
183852002-03-04 Akim Demaille <akim@epita.fr>
18386
18387 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
18388 * src/reduce.c: Remove the `bitset_zero's following the
18389 `bitset_create's, as now it is performed by the latter.
18390
ef017502
AD
183912002-03-04 Akim Demaille <akim@epita.fr>
18392
18393 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
18394 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
18395 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
18396 latest sources from Michael.
18397
76514394
AD
183982002-03-04 Akim Demaille <akim@epita.fr>
18399
18400 * src/output.c (output): Don't free the grammar.
18401 * src/reader.c (grammar_free): New.
18402 * src/main.c (main): Call it and don't free symtab here.
18403
55024580
AD
184042002-03-04 Akim Demaille <akim@epita.fr>
18405
18406 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
18407 before returning.
18408 Reported by Benoit Perrot.
18409
f9abaa2c
AD
184102002-03-04 Akim Demaille <akim@epita.fr>
18411
18412 Use bitset operations when possible, not loops over bits.
18413
18414 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
18415 bitset_or.
18416 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
18417 * src/reduce.c (useless_nonterminals): Formatting changes.
18418 * src/warshall.c (TC): Use bitset_or.
18419
0e721e75
AD
184202002-03-04 Akim Demaille <akim@epita.fr>
18421
18422 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
18423 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
18424 Ditto.
18425
0fb1ffb1
AD
184262002-03-04 Akim Demaille <akim@epita.fr>
18427
18428 * src/lalr.c (F): Now a bitset*.
18429 Adjust all dependencies.
18430
b86796bf
AD
184312002-03-04 Akim Demaille <akim@epita.fr>
18432
18433 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
18434 Adjust all dependencies.
18435
602bbf31
AD
184362002-03-04 Akim Demaille <akim@epita.fr>
18437
18438 * src/L0.c, src/LR0.h (nstates): Be size_t.
18439 Adjust comparisons (signed vs unsigned).
18440 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
18441 bitset*.
18442 Adjust all dependencies.
18443
d8a0245c
AD
184442002-03-04 Akim Demaille <akim@epita.fr>
18445
18446 * src/closure.c (firsts): Now, also a bitset.
18447 Adjust all dependencies.
18448 (varsetsize): Remove, now unused.
18449 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
18450
34ba9743
AD
184512002-03-04 Akim Demaille <akim@epita.fr>
18452
18453 * src/print.c: Convert to use bitset.h, not hand coded iterations
18454 over ints.
18455
ed86e78c
AD
184562002-03-04 Akim Demaille <akim@epita.fr>
18457
18458 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
18459
dfdb1797
AD
184602002-03-04 Akim Demaille <akim@epita.fr>
18461
18462 * src/closure.c (ruleset): Be a bitset.
18463 (rulesetsize): Remove.
18464
7086e707
AD
184652002-03-04 Akim Demaille <akim@epita.fr>
18466
18467 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
18468 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
18469 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
18470 * src/closure.c (fderives): Be an array of bitsets.
18471
98254360
RA
184722002-02-28 Robert Anisko <robert@lrde.epita.fr>
18473
18474 * data/bison.c++: Merge the two generated headers. Insert a copyright
18475 notice in each output file.
18476
a75c057f
AD
184772002-02-28 Akim Demaille <akim@epita.fr>
18478
18479 * data/bison.c++: Copy the prologue of bison.simple to fetch
18480 useful M4 definitions, such as b4_header_guard.
18481
06b00abc
AD
184822002-02-25 Akim Demaille <akim@epita.fr>
18483
18484 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
18485 translator friendly scheme for the bgr
18486 copyright notice.
06b00abc 18487
70e7d534
AD
184882002-02-25 Akim Demaille <akim@epita.fr>
18489
18490 * src/output.c (header_output): Remove, now handled completely via
18491 M4.
18492
abe017f6
AD
184932002-02-25 Akim Demaille <akim@epita.fr>
18494
18495 * m4/m4.m4: New, from CVS Autoconf.
18496 * configure.in: Invoke it.
18497 * src/output.c (output_skeleton): Use its result instead of the
18498 hard coded name.
18499
381fb12e
AD
185002002-02-25 Akim Demaille <akim@epita.fr>
18501
18502 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
18503 Fileutils 4.1.5.
18504 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
18505 * src/output.c (output_skeleton): Use mkstemp to create a real
18506 temporary file.
18507 Move the filling of `skeleton' and its muscle to...
18508 (prepare): here.
18509 (output): Move the definition of the prologue muscle to...
18510 (prepare): here.
18511 * src/system.h (DEFAULT_TMPDIR): New.
18512
6f38107f
PE
185132002-02-14 Paul Eggert <eggert@twinsun.com>
18514
18515 Remove the support for C++ namespace cleanliness; it was
18516 causing more problems than it was curing, since it didn't work
18517 properly on some nonstandard C++ compilers. This can wait
18518 for a proper C++ parser.
18519
18520 * NEWS: Document this.
18521 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
18522 of C++, as it's treated like C now.
18523 * src/bison.simple (YYSTD): Remove.
18524 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
18525 Treat C++ just like Standard C instead of trying to support
18526 namespace cleanliness.
18527
80cce3da
AD
185282002-02-14 Akim Demaille <akim@epita.fr>
18529
18530 * tests/regression.at (else): Adjust to Andreas' change.
18531
842e8679
AD
185322002-02-14 Akim Demaille <akim@epita.fr>
18533
18534 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
18535
4bda3f10
AD
185362002-02-13 Andreas Schwab <schwab@suse.de>
18537
18538 * src/output.c (output_rule_data): Don't output NULL, it might
18539 not be defined yet.
18540
4162fa07 185412002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 18542
4162fa07
RA
18543 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
18544 (Copyright notice): Update.
b418ecd8 18545
bd16a5dc
AD
185462002-02-11 Akim Demaille <akim@epita.fr>
18547
18548 * tests/regression.at (%nonassoc and eof): Don't include
18549 nonportable headers.
18550
8d69a1a3
RA
185512002-02-08 Robert Anisko <robert@lrde.epita.fr>
18552
18553 * data/bison.c++: Correct error recovery. Make the user able to
18554 initialize the starting location.
18555
9b2d0677
AD
185562002-02-07 Akim Demaille <akim@epita.fr>
18557
18558 * tests/input.at: New.
18559
69e2658b
RA
185602002-02-07 Robert Anisko <robert@lrde.epita.fr>
18561
18562 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 18563 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
18564 directives around tables only needed for debugging.
18565
4aacc3a7
RA
185662002-02-07 Robert Anisko <robert@lrde.epita.fr>
18567
18568 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
18569 C++ parsers.
18570 (yy::b4_name::parse): Use print_.
18571
762a801e
RA
185722002-02-07 Robert Anisko <robert@lrde.epita.fr>
18573
18574 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
18575
4bb2bc3f
RA
185762002-02-07 Robert Anisko <robert@lrde.epita.fr>
18577
18578 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
18579 C++ parsers.
18580 (yy::b4_name::parse): Build verbose error messages, and use error_.
18581
6b45a3ca
RA
185822002-02-06 Robert Anisko <robert@lrde.epita.fr>
18583
18584 * data/bison.c++: Fix m4 quoting in comments.
18585
50997c6e
RA
185862002-02-06 Robert Anisko <robert@lrde.epita.fr>
18587
18588 * data/bison.c++: Adjust the parser code. Fix some muscles that were
18589 not expanded by m4.
18590
3f3eed27
AD
185912002-02-05 Akim Demaille <akim@epita.fr>
18592
18593 * data/bison.c++: Adjust to the M4 back end.
18594 More is certainly needed.
18595
be2a1a68
AD
185962002-02-05 Akim Demaille <akim@epita.fr>
18597
18598 Give a try to M4 as a back end.
18599
18600 * lib/readpipe.c: New, from wdiff.
18601 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
18602 BISON_HAIRY.
18603 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
18604 specific values. Now it is m4 that performs the lookup.
18605 * src/parse-skel.y: Remove.
18606 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
18607 * src/output.c (actions_output, guards_output)
18608 (token_definitions_output): No longer keeps track of the output
18609 line number, hence remove the second argument.
18610 (guards_output): Check against the guard member of a rule, not the
18611 action member.
18612 Adjust callers.
18613 (output_skeleton): Don't look for the skeleton location, let m4 do
18614 that.
18615 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
18616 file will be used.
18617 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
18618 (prepare): Given that for the time being changesyntax is not
18619 usable in M4, rename the muscles using `-' to `_'.
18620 Define `defines_flag', `output_parser_name' and `output_header_name'.
18621 * src/output.h (actions_output, guards_output)
18622 (token_definitions_output): Adjust prototypes.
18623 * src/scan-skel.l: Instead of scanning the skeletons, it now
18624 processes the output of m4: `__oline__' and `#output'.
18625 * data/bison.simple: Adjust to be used by M4(sugar).
18626 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
18627 to date.
18628 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
18629 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
18630 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
18631 shamelessly stolen from CVS Autoconf.
18632
beda758b
AD
186332002-02-05 Akim Demaille <akim@epita.fr>
18634
18635 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
18636 * configure.in: Check for the declarations of free and malloc.
18637 * src/muscle_tab.c: Adjust.
18638
5ece6d43
AD
186392002-02-05 Akim Demaille <akim@epita.fr>
18640
18641 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
18642 which have no values.
18643
5bb18f9a
AD
186442002-02-05 Akim Demaille <akim@epita.fr>
18645
18646 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
18647 * data/: here.
18648
894dd62e
PE
186492002-01-29 Paul Eggert <eggert@twinsun.com>
18650
18651 * src/bison.simple (YYSIZE_T): Do not define merely because
18652 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
18653 On some platforms, <alloca.h> does not declare YYSTD (size_t).
18654
82841af7
AD
186552002-01-27 Akim Demaille <akim@epita.fr>
18656
18657 Fix `%nonassoc and eof'.
18658
18659 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
18660 which were not properly copied! Replace
18661 memcpy (res->errs, src->errs, src->nerrs);
18662 with
18663 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
18664 !!!
18665 * tests/regression.at (%nonassoc and eof): Adjust to newest
18666 Autotest: `.' is not in the PATH.
18667
318b76e9
AD
186682002-01-27 Akim Demaille <akim@epita.fr>
18669
18670 * tests/sets.at (AT_EXTRACT_SETS): New.
18671 (Nullable): Use it.
18672 (Firsts): New.
18673
30d2f3d5
AD
186742002-01-26 Akim Demaille <akim@epita.fr>
18675
18676 * tests/actions.at, tests/calc.at, tests/headers.at,
18677 * tests/torture.at: Adjust to the newest Autotest which no longer
18678 forces `.' in the PATH.
18679
30f8c395
AD
186802002-01-25 Akim Demaille <akim@epita.fr>
18681
18682 * tests/regression.at (%nonassoc and eof): New.
18683 Suggested by Robert Anisko.
18684
29ae55f1
AD
186852002-01-24 Akim Demaille <akim@epita.fr>
18686
18687 Bison dumps core when trying to complain about broken input files.
18688 Reported by Cris van Pelt.
18689
18690 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
18691 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
18692 into...
18693 (Invalid inputs): Strengthen: exercise parse_percent_token.
18694
2b548aa6
RA
186952002-01-24 Robert Anisko <robert.anisko@epita.fr>
18696
18697 * src/Makefile.am: Add bison.c++.
18698 * src/bison.c++: New skeleton.
18699
bb0146c2
AD
187002002-01-21 Paolo Bonzini <bonzini@gnu.org>
18701
18702 * po/it.po: New.
18703
bec30531
AD
187042002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
18705
18706 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
18707
fc6edc45
MA
187082002-01-20 Marc Autret <marc@gnu.org>
18709
18710 * src/files.c (compute_output_file_names): Fix
18711
5e5d5415
MA
187122002-01-20 Marc Autret <marc@gnu.org>
18713
18714 * tests/output.at: New test.
18715 * src/files.c (compute_base_names): Don't map extensions when
18716 the YACC flag is set, use defaults.
18717 Reported by Evgeny Stambulchik.
18718
44ea3fbd
MA
187192002-01-20 Marc Autret <marc@gnu.org>
18720
ba0fe3c7
PE
18721 * src/system.h: Need to define __attribute__ away for non-GCC
18722 compilers as well (i.e., the vendor C compiler).
44ea3fbd
MA
18723 Suggested by Albert Chin-A-Young.
18724
338963d1
TVH
187252002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
18726
18727 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
18728 canonical definition.
18729 * src/system.h: Use the canonical definition for PARAMS (avoids
18730 a conflict with the macro from lib/hash.h).
18731
c57b2479
AD
187322002-01-11 Akim Demaille <akim@epita.fr>
18733
18734 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 18735 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 18736
b85810ae
AD
187372002-01-09 Akim Demaille <akim@epita.fr>
18738
18739 * src/files.c, src/files.h (output_infix): New.
18740 (tab_extension): Remove.
18741 (compute_base_names): Compute the former, drop the latter.
18742 * src/output.c (prepare): Insert the muscles `output-infix', and
18743 `output-suffix'.
18744 * src/parse-skel.y (string, string.1): New.
18745 (section.header): Use it.
18746 (section.yacc): Remove.
18747 (prefix): Remove too.
18748 * src/scan-skel.l: Adjust.
18749 * src/bison.simple, src/bison.hairy: Adjust.
18750
cae60122
AD
187512002-01-09 Akim Demaille <akim@epita.fr>
18752
18753 * configure.in (WERROR_CFLAGS): Compute it.
18754 * src/Makefile.am (CFLAGS): Pass it.
18755 * tests/atlocal.in (CFLAGS): Idem.
18756 * src/files.c: Fix a few warnings.
18757 (get_extension_index): Remove, unused.
18758
ae404801
AD
187592002-01-08 Akim Demaille <akim@epita.fr>
18760
18761 * src/getargs.c (AS_FILE_NAME): New.
18762 (getargs): Use it to convert DOSish file names.
18763 * src/files.c (base_name): Rename as full_base_name to avoid
18764 clashes with `base_name ()'.
18765 (filename_split): New.
18766 (compute_base_names): N-th rewrite, using filename_split.
18767
22312b71
AD
187682002-01-08 Akim Demaille <akim@epita.fr>
18769
18770 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
18771 New, stolen from the Fileutils 4.1.
18772 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
18773 * configure.in: Check for the presence of memrchr, and of its
18774 prototype.
18775
a67cef01
TVH
187762002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
18777
18778 * lib/hash.h (__P): Added definition for this macro.
18779 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
18780 BUILT_SOURCES, to ensure they are generated first.
18781 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
18782 %error-verbose to allow bootstrapping with bison 1.30x.
18783
2b25d624
AD
187842002-01-06 Akim Demaille <akim@epita.fr>
18785
18786 * src/reader.c (parse_braces): Don't fetch the next char, the
18787 convention is to fetch on entry.
18788 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
18789 'switch' without a following semicolon.
18790 * tests/regression.at (braces parsing): New.
18791
3460813b
AD
187922002-01-06 Akim Demaille <akim@epita.fr>
18793
18794 Bison is dead wrong in its RR conflict reports.
18795
18796 * tests/torture.at (GNU Cim Grammar): New.
18797 * src/conflicts.c (count_rr_conflicts): Fix.
18798
73784c64
AD
187992002-01-06 Akim Demaille <akim@epita.fr>
18800
18801 Creating package.m4 from configure.ac causes too many problems.
18802
18803 * tests/Makefile.am (package.m4): Create it by hand,
18804 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
18805
25d81090
AD
188062002-01-06 Akim Demaille <akim@epita.fr>
18807
18808 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
18809 skeleton.h.
18810
a9b8959e
PE
188112002-01-04 Paul Eggert <eggert@twinsun.com>
18812
18813 * doc/bison.texinfo (Debugging):
18814 Remove YYSTDERR; it's no longer defined or used.
18815 Also, s/cstdio.h/cstdio/.
18816
25d81090
AD
188172002-01-03 Akim Demaille <akim@epita.fr>
18818
18819 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
18820
1109455c
AD
188212002-01-03 Akim Demaille <akim@epita.fr>
18822
18823 * src/parse-skel.y (process_skeleton): Don't bind the parser's
18824 tracing code to --trace, wait for a better --trace option, with
18825 args.
18826
7ea5e977
AD
188272002-01-03 Akim Demaille <akim@epita.fr>
18828
18829 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
18830 The ISO C++ standard is extremely clear about it: stderr is
18831 considered a macro, not a regular symbol (see table 94 `Header
18832 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
18833 Therefore std:: does not apply to it. It still does with fprintf.
18834 Also, s/cstdio.h/cstdio/.
18835
fab5b110
AD
188362002-01-03 Akim Demaille <akim@epita.fr>
18837
18838 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
18839 for non system headers.
18840
aed7fd9b
AD
188412002-01-02 Akim Demaille <akim@epita.fr>
18842
18843 Equip the skeleton chain with location tracking, runtime trace,
18844 pure parser and scanner.
18845
18846 * src/parse-skel.y: Request a pure parser, locations, and prefix
18847 renaming.
18848 (%union): Having several members with the same type does not help
18849 type mismatches, simplify.
18850 (YYPRINT, yyprint): New.
18851 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
18852 (skel_error): this.
18853 Handle locations.
18854 * src/scan-skel.l: Adjust to these changes.
18855 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
18856 (LOCATION_PRINT, skel_control_t): New.
18857
24fad99e
AD
188582001-12-30 Akim Demaille <akim@epita.fr>
18859
18860 * src/parse-skel.y: Get rid of the shift/reduce conflict:
18861 replace `gb' with BLANKS.
18862 * src/scan-skel.l: Adjust.
18863
a4b36db4
AD
188642001-12-30 Akim Demaille <akim@epita.fr>
18865
18866 * src/system.h: We don't need nor want bcopy.
18867 Throw away MS-DOS crap: we don't need getpid.
18868 * configure.in: We don't need strndup. It was even causing
18869 problems: because Flex includes the headers *before* us,
18870 _GNU_SOURCE is not defined by config.h, and therefore strndup was
18871 not visible.
18872 * lib/xstrndup.c: New.
18873 * src/scan-skel.l: Use it.
18874 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
18875 * src/parse-skel.y: Use %directives instead of #defines.
18876
1239777d
AD
188772001-12-30 Akim Demaille <akim@epita.fr>
18878
18879 * src/skeleton.h: New.
18880 * src/output.c (output_parser, output_master_parser): Remove, dead
18881 code.
18882 * src/output.h (get_lines_number, actions_output, guards_output)
18883 (token_definitions_output): Prototype them.
18884 * src/parse-skel.y: Add the license notice.
18885 Include output.h and skeleton.h.
18886 (process_skeleton): Returns void, and takes a single parameter.
18887 * src/scan-skel.l: Add the license notice.
18888 Include skeleton.h.
18889 Don't use %option yylineno: it seems that then Flex imagines
18890 REJECT has been used, and therefore it won't reallocate its
18891 buffers (which makes no other sense to me than a bug). It results
18892 in warnings for `unused: yy_flex_realloc'.
18893
9b3add5b
RA
188942001-12-30 Robert Anisko <robert.anisko@epita.fr>
18895
18896 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
18897 (MUSCLE_INSERT_PREFIX): ...to there.
18898 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
18899 (MUSCLE_INSERT_PREFIX): Move from here...
18900
18901 * src/bison.hairy: Add a section directive. Put braces around muscle
18902 names. This parser skeleton is still broken, but Bison should not
18903 choke on a bad muscle 'syntax'.
18904 * src/bison.simple: Add a section directive. Put braces around muscle
18905 names.
18906
18907 * src/files.h (strsuffix, stringappend): Add declarations.
18908 (tab_extension): Add declaration.
18909 (short_base_name): Add declaration.
18910
18911 * src/files.c (strsuffix, stringappend): No longer static. These
18912 functions are used in the skeleton parser.
18913 (tab_extension): New.
18914 (compute_base_names): Use the computations done in this function
fab5b110 18915 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
18916 names.
18917 (short_base_name): No longer static.
18918
18919 * src/output.c (output_skeleton): New.
18920 (output): Disable call to output_master_parser, and give a try to
18921 a new skeleton handling system.
18922 (guards_output, actions_output): No longer static.
18923 (token_definitions_output, get_lines_number): No longer static.
18924
18925 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
18926
fab5b110 18927 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
18928 parse-skel.y.
18929
18930 * src/parse-skel.y: New file.
18931 * src/scan-skel.l: New file.
18932
b5b61c61
AD
189332001-12-29 Akim Demaille <akim@epita.fr>
18934
18935 %name-prefix is broken.
18936
18937 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
18938 Adjust all dependencies.
18939 * tests/headers.at (export YYLTYPE): Strengthen this test: use
18940 %name-prefix.
18941
18942 Renaming yylval but not yylloc is not consistent. Now we do.
18943
18944 * src/bison.simple: Prefix yylloc if used.
18945 * doc/bison.texinfo (Decl Summary): Document that.
18946
8c9a50be
AD
189472001-12-29 Akim Demaille <akim@epita.fr>
18948
18949 * doc/bison.texinfo: Promote `%long-directive' over
18950 `%long_directive'.
18951 Remove all references to fixed-output-files, yacc is enough.
18952
d99361e6
AD
189532001-12-29 Akim Demaille <akim@epita.fr>
18954
18955 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
18956 user prologue. These are defaults.
18957 * tests/actions.at (Mid-rule actions): Make sure the user can
18958 define YYDEBUG and YYERROR_VERBOSE.
18959
b9cecb91
AD
189602001-12-29 Akim Demaille <akim@epita.fr>
18961
18962 * src/output.c (header_output): Don't forget to export YYLTYPE and
18963 yylloc.
18964 * tests/headers.at (export YYLTYPE): New, make sure it does.
18965 * tests/regression.at (%union and --defines, Invalid CPP headers):
18966 Move to...
18967 * tests/headers.at: here.
18968
aea13e97
AD
189692001-12-29 Akim Demaille <akim@epita.fr>
18970
18971 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
18972
931394cb
AD
189732001-12-29 Akim Demaille <akim@epita.fr>
18974
18975 * tests/actions.at (Mid-rule actions): Output on a single line
18976 instead of several.
18977
704a47c4
AD
189782001-12-29 Akim Demaille <akim@epita.fr>
18979
18980 * doc/bison.texinfo: Formatting changes.
18981
091e20bb
AD
189822001-12-29 Akim Demaille <akim@epita.fr>
18983
18984 Don't store the token defs in a muscle, just be ready to output it
18985 on command. Now possible via `symbols'. Fixes a memory leak.
18986
18987 * src/output.c (token_definitions_output): New.
18988 (output_parser, header_output): Use it.
18989 * src/reader.c (symbols_save): Remove.
18990
cce71710
AD
189912001-12-29 Akim Demaille <akim@epita.fr>
18992
18993 * src/bison.simple: Do not provide a default for YYSTYPE and
18994 YYLTYPE before the user's prologue. Otherwise it's hardly... a
18995 default.
18996
82c035a8
AD
189972001-12-29 Akim Demaille <akim@epita.fr>
18998
18999 Mid-rule actions are simply... ignored!
19000
19001 * src/reader.c (readgram): Be sure to attach mid-rule actions to
19002 the empty-rule associated to the dummy symbol, not to the host
19003 rule.
19004 * tests/actions.at (Mid-rule actions): New.
19005
8419d367
AD
190062001-12-29 Akim Demaille <akim@epita.fr>
19007
19008 Memory leak.
19009
19010 * src/reader.c (reader): Free grammar.
19011
375d5806
AD
190122001-12-29 Akim Demaille <akim@epita.fr>
19013
19014 Memory leak.
19015
19016 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
19017 since it allocates it for each state, although only one is needed.
19018 (allocate_storage): Do it here.
19019
f51cb8ff
AD
190202001-12-29 Akim Demaille <akim@epita.fr>
19021
19022 * src/options.h, src/options.c (create_long_option_table): Rename
19023 as...
19024 (long_option_table_new): this, with a clearer prototype.
19025 (percent_table): Remove, unused,
19026 * src/getargs.c (getargs): Adjust.
19027
29e88316
AD
190282001-12-29 Akim Demaille <akim@epita.fr>
19029
19030 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
19031 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
19032 as states.
19033
b9f71f19
AD
190342001-12-29 Akim Demaille <akim@epita.fr>
19035
19036 * src/lalr.c (build_relations): Rename `states' as `states1'.
19037 Sorry, I don't understand exactly what it is, no better name...
19038
1a2b5d37
AD
190392001-12-29 Akim Demaille <akim@epita.fr>
19040
19041 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
19042 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
19043 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
19044 as rules.
19045
1cca533e
AD
190462001-12-29 Akim Demaille <akim@epita.fr>
19047
19048 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
19049 ago.
19050
c03ae966
AD
190512001-12-29 Akim Demaille <akim@epita.fr>
19052
19053 * src/reader.c, src/reader.h (user_toknums): Remove.
19054 Adjust all users to use symbols[i]->user_token_number.
19055
5a670b1e
AD
190562001-12-29 Akim Demaille <akim@epita.fr>
19057
19058 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
19059 Adjust all users to use symbols[i]->prec or ->assoc.
19060
ad949da9
AD
190612001-12-29 Akim Demaille <akim@epita.fr>
19062
19063 * src/reader.c, src/reader.h (tags): Remove.
19064 Adjust all users to use symbols[i]->tag.
19065
0e78e603
AD
190662001-12-29 Akim Demaille <akim@epita.fr>
19067
19068 * src/gram.h, src/gram.c (symbols): New, similar to state_table
19069 and rule_table.
19070 * src/reader.c (packsymbols): Fill this table.
19071 Drop sprec.
19072 * src/conflicts.c (resolve_sr_conflict): Adjust.
19073 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
19074 single table.
19075 Use symbols[i]->tag instead of tags[i].
19076
213e640e
AD
190772001-12-29 Akim Demaille <akim@epita.fr>
19078
19079 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
19080 In addition, put a comment in there, to replace...
19081 * tests/regression.at (%union and C comments): Remove.
19082
e7b8bef1
AD
190832001-12-29 Akim Demaille <akim@epita.fr>
19084
19085 * tests/regression.at (Web2c Actions): Blindly move the actual
19086 output as expected output. The contents *seem* right to me, but I
19087 can't pretend reading perfectly parser tables... Nonetheless, all
19088 the other tests pass correctly, the table look OK, even though the
19089 presence of `$axiom' is to be noted: AFAICS it is useless (but
19090 harmless).
19091
b68e7744
AD
190922001-12-29 Akim Demaille <akim@epita.fr>
19093
19094 * src/reader.c (readgram): Don't add the rule 0 if there were no
19095 rules read. In other words, add it _after_ having performed
19096 grammar sanity checks.
19097 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
19098
78d5bae9
AD
190992001-12-29 Akim Demaille <akim@epita.fr>
19100
19101 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
19102 visible, and some states have now a different number.
19103
ff442794
AD
191042001-12-29 Akim Demaille <akim@epita.fr>
19105
19106 * src/reader.c (readgram): Bind the initial rule's lineno to that
19107 of the first rule.
19108 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
19109 (Solved SR Conflicts): Adjust rule 0's line number.
19110
610ab194
AD
191112001-12-29 Akim Demaille <akim@epita.fr>
19112
19113 Fix the `GAWK Grammar' failure.
19114
19115 * src/LR0.c (final_state): Initialize to -1 so that we do compute
19116 the reductions of the first state which was mistakenly confused
19117 with the final state because precisely final_state was initialized
19118 to 0.
19119 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
19120 now noticed by Bison.
19121 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
19122 have a reduction on $default.
19123
29d29c8f
AD
191242001-12-29 Akim Demaille <akim@epita.fr>
19125
19126 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
19127 rule line numbers.
19128 * src/closure.c (print_closure): Likewise.
19129 * src/derives.c (print_derives): Likewise.
19130 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
19131 now.
19132
7c6b64d0
AD
191332001-12-29 Akim Demaille <akim@epita.fr>
19134
19135 * src/lalr.c (lookaheads_print): New.
19136 (lalr): Call it when --trace-flag.
19137 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
19138 are dumped.
19139
3d4daee3
AD
191402001-12-29 Akim Demaille <akim@epita.fr>
19141
19142 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
19143 when walking through ritem, even via rule->rhs.
19144 * src/reduce.c (dump_grammar, useful_production, reduce_output)
19145 (useful_production, useless_nonterminals): Likewise.
19146 (reduce_grammar_tables): Likewise, plus update nritems.
19147 * src/nullable.c (set_nullable): Likewise.
19148 * src/lalr.c (build_relations): Likewise.
19149 * tests/sets.at (Nullable): Adjust.
19150 Fortunately, now, the $axiom is no longer nullable.
19151
9e7f6bbd
AD
191522001-12-29 Akim Demaille <akim@epita.fr>
19153
19154 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
19155 the 0-sentinel.
19156 * src/gram.c (ritem_longest_rhs): Likewise.
19157 * src/reduce.c (nonterminals_reduce): Likewise.
19158 * src/print_graph.c (print_graph): Likewise.
19159 * src/output.c (output_rule_data): Likewise.
19160 * src/nullable.c (set_nullable): Likewise.
19161
255ef638
AD
191622001-12-29 Akim Demaille <akim@epita.fr>
19163
19164 * src/output.c: Comment changes.
19165
0d8a7363
AD
191662001-12-27 Paul Eggert <eggert@twinsun.com>
19167
19168 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
19169 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
19170 Sparc, as they were causing more porting problems than the
19171 (minor) performance improvement was worth.
19172
19173 Also, catch up with 1.31's YYSTD.
19174
3db472b9
AD
191752001-12-27 Akim Demaille <akim@epita.fr>
19176
19177 * src/output.c (output_gram): Rely on nritems, not the
19178 0-sentinel. See below.
19179 Use -1 as separator, not 0.
19180 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
19181 Rely on -1 as separator in yyrhs, instead of 0.
19182 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
19183 twice `Now at end of input', therefore there are two lines less to
19184 expect.
19185
b365aa05
AD
191862001-12-27 Akim Demaille <akim@epita.fr>
19187
19188 * tests/regression.at (Unresolved SR Conflicts):
19189 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
19190 below.
19191
30171f79
AD
191922001-12-27 Akim Demaille <akim@epita.fr>
19193
19194 * src/LR0.c (new_state): Recognize the final state by the fact it
19195 is reached by eoftoken.
19196 (insert_start_shifting_state, insert_eof_shifting_state)
19197 (insert_accepting_state, augment_automaton): Remove, since now
19198 these states are automatically computed from the initial state.
19199 (generate_states): Adjust.
19200 * src/print.c: When reporting a rule number to the user, substract
19201 1, so that the axiom rule is rule 0, and the first user rule is 1.
19202 * src/reduce.c: Likewise.
19203 * src/print_graph.c (print_core): For the time being, just as for
19204 the report, depend upon --trace-flags to dump the full set of
19205 items.
19206 * src/reader.c (readgram): Once the grammar read, insert the rule
19207 0: `$axiom: START-SYMBOL $'.
19208 * tests/set.at: Adjust: rule 0 is now displayed, and since the
19209 number of the states has changed (the final state is no longer
19210 necessarily the last), catch up.
19211
75142d45
AD
192122001-12-27 Akim Demaille <akim@epita.fr>
19213
19214 Try to make the use of the eoftoken valid. Given that its value
19215 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
19216 is used instead of > 0 where appropriate, (ii), depend upon nritems
19217 instead of the 0-sentinel.
19218
19219 * src/gram.h, src/gram.c (nritems): New.
19220 Expected to be duplication of nitems, but for the time being...
19221 * src/reader.c (packgram): Assert nritems and nitems are equal.
19222 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
19223 * src/closure.c (print_closure, print_fderives): Likewise.
19224 * src/gram.c (ritem_print): Likewise.
19225 * src/print.c (print_core, print_grammar): Likewise.
19226 * src/print_graph.c: Likewise.
19227
b7c49edf
AD
192282001-12-27 Akim Demaille <akim@epita.fr>
19229
19230 * src/main.c (main): If there are complains after grammar
19231 reductions, then output the report anyway if requested, then die.
19232 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
19233 * src/reader.c (eoftoken): New.
19234 (parse_token_decl): If the token being defined has value `0', it
19235 is the eoftoken.
19236 (packsymbols): No longer hack `tags' to insert `$' by hand.
19237 Be sure to preserve the value of the eoftoken.
19238 (reader): Make sure eoftoken is defined.
19239 Initialize nsyms to 0: now eoftoken is created just like the others.
19240 * src/print.c (print_grammar): Don't special case the eof token.
19241 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
19242 lie anyway, albeit pleasant.
19243 * tests/calc.at: Exercise error messages with eoftoken.
19244 Change the grammar so that empty input is invalid.
19245 Adjust expectations.
19246 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
19247
ec2da99f
AD
192482001-12-27 Akim Demaille <akim@epita.fr>
19249
19250 * configure.in: Check the protos of strchr ans strspn.
19251 Replace strchr if needed.
19252 * src/system.h: Provide the protos of strchr, strspn and memchr if
19253 missing.
19254 * lib/strchr.c: New.
19255 * src/reader.c (symbols_save): Use strchr.
19256
8adfa272
AD
192572001-12-27 Akim Demaille <akim@epita.fr>
19258
19259 * src/print.c, src/print_graph.c (escape): New.
19260 Use it to quote the TAGS outputs.
19261 * src/print_graph.c (print_state): Now errors are in red, and
19262 reductions in green.
19263 Prefer high to wide: output the state number on a line of its own.
19264
80dac38c
AD
192652001-12-27 Akim Demaille <akim@epita.fr>
19266
19267 * src/state.h, src/state.c (reductions_new): New.
19268 * src/LR0.c (set_state_table): Let all the states have a
19269 `reductions', even if reduced to 0.
19270 (save_reductions): Adjust.
19271 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
19272 * src/print.c (print_reductions, print_actions): Adjust.
19273 * src/output.c (action_row): Adjust.
19274
2cec70b9
AD
192752001-12-27 Akim Demaille <akim@epita.fr>
19276
19277 * src/state.h, src/state.c (errs_new, errs_dup): New.
19278 * src/LR0.c (set_state_table): Let all the states have an errs,
19279 even if reduced to 0.
19280 * src/print.c (print_errs, print_reductions): Adjust.
19281 * src/output.c (output_actions, action_row): Adjust.
19282 * src/conflicts.c (resolve_sr_conflict): Adjust.
19283
13ca549a
AD
192842001-12-27 Akim Demaille <akim@epita.fr>
19285
19286 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
19287
5092aba5
AD
192882001-12-27 Akim Demaille <akim@epita.fr>
19289
19290 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
19291 * src/print.c: here.
19292 (lookaheadset, shiftset): New, used as additional storage by
19293 print_reductions.
19294 (print_results): Adjust.
19295 (print_shifts, print_gotos, print_errs): New, extracted from...
19296 (print_actions): here.
19297 * src/print_graph.c (print_actions): Remove dead code.
19298
11e2beca
AD
192992001-12-27 Akim Demaille <akim@epita.fr>
19300
19301 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
19302 `$n' and `@n'.
19303
dac3c910
AD
193042001-12-27 Akim Demaille <akim@epita.fr>
19305
19306 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
19307 (build_relations): Adjust.
19308
d0b0fefa
AD
193092001-12-27 Akim Demaille <akim@epita.fr>
19310
19311 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
19312 duplication.
19313
adc8c848
AD
193142001-12-27 Akim Demaille <akim@epita.fr>
19315
19316 * src/reader.c (packgram): Catch nitems overflows.
19317
14d293ac
AD
193182001-12-27 Akim Demaille <akim@epita.fr>
19319
19320 * src/files.c, src/files.h (guard_obstack): Remove.
19321 * src/output.c (output): Adjust.
19322 * src/reader.c (parse_braces): New, factoring...
19323 (copy_action, copy_guard): these two which are renamed as...
19324 (parse_action, parse_guard): these.
19325 As a voluntary consequence, using braces around guards is now
19326 mandatory.
19327
f499b062
AD
193282001-12-27 Akim Demaille <akim@epita.fr>
19329
19330 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
19331 * src/reader.c (symbol_list): `guard' and `guard_line' are new
19332 members.
19333 (symbol_list_new): Adjust.
19334 (copy_action): action_line is the first line, not the last.
19335 (copy_guard): Just as for actions, store the `action' only, not
19336 the switch/case/break flesh.
19337 Don't parse the user action that might follow the guard, let...
19338 (readgram): do it, i.e., now, there can be an action after a
19339 guard.
19340 In other words the guard is just explicitly optional.
19341 (packgram): Adjust.
19342 * src/output.c (guards_output): New.
19343 (output_parser): Call it when needed.
19344 (output): Also free the guard and attrs obstacks.
19345 * src/files.c, src/files.h (obstack_save): Remove.
19346 (output_files): Remove.
19347 As a result, if one needs the former `.act' file, using an
19348 appropriate skeleton which requires actions and guards is now
19349 required.
19350 * src/main.c (main): Adjust.
19351 * tests/semantic.at: New.
19352 * tests/regression.at: Use `input.y' as input file name.
19353 Avoid 8+3 problems by requiring input.c when the test needs the
19354 parser.
19355
d945f5cd
AD
193562001-12-27 Akim Demaille <akim@epita.fr>
19357
19358 * src/reader.c (symbol_list_new): Be sure to initialize all the
19359 fields.
19360
d200e455
AD
193612001-12-27 Akim Demaille <akim@epita.fr>
19362
19363 All the hacks using a final pseudo state are now useless.
19364
19365 * src/LR0.c (set_state_table): state_table holds exactly nstates.
19366 * src/lalr.c (nLA): New.
19367 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
19368 instead of lookaheadsp from the pseudo state (nstate + 1).
19369
f9507c28
AD
193702001-12-27 Akim Demaille <akim@epita.fr>
19371
19372 * src/output.c (action_row, token_actions): Use a state_t instead
19373 of a integer, and nlookaheads instead of the following state's
19374 lookaheadsp.
19375
065fbd27
AD
193762001-12-27 Akim Demaille <akim@epita.fr>
19377
19378 * src/conflicts.c (log_resolution, flush_shift)
19379 (resolve_sr_conflict, set_conflicts, solve_conflicts)
19380 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
19381 (conflicts_print, print_reductions): Use a state_t instead of an
19382 integer when referring to a state.
19383 As much as possible, depend upon nlookaheads, instead of the
19384 `lookaheadsp' member of the following state (since lookaheads of
19385 successive states are successive, the difference between state n + 1
19386 and n served as the number of lookaheads for state n).
19387 * src/lalr.c (add_lookback_edge): Likewise.
19388 * src/print.c (print_core, print_actions, print_state)
19389 (print_results): Likewise.
19390 * src/print_graph.c (print_core, print_actions, print_state)
19391 (print_graph): Likewise.
19392 * src/conflicts.h: Adjust.
19393
1b177bd7
AD
193942001-12-27 Akim Demaille <akim@epita.fr>
19395
19396 * src/bison.hairy: Formatting/comment changes.
19397 ANSIfy.
19398 Remove `register' indications.
19399 Add plenty of `static'.
19400
7742ddeb
AD
194012001-12-27 Akim Demaille <akim@epita.fr>
19402
19403 * src/output.c (prepare): Drop the muscle `ntbase' which
19404 duplicates ntokens.
19405 * src/bison.simple: Formatting/comment changes.
19406 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
19407 is an undocumented synonym.
19408
1fa14068
AD
194092001-12-22 Akim Demaille <akim@epita.fr>
19410
19411 * src/output.c (output_table_data): Change the prototype to use
19412 `int' for array ranges: some invocations do pass an int, not a
19413 short.
19414 Reported by Wayne Green.
19415
b9752825
AD
194162001-12-22 Akim Demaille <akim@epita.fr>
19417
19418 Some actions of web2c.y are improperly triggered.
19419 Reported by Mike Castle.
19420
19421 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
19422 * tests/regression.at (Web2c): Rename as...
19423 (Web2c Report): this.
19424 (Web2c Actions): New.
19425
776209d6
AD
194262001-12-22 Akim Demaille <akim@epita.fr>
19427
19428 Reductions in web2c.y are improperly reported.
19429 Reported by Mike Castle.
19430
19431 * src/conflicts.c (print_reductions): Fix.
19432 * tests/regression.at (Web2c): New.
19433
275fc3ad
AD
194342001-12-18 Akim Demaille <akim@epita.fr>
19435
19436 Some host fail on `assert (!"foo")', which expands to
19437 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
19438 Reported by Nelson Beebee.
19439
19440 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
19441 `#define it_succeeded 0' and `assert (it_succeeded)'.
19442
897668ee
MA
194432001-12-17 Marc Autret <autret_m@epita.fr>
19444
19445 * src/bison.simple: Don't hard code the skeleton line and filename.
19446 * src/output.c (output_parser): Rename 'line' as 'output_line'.
19447 New line counter 'skeleton_line' (skeleton-line muscle).
19448
ab3399e0
PE
194492001-12-17 Paul Eggert <eggert@twinsun.com>
19450
19451 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
19452 YYDEBUG must be defined to a nonzero value.
19453
19454 * src/bison.simple (yytname): Do not assume that the user defines
19455 YYDEBUG to a properly parenthesized expression.
19456
3877f72b
AD
194572001-12-17 Akim Demaille <akim@epita.fr>
19458
19459 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
19460 nlookaheads is a new member.
19461 Adjust all users.
19462 * src/lalr.h (nlookaheads): Remove this orphan declaration.
19463 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
19464 state.
776209d6 19465
331dbc1b
AD
194662001-12-17 Akim Demaille <akim@epita.fr>
19467
19468 * src/files.h, src/files.c (open_files, close_files): Remove.
19469 * src/main.c (main): Don't open/close files, nor invoke lex_free,
19470 let...
19471 * src/reader.c (reader): Do it.
776209d6 19472
be750e4c
AD
194732001-12-17 Akim Demaille <akim@epita.fr>
19474
19475 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 19476
709ae8c6
AD
194772001-12-17 Akim Demaille <akim@epita.fr>
19478
19479 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
19480 (flush_reduce): New.
19481 (resolve_sr_conflict): Adjust.
776209d6 19482
f87685c3
AD
194832001-12-17 Akim Demaille <akim@epita.fr>
19484
19485 * src/output.c (output_obstack): Be static and rename as...
19486 (format_obstack): this, to avoid any confusion with files.c's
19487 output_obstack.
19488 * src/reader.h (muscle_obstack): Move to...
19489 * src/output.h: here, since it's defined in output.c.
19490
837491d8
AD
194912001-12-17 Akim Demaille <akim@epita.fr>
19492
19493 * src/output.c (action_row, save_column, default_goto)
19494 (sort_actions, matching_state, pack_vector): Better variable
19495 locality.
19496
796d61fb
AD
194972001-12-17 Akim Demaille <akim@epita.fr>
19498
19499 * src/output.c: Various formatting changes.
776209d6 19500
64d15509
AD
195012001-12-17 Akim Demaille <akim@epita.fr>
19502
19503 * src/files.c (output_files): Free the output_obstack.
19504 * src/main.c (main): Call print and print_graph conditionally.
19505 * src/print.c (print): Work unconditionally.
19506 * src/print_graph.c (print_graph): Work unconditionally.
19507 * src/conflicts.c (log_resolution): Output only if verbose_flag.
19508
fbc8ecb7
MA
195092001-12-16 Marc Autret <autret_m@epita.fr>
19510
19511 * src/output.c (actions_output): Fix. When we use %no-lines,
19512 there is one less line per action.
19513
f0440388
MA
195142001-12-16 Marc Autret <autret_m@epita.fr>
19515
19516 * src/bison.simple: Remove a useless #line directive.
19517 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
19518 * src/output.c (get_lines_number): New.
776209d6 19519 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
19520 output muscles.
19521 Fix line numbering.
19522 (actions_output): Computes the number of lines taken by actions.
19523 (output_master_parser): Insert new skeleton which is the name of
19524 the output parser file name.
19525
a79986b8
MA
195262001-12-15 Marc Autret <autret_m@epita.fr>
19527
19528 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
19529
4ec8e00f
MA
195302001-12-15 Marc Autret <autret_m@epita.fr>
19531
19532 * src/output.c (output_gram): Keep track of the hairy one.
19533
1a4648ff
AD
195342001-12-15 Akim Demaille <akim@epita.fr>
19535
19536 Make `make distcheck' work.
19537
19538 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
19539 system.h which uses libgettext.h.
19540
9c2c67e6
AD
195412001-12-15 Akim Demaille <akim@epita.fr>
19542
19543 * src/nullable.c (set_nullable): Useless rules must be skipped,
19544 otherwise, since we range over their symbols, we might look at a
19545 nonterminal which no longer ``exists'', i.e., it is not counted in
19546 `nvars', hence we overflow our arrays.
19547
93ede233
AD
195482001-12-15 Akim Demaille <akim@epita.fr>
19549
19550 The header can also be produced directly, without any obstack!
19551 Yahoo!
19552
19553 * src/files.c, src/files.h (defines_obstack): Remove.
19554 (compute_header_macro): Global.
19555 (defines_obstack_save): Remove.
19556 * src/reader.c (parse_union_decl): No longer output to
19557 defines_obstack: its content can be found in the `stype' muscle
19558 anyway.
19559 (output_token_translations): Merge into...
19560 (symbols_output): this.
19561 Rename as...
19562 (symbols_save): this.
19563 (reader): Adjust.
19564 * src/output.c (header_output): New.
19565 (output): Call it.
19566
2666f928
AD
195672001-12-15 Akim Demaille <akim@epita.fr>
19568
19569 * src/reader.c (parse_union_decl): Instead of handling two obstack
19570 simultaneously, use one to define the `stype' muscle, and use the
19571 value of the latter to fill defines_obstack.
19572 (copy_comment): Remove.
19573 (copy_comment2): Work for a single obstack.
19574 Rename as...
19575 (copy_comment): this.
19576
428046f8
AD
195772001-12-15 Akim Demaille <akim@epita.fr>
19578
19579 * src/lex.c, src/lex.h (xgetc): No longer static.
19580 * src/reader.c (parse_union_decl): Revamp.
19581
ea52d706
AD
195822001-12-15 Akim Demaille <akim@epita.fr>
19583
19584 Still making progress in separating Bison into (i) input, (ii)
19585 process, (iii) output: now we can directly output the parser file
19586 without using table_obstack at all.
19587
19588 * src/files.c, src/files.h (table_obstack): Bye bye.
19589 (parser_file_name): New.
19590 * src/files.c (compute_output_file_names): Compute it.
19591 * src/output.c (actions_output, output_parser)
19592 (output_master_parser): To a file instead of an obstack.
19593
3f96f4dc
AD
195942001-12-15 Akim Demaille <akim@epita.fr>
19595
19596 Attach actions to rules, instead of pre-outputting them to
19597 actions_obstack.
19598
19599 * src/gram.h (rule_t): action and action_line are new members.
19600 * src/reader.c (symbol_list): Likewise.
19601 (copy_action): Save the actions within the rule.
19602 (packgram): Save them in rule_table.
19603 * src/output.c (actions_output): New.
19604 (output_parser): Use it on `%%actions'.
19605 (output_rule_data): Don't free rule_table.
19606 (output): Do it.
19607 (prepare): Don't save the `action' muscle.
19608 * src/bison.simple: s/%%action/%%actions/.
19609
51576fb3
AD
196102001-12-15 Akim Demaille <akim@epita.fr>
19611
19612 * src/reader.c (copy_action): When --yacc, don't append a `;'
19613 to the user action: let it fail if lacking.
dee049eb 19614 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 19615
2648a72d
AD
196162001-12-14 Akim Demaille <akim@epita.fr>
19617
19618 * src/lex.c (literalchar): Simply return the char you decoded, non
19619 longer mess around with obstacks and int pointers.
19620 Adjust all callers.
19621
92790e5b
AD
196222001-12-14 Akim Demaille <akim@epita.fr>
19623
19624 * src/lex.c (literalchar): Don't escape the special characters,
19625 just decode them, and keep them as char (before, eol was output as
19626 the 2 char string `\n' etc.).
19627 * src/output.c (output_rule_data): Use quotearg to output the
19628 token strings.
19629
927c1557
PE
196302001-12-13 Paul Eggert <eggert@twinsun.com>
19631
19632 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
19633 Do not infringe on the global user namespace when using C++.
19634 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
19635 All uses of `fprintf' and `stderr' changed.
19636
19637 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
19638
ed8e1f68
AD
196392001-12-13 Akim Demaille <akim@epita.fr>
19640
19641 The computation of nullable is broken: it doesn't handle empty
19642 RHS's properly.
19643
19644 * tests/torture.at (GNU AWK Grammar): New.
19645 * tests/sets.at (Nullable): New.
19646 * src/nullable.c (set_nullable): Instead of blindly looping over
19647 `ritems', loop over the rules, and then over their rhs's.
19648
19649 Work around Autotest bugs.
19650
19651 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
19652 frame, because Autotest understand lines starting with a `+' as
19653 traces from the shell. Then, they are not processed properly.
19654 Admittedly an Autotest bug, but we don't have time to wait for
19655 Autotest to catch up.
19656 * tests/regression.at (Broken Closure): Adjust to the new table
19657 frames.
19658 Move to...
19659 * tests/sets.at: here.
19660
cb581495
AD
196612001-12-13 Akim Demaille <akim@epita.fr>
19662
19663 * src/closure.c (closure): Use nrules instead of playing tricks
19664 with BITS_PER_WORD.
19665
2e729273
AD
196662001-12-13 Akim Demaille <akim@epita.fr>
19667
19668 * src/print.c (print_actions): Output the handling of `$' as the
19669 traces do: shifting the token EOF. Before EOF was treated as a
19670 nonterminal.
19671 * tests/regression.at: Adjust some tests.
19672 * src/print_graph.c (print_core): Complete the set of items via
19673 closure. The next-to-final and final states are still unsatisfying,
19674 but that's to be addressed elsewhere.
19675 No longer output the rule numbers, but do output the state number.
19676 A single loop for the shifts + gotos is enough, but picked a
19677 distinct color for each.
19678 (print_graph): Initialize and finalize closure.
19679
107f7dfb
AD
196802001-12-13 Akim Demaille <akim@epita.fr>
19681
19682 * src/reader.c (readgram): Remove dead code, an strip useless
19683 braces.
19684 (get_type): Remove, unused.
19685
9b53a24f
AD
196862001-12-12 Akim Demaille <akim@epita.fr>
19687
19688 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
19689 on that of lib/error.c.
19690
dbfb6dcd
AD
196912001-12-12 Akim Demaille <akim@epita.fr>
19692
19693 Some hosts don't like `/' in includes.
19694
19695 * src/system.h: Include libgettext.h without qualifying the path.
19696 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
19697 $(top_srcdir).
19698
c25fb648
MA
196992001-12-11 Marc Autret <autret_m@epita.fr>
19700
19701 * src/output.c (output_parser): Remove useless muscle.
19702
710ddc4f
MA
197032001-12-11 Marc Autret <autret_m@epita.fr>
19704
19705 * src/bison.simple: Remove #line just before %%epilogue. It
19706 is now handled in ...
19707 * src/reader.c (read_additionnal_code): Add the output of a
19708 #line for the epilogue.
19709
e83d80b8
MA
197102001-12-10 Marc Autret <autret_m@epita.fr>
19711
927c1557 19712 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
19713 replace precedent remove.
19714 * src/bison.simple: Remove #line before %%prologue because
19715 %%input-line is wrong at this time.
19716
971d5158
MA
197172001-12-10 Marc Autret <autret_m@epita.fr>
19718
19719 * src/reader.c (symbols_output): Clean up.
927c1557 19720 * src/output.c (output_gram, output): Clean up.
971d5158 19721
5edafffd
AD
197222001-12-10 Akim Demaille <akim@epita.fr>
19723
19724 * src/lalr.c (initialize_lookaheads): New. Extracted from...
19725 * src/LR0.c (set_state_table): here.
19726 * src/lalr.c (lalr): Call it.
19727
0279f8e9
AD
197282001-12-10 Akim Demaille <akim@epita.fr>
19729
19730 * src/state.h (shifts): Remove the `number' member: shifts are
19731 attached to state, hence no longer need to be labelled with a
19732 state number.
19733
190c4f5f
AD
197342001-12-10 Akim Demaille <akim@epita.fr>
19735
19736 Now that states have a complete set of members, the linked list of
19737 shifts is useless: just fill directly the state's shifts member.
19738
19739 * src/state.h (shifts): Remove the `next' member.
19740 * src/LR0.c (first_state, last_state): Remove.
19741 Adjust the callers.
19742 (augment_automaton): Don't look for the shifts that must be added
19743 a shift on EOF: it is those of the state we looked for! But now,
19744 since shifts are attached, it is no longer needed to looking
19745 merely by its id: its number.
19746
2a73b93d
AD
197472001-12-10 Akim Demaille <akim@epita.fr>
19748
19749 * src/LR0.c (augment_automaton): Better variable locality.
19750 Remove an impossible branch: if there is a state corresponding to
19751 the start symbol being shifted, then there is shift for the start
19752 symbol from the initial state.
19753
74392f6a
AD
197542001-12-10 Akim Demaille <akim@epita.fr>
19755
19756 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
19757 only when appropriate: when insert_start_shifting_state' is not
19758 invoked.
19759 * tests/regression.at (Rule Line Numbers): Adjust.
19760
37c82725
AD
197612001-12-10 Akim Demaille <akim@epita.fr>
19762
19763 * src/LR0.c (augment_automaton): Now that all states have shifts,
19764 merge the two cases addition shifts to the initial state.
19765
6a164e0c
AD
197662001-12-10 Akim Demaille <akim@epita.fr>
19767
19768 * src/lalr.c (set_state_table): Move to...
19769 * src/LR0.c: here.
19770 * src/lalr.c (lalr): Don't call it...
19771 * src/LR0.c (generate_states): do it.
19772 * src/LR0.h (first_state): Remove, only the table is used.
19773
7215de24
AD
197742001-12-10 Akim Demaille <akim@epita.fr>
19775
19776 * src/LR0.h (first_shift, first_reduction): Remove.
19777 * src/lalr.c: Don't use first_shift: find shifts through the
19778 states.
19779
80e25d4d
AD
197802001-12-10 Akim Demaille <akim@epita.fr>
19781
19782 * src/LR0.c: Attach shifts to states as soon as they are
19783 computed.
19784 * src/lalr.c (set_state_table): Instead of assigning shifts to
19785 state, just assert that the mapping was properly done.
19786
0ab3728b
AD
197872001-12-10 Akim Demaille <akim@epita.fr>
19788
19789 * src/LR0.c (insert_start_shift): Rename as...
19790 (insert_start_shifting_state): this.
19791 (insert_eof_shifting_state, insert_accepting_state): New.
19792 (augment_automaton): Adjust.
19793 Better locality of the variables.
19794 When looking if the start_symbol is shifted from the initial
19795 state, using `while (... symbol != start_symbol ...)' sounds
19796 better than `while (... symbol < start_symbol ...)': If fail
19797 to see how the order between symbols could be relevant!
19798
78af9bbc
AD
197992001-12-10 Akim Demaille <akim@epita.fr>
19800
19801 * src/getargs.h: Don't declare `spec_name_prefix' and
19802 `spec_file_prefix', declared by src/files.h.
19803 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
19804 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
19805 * src/output.c (prepare): Adjust.
19806 * src/reader.c (symbols_output): Likewise.
19807 * src/vmsgetargs.c: Vaguely adjust, but who cares?
19808
bdef2a41
AD
198092001-12-10 Akim Demaille <akim@epita.fr>
19810
19811 * src/muscle_tab.c (muscle_init): NULL is a better default than
19812 `"0"'.
19813
3735969c
AD
198142001-12-10 Akim Demaille <akim@epita.fr>
19815
19816 * src/reader.c (reader): Calling symbols_output once is enough.
19817
49701457
AD
198182001-12-10 Akim Demaille <akim@epita.fr>
19819
19820 Now that states have a complete set of members, the linked list of
19821 reductions is useless: just fill directly the state's reductions
19822 member.
19823
19824 * src/state.h (struct reductions): Remove member `number' and
19825 `next'.
19826 * src/LR0.c (first_reduction, last_reduction): Remove.
19827 (save_reductions): Don't link the new reductions, store them in
19828 this_state.
19829 * src/lalr.c (set_state_table): No need to attach reductions to
19830 states, it's already done.
19831 * src/output.c (output_actions): No longer free the shifts, then
19832 the reductions, then the states: free all the states and their
19833 members.
19834
0edad749
AD
198352001-12-10 Akim Demaille <akim@epita.fr>
19836
19837 * src/options.c (OPTN, DRTV, BOTH): New.
19838 (option_table): Use them.
19839
0edad749
AD
19840 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
19841 the job of system.h.
19842 * src/options.c: Don't include stdio.h and xalloc.h for the same
19843 reasons.
19844
5449dd0f
AD
198452001-12-10 Akim Demaille <akim@epita.fr>
19846
19847 * src/output.c (output, prepare): Make sure the values of the
19848 muscles `action' and `prologue' are 0-terminated.
19849
a870c567
AD
198502001-12-10 Akim Demaille <akim@epita.fr>
19851
19852 Clean up GCC warnings.
19853
19854 * src/reader.c (copy_action): `buf' is not used.
19855 (parse_skel_decl): Be static.
19856 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
19857 * src/options.h (create_long_option_table): Have a real prototype.
19858 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
19859 (hash_delete_at): Return const void *.
19860 Adjust casts to preserve the const.
19861
80df8768
AD
198622001-12-10 Akim Demaille <akim@epita.fr>
19863
19864 * configure.in: Require 2.52g.
19865 M4 is not needed, but AUTOM4TE is.
19866 * m4/m4.m4: Remove.
19867 * tests/Makefile.am: Adjust.
19868
f693ad14
AD
198692001-12-10 Akim Demaille <akim@epita.fr>
19870
19871 One structure for states is enough, even though theoretically
19872 there are LR(0) states and LALR(1) states.
19873
19874 * src/lalr.h (state_t): Remove.
19875 (state_table): Be state_t **, not state_t *.
19876 * src/state.h (core, CORE_ALLOC): Rename as...
19877 (state_t, STATE_ALLOC): this.
19878 Add the LALR(1) members: shifts, reductions, errs.
19879 * src/LR0.c (state_table): Rename as...
19880 (state_hash): this, to avoid name clashes with the global
19881 `state_table'.
19882 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
19883 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
19884
74ffbcb6
AD
198852001-12-10 Akim Demaille <akim@epita.fr>
19886
19887 Bison dumps core on bash.y.
19888 Reported by Pascal Bart.
19889
19890 * src/warshall.c (bitmatrix_print): New.
19891 (TC): Use it.
ba0fe3c7 19892 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
74ffbcb6
AD
19893 j must be the outer loop.
19894 * tests/regression.at (Broken Closure): New.
19895
07708e19
AD
198962001-12-05 Akim Demaille <akim@epita.fr>
19897
19898 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
19899 its argument.
ba1ecc07 19900 Reported by Peter Hamorsky.
07708e19 19901
92b16366
AD
199022001-12-05 Akim Demaille <akim@epita.fr>
19903
19904 * src/conflicts.c (err_table): Remove.
19905 (resolve_sr_conflict): Adjust.
19906 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
19907 Rename as...
19908 (state_t.reductions, state_t.shifts): this.
19909
076ab033
AD
199102001-12-05 Akim Demaille <akim@epita.fr>
19911
19912 * src/reduce.c (reduce_grammar_tables): No longer disable the
19913 removal of useless rules via CPP but via `if (0)', so that the
19914 compiler still check the code is valid.
19915 For instance, it should have noticed `rline' no longer exists: use
19916 the `line' member of rule_t.
19917 * src/gram.c (dummy, rline): Remove, unused.
19918
3843c413
AD
199192001-12-05 Akim Demaille <akim@epita.fr>
19920
19921 * src/output.c (pack_vector): Use assert, not berror.
19922 * src/main.c (berror): Remove, unused.
19923
43168960
AD
199242001-12-05 Akim Demaille <akim@epita.fr>
19925
19926 New experimental feature: if --verbose --trace output all the
19927 items of a state, not only its kernel.
19928
19929 * src/print.c (print_core): If `trace_flag', then invoke closure
19930 before outputting the items of the state (print_core is no longer
19931 a correct name them).
19932 (print_results): Invoke new_closure/free_closure if needed.
19933
b2872512
AD
199342001-12-05 Akim Demaille <akim@epita.fr>
19935
19936 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
19937 * src/closure.c, src/closure.h (itemsetsize): Rename as...
19938 (nitemset): for consistency with the rest of the project.
19939
23cbcc6c
AD
199402001-12-05 Akim Demaille <akim@epita.fr>
19941
19942 * src/closure.c (print_closure): Improve.
19943 (closure): Use it for printing input and output.
19944
03ec521c
AD
199452001-12-05 Akim Demaille <akim@epita.fr>
19946
19947 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
19948 indexed by nonterminals.
19949
3a7456dd
AD
199502001-12-05 Akim Demaille <akim@epita.fr>
19951
19952 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
19953 what it was!).
19954 * src/warshall.h: Remove accidental duplication of the content.
19955
1cbcf2e7
AD
199562001-12-05 Akim Demaille <akim@epita.fr>
19957
19958 * src/closure.c (set_fderives): De-obfuscate.
19959
84182270
AD
199602001-12-05 Akim Demaille <akim@epita.fr>
19961
19962 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
19963
3f6f053c
AD
199642001-12-05 Akim Demaille <akim@epita.fr>
19965
19966 * src/closure.c (set_firsts): De-obfuscate.
19967
7a5350ba
AD
199682001-12-05 Akim Demaille <akim@epita.fr>
19969
19970 * src/output.c (action_row): De-obfuscate
19971 using the good o' techniques: arrays not pointers, variable
19972 locality, BITISSET, RESETBIT etc.
19973
d954473d
AD
199742001-12-05 Akim Demaille <akim@epita.fr>
19975
19976 Pessimize the code to simplify it: from now on, all the states
19977 have a valid SHIFTS, which NSHIFTS is possibly 0.
19978
19979 * src/LR0.c (shifts_new): Be global and move to..
19980 * src/state.c, src/state.h: here.
19981 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
19982 * src/print_graph: Adjust.
19983
9839bbe5
AD
199842001-12-05 Akim Demaille <akim@epita.fr>
19985
19986 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
19987 * src/conflicts.c: Use it.
19988 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
19989 incorrectly ``simplified''.
19990
9f136c07
AD
199912001-12-05 Akim Demaille <akim@epita.fr>
19992
19993 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
19994 using the good o' techniques: arrays not pointers, variable
19995 locality, BITISSET, RESETBIT etc.
19996
b608206e
AD
199972001-12-05 Akim Demaille <akim@epita.fr>
19998
19999 * src/state.h (SHIFT_SYMBOL): New.
20000 * src/conflicts.c: Use it to deobfuscate.
20001
52afa962
AD
200022001-12-05 Akim Demaille <akim@epita.fr>
20003
20004 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
20005 (print_reductions): De-obfuscate using the good o' techniques:
20006 arrays not pointers, variable locality, BITISSET.
20007
e74dc321
AD
200082001-12-05 Akim Demaille <akim@epita.fr>
20009
20010 * src/conflicts.c (print_reductions): Arrays, not pointers.
20011 Use BITISSET.
20012
768fca83
AD
200132001-12-05 Akim Demaille <akim@epita.fr>
20014
20015 * src/conflicts.c (print_reductions): Pessimize, but clarify.
20016
a17e599f
AD
200172001-12-05 Akim Demaille <akim@epita.fr>
20018
20019 * src/conflicts.c (print_reductions): Improve variable locality.
20020
a04bc341
AD
200212001-12-05 Akim Demaille <akim@epita.fr>
20022
20023 * src/conflicts.c (print_reductions): Pessimize, but clarify.
20024
c8ea038e
AD
200252001-12-05 Akim Demaille <akim@epita.fr>
20026
20027 * src/conflicts.c (print_reductions): Improve variable locality.
20028
aa2aab3c
AD
200292001-12-05 Akim Demaille <akim@epita.fr>
20030
20031 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
20032 * src/lalr.c: Use them.
20033
b178c8cc
AD
200342001-12-05 Akim Demaille <akim@epita.fr>
20035
20036 * src/LR0.c (augment_automaton): Formatting changes.
20037 Better variable locality.
20038
f67d13aa
AD
200392001-12-05 Akim Demaille <akim@epita.fr>
20040
20041 * src/lalr.c (matrix_print): New.
20042 (transpose): Use it.
20043 Use arrays instead of pointers.
20044
c2713865
AD
200452001-12-05 Akim Demaille <akim@epita.fr>
20046
20047 * src/lalr.c (maxrhs): Move to...
20048 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
20049 * src/lalr.c (build_relations): Adjust.
20050
9887c18a
AD
200512001-12-05 Akim Demaille <akim@epita.fr>
20052
20053 * src/lalr.c (transpose): Free the memory allocated to the
20054 argument, as it is replaced by the results by the unique caller.
20055 (build_relations): Merely invoke transpose: it handles the memory
20056 deallocation.
20057 Improve variable locality.
20058 Avoid variables used as mere abbreviations.
20059 (compute_lookaheads): Use arrays instead of pointers.
20060
4d4f699c
AD
200612001-12-05 Akim Demaille <akim@epita.fr>
20062
20063 * src/lalr.c (initialize_F): Improve variable locality.
20064 Avoid variables used as mere abbreviations.
20065
80a69750
AD
200662001-12-05 Akim Demaille <akim@epita.fr>
20067
20068 * src/derives.c (print_derives): Display the ruleno.
20069 * src/lalr.c (initialize_F, transpose): Better variable locality
20070 to improve readability.
20071 Avoid variables used as mere abbreviations.
20072
fe961097
AD
200732001-12-05 Akim Demaille <akim@epita.fr>
20074
20075 * src/lalr.c (traverse): Use arrays instead of pointers.
20076
e3e4e814
AD
200772001-12-05 Akim Demaille <akim@epita.fr>
20078
20079 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
20080 the handling of squeue.
20081 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
20082
630e182b
AD
200832001-12-05 Akim Demaille <akim@epita.fr>
20084
20085 Because useless nonterminals are now kept alive (instead of being
20086 `destroyed'), we now sometimes examine them, and store information
20087 related to them. Hence we need to know their number, and adjust
20088 memory allocations.
20089
20090 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
20091 static.
20092 * src/LR0.c (allocate_itemsets): The memory allocated to
20093 `symbol_count' was used for two different purpose: once to count
20094 the number of occurrences of each symbol, and later reassigned to
20095 `shift_symbol', containing the symbol that can be shifted from a
20096 given state.
20097 Deobfuscate, i.e., allocate, use and free `symbol_count' here
20098 only, and...
20099 (new_itemsets): Allocate `shift_symbol' here.
20100 (allocate_itemsets): symbol_count includes useless nonterminals.
20101 Make room for them.
20102 (free_storage): Use `free', not `XFREE', for pointers that cannot
20103 be null.
20104
81b51460
AD
201052001-12-05 Akim Demaille <akim@epita.fr>
20106
20107 * src/nullable.c (set_nullable): Deobfuscate the handling of
20108 ritem.
20109 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
20110
3067fbef
AD
201112001-12-05 Akim Demaille <akim@epita.fr>
20112
20113 * src/gram.c, src/gram.h (ritem_print): New.
20114 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
20115 (This useless function was defined only to work around VMS linkers
20116 that can't handle compilation units with variables only).
20117 * src/reduce.c (dump_grammar): Use it to trace the construction of
20118 ritem.
20119
c2bea5f9
PE
201202001-12-04 Paul Eggert <eggert@twinsun.com>
20121
7d27c823
PE
20122 * src/bison.simple (union yyalloc): Change member names
20123 to be the same as the stack names.
20124 (yyparse): yyptr is now union yyalloc *, not char *.
20125 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
20126 and may generate better code on some machines.
c2bea5f9
PE
20127 (yystpcpy): Use prototype if __STDC__ is defined, not just
20128 if __cplusplus is defined.
35687a9d 20129
2c8a9dfa
AD
201302001-11-30 Akim Demaille <akim@epita.fr>
20131
20132 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
20133 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
20134 Gettext doesn't compile cleanly, and dies with -Werror.
20135 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
20136 Include WARNING_CFLAGS here.
20137 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
20138 before being defined.
20139
f4e421e6
AD
201402001-11-27 Paul Eggert <eggert@twinsun.com>
20141
20142 * lib/quotearg.h (quotearg_n, quotearg_n_style):
20143 First arg is int, not unsigned.
20144 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
20145 (SIZE_MAX, UINT_MAX): New macros.
20146 (quotearg_n_options): Abort if N is negative.
20147 Avoid overflow check on hosts where size_t is 64 bits and int
20148 is 32 bits, as overflow is impossible there.
20149 Fix off-by-one typo that caused unnecessary reallocation.
20150
7093d0f5
AD
201512001-11-29 Paul Eggert <eggert@twinsun.com>
20152
20153 Name space cleanup in generated parser.
20154
20155 * doc/bison.texinfo (Bison Parser): Discuss system headers
20156 and their effect on the user name space.
20157
20158 * src/bison.simple:
20159 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
20160 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
20161 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
20162
20163 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
20164 on user names when possible.
20165
20166 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
20167 Simplify test for whather <alloca.h> exists.
20168
20169 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
20170
20171 (<stdio.h>): Include if YYDEBUG.
20172
20173 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
20174 ! defined (yyoverflow) && ! defined (yymemcpy).
20175
20176 (yymemcpy, yyparse): Rename local variables as needed so that
20177 they all begin with 'yy'.
20178
20179 (yystrlen, yystpcpy): New functions.
20180
20181 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
20182 All uses changed.
20183
20184 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
20185 instead of relying on string.h functions. Use YYSTACK_ALLOC
20186 and YYSTACK_FREE instead of malloc and free.
20187
fd51e5ff
AD
201882001-11-30 Akim Demaille <akim@epita.fr>
20189
20190 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
20191 before their first uses.
20192 (YYBISON, YYPURE): Move to the top of the output.
20193
7d13ff5f
AD
201942001-11-30 Akim Demaille <akim@epita.fr>
20195
20196 * tests/reduce.at (Useless Nonterminals): Fix.
20197
892a3995
AD
201982001-11-30 Akim Demaille <akim@epita.fr>
20199
20200 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
20201 if body instead of `;' to pacify GCC's warnings.
20202
68f1e3ed
AD
202032001-11-30 Akim Demaille <akim@epita.fr>
20204
20205 Instead of mapping the LHS of unused rules to -1, keep the LHS
20206 valid, but flag the rules as invalid.
20207
20208 * src/gram.h (rule_t): `useful' is a new member.
20209 * src/print.c (print_grammar): Adjust.
20210 * src/derives.c (set_derives): Likewise.
20211 * src/reader.c (packgram, reduce_output): Likewise.
20212 * src/reduce.c (reduce_grammar_tables): Likewise.
20213 * tests/reduce.at (Underivable Rules, Useless Rules): New.
20214
d2d1b42b
AD
202152001-11-30 Akim Demaille <akim@epita.fr>
20216
20217 * src/reduce.c (reduce_output): Formatting changes.
20218 * src/print.c (print_results, print_grammar): Likewise.
20219 * tests/regression.at (Rule Line Numbers)
20220 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
20221
760b53a8
AD
202222001-11-30 Akim Demaille <akim@epita.fr>
20223
20224 * src/reduce.c (nonterminals_reduce): Instead of throwing away
20225 useless nonterminals, move them at the end of the symbol arrays.
20226 (reduce_output): Adjust.
20227 * tests/reduce.at (Useless Nonterminals): Adjust.
20228
00238958
AD
202292001-11-30 Akim Demaille <akim@epita.fr>
20230
20231 * src/reduce.c: Various comment/formatting changes.
20232 (nonterminals_reduce): New, extracted from...
20233 (reduce_grammar_tables): here.
20234 (reduce_grammar): Call nonterminals_reduce.
20235
396452de
PE
202362001-11-29 Paul Eggert <eggert@twinsun.com>
20237
20238 * src/bison.simple (YYSTACK_REALLOC): Remove.
20239 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
20240 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
20241 New macros.
20242 (union yyalloc): New type.
20243 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
20244 an arbitrary restriction on hosts where size_t is wider than int.
20245
20246 (yyparse): Don't dump core if alloca or malloc fails; instead, report
20247 a parser stack overflow. Allocate just one block of memory for all
20248 three stacks, instead of allocating three blocks; this typically is
20249 faster and reduces fragmentation.
20250
20251 Do not limit the number of items in the stack to a value that fits
20252 in 'int', as this is an arbitrary limit on hosts with 64-bit
20253 size_t and 32-bit int.
20254
147e184c
MA
202552001-11-29 Marc Autret <autret_m@epita.fr>
20256
20257 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
20258 of defining YYERROR_VERBOSE.
20259 [AT_DATA]: $4 is now out of C declarations in the prologue.
20260
426cf563
MA
202612001-11-28 Marc Autret <autret_m@epita.fr>
20262
20263 * src/reader.c (parse_dquoted_param): New.
20264 (parse_skel_decl): Use it.
20265 * src/lex.h: Add its prototype.
20266 * src/lex.c (literalchar): Become not static.
20267
c7925b99
MA
202682001-11-28 Marc Autret <autret_m@epita.fr>
20269
20270 * src/output.h: And put its extern declaration here.
20271 * src/output.c (error_verbose): Define here.
20272 (prepare): Echo name modification.
20273 * src/getargs.h: Clean its extern declaration.
20274 * src/getargs.c (error_verbose_flag): Remove.
20275 (getargs): Remove case 'e'.
20276 * src/options.c (option_table): 'error-verbose' is now seen as simple
20277 percent option.
20278 Include output.h.
20279
20280 * src/reader.c (read_declarations): Remove case tok_include.
20281 (parse_include_decl): Remove.
20282 * src/lex.h (token_t): Remove tok_include.
20283 * src/options.c (option_table): 'include' is now a simple command line
20284 option.
20285
5b5d1929
MA
202862001-11-28 Marc Autret <autret_m@epita.fr>
20287
20288 * src/bison.simple: Adjust muscle names.
20289 * src/muscle_tab.c (muscle_init): Also rename the muscles.
20290 * src/output.c (prepare): s/_/-/ for the muscles names.
20291 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
20292
8850be4b
MA
202932001-11-28 Marc Autret <autret_m@epita.fr>
20294
20295 * src/bison.simple: Fix debug.
20296 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
20297
4a38e613
AD
202982001-11-28 Akim Demaille <akim@epita.fr>
20299
20300 * src/LR0.c (shifts_new): New.
20301 (save_shifts, insert_start_shift, augment_automaton): Use it.
20302
4b35e1c1
AD
203032001-11-28 Akim Demaille <akim@epita.fr>
20304
20305 * src/closure.c (closure): `b' and `ruleno' denote the same value:
20306 keep ruleno only.
20307
d2b04478
AD
203082001-11-28 Akim Demaille <akim@epita.fr>
20309
20310 * src/closure.c (closure): Instead of looping over word in array
20311 then bits in words, loop over bits in array.
20312
2c4c30aa
AD
203132001-11-28 Akim Demaille <akim@epita.fr>
20314
20315 * src/closure.c (closure): No longer optimize the special case
20316 where all the bits of `ruleset[r]' are set to 0, to make the code
20317 clearer.
20318
576890b7
AD
203192001-11-28 Akim Demaille <akim@epita.fr>
20320
20321 * src/closure.c (closure): `r' and `c' are new variables, used to
20322 de-obfuscate accesses to RULESET and CORE.
20323
cb487d7d
AD
203242001-11-28 Akim Demaille <akim@epita.fr>
20325
20326 * src/reduce.c (reduce_print): Use ngettext.
20327 (dump_grammar): Improve the trace accuracy.
20328
6013d43f
AD
203292001-11-28 Akim Demaille <akim@epita.fr>
20330
20331 * src/reduce.c (dump_grammar): Don't translate trace messages.
20332
cb4956ee
AD
203332001-11-28 Akim Demaille <akim@epita.fr>
20334
20335 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
20336 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
20337 as all tags are free'ed afterwards.
20338 From Enrico Scholz.
20339
648185ab
PE
203402001-11-27 Paul Eggert <eggert@twinsun.com>
20341
20342 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
20343 use alloca when we didn't want to, and vice versa.
20344
68254a03
MA
203452001-11-27 Marc Autret <autret_m@epita.fr>
20346
9113b58f
AD
20347 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
20348 initialization.
68254a03
MA
20349 * src/output.c (prepare): Remove its update.
20350
04d843a2
MA
203512001-11-27 Marc Autret <autret_m@epita.fr>
20352
20353 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
20354 Use %error-verbose.
20355
d2079671 203562001-11-27 Marc Autret <autret_m@epita.fr>
eeeb962b
MA
20357
20358 * src/bison.simple: Remove YYERROR_VERBOSE using.
20359 Use %%error_verbose.
20360 (yyparse): Likewise.
20361 * src/output.c (prepare): Give its final value.
20362 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
20363 * src/getargs.h: Add its extern declaration.
20364 * src/getargs.c (error_verbose_flag): New int.
20365 (getargs): Update to catch new case.
20366 * src/options.c (option_table): 'error-verbose' is a new option.
20367 (shortopts): Update.
20368
e0327bc8
AD
203692001-11-27 Akim Demaille <akim@epita.fr>
20370
20371 * src/system.h: Use intl/libgettext.h.
20372 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
20373
000f1a3c
AD
203742001-11-27 Akim Demaille <akim@epita.fr>
20375
20376 * tests/torture.at (Exploding the Stack Size with Malloc):
20377 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
20378
26cfe0be
AD
203792001-11-27 Akim Demaille <akim@epita.fr>
20380
20381 * src/files.c: Include error.h.
20382 Reported by Hans Aberg.
20383
f6bd5427
MA
203842001-11-26 Marc Autret <autret_m@epita.fr>
20385
d2079671 20386 * src/reader.c (parse_include_decl): New, not yet implemented.
f6bd5427
MA
20387 (read_declarations): Add case tok_include.
20388 * src/getargs.h (include): Add its extern definition.
20389 * src/getargs.c (include): New const char *.
20390 (getargs): Add case '-I'.
20391 * src/options.c (option_table): Add include as command line and
20392 percent option.
20393 * src/lex.h (token_t): Add tok_include.
20394
2ca209c1
AD
203952001-11-26 Akim Demaille <akim@epita.fr>
20396
20397 * src/reader.c (readgram): Make sure rules for mid-rule actions
20398 have a lineno equal to that of their host rule.
20399 Reported by Hans Aberg.
20400 * tests/regression.at (Rule Line Numbers): New.
20401
0e41b407
AD
204022001-11-26 Akim Demaille <akim@epita.fr>
20403
20404 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
20405 size_ts.
20406
204072001-11-26 Akim Demaille <akim@epita.fr>
20408
20409 * src/complain.c, src/complain.h (error): Remove, provided by
20410 lib/error.[ch].
20411
e0c40012
AD
204122001-11-26 Akim Demaille <akim@epita.fr>
20413
20414 * src/reader.c (read_declarations): Don't abort on tok_illegal,
20415 issue an error message.
20416 * tests/regression.at (Invalid %directive): New.
20417 Reported by Hans Aberg.
20418
5e147124
AD
204192001-11-26 Akim Demaille <akim@epita.fr>
20420
20421 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
20422 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
20423
a034c8b8
AD
204242001-11-26 Akim Demaille <akim@epita.fr>
20425
20426 * src/conflicts.c (conflicts_print): Don't complain at all when
20427 there are no reduce/reduce conflicts, and as many shift/reduce
20428 conflicts as expected.
20429 * tests/regression.at (%expect right): Adjust.
20430
c64a20f3
AD
204312001-11-23 Akim Demaille <akim@epita.fr>
20432
20433 * lib/alloca.c: Update, from fileutils.
20434
5b0d29bb
AD
204352001-11-23 Akim Demaille <akim@epita.fr>
20436
20437 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
20438
722c4bfe
AD
204392001-11-23 Akim Demaille <akim@epita.fr>
20440
20441 * src/system.h: Include alloca.h.
20442 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
20443
6255b435
AD
204442001-11-23 Akim Demaille <akim@epita.fr>
20445
20446 * src/print_graph.c (print_actions): Remove `rule', unused.
20447 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
20448 pacify GCC's signed < unsigned warnings.
20449 * src/closure.c (itemsetsize): Likewise.
20450 * src/reader.c (symbol_list_new): Static.
20451
b29b2ed5
AD
204522001-11-23 Akim Demaille <akim@epita.fr>
20453
20454 Attaching lineno to buckets is stupid, since only one copy of each
20455 symbol is kept, only the line of the first occurrence is kept too.
20456
20457 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
20458 * src/reader.c (rline_allocated): Remove, unused.
20459 (symbol_list): Have a `line' member.
20460 (symbol_list_new): New.
20461 (readgram): Use it.
20462 * src/print.c (print_grammar): Output the rule line numbers.
20463 * tests/regression.at (Solved SR Conflicts)
20464 (Unresolved SR Conflicts): Adjust.
20465 Reported by Hans Aberg.
20466
a81b1d4a
MA
204672001-11-22 Marc Autret <autret_m@epita.fr>
20468
20469 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
20470
c1ecb3c1
MA
204712001-11-22 Marc Autret <autret_m@epita.fr>
20472
20473 * src/muscle_tab.c (muscle_init): Remove initialization of
20474 skeleton muscle.
20475 * src/output.c (output_master_parser): Do it here.
20476
fbe01355
AD
204772001-11-20 Akim Demaille <akim@epita.fr>
20478
20479 * po/sv.po: New.
20480 * configure.in (ALL_LINGUAS): Adjust.
20481 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
20482 longer contains strings to translate.
20483
81e895c0
AD
204842001-11-19 Akim Demaille <akim@epita.fr>
20485
20486 * src/conflicts.c (conflicts_print): Add a missing \n.
20487
6bb1878b
AD
204882001-11-19 Akim Demaille <akim@epita.fr>
20489
20490 * src/nullable.c (nullable_print): New.
20491 (set_nullable): Call it when tracing.
20492 Better locality of variables.
20493
d9ec2d07
AD
204942001-11-19 Akim Demaille <akim@epita.fr>
20495
20496 * src/print.c (print_actions): Better locality of variables.
20497
720e5c1b
AD
204982001-11-19 Akim Demaille <akim@epita.fr>
20499
20500 * src/derives.c (print_derives): Fix and enrich.
20501 * src/closure.c (print_fderives): Likewise.
20502
fb908786
AD
205032001-11-19 Akim Demaille <akim@epita.fr>
20504
20505 * src/closure.c (itemsetend): Remove, replaced with...
20506 (itemsetsize): new.
20507
125ecb56
AD
205082001-11-19 Akim Demaille <akim@epita.fr>
20509
20510 * src/LR0.c (kernel_end): Remove, replaced with...
20511 (kernel_size): new.
20512
d8cf039f
AD
205132001-11-19 Akim Demaille <akim@epita.fr>
20514
20515 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
20516 to clarify.
20517
7bec0760
AD
205182001-11-19 Akim Demaille <akim@epita.fr>
20519
20520 * src/closure.c (closure): Use arrays instead of pointers to clarify.
20521
c87d4863
AD
205222001-11-19 Akim Demaille <akim@epita.fr>
20523
20524 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
20525 trace messages.
20526 * src/LR0.c: Likewise.
20527 (allocate_itemsets): Use arrays instead of pointers to clarify.
20528
9bfe901c
AD
205292001-11-19 Akim Demaille <akim@epita.fr>
20530
20531 * src/getargs.c (statistics_flag): Replace with...
20532 (trace_flag): New.
20533 (longopts): Accept --trace instead of --statistics.
20534 * src/getargs.h, src/options.c: Adjust.
20535 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
20536 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
20537
97db7bd4
AD
205382001-11-19 Akim Demaille <akim@epita.fr>
20539
cc72668c 20540 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
97db7bd4
AD
20541 pointers to clarify the code.
20542 (save_reductions, save_shifts): Factor common parts of alternatives.
20543
2c5f66ed
AD
205442001-11-19 Akim Demaille <akim@epita.fr>
20545
20546 * src/LR0.c (new_state, get_state): Complete TRACE code.
20547 * src/closure.c: Include `reader.h' to get `tags', needed by the
20548 trace code.
20549 Rename the conditional DEBUG as TRACE.
20550 Output consistently TRACEs to stderr, not stdout.
20551 * src/derives.c: Likewise.
20552 * src/reduce.c: (inaccessable_symbols): Using if is better style
20553 than goto.
20554 Use `#if TRACE' instead of `#if 0' for tracing code.
20555
300f275f
AD
205562001-11-19 Akim Demaille <akim@epita.fr>
20557
20558 * src/system.h (LIST_FREE, shortcpy): New.
20559 * src/LR0.c: Use them.
20560 * src/output.c (free_itemsets, free_reductions, free_shifts):
20561 Remove, replaced by LIST_FREE.
20562
f59c437a
AD
205632001-11-19 Akim Demaille <akim@epita.fr>
20564
20565 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
20566 (REDUCTIONS_ALLOC): New.
20567 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
20568 allocation.
20569
6986fd9e
AD
205702001-11-19 Akim Demaille <akim@epita.fr>
20571
20572 * src/LR0.c (new_state): Complete trace code.
20573 * src/nullable.c (set_nullable): Don't translate traces.
20574
4bc30f78
AD
205752001-11-19 Akim Demaille <akim@epita.fr>
20576
20577 * src/print_graph.c (print_core): Better locality of variables.
20578 * src/print.c (print_core): Likewise.
20579
08a946e0
AD
205802001-11-19 Akim Demaille <akim@epita.fr>
20581
20582 * src/vcg.c: You do the output, so you are responsible of the
20583 handling of VCG syntax, in particular: use quotearg.
20584 * src/print_graph.c: Don't.
20585 (print_actions): Don't output the actions as part of the nodes,
20586 since that's the job of the edges.
20587 (print_state): Don't output by hand: fill the node description,
9bfe901c 20588 and ask for its output.
08a946e0 20589
f0473484
AD
205902001-11-19 Akim Demaille <akim@epita.fr>
20591
cc72668c
AD
20592 * src/bison.simple (yyparse): When verbosely reporting an error,
20593 no longer put additional quotes around token names.
f0473484
AD
20594 * tests/calc.at: Adjust.
20595
e41dc700
AD
205962001-11-19 Akim Demaille <akim@epita.fr>
20597
20598 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
20599 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
20600 * src/output.c: Adjust.
20601
652a871c
AD
206022001-11-19 Akim Demaille <akim@epita.fr>
20603
20604 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
20605 (rule_t): this.
20606 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
20607
b2ed6e58
AD
206082001-11-19 Akim Demaille <akim@epita.fr>
20609
20610 * src/gram.h (rule_t): New.
20611 (rule_table): New.
20612 (rrhs, rlhs): Remove, part of state_t.
20613 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
20614 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
20615 * src/reader.c, src/reduce.c: Adjust.
20616
edad7067
AD
206172001-11-19 Akim Demaille <akim@epita.fr>
20618
20619 * src/reader.c (symbols_output): New, extracted from...
20620 (packsymbols): Here.
20621 (reader): Call it.
20622
3feec034
AD
206232001-11-19 Akim Demaille <akim@epita.fr>
20624
20625 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
20626 (maxrhs): this new function.
20627
ddcd5fdf
AD
206282001-11-19 Akim Demaille <akim@epita.fr>
20629
cc72668c 20630 * src/lalr.c (F): New macro to access the variable F.
ddcd5fdf
AD
20631 Adjust.
20632
bb527fc2
AD
206332001-11-19 Akim Demaille <akim@epita.fr>
20634
cc72668c 20635 * src/lalr.h (LA): New macro to access the variable LA.
bb527fc2
AD
20636 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20637 * src/lalr.c: Adjust.
20638
a845a697
AD
206392001-11-19 Akim Demaille <akim@epita.fr>
20640
20641 * src/lalr.c (initialize_LA): Only initialize LA. Let...
20642 (set_state_table): handle the `lookaheads' members.
20643
f004bf6a
AD
206442001-11-19 Akim Demaille <akim@epita.fr>
20645
cc72668c
AD
20646 * src/lalr.h (lookaheads): Removed array, whose contents is now
20647 a member of...
f004bf6a
AD
20648 (state_t): this structure.
20649 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20650 Adjust.
20651
de326cc0
AD
206522001-11-19 Akim Demaille <akim@epita.fr>
20653
cc72668c
AD
20654 * src/lalr.h (consistent): Removed array, whose contents is now
20655 a member of...
de326cc0
AD
20656 (state_t): this structure.
20657 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20658 Adjust.
20659
90b4416b
AD
206602001-11-19 Akim Demaille <akim@epita.fr>
20661
cc72668c
AD
20662 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
20663 contents are now members of...
90b4416b
AD
20664 (state_t): this structure.
20665 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20666 Adjust.
20667
9703cc49
AD
206682001-11-19 Akim Demaille <akim@epita.fr>
20669
20670 * src/lalr.h (state_t): New.
20671 (state_table): Be a state_t * instead of a core **.
20672 (accessing_symbol): Remove, part of state_t.
20673 * src/lalr.c: Adjust.
20674 (set_accessing_symbol): Merge into...
20675 (set_state_table): this.
20676 * src/print_graph.c, src/conflicts.c: Adjust.
20677
d803322e
AD
206782001-11-14 Akim Demaille <akim@epita.fr>
20679
20680 * tests/calc.at, tests/output.at, tests/regression.at,
20681 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
20682 now the tests are run in private dirs, therefore AC_CLEANUP and
20683 family can be simplified to 0-ary.
20684 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
20685 use abs. path to find config.h.
20686 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
20687 stderr, there can be way too much random noise.
20688 Instead pass -Werror to GCC and rely on the exit status.
20689 Reported by Wolfram Wagner.
20690
3d76b07d
AD
206912001-11-14 Akim Demaille <akim@epita.fr>
20692
20693 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
20694 defined only if yyoverflow is defined, to avoid `warning: unused
20695 variable `yyvs1''.
20696 Reported by The Test Suite.
20697
09b503c8
AD
206982001-11-14 Akim Demaille <akim@epita.fr>
20699
20700 * src/print.c: Include reduce.h.
20701 Reported by Hans Aberg.
20702
207032001-11-14 Akim Demaille <akim@epita.fr>
20704
20705 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
20706 Revert a previous patch: these are really const.
20707 * src/conflicts.c (conflict_report): Additional useless pair of
20708 braces to pacify GCC's warnings for `if () if () {} else {}'.
20709 * src/lex.c (parse_percent_token): Replace equal_offset with
20710 arg_offset.
20711 arg is const.
20712 Be sure to strdup `arg' when used, since there is no reason for
20713 token_buffer not to change.
20714
0f37a994
AD
207152001-11-14 Akim Demaille <akim@epita.fr>
20716
20717 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
20718 definition.
20719 * src/main.c (main): Use them.
20720 Suggested by Hans Aberg.
20721
d39d93b8
AD
207222001-11-12 Akim Demaille <akim@epita.fr>
20723
20724 * src/system.h (ngettext): Now that we use ngettext, be sure to
20725 provide a default definition when NLS are not used.
20726
9edcd895
AD
207272001-11-12 Akim Demaille <akim@epita.fr>
20728
20729 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
20730 Use @kbd to denote user input.
20731 (Language and Grammar): ANSIfy the example.
20732 Adjust its layout for info/notinfo.
20733 (Location Tracking Calc): Output error messages to stderr.
20734 Output locations in a more GNUtically correct way.
20735 Fix a couple of Englishos.
20736 Adjust @group/@end group pairs.
20737
7da99ede
AD
207382001-11-12 Akim Demaille <akim@epita.fr>
20739
e3aa65c5 20740 %expect was not functioning at all.
7da99ede
AD
20741
20742 * src/conflicts.c (expected_conflicts): Set to -1.
20743 (conflict_report): Use ngettext.
20744 (conflicts_print): Check %expect and make its violation an error.
20745 * doc/bison.texinfo (Expect Decl): Adjust.
20746 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
20747 * tests/regression.at (%expect not enough, %expect right)
20748 (%expect too much): New.
20749
ba9dda1a
AD
207502001-11-12 Akim Demaille <akim@epita.fr>
20751
20752 * tests/regression.at (Conflicts): Rename as...
20753 (Unresolved SR Conflicts): this.
20754 (Solved SR Conflicts): New.
20755
337c5bd1
AD
207562001-11-12 Akim Demaille <akim@epita.fr>
20757
20758 * src/reduce.c (print_results): Rename as...
20759 (reduce_output): This.
20760 Output to OUT, passed as argument, instead of output_obstack.
20761 (dump_grammar): Likewise.
20762 (reduce_free): New.
20763 Also free V1.
20764 (reduce_grammar): No longer call reduce_output, since...
20765 * src/print.c (print_results): do it.
20766 * src/main.c (main): Call reduce_free;
20767
c73a41af
AD
207682001-11-12 Akim Demaille <akim@epita.fr>
20769
20770 * src/conflicts.c (print_reductions): Accept OUT as argument.
20771 Output to it, not to output_obstack.
20772 * src/print.c (print_actions): Adjust.
20773
0df87bb6
AD
207742001-11-12 Akim Demaille <akim@epita.fr>
20775
20776 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
20777 the result instead of using...
20778 (src_total, rrc_total, src_count, rrc_count): Remove.
20779 (any_conflicts): Remove.
20780 (print_conflicts): Split into...
20781 (conflicts_print, conflicts_output): New.
20782 * src/conflicts.h: Adjust.
20783 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
0f37a994 20784 * src/print.c (print_grammar): Issue `\n' between two rules.
0df87bb6
AD
20785 * tests/regression.at (Conflicts): New.
20786 Reported by Tom Lane.
20787
e4d3d4de
AD
207882001-11-12 Akim Demaille <akim@epita.fr>
20789
20790 * tests/regression.at (Invalid input): Remove, duplicate with
20791 ``Invalid input: 1''.
20792
6d7d248e
AD
207932001-11-12 Akim Demaille <akim@epita.fr>
20794
20795 * tests/torture.at (AT_DATA_STACK_TORTURE)
20796 (Exploding the Stack Size with Alloca)
20797 (Exploding the Stack Size with Malloc): New.
20798
e9e4c321
AD
207992001-11-12 Akim Demaille <akim@epita.fr>
20800
20801 * src/bison.simple (YYSTACK_REALLOC): New.
20802 (yyparse) [!yyoverflow]: Use it and free the old stack.
0f37a994 20803 Reported by Per Allansson.
e9e4c321 20804
5f7e0832
AD
208052001-11-12 Pascal Bart <pascal.bart@epita.fr>
20806
20807 * src/bison.simple: Define type yystype instead of YYSTYPE, and
20808 define CPP macro, which substitute YYSTYPE by yystype.
20809 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
20810 with yyltype/YYLTYPE. This allows inclusion of the generated
20811 header within the parser if the compiler, such as GGC, accepts
20812 multiple equivalent #defines.
20813 From Akim.
20814
e3f1699f
AD
208152001-11-05 Akim Demaille <akim@epita.fr>
20816
20817 * src/reader.c (symbols_output): New, extracted from...
20818 (packsymbols): here.
20819 (reader): Adjust.
20820
65be0866
AD
208212001-11-05 Akim Demaille <akim@epita.fr>
20822
20823 * src/lex.c (parse_percent_token): s/quotearg/quote/.
20824
e4d910bf
AD
208252001-11-05 Akim Demaille <akim@epita.fr>
20826
20827 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
20828 pattern.
20829
951366c1
AD
208302001-11-05 Akim Demaille <akim@epita.fr>
20831
20832 * src/options.h (struct option_table_struct): set_flags is void*.
20833 * src/options.c (longopts): Support `--output' and `%output'.
20834 (usage): Adjust.
20835 * src/lex.h (tok_setopt): Remove, replaced with...
20836 (tok_intopt, tok_stropt): these new guys.
20837 * src/lex.c (getopt.h): Not needed.
20838 (token_buffer, unlexed_token_buffer): Not const.
20839 (percent_table): Promote `-' over `_' in directive names.
20840 Active `%name-prefix', `file-prefix', and `output'.
20841 (parse_percent_token): Accept possible arguments to directives.
20842 Promote `-' over `_' in directive names.
20843
d8988b2f
AD
208442001-11-04 Akim Demaille <akim@epita.fr>
20845
20846 * doc/bison.texinfo (Decl Summary): Split the list into
20847 `directives for grammars' and `directives for bison'.
20848 Sort'em.
20849 Add description of `%name-prefix', `file-prefix', and `output'.
20850 Promote `-' over `_' in directive names.
20851 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
20852 Simplify the description of `--name-prefix'.
20853 Promote `-' over `_' in directive names.
20854 Promote `--output' over `--output-file'.
20855 Fix the description of `--defines'.
20856 * tests/output.at: Exercise %file-prefix and %output.
20857
6468d18e
AD
208582001-11-02 Akim Demaille <akim@epita.fr>
20859
20860 * doc/refcard.tex: Update.
20861
6b7e85b9
AD
208622001-11-02 Akim Demaille <akim@epita.fr>
20863
20864 * src/symtab.h (SUNDEF): New.
20865 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
20866 stand for `uninitialized', instead of 0.
20867 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
20868 * src/lex.c (lex): Adjust.
20869
20870 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
20871 Number it 0.
20872 Let yylex return it instead of a plain 0.
20873 Reported by Dick Streefland.
20874
cd5aafcf
AD
208752001-11-02 Akim Demaille <akim@epita.fr>
20876
20877 * tests/regression.at (Mixing %token styles): New test.
20878
037ca2f1
AD
208792001-11-02 Akim Demaille <akim@epita.fr>
20880
20881 * src/reader.c (parse_thong_decl): Formatting changes.
20882 (token_translations_init): New, extracted from...
20883 (packsymbols): Here.
20884 Adjust.
20885
270a173c
AD
208862001-11-01 Akim Demaille <akim@epita.fr>
20887
20888 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
20889 Check that `9foo.y' produces correct cpp guards.
20890 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
20891 guards.
20892 Reported by Wwp.
20893
561f9a30
AD
208942001-11-01 Akim Demaille <akim@epita.fr>
20895
20896 * tests/regression.at (Invalid input: 2): New.
20897 * src/lex.c (unlexed_token_buffer): New.
20898 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
20899 too.
20900 Reported by Wwp.
20901
f987e9d2
AD
209022001-11-01 Akim Demaille <akim@epita.fr>
20903
20904 * tests/calc.at: Catch up with 1.30.
20905 * configure.in: Bump to 1.49a.
20906 Adjust to newer Autotest.
20907
0846f581
PB
209082001-10-19 Pascal Bart <pascal.bart@epita.fr>
20909
20910 * src/conflicts.c: Move global variables rrc_total and src_total ...
20911 (print_conflicts): here.
20912 * src/output.c (output): Free global variable user_toknums.
20913 * src/lex.c (token_obstack): Become static.
20914
3c1a79b3
AD
209152001-10-18 Akim Demaille <akim@epita.fr>
20916
20917 * tests/atlocal.in (GCC): Add.
20918 * tests/calc.at: s/m4_match/m4_bmatch/.
20919 s/m4_patsubst/m4_bpatsubst/.
20920 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
20921 * configure.in: AC_SUBST(GCC).
20922
5d52e7d0
MA
209232001-10-14 Marc Autret <autret_m@epita.fr>
20924
20925 * src/options.c (create_long_option_table): Fix.
20926
631aa1d3
AD
209272001-10-10 Akim Demaille <akim@epita.fr>
20928
20929 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
20930
f6ec6d13
AD
209312001-10-04 Akim Demaille <akim@epita.fr>
20932
20933 * src/reader.c (parse_union_decl): Push the caracters in
20934 union_obstack, not attrs_obstack.
20935
342b8b6e
AD
209362001-10-04 Akim Demaille <akim@epita.fr>
20937
20938 Merge in the branch 1.29.
20939
20940 * src/reader.c (packsymbols): Use a temporary obstack for
20941 `%%tokendef', since output_stack is already used elsewhere.
20942
20943 2001-10-02 Akim Demaille <akim@epita.fr>
20944
20945 Bump 1.29d.
20946
20947 2001-10-02 Akim Demaille <akim@epita.fr>
20948
20949 Version 1.29c.
20950
20951 2001-10-02 Akim Demaille <akim@epita.fr>
20952
20953 * tests/regression.at (Invalid CPP headers): New.
20954 From Alexander Belopolsky.
20955 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
20956
20957 2001-10-02 Akim Demaille <akim@epita.fr>
20958
20959 * tests/regression.at (Invalid input): New.
20960 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
20961 Reported by Shura.
20962
20963 2001-10-02 Akim Demaille <akim@epita.fr>
20964
20965 * tests/calc.at: Now that --debug works, the tests must be adjusted.
20966
20967 2001-10-02 Akim Demaille <akim@epita.fr>
20968
20969 * src/output.c (output_parser): Assert `skeleton'.
20970 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
20971 systems.
20972 From Shura.
20973
20974 2001-10-01 Marc Autret <autret_m@epita.fr>
20975
20976 * src/lex.h: Echo modifications.
20977 * src/lex.c (unlex): Parameter is now token_t.
20978 From Hans Aberg.
20979
20980 2001-10-01 Marc Autret <autret_m@epita.fr>
20981
20982 * src/main.c: Include lex.h.
20983 From Hans Aberg.
20984
20985 2001-09-29 Akim Demaille <akim@epita.fr>
20986
20987 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
20988
20989 2001-09-28 Akim Demaille <akim@epita.fr>
20990
20991 * tests/testsuite.at: Update to newer Autotest.
20992 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
20993
20994 2001-09-27 Akim Demaille <akim@epita.fr>
20995
20996 Position independent wrapper.
20997
20998 * tests/bison: Remove.
20999 * tests/bison.in: New.
21000 * configure.in: Adjust.
21001
21002 2001-09-27 Paul Eggert <eggert@twinsun.com>
21003
21004 Port quotearg fixes from tar 1.13.24.
21005
21006 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
21007 tm to be declared.
21008 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
21009 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
21010
21011 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
21012 * m4/mbrtowc.m4: New file.
21013 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
21014 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
21015
21016 2001-09-27 Akim Demaille <akim@epita.fr>
21017
21018 Bump to 1.29c.
21019
21020 2001-09-27 Akim Demaille <akim@epita.fr>
21021
21022 Version 1.29b.
21023
21024 2001-09-25 Akim Demaille <akim@epita.fr>
21025
21026 * src/system.h: Include `xalloc.h'.
21027 Remove it from the C files.
21028 * src/files.c (output_files): Free the obstacks.
21029 * src/lex.c (init_lex): Rename as...
21030 (lex_init): this.
21031 (lex_free): New.
21032 * src/main.c (main): Use it.
21033
21034 2001-09-24 Marc Autret <autret_m@epita.fr>
21035
21036 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
21037 to output informations in fout (FILE*).
21038 (open_graph, close_graph): Likewise.
21039 (output_graph, output_edge, output_node): Likewise.
21040 * src/vcg.h: Update function prototypes.
21041 * src/print_graph.c (print_graph): Open output graph file.
21042 (print_actions): Adjust.
21043 * src/files.h: Remove extern declaration.
21044 * src/files.c: Remove graph_obstack declaration.
21045 (open_files): Remove graph_obstack initialization.
21046 (output_files): Remove graph_obstack saving.
21047
21048 2001-09-24 Marc Autret <autret_m@epita.fr>
21049
21050 * src/files.c (compute_output_file_names): Fix.
21051
21052 2001-09-24 Marc Autret <autret_m@epita.fr>,
21053 Akim Demaille <akim@epita.fr>
21054
21055 * src/reader.c (reader): Remove call to free_symtab ().
21056 * src/main.c (main): Call it here.
21057 Include symtab.h.
21058 * src/conflicts.c (initialize_conflicts): Rename as...
21059 (solve_conflicts): this.
21060 * src/print.c (print_core, print_actions, print_state)
21061 (print_grammar): Dump to a file instead a `output_obstack'.
21062 (print_results): Dump `output_obstack', and then proceed with the
21063 FILE *.
21064 * src/files.c (compute_output_file_names, close_files): New.
21065 (output_files): Adjust.
21066 * src/main.c (main): Adjust.
21067
21068 2001-09-23 Marc Autret <autret_m@epita.fr>
21069
21070 * src/files.c (compute_header_macro): Computes header macro name
21071 from spec_defines_file when given.
21072
21073 2001-09-23 Marc Autret <autret_m@epita.fr>
21074
21075 * src/files.c (output_files): Add default extensions.
21076
21077 2001-09-22 Akim Demaille <akim@epita.fr>
21078
21079 * src/conflicts.c (finalize_conflicts): Rename as...
21080 (free_conflicts): this.
21081
21082 2001-09-22 Akim Demaille <akim@epita.fr>
21083
21084 * src/gram.c (gram_free): Rename back as...
21085 (dummy): this.
21086 (output_token_translations): Free `token_translations'.
21087 * src/symtab.c (free_symtab): Free the tag field.
21088
21089 2001-09-22 Akim Demaille <akim@epita.fr>
21090
21091 Remove `translations' as it is always set to true.
21092
21093 * src/gram.h: Adjust.
21094 * src/reader.c (packsymbols, parse_token_decl): Adjust
21095 * src/print.c (print_grammar): Adjust.
21096 * src/output.c (output_token_translations): Adjust.
21097 * src/lex.c (lex): Adjust.
21098 * src/gram.c: Be sure the set pointers to NULL.
21099 (dummy): Rename as...
21100 (gram_free): this.
21101
21102 2001-09-22 Akim Demaille <akim@epita.fr>
21103
21104 * configure.in: Invoke AM_LIB_DMALLOC.
21105 * src/system.h: Use dmalloc.
21106 * src/LR0.c: Be sure to have pointers initialized to NULL.
21107 (allocate_itemsets): Allocate kernel_items only if needed.
21108
21109 2001-09-22 Akim Demaille <akim@epita.fr>
21110
21111 * configure.in: Bump to 1.29b.
21112 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
21113 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
21114 need xmalloc.c in calc.y.
21115 From Pascal Bart.
21116
21117 2001-09-21 Akim Demaille <akim@epita.fr>
21118
21119 Version 1.29a.
21120 * Makefile.maint, config/config.guess, config/config.sub,
21121 * config/missing: Update from masters.
21122 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
21123 upon package.m4.
21124 * configure.in (ALL_LINGUAS): Add `tr'.
21125
21126 2001-09-21 Akim Demaille <akim@epita.fr>
21127
21128 * tests/Makefile.am (package.m4): Move to...
21129 ($(srcdir)/$(TESTSUITE)): here.
21130
21131 2001-09-20 Akim Demaille <akim@epita.fr>
21132
21133 * src/complain.c: No longer try to be standalone: use system.h.
21134 Don't assume __STDC__ is defined to 1. Just test if it is defined.
21135 * src/complain.h: Likewise.
21136 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
21137 Remove the unused variable `n'.
21138 From Albert Chin-A-Young.
21139
21140 2001-09-18 Marc Autret <autret_m@epita.fr>
21141
21142 * doc/bison.1: Update.
21143 * doc/bison.texinfo (Bison Options): Update --defines and --graph
21144 descriptions.
21145 (Option Cross Key): Update.
21146 Add --graph.
21147
21148 2001-09-18 Marc Autret <autret_m@epita.fr>
21149
21150 * tests/regression.at: New test (comment in %union).
21151
21152 2001-09-18 Marc Autret <autret_m@epita.fr>
21153
21154 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
21155 do that.
21156 Reported by Keith Browne.
21157
21158 2001-09-18 Marc Autret <autret_m@epita.fr>
21159
21160 * tests/output.at: Add tests for --defines and --graph.
21161
21162 2001-09-18 Marc Autret <autret_m@epita.fr>
21163
21164 * tests/output.at: Removes tests of %{header,src}_extension features.
21165
21166 2001-09-18 Akim Demaille <akim@epita.fr>
21167
21168 * tests/Makefile.am (package.m4): New.
21169 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
21170 (_AT_CHECK_CALC_ERROR): Likewise.
21171 Factor the `, ' part of verbose error messages.
21172
21173 2001-09-18 Marc Autret <autret_m@epita.fr>
21174
21175 * src/getargs.c (longopts): Declare --defines and --graph as options
21176 with optional arguments.
21177 * src/files.h: Add extern declarations.
21178 * src/files.c (spec_graph_file, spec_defines_file): New.
21179 (output_files): Update.
21180 Remove CPP-outed code.
21181
21182 2001-09-18 Marc Autret <autret_m@epita.fr>
21183
21184 Turn off %{source,header}_extension feature.
21185
21186 * src/files.c (compute_exts_from_gf): Update.
21187 (compute_exts_from_src): Update.
21188 (output_files): CPP-out useless code.
21189 * src/files.h: Remove {header,source}_extension extern declarations.
21190 * src/reader.c (parse_dquoted_param): CPP-out.
21191 (parse_header_extension_decl): Remove.
21192 (parse_source_extension_decl): Remove.
21193 (read_declarations): Remove cases tok_{hdrext,srcext}.
21194 * src/lex.c (percent_table): Remove {header,source}_extension entries.
21195 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
21196
21197 2001-09-10 Akim Demaille <akim@epita.fr>
21198
21199 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
21200 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
21201 (AT_CHECK_OUTPUT): this.
21202 Merely check ls' exit status, its output is useless.
21203
21204 2001-09-10 Akim Demaille <akim@epita.fr>
21205
21206 * tests/calc.at: Use m4_match.
21207 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
21208
21209 2001-09-10 Marc Autret <autret_m@epita.fr>,
21210 Akim Demaille <akim@epita.fr>
21211
21212 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
21213 enum color_e.
21214 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
21215 to `normal'.
21216 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
21217 * src/lex.h: Adjust prototype.
21218 (token_t): Add `tok_undef'.
21219 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
21220 (parse_percent_token): Now returns token_t.
21221 Add default statement in switch.
21222 (lex): Separate `c' as an input variable, from the token_t result
21223 part.
21224 (unlexed): Is a token_t.
21225
21226 2001-09-10 Akim Demaille <akim@epita.fr>
21227
21228 * configure.in: Bump to 1.29a.
21229
21230 2001-09-07 Akim Demaille <akim@epita.fr>
21231
21232 Version 1.29.
21233
21234 2001-08-30 Akim Demaille <akim@epita.fr>
21235
21236 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
21237 * m4/atconfig.m4: Remove.
21238 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
21239 * tests/bison: New.
21240 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
21241 m4_if, m4_patsubst, and m4_regexp.
21242 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
21243 `input' file instead of echo.
21244
21245 2001-08-29 Akim Demaille <akim@epita.fr>
21246
21247 Bump to 1.28e.
21248
21249 2001-08-29 Akim Demaille <akim@epita.fr>
21250
21251 Version 1.28d.
21252
21253 2001-08-29 Paul Eggert <eggert@twinsun.com>
21254
21255 * src/bison.simple (yyparse): Don't take the address of an
21256 item before the start of an array, as that doesn't conform to
21257 the C Standard.
21258
21259 2001-08-29 Robert Anisko <anisko_r@epita.fr>
21260
21261 * doc/bison.texinfo (Location Tracking Calc): New node.
21262
21263 2001-08-29 Paul Eggert <eggert@twinsun.com>
21264
21265 * src/output.c (output): Do not define const, as this now
21266 causes more problems than it cures.
21267
21268 2001-08-29 Akim Demaille <akim@epita.fr>
21269
21270 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
21271 the nodes.
21272 Be sure to tag the `detailmenu'.
21273
21274 2001-08-29 Akim Demaille <akim@epita.fr>
21275
21276 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
21277 download in a tmp dir.
21278
21279 2001-08-28 Marc Autret <autret_m@epita.fr>
21280
21281 * config/depcomp: New file.
21282
21283 2001-08-28 Marc Autret <autret_m@epita.fr>
21284
21285 * doc/bison.1 (mandoc): Adjust.
21286 From Juan Manuel Guerrero.
21287
21288 2001-08-28 Marc Autret <autret_m@epita.fr>
21289
21290 * src/print_graph.c (print_state): Fix.
21291
21292 2001-08-27 Marc Autret <autret_m@epita.fr>
21293
21294 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
21295 char * members.
21296 Echo modifications to the functions prototypes.
21297 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
21298
21299 2001-08-27 Marc Autret <autret_m@epita.fr>
21300
21301 * src/vcg.c: Include `xalloc.h'.
21302 (add_colorentry): New.
21303 (add_classname): New.
21304 (add_infoname): New.
21305 * src/vcg.h: Add new prototypes.
21306
21307 2001-08-27 Akim Demaille <akim@epita.fr>
21308
21309 * Makefile.maint: Sync. again with CVS Autoconf.
21310
21311 2001-08-27 Akim Demaille <akim@epita.fr>
21312
21313 * Makefile.maint: Formatting changes.
21314 (po-update, cvs-update, update): New targets.
21315 (AMTAR): Remove.
21316
21317 2001-08-27 Akim Demaille <akim@epita.fr>
21318
21319 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
21320 * Makefile.maint: Sync. with CVS Autoconf.
21321
21322 2001-08-27 Marc Autret <autret_m@epita.fr>
21323
21324 * src/vcg.h (struct infoname_s): New.
21325 (struct colorentry_s): New.
21326 (graph_s): New fields {vertical,horizontal}_order in structure.
21327 Add `infoname' field.
21328 Add `colorentry' field;
21329 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
21330 (G_HORIZONTAL_ORDER): New.
21331 (G_INFONAME): New.
21332 (G_COLORENTRY): New.
21333 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
21334 Add output of `infoname'.
21335 Add output of `colorentry'.
21336
21337 2001-08-27 Marc Autret <autret_m@epita.fr>
21338
21339 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
21340 This one shadowed a global parameter.
21341
21342 2001-08-24 Marc Autret <autret_m@epita.fr>
21343
21344 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
21345 instead of `unsigned'.
21346 (print_state): Do not call obstack_object_size () in obstack_grow ()
21347 to avoid macro variables shadowing.
21348
21349 2001-08-23 Marc Autret <autret_m@epita.fr>
21350
21351 * src/lex.c (percent_table): Typo: s/naem/name/.
21352 Add graph option.
21353 Normalize new options declarations.
21354
21355 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
21356
21357 * tests/suite.at: Exercise %header_extension and %source_extension.
21358
21359 2001-08-16 Marc Autret <autret_m@epita.fr>
21360
21361 * src/reader.c (parse_dquoted_param): New.
21362 (parse_header_extension_decl): Use it.
21363 (parse_source_extension_decl): Likewise.
21364
21365 2001-08-16 Marc Autret <autret_m@epita.fr>
21366
21367 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
21368 (get_xxxx_str): Use assert () instead of complain ().
21369 Remove return invokations in default cases.
21370 (get_decision_str): Modify default behaviour. Remove second argument.
21371 Echo modifications on calls.
21372 (output_graph): Fix.
21373
21374 2001-08-16 Marc Autret <autret_m@epita.fr>
21375
21376 * src/getargs.c (usage): Update with ``-g, --graph''.
21377
21378 2001-08-16 Marc Autret <autret_m@epita.fr>
21379
21380 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
21381 (Option Cross Key): Likewise.
21382 * doc/bison.1: Update.
21383
1c8c2190
PB
213842001-09-25 Pascal Bart <pascal.bart@epita.fr>
21385
21386 * src/output.c (output_master_parser): Don't finish action_obstack.
21387 (output_parser): Don't care about the muscle action, here.
21388 (prepare): Copy the action_obstack in the action muscle.
21389 (output): Free action_obstack.
21390
180d45ba
PB
213912001-09-23 Pascal Bart <pascal.bart@epita.fr>
21392
21393 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
21394 will contain `%union' declaration.
21395 (parse_union_decl): Delete #line directive output.
21396 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
21397 informations about %union.
21398 (parse_union_decl): Copy the union_obstack in the muscle stype.
21399 * src/bison.simple: Add new #line directive.
21400 Add typdef %%stype YYSTYPE.
21401
c51d1a19
PB
214022001-09-23 Pascal Bart <pascal.bart@epita.fr>
21403
21404 * src/bison.simple: Add new `#line' directive.
21405
6f9344da
PB
214062001-09-22 Pascal Bart <pascal.bart@epita.fr>
21407
21408 * src/bison.simple: New `#line' directive.
21409 * src/output.c (output_parser): Support new dynamic muscle input_line.
21410
652def80
MA
214112001-09-22 Marc Autret <autret_m@epita.fr>
21412
21413 * src/output.c (output_master_parser): New.
21414 (output_parser): Be more re-entrant.
21415
25b222fa
MA
214162001-09-21 Marc Autret <autret_m@epita.fr>
21417
21418 * src/reader.c (copy_definition, parse_union_decl): Update and use
21419 `linef' muscle.
21420 (copy_action): Likewise.
21421 Use obstack_1grow ().
21422 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
21423
6bc35ae5
MA
214242001-09-21 Marc Autret <autret_m@epita.fr>
21425
21426 * src/options.c (option_table): Adjust.
21427 * src/lex.c (parse_percent_token): Fix.
21428
c0629aa1
PB
214292001-09-20 Pascal Bart <pascal.bart@epita.fr>
21430
21431 * src/options.c (symtab.h): Include it, need by lex.h.
342b8b6e 21432
82b6d266
PB
214332001-09-20 Pascal Bart <pascal.bart@epita.fr>
21434
21435 * src/lex.c (parse_percent_token): Change type of variable `tx', which
21436 is now an option_table_struct*.
21437 (option_strcmp): New function option_strcmp.
21438 (parse_percent_token): Call option_strcmp.
21439 * src/getargs.c (xalloc.h, options.h): Include it.
21440 (getargs): Call create_long_option_table.
21441 (getargs): Free longopts at the end of the function.
21442 (shortopts): Move in options.c.
21443 * src/options.c (create_long_option_table): New function. Convert
21444 information from option_table to option structure.
21445 * src/reader.c (options.h): Include it.
21446
21447 * src/Makefile.am: Adjust.
21448 * src/options.c (option_table): Create from longopts and percent_table.
21449 * src/getargs.c (longopts): Delete.
21450 * src/lex.c (struct percent_table_struct): Delete.
21451 (percent_table): Delete.
21452 (options.h): Include it.
21453 * src/options.c: Create.
21454 * src/options.h: Create.
21455 Declare enum opt_access_e.
21456 Define struct option_table_struct.
21457
75f5aaea
MA
214582001-09-20 Marc Autret <autret_m@epita.fr>
21459
21460 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
21461 sections of Bison.
21462
f508cb0a
PB
214632001-09-19 Pascal Bart <pascal.bart@epita.fr>
21464
21465 * src/bison.simple: s/%%filename/%%skeleton.
21466 * src/muscle_tab.c (getargs.h): Include it.
21467 (muscle_init): Insert new muscle skeleton.
21468
13105fc1
PB
214692001-09-18 Pascal Bart <pascal.bart@epita.fr>
21470
21471 * src/output.c (output_parser): Delete unused variable actions_dumped.
21472
b0c4483e
PB
214732001-09-07 Pascal Bart <pascal.bart@epita.fr>
21474
21475 * src/output.c (output): Delete call to reader_output_yylsp.
21476 * src/reader.c (reader): Likewise.
ba0fe3c7 21477 * src/reader.h: Delete declaration of reader_output_yylsp.
342b8b6e 21478
11d82f03
MA
214792001-09-02 Marc Autret <autret_m@epita.fr>
21480
21481 * src/reader.c: Include muscle_tab.h.
21482 (parse_union_decl): Update.
21483 (parse_macro_decl): Rename parse_muscle_decl.
21484 Update to use renamed functions and variable.
21485 (read_declarations, copy_action, read_additionnal_code, : Updated
21486 with correct variables and functions names.
21487 (packsymbols, reader): Likewise.
342b8b6e 21488
11d82f03 21489 * src/reader.h (muscle_obstack): Extern declaration update.
342b8b6e 21490
11d82f03
MA
21491 * src/output.c: Include muscle_tab.h
21492 In all functions using macro_insert, change by using muscle_insert ().
21493 (macro_obstack): Rename muscle_obstack.
21494 Echo modifications in the whole file.
21495 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
21496 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
21497 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
21498
21499 * src/muscle_tab.h: Update double inclusion macros.
21500 (macro_entry_s): Rename muscle_entry_s.
21501 Update prototypes.
342b8b6e 21502
11d82f03
MA
21503 * src/muscle_tab.c: Include muscle_tab.h.
21504 Rename macro_tabble to muscle_table.
21505 (mhash1, mhash2, mcmp): Use muscle_entry.
21506 (macro_init): Rename muscle_init. Update.
21507 (macro_insert): Rename muscle_insert. Update.
21508 (macro_find): Rename muscle_find. Update.
21509
21510 * src/main.c: Include muscle_tab.h.
21511 (main): Call muscle_init ().
21512 * src/Makefile.am (bison_SOURCES): Echo modifications.
21513
93a37297
MA
215142001-09-02 Marc Autret <autret_m@epita.fr>
21515
f753cd62 21516 Now the files macro_tab.[ch] are named muscle_tab.[ch].
342b8b6e 21517
f753cd62
MA
21518 * src/muscle_tab.c, src/muscle_tab.h: Add files.
21519
215202001-09-02 Marc Autret <autret_m@epita.fr>
21521
21522 * src/macrotab.c, src/macrotab.h: Remove.
93a37297 21523
682d48cd
PB
215242001-09-01 Pascal Bart <pascal.bart@epita.fr>
21525
342b8b6e 21526 * src/reader.c (copy_guard): Use muscle to specify the `#line'
682d48cd
PB
21527 filename.
21528
087c8fda
MA
215292001-09-01 Marc Autret <autret_m@epita.fr>
21530
21531 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
21532 to an explicit value to activate the feature. We do it here.
21533
dda680cb
PB
215342001-08-31 Pascal Bart <pascal.bart@epita.fr>
21535
21536 * src/output.c (prepare): Delete the `filename' muscule insertion.
21537 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
21538 (parse_union_decl): Likewise.
21539 * src/macrotab.c (macro_init): Initialize filename by infile.
21540
9e644e64
MA
215412001-08-31 Marc Autret <autret_m@epita.fr>
21542
21543 * src/bison.simple (YYLSP_NEEDED): New definition.
21544 * src/output.c (prepare): Add macro insertion of `locations_flag'
21545
17da6427
PB
215462001-08-31 Pascal Bart <pascal.bart@epita.fr>
21547
21548 * src/output.c (prepare): Delete insertion of previous muscles,
21549 and insert the `prefix' muscles.
21550 * src/macrotab.c (macro_init): Likewise.
21551 (macro_init): Initialization prefix directive by `yy'.
342b8b6e 21552 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17da6427
PB
21553 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
21554 yylval, yydebug, yyerror, yynerrs and yyparse.
342b8b6e 21555 New directive `#define' to substitute yydebug, ... with option
17da6427
PB
21556 name_prefix.
21557
e8cb70b9
PB
215582001-08-31 Pascal Bart <pascal.bart@epita.fr>
21559
21560 * src/main.c (main): Standardize.
21561 * src/output.c (output_table_data, output_parser): Likewise.
21562 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
21563
63c2d5de
MA
215642001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
21565
342b8b6e 21566 * src/reader.c (read_additionnal_code): Rename %%user_code to
63c2d5de
MA
21567 %%epilogue.
21568 * src/output.c (output): Rename %%declarations to %%prologue.
21569 * src/bison.simple: Echo modifications.
342b8b6e 21570
d8cb5183
MA
215712001-08-31 Marc Autret <autret_m@epita.fr>
21572
21573 * src/reader.c (readgram): CleanUp.
21574 (output_token_defines): Likewise.
21575 (packsymbols): Likewise.
21576 (reader): Likewise.
21577 * src/output.c (output): CPP-out useless code.
21578
6c686258
PB
215792001-08-31 Pascal Bart <pascal.bart@epita.fr>
21580
342b8b6e 21581 * src/reader.c (reader): Delete obsolete call to function
6c686258
PB
21582 output_trailers and output_headers.
21583 * src/output.h: Remove obsolete functions prototypes of output_headers
21584 and output_trailers.
21585
8f451ef7
PB
215862001-08-30 Pascal Bart <pascal.bart@epita.fr>
21587
21588 * src/main.c: Include macrotab.h.
342b8b6e 21589 * src/macrotab.h (macro_entry_s): Constify fields.
8f451ef7
PB
21590 Adjust functions prototypes.
21591 * src/macrotab.c (macro_insert): Constify key and value.
21592 (macro_find): Constify key.
21593 (macro_insert): Include 'xalloc.h'
21594 (macro_insert): Use XMALLOC.
21595 (macro_find): Constify return value.
21596 * src/output.c (output_table_data): Rename table to table_data.
21597 (output_parser): Constify macro_key, macro_value.
21598
997b6fd0 215992001-08-30 Marc Autret <autret_m@epita.fr>
2ba3b73c
MA
21600
21601 * src/reader.c (parse_skel_decl): New.
342b8b6e 21602 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
2ba3b73c
MA
21603 * src/lex.h (token_t): New token `tok_skel'.
21604 * src/lex.c (percent_table): Add skeleton option entry.
21605 Standardize.
21606
ff48177d
MA
216072001-08-29 Marc Autret <autret_m@epita.fr>
21608
21609 * src/bison.simple: Add %%user_code directive at the end.
21610 * src/reader.c (read_additionnal_code): New.
21611 (reader): Use it.
21612 * src/output.c (output_program): Remove.
21613 (output): Update.
21614
b33160bf
MA
216152001-08-28 Marc Autret <autret_m@epita.fr>
21616
21617 * src/output.c (output_actions): Clean up.
4e5caae2 21618 (output_gram): CPP-out useless code.
b33160bf
MA
21619 * src/reader.c (reader): Clean up, CPP-out useless code.
21620
d1a2daf7
PB
216212001-08-28 Pascal Bart <pascal.bart@epita.fr>
21622
342b8b6e 21623 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
535c0e75 21624 directive.
d1a2daf7
PB
21625 * src/bison.simple: Add `%%definitions'.
21626
2b763dfe
MA
216272001-08-28 Marc Autret <autret_m@epita.fr>
21628
21629 * config/depcomp: New file.
21630
f1a87ef6
PE
216312001-08-27 Paul Eggert <eggert@twinsun.com>
21632
21633 * src/bison.simple (yyparse): Don't take the address of an
21634 item before the start of an array, as that doesn't conform to
21635 the C Standard.
21636
82e236e2
RA
216372001-08-27 Robert Anisko <robert.anisko@epita.fr>
21638
f1a87ef6 21639 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
21640 obstack. It was done too late here.
21641
21642 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
21643 completely wrong.
21644 (reader): Initialize the macro obstack here, since we need it to grow
21645 '%define' directives.
21646
21647 * src/reader.h: Declare the macro obstack as extern.
21648
b0cfa28a
RA
216492001-08-27 Robert Anisko <robert.anisko@epita.fr>
21650
21651 * src/output.c (output_parser): Fix. Store single '%' characters in
21652 the output obstack instead of throwing them away.
21653
6fc74234
AD
216542001-08-27 Akim Demaille <akim@epita.fr>
21655
21656 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
21657
9c76d118
RA
216582001-08-25 Robert Anisko <robert.anisko@epita.fr>
21659
21660 * lib/Makefile.am: Adjust.
21661
a8289c62
RA
216622001-08-25 Robert Anisko <robert.anisko@epita.fr>
21663
21664 * src/bison.simple: Update and add '%%' directives.
21665
b6610515
RA
216662001-08-25 Robert Anisko <robert.anisko@epita.fr>
21667
21668 * src/reader.c (reader): Remove calls to 'output_headers' and
21669 'output_trailers'. Remove some C output.
21670 (readgram): Disable a piece of code that was writing a default
21671 definition for 'YYSTYPE'.
21672 (reader_output_yylsp): Remove.
21673 (packsymbols): Output token defintions to a macro.
21674 (copy_definition): Disable C output.
6fc74234 21675
b6610515
RA
21676 * src/reader.c (parse_macro_decl): New function used to parse macro
21677 declarations.
21678 (copy_string2): Put the body of copy_string into this new function.
21679 Add a parameter to let the caller choose whether he wants to copy the
21680 string delimiters or not.
21681 (copy_string): Be a simple call to copy_string2 with the last argument
21682 bound to true.
21683 (read_declarations): Add case for macro definition.
21684 (copy_identifier): New.
6fc74234 21685 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
21686 rather than lex.
21687
26f609ff
RA
216882001-08-25 Robert Anisko <robert.anisko@epita.fr>
21689
21690 * src/output.c (prepare): Add prefixed names.
21691 (output_parser): Output semantic actions.
21692 (output_parser): Fix bug on '%%line' directives.
6fc74234 21693
26f609ff
RA
21694 * src/output.c (output_headers): Remove. The C code printed by this
21695 function should now be in the skeletons.
21696 (output_trailers): Remove.
21697 (output): Disable call to 'reader_output_yylsp'.
21698 (output_rule_data): Do not output tables to the table obstack.
21699
21700 * src/output.c: Remove some C dedicated output.
21701 Improve the use of macro and output obstacks.
21702 (output_defines): Remove.
6fc74234 21703
26f609ff
RA
21704 * src/output.c (output_token_translations): Associate 'translate'
21705 table with a macro. No output to the table obstack.
21706 (output_gram): Same for 'rhs' and 'prhs'.
21707 (output_stos): Same for 'stos'.
21708 (output_rule_data): Same for 'r1' and 'r2'.
21709 (token_actions): Same for 'defact'.
21710 (goto_actions): Same for 'defgoto'.
21711 (output_base): Same for 'pact' and 'pgoto'.
21712 (output_table): Same for 'table'.
21713 (output_check): Same for 'check'.
6fc74234 21714
26f609ff
RA
21715 * src/output.c (output_table_data): New function.
21716 (output_short_table): Remove.
21717 (output_short_or_char_table): Remove.
6fc74234 21718
26f609ff
RA
21719 * src/output.c (output_parser): Replace most of the skeleton copy code
21720 with something new. Skeletons are now processed character by character
21721 rather than line by line, and Bison looks for '%%' macros. This is the
21722 first step in making Bison's output process (a lot) more flexible.
21723 (output_parser): Use the macro table.
21724
6f43b113
RA
217252001-08-25 Robert Anisko <robert.anisko@epita.fr>
21726
21727 * src/main.c (main): Initialize the macro table.
21728
dd3127cf
RA
217292001-08-25 Robert Anisko <robert.anisko@epita.fr>
21730
21731 * src/lex.c (percent_table): Add tok_define.
21732 * src/lex.h: Add tok_define.
21733
aa321494
RA
217342001-08-25 Robert Anisko <robert.anisko@epita.fr>
21735
21736 * src/macrotab.c: New file.
21737 * src/macrotab.h: New file.
21738 * src/Makefile.am: Update.
21739
68bd3b6b
RA
217402001-08-25 Robert Anisko <robert.anisko@epita.fr>
21741
21742 * lib/hash.c: New file.
21743 * lib/hash.h: New file.
21744 * lib/Makefile.am: Update.
21745
45f8dd1e
AD
217462001-08-15 Akim Demaille <akim@epita.fr>
21747
21748 Version 1.28c.
21749
40a64a7a 217502001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
21751
21752 * src/reader.c (readgram): Indent output macro YYSTYPE.
21753 (packsymbols): Likewise.
21754 (output_token_defines): Likewise.
21755 * src/files.c: Standardize.
21756 (compute_header_macro): New.
21757 (defines_obstack_save): New. Use compute_header_macro.
21758 (output_files): Update. Use defines_obstack_save.
21759
f9a8293a
AD
217602001-08-15 Akim Demaille <akim@epita.fr>
21761
21762 * doc/bison.texinfo (Table of Symbols): Document
21763 YYSTACK_USE_ALLOCA.
21764
150ca7a7
AD
217652001-08-15 Akim Demaille <akim@epita.fr>
21766
21767 * missing: Update from CVS Automake.
21768 * config/config.guess, config/config.sub, config/texinfo.tex:
21769 Update from gnu.org.
21770
69b5cec4
AD
217712001-08-15 Akim Demaille <akim@epita.fr>
21772
21773 * Makefile.maint: Sync with CVS Autoconf.
21774
f2b5126e
PB
217752001-08-14 Pascal Bart <pascal.bart@epita.fr>
21776
69b5cec4 21777 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
21778 `fdl.texi'.
21779 * doc/fdl.texi: Add to package.
21780
4ecbf796
MA
217812001-08-14 Marc Autret <autret_m@epita.fr>
21782
21783 Turn on %{source,header}_extension features.
21784
69b5cec4 21785 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
21786 source_extension.
21787 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 21788 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
21789 between options.
21790
95fb5662
MA
217912001-08-14 Marc Autret <autret_m@epita.fr>
21792
21793 * src/files.c (compute_base_names): Add extensions computing when
21794 `--file-prefix' used.
21795 Standardize function calls.
21796
78d09da9
MA
217972001-08-13 Marc Autret <autret_m@epita.fr>
21798
69b5cec4 21799 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
21800 defining it (defined but null disables alloca).
21801
5a009f2c
MA
218022001-08-13 Marc Autret <autret_m@epita.fr>
21803
21804 * src/bison.simple (_yy_memcpy): CPP reformat.
21805
1e41465a
PB
218062001-08-13 Pascal Bart <pascal.bart@epita.fr>
21807
21808 * tests/atconfig.in (CPPFLAGS): Fix.
21809
c67a198d
PB
218102001-08-10 Pascal Bart <pascal.bart@epita.fr>
21811
79282c6c 21812 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
21813 `gpl.texi'.
21814 * doc/gpl.texi: Add to package.
21815
09a6de7e
MA
218162001-08-10 Marc Autret <autret_m@epita.fr>
21817
21818 * src/print_graph.h: Fix.
21819 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
21820
b77b9ee0
AD
218212001-08-10 Akim Demaille <akim@epita.fr>
21822
21823 * src/system.h: Provide default declarations for stpcpy, strndup,
21824 and strnlen.
21825
3e259915
MA
218262001-08-10 Robert Anisko <anisko_r@epita.fr>
21827
21828 * doc/bison.texinfo (Locations): Update @$ stuff.
21829
ca96bc2d
MA
218302001-08-09 Robert Anisko <anisko_r@epita.fr>
21831
21832 * src/bison.simple (YYLLOC_DEFAULT): Update.
21833 (yyparse): Adjust.
21834
fdc6758b
MA
218352001-08-08 Marc Autret <autret_m@epita.fr>
21836
b77b9ee0 21837 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
21838 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
21839 Reported by Fabrice Bauzac.
957d4dbf 21840
600cad3b
MA
218412001-08-08 Marc Autret <autret_m@epita.fr>
21842
21843 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
21844 * src/vcg.c (output_node): Fix.
21845 * src/vcg.h: Cleanup.
21846 * src/print_graph.c: Add comments.
b77b9ee0 21847 (node_output_size): New global variable. Simplify the formatting of
600cad3b 21848 the VCG graph output.
b77b9ee0 21849 (print_actions): Unused code is now used. It notifies the final state
600cad3b 21850 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 21851 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
21852 blue.
21853 Get the current node name and node_obstack by argument.
21854 (node_obstack): New variable.
21855 (print_state): Manage node_obstack.
21856 (print_core): Use node_obstack given by argument.
21857 A node is not only computed here but in print_actions also.
21858 (print_graph): CPP out useless code instead of commenting it.
21859
976e528f
AD
218602001-08-07 Pascal Bart <pascal.bart@epita.fr>
21861
21862 * tests/atconfig.in (CPPFLAGS): Fix.
21863
20e8e5ca
AD
218642001-08-07 Akim Demaille <akim@epita.fr>
21865
21866 * src/print_graph.c (quote): New.
21867 (print_core): Use it.
21868
957d4dbf 218692001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 21870
3e3da797
AD
21871 * src/vcg.c (complain.h): Include it.
21872 Unepitaize `return' invocations.
c4b66126 21873 [NDEBUG] (main): Remove.
79282c6c 21874 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
21875 * src/files.c (open_files): Initialize graph_obstack.
21876 * src/print_graph.c (print_actions): CPP out useless code.
21877 (print_core): Don't output the last `\n' in labels.
21878 Use `quote'.
21879 * src/files.c (output_files): Output the VCG file.
21880 * src/main.c (main): Invoke print_graph ();
3e3da797 21881
957d4dbf 218822001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
21883
21884 Automaton VCG graph output.
21885 Using option ``-g'' or long option ``--graph'', you can generate
21886 a gram_filename.vcg file containing a VCG description of the LALR (1)
21887 automaton of your grammar.
21888
21889 * src/main.c: Call to print_graph() function.
21890 * src/getargs.h: Update.
21891 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
21892 (graph_flag): New flag.
21893 (longopts): Update.
21894 (getargs): Add case `g'.
21895 * src/files.c (graph_obstack): New obstack struct.
21896 (open_files): Initialize new obstack.
21897 (output_files): Saves graph_obstack if required.
21898 * src/files.h (graph_obstack): New extern declaration.
21899 * src/Makefile.am: Add new source files.
21900
927c1557 219012001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
21902
21903 * src/print_graph.c, src/print_graph.h (graph): New.
21904 * src/vcg.h: New file.
21905 * src/vcg.c: New file, VCG graph handling.
21906
7333d403
AD
219072001-08-06 Marc Autret <autret_m@epita.fr>
21908
21909 Add of %source_extension and %header_extension which specify
21910 the source or/and the header output file extension.
21911
21912 * src/files.c (compute_base_names): Remove initialisation of
21913 src_extension and header_extension.
21914 (compute_exts_from_gf): Update.
21915 (compute_exts_from_src): Update.
21916 (output_files): Update.
21917 * src/reader.c (parse_header_extension_decl): New.
21918 (parse_source_extension_decl): New.
21919 (read_declarations): New case statements for the new tokens.
21920 * src/lex.c (percent_table): Add entries for %source_extension
21921 and %header_extension.
21922 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
21923
84163231
AD
219242001-08-06 Marc Autret <autret_m@epita.fr>
21925
21926 * configure.in: Bump to 1.28c.
21927 * doc/bison.texinfo: Texinfo thingies.
21928
8303fc42
AD
219292001-08-04 Pascal Bart <pascal.bart@epita.fr>
21930
21931 * tests/atconfig.in (CPPFLAGS): Add.
21932 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
21933
70a84437
AD
219342001-08-03 Akim Demaille <akim@epita.fr>
21935
21936 Version 1.28b.
21937
2ce10144
AD
219382001-08-03 Akim Demaille <akim@epita.fr>
21939
21940 * tests/Makefile.am (check-local): Ship testsuite.
21941 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
21942 Include `string.h'.
21943
1e3e4bc1
AD
219442001-08-03 Akim Demaille <akim@epita.fr>
21945
21946 * configure.in: Try using -Wformat when compiling.
21947
42b45b7f
AD
219482001-08-03 Akim Demaille <akim@epita.fr>
21949
21950 * configure.in: Bump to 1.28b.
21951
8f13fe33
AD
219522001-08-03 Akim Demaille <akim@epita.fr>
21953
21954 * src/complain.c: Adjust strerror_r portability issues.
21955
b37ba92c
AD
219562001-08-03 Akim Demaille <akim@epita.fr>
21957
21958 Version 1.28a.
21959
b0ce6046
AD
219602001-08-03 Akim Demaille <akim@epita.fr>
21961
21962 * src/getargs.c, src/getarg.h (skeleton)): Constify.
21963 * src/lex.c (literalchar): Avoid name clashes on `buf'.
21964 * src/getargs.c: Include complain.h.
21965 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
21966 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
21967
d01c415b
AD
219682001-08-03 Akim Demaille <akim@epita.fr>
21969
21970 * src/reader.c (readgram): Display hidden chars in error messages.
21971
459dd1a6
AD
219722001-08-03 Akim Demaille <akim@epita.fr>
21973
21974 Update to gettext 0.10.39.
21975
53b74c0c
AD
219762001-08-03 Akim Demaille <akim@epita.fr>
21977
21978 * lib/strspn.c: New.
21979
234a3be3
AD
219802001-08-01 Marc Autret <autret_m@epita.fr>
21981
21982 * doc/bison.texinfo: Update.
21983 * doc/bison.1 (mandoc): Update.
21984 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
21985 * src/files.c: Support output files extensions computing.
21986 (src_extension): New static variable.
21987 (header_extension): New static variable.
21988 (tr): New function.
21989 (get_extension_index): New function, gets the index of an extension
21990 filename in a string.
21991 (compute_exts_from_gf): New function, computes extensions from the
21992 grammar file extension.
21993 (compute_exts_from_src): New functions, computes extensions from the
21994 C source file extension, file given by ``-o'' option.
21995 (compute_base_names): Update.
21996 (output_files): Update.
21997
847bf1f5
AD
219982001-08-01 Robert Anisko <anisko_r@epita.fr>
21999
d995fee7 22000 * doc/bison.texi: Document @$.
847bf1f5
AD
22001 (Locations): New section.
22002
d074a105
AD
220032001-07-18 Akim Demaille <akim@epita.fr>
22004
22005 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
22006 * config/prev-version.txt, config/move-if-change: New.
22007 * Makefile.am: Adjust.
22008
3419715d
AD
220092001-07-08 Pascal Bart <pascal.bart@epita.fr>
22010
22011 * src/bison.simple (yyparse): Suppress warning `comparaison
22012 between signed and unsigned'.
22013
62ab6972
AD
220142001-07-05 Pascal Bart <pascal.bart@epita.fr>
22015
22016 * src/getargs.h (raw_flag): Remove.
22017 * src/getargs.c: Die on `-r'/`--raw'.
22018 * src/lex.c (parse_percent_token): Die on `%raw'.
22019 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
22020 * tests/calc.at: Suppress test with option `--raw'.
22021
1e24cc5b
AD
220222001-07-14 Akim Demaille <akim@epita.fr>
22023
22024 * config/: New.
22025 * configure.in: Require Autoconf 2.50.
22026 Update to gettext 0.10.38.
22027
32dfccf8
AD
220282001-03-16 Akim Demaille <akim@epita.fr>
22029
22030 * doc/bison.texinfo: ANSIfy the examples.
22031
cd5bd6ac
AD
220322001-03-16 Akim Demaille <akim@epita.fr>
22033
22034 * getargs.c (skeleton): New variable.
22035 (longopts): --skeleton is a new option.
22036 (shortopts, getargs): -S is a new option.
22037 * getargs.h: Declare skeleton.
22038 * output.c (output_parser): Use it.
22039
5141b016
AD
220402001-03-16 Akim Demaille <akim@epita.fr>
22041
22042 * m4/strerror_r.m4: New.
22043 * m4/error.m4: Run AC_FUNC_STRERROR_R.
22044 * lib/error.h, lib/error.c: Update.
22045
447992b9
AD
220462001-03-16 Akim Demaille <akim@epita.fr>
22047
22048 * src/getargs.c (longopts): Clean up.
22049
274d42ce
AD
220502001-02-21 Akim Demaille <akim@epita.fr>
22051
22052 * src/reader.c (gensym): `gensym_count' is your own.
22053 Use a static buf to create the symbol name, as token_buffer is no
22054 longer a buffer.
22055
22c821f3
AD
220562001-02-08 Akim Demaille <akim@epita.fr>
22057
22058 * src/conflicts.c (conflict_report): Be sure not to append to res
22059 between two calls, which could happen if both first sprintf were
22060 skipped, but not the first cp += strlen.
22061
18569462
AD
220622001-02-08 Akim Demaille <akim@epita.fr>
22063
22064 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
22065 New, from fileutils 4.0.37.
22066 * configure.in: Require Autoconf 2.49c. I took some time before
22067 making this decision. This is the only way out for portability
22068 issues in Bison, it would mean way too much duplicate effort to
22069 import in Bison features implemented in 2.49c since 2.13.
22070 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
22071
0d8f3c8a
AD
220722001-02-02 Akim Demaille <akim@epita.fr>
22073
22074 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 22075 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 22076
f17bcd1f
AD
220772001-01-19 Akim Demaille <akim@epita.fr>
22078
22079 Get rid of the ad hoc handling of token_buffer in the scanner: use
22080 the obstacks.
22081
22082 * src/lex.c (token_obstack): New.
22083 (init_lex): Initialize it. No longer call...
22084 (grow_token_buffer): this. Remove it.
22085 Adjust all the places which used it to use the obstack.
22086
511e79b3
AD
220872001-01-19 Akim Demaille <akim@epita.fr>
22088
22089 * src/lex.h: Rename all the tokens:
22090 s/\bENDFILE\b/tok_eof/g;
22091 s/\bIDENTIFIER\b/tok_identifier/g;
22092 etc.
22093 Let them be enums, not #define, to ease debugging.
22094 Adjust all the code.
22095
0d6508ef
AD
220962001-01-18 Akim Demaille <akim@epita.fr>
22097
22098 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
22099 * src/lex.c (maxtoken, grow_token_buffer): Static.
22100
6deb4447
AD
221012001-01-18 Akim Demaille <akim@epita.fr>
22102
22103 Since we now use obstacks, more % directives can be enabled.
22104
22105 * src/lex.c (percent_table): Also accept `%yacc',
22106 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
22107 `%debug'.
22108 Handle the actions for `%semantic_parser' and `%pure_parser' here,
22109 instead of returning a token.
22110 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
22111 * src/reader.c (read_declarations): Adjust.
22112 * src/files.c (open_files): Don't call `compute_base_names', don't
22113 compute `attrsfile' since they depend upon data which might be
22114 *in* the input file now.
22115 (output_files): Do it here.
22116 * src/output.c (output_headers): Document the fact that this patch
22117 introduces a guaranteed SEGV for semantic parsers.
22118 * doc/bison.texinfo: Document them.
22119 * tests/suite.at: Exercise these %options.
22120
ff4423cc
AD
221212000-12-20 Akim Demaille <akim@epita.fr>
22122
22123 Also handle the output file (--verbose) with obstacks.
22124
22125 * files.c (foutput): Remove.
22126 (output_obstack): New.
22127 Adjust all dependencies.
22128 * src/conflicts.c: Return a string.
22129 * src/system.h (obstack_grow_string): Rename as...
22130 (obstack_sgrow): this. Be ready to work with non literals.
22131 (obstack_fgrow4): New.
22132
956dba3a
AD
221332000-12-20 Akim Demaille <akim@epita.fr>
22134
22135 * src/files.c (open_files): Fix the computation of short_base_name
22136 in the case of `-o foo.tab.c'.
22137
337bab46
AD
221382000-12-20 Akim Demaille <akim@epita.fr>
22139
22140 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
22141 (copy_dollar): Now that everything uses obstacks, get rid of the
22142 FILE * parameters.
22143
5d3214b8
AD
221442000-12-20 Akim Demaille <akim@epita.fr>
22145
22146 * src/files.c (open_files): Actually the `.output' file is based
22147 on the short_base_name, not base_name.
22148 * tests/suite.at (Checking output file names): Adjust.
22149
29092a57
AD
221502000-12-20 Akim Demaille <akim@epita.fr>
22151
22152 * src/bison.s1: Remove, we now use directly...
22153 * src/bison.simple: this.
22154 * src/Makefile.am: Use pkgdata instead of data.
22155
ea5607fd
AD
221562000-12-20 Akim Demaille <akim@epita.fr>
22157
22158 * src/files.c (guard_obstack): New.
22159 (open_files): Initialize it.
22160 (output_files): Dump it...
22161 * src/files.h: Export it.
22162 * src/reader.c (copy_guard): Use it.
22163
27110317
AD
221642000-12-19 Akim Demaille <akim@epita.fr>
22165
22166 * src/files.c (outfile, defsfile, actfile): Removed as global
22167 vars.
22168 (open_files): Don't compute them.
22169 (output_files): Adjust.
22170 (base_name, short_base_name): Be global.
22171 Adjust dependencies.
22172
19c50364
AD
221732000-12-19 Akim Demaille <akim@epita.fr>
22174
22175 * src/files.c (strsuffix): New.
22176 (stringappend): Be just like strcat but allocate.
22177 (base_names): Eve out from open_files.
22178 Try to simplify the rather hairy computation of base_name and
22179 short_base_name.
22180 (open_files): Use it.
22181 * tests/suite.at (Checking output file names): New test.
22182
573c1d9f
AD
221832000-12-19 Akim Demaille <akim@epita.fr>
22184
22185 * src/system.h (obstack_grow_literal_string): Rename as...
22186 (obstack_grow_string): this.
22187 * src/output.c (output_parser): Recognize `%% actions' instead of
22188 `$'.
22189 * src/bison.s1: s/$/%% actions/.
22190 * src/bison.hairy: Likewise.
22191
ef7ddedd
AD
221922000-12-19 Akim Demaille <akim@epita.fr>
22193
22194 * src/output.c (output_parser): Compute the `#line' lines when
22195 there are.
22196 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
22197 Suggested by Hans Aberg.
22198
ff61dabd
AD
221992000-12-19 Akim Demaille <akim@epita.fr>
22200
22201 Let the handling of the skeleton files be local to the procedures
22202 that use it.
22203
22204 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
22205 longer static.
22206 (fparser, open_extra_files): Remove.
22207 (open_files, output_files): Don't take care of fparser.
22208 * src/files.h: Adjust.
22209 * src/output.c (output_parser): Open and close the file to the
22210 skeleton.
22211 * src/reader.c (read_declarations): When %semantic_parser, open
22212 fguard.
22213
55b96341
AD
222142000-12-19 Akim Demaille <akim@epita.fr>
22215
22216 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
22217 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
22218
358c15b7
AD
222192000-12-19 Akim Demaille <akim@epita.fr>
22220
22221 * src/files.c (open_files): Yipee! We no longer need all the code
22222 looking for `/tmp' since we have no tmp file.
22223
7de3329e
AD
222242000-12-19 Akim Demaille <akim@epita.fr>
22225
22226 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
22227 New macros.
22228 * src/files.c (open_files): Less dependency on MSDOS etc.
22229
3abcd459
AD
222302000-12-14 Akim Demaille <akim@epita.fr>
22231
22232 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
22233 Provide a default definition.
22234 Use it when executing the default @ action.
22235 * src/reader.c (reader_output_yylsp): No longer include
22236 `timestamp' and `text' in the default YYLTYPE.
22237
2a91a95e
AD
222382000-12-12 Akim Demaille <akim@epita.fr>
22239
22240 * src/reader.c (copy_definition, parse_union_decl, copy_action)
22241 (copy_guard): Quote the file names.
22242 Reported by Laurent Mascherpa.
22243
14d3eb9b
AD
222442000-12-12 Akim Demaille <akim@epita.fr>
22245
22246 * src/output.c (output_headers, output_program, output): Be sure
22247 to escape special characters when outputting filenames.
22248 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
22249 (output_headers): Don't depend on them, Use ACTSTR.
22250
d7045ec6
AD
222512000-11-17 Akim Demaille <akim@epita.fr>
22252
22253 * lib/obstack.h: Formatting changes.
22254 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
22255 prevents type checking.
22256 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
22257 cast the value to (void *): assigning a `foo *' to a `void *'
22258 variable is valid.
22259 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
22260 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
22261 append characters.
22262
6fd54b73
AD
222632000-11-17 Akim Demaille <akim@epita.fr>
22264
22265 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
22266 as...
22267 (suite.m4, regression.m4, calc.m4): these.
22268 * tests/atgeneral.m4: Update from CVS Autoconf.
22269
4c50eae6
AD
222702000-11-17 Akim Demaille <akim@epita.fr>
22271
22272 * tests/regression.m4 (%union and --defines): New test,
22273 demonstrating a current bug in the obstack implementation.
22274
a35f64ea
AD
222752000-11-17 Akim Demaille <akim@epita.fr>
22276
22277 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
22278 macros.
22279 Use them to declare the variables which are global or local to
22280 `yyparse'.
22281
7de23534
AD
222822000-11-17 Akim Demaille <akim@epita.fr>
22283
22284 * acconfig.h: Remove, no longer used.
22285
aa7815f5
AD
222862000-11-07 Akim Demaille <akim@epita.fr>
22287
22288 * src: s/Copyright (C)/Copyright/g.
22289
5af1f549
AD
222902000-11-07 Akim Demaille <akim@epita.fr>
22291
22292 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
22293 defining.
22294 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
22295
553e2b22
AD
222962000-11-07 Akim Demaille <akim@epita.fr>
22297
22298 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
22299 Merge in a single CPP if/else.
22300
8a4f41d6
AD
223012000-11-07 Akim Demaille <akim@epita.fr>
22302
22303 * src/output.c (output): Remove useless variables.
22304 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
22305 argument `data' for consistency with the prototypes.
22306 Qualify it `const'.
22307 (obstack_copy, obstack_copy0): Rename the second argument as
22308 `address' for consistency. Qualify it `const'.
22309 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
22310 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
22311 `const' their input argument (`data' or `address').
22312 Adjust the corresponding macros to include `const' in casts.
22313
095a3fb5
AD
223142000-11-03 Akim Demaille <akim@epita.fr>
22315
22316 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
22317 s/PFILE1/BISON_HAIRY/.
22318 Adjust dependencies.
22319
d1cdce7c
AD
223202000-11-03 Akim Demaille <akim@epita.fr>
22321
090c5ebf 22322 For some reason, this was not applied.
d1cdce7c
AD
22323
22324 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
22325 `unlink': it's no longer used.
22326
9311529b
AD
223272000-11-03 Akim Demaille <akim@epita.fr>
22328
22329 * src/files.c (skeleton_find): New function, eved out of...
22330 (open_files, open_extra_files): here.
22331
d8880f69
AD
223322000-11-03 Akim Demaille <akim@epita.fr>
22333
22334 Don't use `atexit'.
22335
22336 * src/files.c (obstack_save): New function.
22337 (done): Rename as...
22338 (output_files): this.
22339 Use `obstack_save'.
22340 * src/main.c (main): Don't use `atexit' to register `done', since
22341 it no longer has to remove tmp files, just call `output_files'
22342 when there are no errors.
22343
0dbb648e
AD
223442000-11-02 Akim Demaille <akim@epita.fr>
22345
22346 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
22347 `unlink': it's no longer used.
22348 * src/files.h: Formatting changes.
22349
896fe5c1
AD
223502000-11-02 Akim Demaille <akim@epita.fr>
22351
22352 Remove the last uses of mktemp and unlink/delete.
22353
22354 * src/files.c (fdefines, ftable): Removed.
22355 (defines_ostack, table_obstack): New.
22356 Adjust dependencies of the former into uses of the latter.
22357 * src/output.c (output_short_or_char_table, output_short_table):
22358 Convert to using obstacks.
22359 * src/reader.c (copy_comment2): Accept one FILE * and two
22360 obstacks.
22361 (output_token_defines, reader_output_yylsp): Use obstacks.
22362 * src/system.h (obstack_fgrow3): New.
1f65350a 22363 * po/POTFILES.in: Adjust.
896fe5c1 22364
dd60faec
AD
223652000-11-01 Akim Demaille <akim@epita.fr>
22366
22367 Change each use of `fattrs' into a use of `attrs_obstack'.
22368
22369 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
22370 * src/files.c (fattrs): Remove.
22371 (attrs_obstack): New.
22372 Adjust all dependencies.
22373 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
22374
8c7ebe49
AD
223752000-11-01 Akim Demaille <akim@epita.fr>
22376
22377 Introduce obstacks.
22378 Change each use of `faction' into a use of `action_obstack'.
22379
22380 * lib/obstack.h, lib/obstack.c: New files.
22381 * src/files.c (faction): Remove.
22382 (action_obstack): New.
22383 Adjust all dependencies.
22384
77aee789
AD
223852000-10-20 Akim Demaille <akim@epita.fr>
22386
22387 * lib/quote.h (PARAMS): New macro. Use it.
22388
43591cec
AD
223892000-10-16 Akim Demaille <akim@epita.fr>
22390
22391 * src/output.c (output_short_or_char_table): New function.
22392 (output_short_table, output_token_translations): Use it.
22393 (goto_actions): Use output_short_table.
22394
1e9798d5
AD
223952000-10-16 Akim Demaille <akim@epita.fr>
22396
22397 * src/symtab.c (bucket_new): New function.
22398 (getsym): Use it.
22399
22400 * src/output.c (output_short_table): New argument to display the
22401 comment associated with the table.
22402 Adjust dependencies.
22403 (output_gram): Use it.
22404 (output_rule_data): Nicer output layout for YYTNAME.
22405
f282676b
AD
224062000-10-16 Akim Demaille <akim@epita.fr>
22407
22408 * src/lex.c (read_typename): New function.
22409 (lex): Use it.
22410 * src/reader.c (copy_dollar): Likewise.
22411
550a72a3
AD
224122000-10-16 Akim Demaille <akim@epita.fr>
22413
22414 * src/reader.c (copy_comment2): Expect the input stream to be on
22415 the `/' which is suspected to open a comment, instead of being
22416 called after `//' or `/*' was read.
22417 (copy_comment, copy_definition, parse_union_decl, copy_action)
22418 (copy_guard): Adjust.
22419
131e2fef
AD
224202000-10-16 Akim Demaille <akim@epita.fr>
22421
22422 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
22423 `read_signed_integer'.
22424
79282c5a
AD
224252000-10-16 Akim Demaille <akim@epita.fr>
22426
22427 * src/reader.c (copy_dollar): New function.
22428 (copy_guard, copy_action): Use it.
22429
ff4a34be
AD
224302000-10-16 Akim Demaille <akim@epita.fr>
22431
22432 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
22433 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
22434 New files, from Fileutils 4.0.27.
22435 * src/main.c (printable_version): Remove.
22436 * src/lex.c, src/reader.c: Use `quote'.
22437
224382000-10-04 Akim Demaille <akim@epita.fr>
22439
22440 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
22441
14ded682
AD
224422000-10-04 Akim Demaille <akim@epita.fr>
22443
22444 * doc/bison.texinfo: Various typos spotted by Neil Booth.
22445
8e03724b
AD
224462000-10-04 Akim Demaille <akim@epita.fr>
22447
22448 When a literal string is used to define two different tokens,
22449 `bison -v' segfaults.
22450 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
22451
22452 * tests/regression.m4: New file.
22453 Include the core of the sample provided by Piotr Gackiewicz.
22454 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
22455 properly.
22456
a9e64249
AD
224572000-10-04 Akim Demaille <akim@epita.fr>
22458
22459 * src/reader.c (parse_expect_decl): Keep `count' within the size
22460 of `buffer'.
22461 From Neil Booth.
22462
da9abf43
AD
224632000-10-02 Paul Eggert <eggert@twinsun.com>
22464
22465 * bison.s1 (yyparse): Assign the default value
22466 unconditionally, to avoid a GCC warning and make the parser a
22467 tad smaller.
22468
c33638bb
AD
224692000-10-02 Akim Demaille <akim@epita.fr>
22470
22471 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
22472 options.
22473
444c570a
AD
224742000-10-02 Akim Demaille <akim@epita.fr>
22475
22476 * src/derives.c, src/print.c, src/reduce.c: To ease the
22477 translation, move some `\n' out of the translated strings.
22478
89cab50d
AD
224792000-10-02 Akim Demaille <akim@epita.fr>
22480
22481 The location tracking mechanism is precious for parse error
22482 messages. Nevertheless, it is enabled only when `@n' is used in
22483 the grammar, which is a different issue (you can use it in error
22484 message, but not in the grammar per se). Therefore, there should
22485 be another means to enable it.
22486
22487 * src/getargs.c (getargs): Support `--locations'.
22488 (usage): Report it.
22489 * src/getargs.h (locationsflag): Export it.
22490 * src/lex.c (percent_table): Support `%locations'.
22491 * src/reader.c (yylsp_needed): Remove this variable, now replaced
22492 with `locationsflag'.
22493 * doc/bison.texinfo: Document `--locations' and `%locations'.
22494 Sort the options.
22495 * tests/calc.m4: Test it.
22496
22497 For regularity of the names, replace each
22498 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
22499 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
22500 In addition replace each `flag' with `_flag'.
22501
d6c2cba0
AD
225022000-10-02 Akim Demaille <akim@epita.fr>
22503
22504 Also test parse error messages, including with YYERROR_VERBOSE.
22505
22506 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
22507 associative).
22508 Use it to check the computations.
22509 Use it to check `nonassoc' is honored.
22510 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
22511 `--yyerror-verbose'.
22512 (_AT_CHECK_CALC): Adjust to this option.
22513 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
22514
5a35a6cb
AD
225152000-10-02 Akim Demaille <akim@epita.fr>
22516
22517 Test also `--verbose', `--defines' and `--name-prefix'. Testing
22518 the latter demonstrates a flaw in the handling of non debugging
22519 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
22520 was used in order to simplify:
22521
22522 #if YYDEBUG
22523 if (yydebug)
22524 {
22525 ...
22526 }
22527 #endif
22528
22529 into
22530
22531 if (yydebug)
22532 {
22533 ...
22534 }
22535
22536 unfortunately this leads to a CPP conflict when
22537 `--name-prefix=foo' is used since it produces `#define yydebug
22538 foodebug'.
22539
22540 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
22541 (YYDPRINTF): New macro.
22542 Spread its use.
22543 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
22544 the bison options.
22545 Also test `--verbose', `--defines' and `--name-prefix'.
22546
71da9eea
AD
225472000-10-02 Akim Demaille <akim@epita.fr>
22548
22549 Improve the readability of the produced parsers.
22550
22551 * src/bison.s1: Formatting changes.
22552 Improve the comment related to the `$' mark.
22553 (yydefault): Don't fall through to `yyresume': `goto' there.
22554 * src/output.c (output_parser): When the `$' is met, skip the end
22555 of its line.
22556 New variable, `number_of_dollar_signs', to check there's exactly
22557 one `$' in the parser skeleton.
22558
95e36146
AD
225592000-10-02 Akim Demaille <akim@epita.fr>
22560
22561 * lib/xstrdup.c: New file, from the fileutils.
22562 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
22563 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
22564 instead of strlen + xmalloc + strcpy.
22565 * src/symtab.c (copys): Remove, use xstrdup instead.
22566
d7020c20
AD
225672000-10-02 Akim Demaille <akim@epita.fr>
22568
22569 * src/gram.h (associativity): New enum type which replaces the
22570 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
22571 `right_assoc', `left_assoc' and `non_assoc'.
22572 Adjust all dependencies.
22573 * src/reader.c: Formatting changes.
22574 (LTYPESTR): Don't define it, use it as a literal in
22575 `reader_output_yylsp'.
22576 * src/symtab.h (symbol_class): New enum type which replaces the
22577 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
22578 `sunknown', `stoken and `snterm'.
22579
1916f98e
AD
225802000-10-02 Akim Demaille <akim@epita.fr>
22581
22582 * src/getargs.c (fixed_outfiles): Rename as...
22583 (yaccflag): for consistency and accuracy.
22584 Adjust dependencies.
22585
d7913476
AD
225862000-10-02 Akim Demaille <akim@epita.fr>
22587
22588 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
22589 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
22590 difficult and introduced a lot of core dump. It turns out that
22591 Bison used an implementation of `xmalloc' based on `calloc', and
22592 at various places it does depend upon the initialization to 0. I
22593 have not tried to isolate the pertinent places, and all the former
22594 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
22595 someone should address this issue.
22596
22597 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
22598 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
22599 files.
22600 Adjust dependencies.
22601 * src/warshall.h: New file.
22602 Propagate.
22603
340ef489
AD
226042000-10-02 Akim Demaille <akim@epita.fr>
22605
22606 Various anti-`extern in *.c' changes.
22607
22608 * src/system.h: Include `assert.h'.
22609
b2ca4022
AD
226102000-10-02 Akim Demaille <akim@epita.fr>
22611
22612 * src/state.h (nstates, final_state, first_state, first_shift)
22613 (first_reduction): Move their exportation from here...
22614 * src/LR0.h: to here.
22615 Adjust dependencies.
22616 * src/getargs.c (statisticsflag): New variable.
22617 Add support for `--statistics'.
22618 Adjust dependencies.
22619
22620 Remove a lot of now useless `extern' statements in most files.
22621
403b315b
AD
226222000-10-02 Akim Demaille <akim@epita.fr>
22623
22624 * src/LR0.h: New file.
22625 Propagate its use.
22626
07a58c13
AD
226272000-10-02 Akim Demaille <akim@epita.fr>
22628
22629 * src/print.h: New file.
22630 Propagate its use.
22631 * src/print.c: Formatting and ordering changes.
22632 (verbose, terse): Replace with...
22633 (print_results): this new function.
22634 Adjust dependencies.
22635
0619caf0
AD
226362000-10-02 Akim Demaille <akim@epita.fr>
22637
22638 * src/conflicts.c (conflict_report): New function.
22639 (conflict_log, verbose_conflict_log): Replace with...
22640 (print_conflicts): this function.
22641 Adjust dependencies.
22642 * src/conflicts.h: New file.
22643 Propagate its inclusion.
22644
3519ec76
AD
226452000-10-02 Akim Demaille <akim@epita.fr>
22646
22647 * src/nullable.h: New file.
22648 Propagate its inclusion.
22649 * src/nullable.c: Formatting changes.
22650
015acc48
AD
226512000-10-02 Akim Demaille <akim@epita.fr>
22652
22653 * src/reduce.h: New file.
22654 Propagate its inclusion.
22655 * src/reduce.c: Topological sort and other formatting changes.
22656 (bool, TRUE, FALSE): Move their definition to...
22657 * src/system.h: here.
22658
8963a27b
AD
226592000-10-02 Akim Demaille <akim@epita.fr>
22660
22661 * src/files.c: Formatting changes.
22662 (tryopen, tryclose, openfiles): Rename as...
22663 (xfopen, xfclose, open_files): this.
22664 (stringappend): static.
22665 * src/files.h: Complete the list of exported symbols.
22666 Propagate its use.
22667
a70083a3
AD
226682000-10-02 Akim Demaille <akim@epita.fr>
22669
22670 * src/reader.h: New file.
22671 Propagate its use instead of tedious list of `extern' and
22672 prototypes.
22673 * src/reader.c: Formatting changes, topological sort,
22674 s/register//.
22675
abadc117
AD
226762000-10-02 Akim Demaille <akim@epita.fr>
22677
22678 * src/lex.h: Prototype `lex.c' exported functions.
22679 * src/reader.c: Adjust.
22680 * src/lex.c: Formatting changes.
22681 (safegetc): Rename as...
22682 (xgetc): this.
22683
720d742f
AD
226842000-10-02 Akim Demaille <akim@epita.fr>
22685
22686 * src/lalr.h: New file.
22687 Propagate its inclusion instead of prototypes and `extern'.
22688 * src/lalr.c: Formatting changes, topological sorting etc.
22689
f2acea59
AD
226902000-10-02 Akim Demaille <akim@epita.fr>
22691
22692 * src/output.c (token_actions): Introduce a temporary array,
22693 YYDEFACT, that makes it possible for this function to use
22694 output_short_table.
22695
d019d655
AD
226962000-10-02 Akim Demaille <akim@epita.fr>
22697
22698 `user_toknums' is output as a `short[]' in `output.c', while it is
22699 defined as a `int[]' in `reader.c'. For consistency with the
22700 other output tables, `user_toknums' is now defined as a table of
22701 shorts.
22702
22703 * src/reader.c (user_toknums): Be a short table instead of an int
22704 table.
22705 Adjust dependencies.
22706
22707 Factor the short table outputs.
22708
22709 * src/output.c (output_short_table): New function.
22710 * src/output.c (output_gram, output_stos, output_rule_data)
22711 (output_base, output_table, output_check): Use it.
22712
6c89f1c1
AD
227132000-10-02 Akim Demaille <akim@epita.fr>
22714
22715 * src/output.c (output): Topological sort of the functions, in
22716 order to get rid of the `static' prototypes.
22717 No longer use `register'.
22718 * src/output.h: New file.
22719 Propagate its inclusion in files explicitly prototyping functions
22720 from output.c.
22721
d9efd181
AD
227222000-09-21 Akim Demaille <akim@epita.fr>
22723
22724 * src/atgeneral.m4: Update from Autoconf.
22725
c29240e7 227262000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
22727
22728 * src/closure.h: New file.
22729 * src/closure.c: Formatting changes, topological sort over the
22730 functions, use of closure.h.
22731 (initialize_closure, finalize_closure): Rename as...
22732 (new_closure, free_closure): these. Adjust dependencies.
22733 * src/LR0.c: Formatting changes, topological sort, use of
22734 cloture.h.
22735 (initialize_states): Rename as...
22736 (new_states): this.
22737 * src/Makefile.am (noinst_HEADERS): Adjust.
22738
499daa50
AD
227392000-09-20 Akim Demaille <akim@epita.fr>
22740
22741 * src/acconfig.h: Don't protect config.h against multiple
22742 inclusion.
22743 Don't define PARAMS.
22744 * src/system.h: Define PARAMS.
22745 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
22746 purpose of config.h. system.h must not try to fix wrong
22747 definitions in config.h.
22748
cc84fd5d
AD
227492000-09-20 Akim Demaille <akim@epita.fr>
22750
22751 * src/derives.h: New file.
22752 * src/main.c, src/derives.h: Use it.
22753 Formatting changes.
22754 * src/Makefile.am (noinst_HEADERS): Adjust.
22755
db5b3a89
AD
227562000-09-20 Akim Demaille <akim@epita.fr>
22757
22758 * tests/atgeneral.m4: Update from Autoconf.
22759 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
22760 (AT_CHECK_CALC): New macros.
22761 Use these macros to test bison with options `', `--raw',
22762 `--debug', `--yacc', `--yacc --debug'.
22763
ceed8467
AD
227642000-09-19 Akim Demaille <akim@epita.fr>
22765
22766 * src/output.c: Formatting changes.
22767 * src/machine.h: Remove, leaving its contents in...
22768 * src/system.h: here.
22769 Include stdio.h.
22770 Adjust all dependencies on stdio.h and machine.h.
22771 * src/getargs.h: New file.
22772 Let all `extern' declarations about getargs.c be replaced with
22773 inclusion of `getargs.h'.
22774 * src/Makefile.am (noinst_HEADERS): Adjust.
22775
22776 * tests/calc.m4 (yyin): Be initialized in main, not on the global
22777 scope.
22778 (yyerror): Returns void, not int.
22779 * doc/bison.texinfo: Formatting changes.
22780
05a1d24b
AD
227812000-09-19 Akim Demaille <akim@epita.fr>
22782
22783 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
22784 portable.
22785
cbd25751
AD
227862000-09-18 Akim Demaille <akim@epita.fr>
22787
22788 * configure.in: Append WARNING_CFLAGS to CFLAGS.
22789 * src/Makefile.am (INCLUDES): Don't.
22790 Be ready to fetch headers in lib/.
22791
13863333
AD
227922000-09-18 Akim Demaille <akim@epita.fr>
22793
22794 * doc/bison.texinfo: Update the copyright.
22795 ANSIfy and GNUify the examples.
22796 Remove the old menu.
22797
0d533154
AD
227982000-09-18 Akim Demaille <akim@epita.fr>
22799
22800 First set of tests: use the `calc' example from the documentation.
22801
22802 * src/bison.s1 (yyparse): Condition the code using `yytname' which
22803 is defined only when YYDEBUG is.
22804 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
22805 * src/files.c (tryopen, tryclose): Formatting changes.
22806 Move to the top and be static.
22807 * src/reader.c (read_signed_integer): Likewise.
22808 * tests/calc.m4: New file.
22809 * Makefile.am, suite.m4: Adjust.
22810 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
22811
e79137ac
AD
228122000-09-18 Akim Demaille <akim@epita.fr>
22813
22814 Add support for an Autotest test suite for Bison.
22815
22816 * m4/m4.m4, m4/atconfig.m4: New files.
22817 * m4/Makefile.am (EXTRA_DIST): Adjust.
22818 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
22819 files.
22820 * src/getargs.c: Display a more standard --version message.
22821 * src/reader.c (reader): Formatting changes.
22822 No longer depend upon VERSION_STRING.
22823 * configure.in: No longer use `dnl'.
22824 Set up the test suite and the new directory `tests/.
22825 (VERSION_STRING): Remove.
22826
27821bff
AD
228272000-04-14 Akim Demaille <akim@epita.fr>
22828
22829 * src/reader.c (copy_comment2): New function, same as former
22830 `copy_comment', but outputs into two FILE *.
22831 (copy_comment): Use it.
22832 (parse_union_decl): Use it.
22833 (get_type, parse_start_decl): Use the same `invalid' message.
22834 (parse_start_decl, parse_union_decl): Use the same `multiple'
22835 message.
22836 (parse_union_decl, copy_guard, copy_action): Use the same
22837 `unmatched' message.
22838 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
22839
cfe5fbc0
AD
228402000-03-31 Akim Demaille <akim@epita.fr>
22841
22842 * src/files.c (tryopen, tryclose): Move to the top.
22843 Be static.
22844
cb7db13e
AD
228452000-03-31 Akim Demaille <akim@epita.fr>
22846
22847 * src/main.c (main): Don't call `done', exit does it.
22848
a0f6b076
AD
228492000-03-31 Akim Demaille <akim@epita.fr>
22850
36281465
AD
22851 * allocate.c: s/return (foo)/return foo/.
22852 * lalr.c: Likewise.
22853 * LR0.c: Likewise.
22854 * output.c: Likewise.
22855 * reader.c: Likewise.
22856 * symtab.c: Likewise.
22857 * vmsgetargs.c: Likewise.
22858
228592000-03-31 Akim Demaille <akim@epita.fr>
22860
22861 Clean up the error reporting functions.
a0f6b076
AD
22862
22863 * src/report.c: New file.
22864 * src/report.h: Likewise.
22865 * src/Makefile.am: Adjust.
22866 * m4/error.m4: New file.
22867 * m4/Makefile.am: Adjust.
22868 * configure.in (jm_PREREQ_ERROR): Call it.
22869 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
22870 Remove.
22871 (fatal, fatals): Remove. All callers use complain.c::fatal.
22872 (warn, warni, warns, warnss, warnss): Remove. All callers use
22873 complain.c::complain.
22874 (toomany): Remove, use fatal instead.
22875 * src/files.c (done): No argument, use complain_message_count.
22876 * src/main.c (main): Register `done' to `atexit'.
22877
22878 * src/getargs.c (usage): More `fputs', less `fprintf'.
22879
18539825
AD
228802000-03-28 Akim Demaille <akim@epita.fr>
22881
22882 * lib/: New directory.
22883 * Makefile.am (SUBDIRS): Adjust.
22884 * configure.in: Adjust.
22885 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
22886 useless.
22887 * src/alloca.c: Moved to lib/.
22888 * src/getopt.c: Likewise.
22889 * src/getopt1.c: Likewise.
22890 * src/getopt.h: Likewise.
22891 * src/ansi2knr.c: Likewise.
22892 * src/ansi2knr.1: Likewise.
22893 * src/Makefile.am: Adjust.
22894 * lib/Makefile.am: New file.
22895
9f306f2a
AD
228962000-03-28 Akim Demaille <akim@epita.fr>
22897
22898 * src/getargs.c (usage): Refresh the help message.
22899
0ba347b6
AD
229002000-03-17 Akim Demaille <akim@epita.fr>
22901
22902 * src/getopt1.c: Updated from textutils 2.0e
22903 * src/getopt.c: Likewise.
22904 * src/getopt.h: Likewise.
22905
dbe7f271
AD
229062000-03-17 Akim Demaille <akim@epita.fr>
22907
22908 * src/Makefile.am (bison.simple): Fix the awk program: quote only
22909 the file name, not the whole `#line LINE FILE'.
22910
75bbe78d
AD
229112000-03-17 Akim Demaille <akim@epita.fr>
22912
22913 On syntax errors, report the token on which we choked.
22914
aa5fd0ee
AD
22915 * src/bison.s1 (yyparse): In the label yyerrlab, when
22916 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 22917
7b306f52
AD
229182000-03-17 Akim Demaille <akim@epita.fr>
22919
aa5fd0ee 22920 * src/reader.c (copy_at): New function.
7b306f52
AD
22921 (copy_guard): Use it.
22922 (copy_action): Use it.
22923
e87b5700
AD
229242000-03-17 Akim Demaille <akim@epita.fr>
22925
22926 Be kind to translators, save some useless translations.
22927
aa5fd0ee 22928 * src/main.c (banner): New function.
e87b5700
AD
22929 (fatal_banner): Use it.
22930 (warn_banner): Use it.
22931
ae3c3164
AD
229322000-03-17 Akim Demaille <akim@epita.fr>
22933
aa5fd0ee
AD
22934 * src/reader.c (copy_definition): Use copy_string and
22935 copy_comment. Removed now unused `match', `ended',
22936 `cplus_comment'.
ae3c3164
AD
22937 (copy_comment, copy_string): Moved, to be visible from
22938 copy_definition.
22939
4dc58e7c
AD
229402000-03-17 Akim Demaille <akim@epita.fr>
22941
aa5fd0ee
AD
22942 * src/reader.c (copy_string): Declare `static inline'. No
22943 problems with inline, since it is checked by configure.
4dc58e7c
AD
22944 (copy_comment): Likewise.
22945
0a6384c4
AD
229462000-03-17 Akim Demaille <akim@epita.fr>
22947
aa5fd0ee 22948 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 22949
3cef001a
AD
229502000-03-17 Akim Demaille <akim@epita.fr>
22951
aa5fd0ee 22952 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
22953 (copy_action): Use it. Removed now unused `match', `ended',
22954 `cplus_comment'.
22955 (copy_guard): Likewise.
22956
ca36d2ef
AD
229572000-03-17 Akim Demaille <akim@epita.fr>
22958
aa5fd0ee 22959 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
22960 (copy_action): Use it.
22961 (copy_guard): Likewise.
22962
6666f98f
AD
229632000-03-17 Akim Demaille <akim@epita.fr>
22964
22965 Change the handling of @s so that they behave exactly like $s.
22966 There is now a pseudo variable @$ (readble and writable), location
22967 of the lhs of the rule (by default ranging from the location of
22968 the first symbol of the rhs, to the location of the last symbol,
22969 or, if the rhs is empty, YYLLOC).
22970
22971 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
22972 yyval.
22973 (yyparse): When providing a default semantic action, provide a
22974 default location action.
22975 (after the $): No longer change `*YYLSP', just stack YYLOC the
22976 same way you stack YYVAL.
22977 * src/reader.c (read_declarations): Use warns.
22978 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
22979 (copy_action, case '@'): Likewise.
22980 Use a standard error message, to save useless work from
22981 translators.
22982
41aca2e0
AD
229832000-03-17 Akim Demaille <akim@epita.fr>
22984
aa5fd0ee
AD
22985 * src/bison.s1: Formatting and cosmetics changes.
22986 * src/reader.c: Likewise.
41aca2e0
AD
22987 Update the Copyright notice.
22988
dc08c1d5
AD
229892000-03-17 Akim Demaille <akim@epita.fr>
22990
aa5fd0ee
AD
22991 * src/bison.s1 (#line): All set to `#line' only, since the
22992 Makefile now handles them.
dc08c1d5 22993
9ee3c97b
AD
229942000-03-16 Akim Demaille <akim@epita.fr>
22995
22996 * src/output.c (output_rule_data): Output the documentation of
22997 some of the tables.
22998 (Copyright notice): Update.
22999 Formatting changes.
23000
0de741ca
AD
230012000-03-16 Akim Demaille <akim@epita.fr>
23002
23003 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
23004 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
23005 One `#if YYDEBUG' remains, since it uses variables which are
23006 defined only if `YYDEBUG != 0'.
23007
bb10be54
AD
230082000-03-16 Akim Demaille <akim@epita.fr>
23009
23010 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
23011 and related variables so that the similarities are highlighted.
23012
b07b484a
AD
230132000-03-16 Akim Demaille <akim@epita.fr>
23014
23015 * src/bison.s1: Properly indent CPP directives.
23016
361f60b3
AD
230172000-03-16 Akim Demaille <akim@epita.fr>
23018
23019 * src/bison.s1: Properly indent the `alloca' CPP section.
23020
8c44d3ec
AD
230212000-03-16 Akim Demaille <akim@epita.fr>
23022
23023 Do not hard code values of directories in `configure.in'.
23024 Update the `configure' tool chain.
23025
23026 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
23027 src/makefile.am.
23028 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
23029 (AC_OUTPUT): Add m4/Makefile.
23030 Bump to bison 1.28a, 1.29 has never been released.
23031 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
23032 handled via src/Makefile.am.
23033 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
23034 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
23035 autoheader.
23036 * Makefile.am (SUBDIRS): Add m4.
23037 (ACLOCAL_AM_FLAGS): New variable.
23038 (AUTOMAKE_OPTIONS): Add check-news.
23039 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
23040 the proper line number and file name.
23041 (DEFS): Propagate the location of bison library files and of the
23042 locale files.
23043 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
23044 builddir.
23045 * acinclude.m4: Remove, replaced by the directory m4.
23046 * m4/Makefile.am (EXTRA_DIST): New variable.
23047 * m4/gettext.m4: New file, from the fileutils.
23048 * m4/lcmessage.m4: Likewise
23049 * m4/progtest.m4: Likewise.
23050 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
23051
f95997e7
AD
230522000-03-10 Akim Demaille <akim@epita.fr>
23053
23054 * src/closure.c:
23055 Formatting changes of various comments.
23056 Respect the GNU coding standards at various places.
23057 Don't use `_()' when no translation is needed.
23058
230591999-12-13 Jesse Thilo <jthilo@gnu.org>
23060
23061 * src/files.c:
23062 OS/2 honors TMPDIR environment variable.
23063
230641999-12-13 Jesse Thilo <jthilo@gnu.org>
23065
23066 * doc/bison.texinfo: Tweaked spelling and grammar.
23067 Updated ISBN.
23068 Removed reference to price of printed copy.
23069 Mention BISON_SIMPLE and BISON_HAIRY.
23070
230711999-12-13 Jesse Thilo <jthilo@gnu.org>
23072
23073 * configure.in, NEWS:
23074 Bison 1.29 released.
23075
230761999-10-27 Jesse Thilo <jthilo@gnu.org>
23077
23078 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
23079 Added reference card.
23080
230811999-07-26 Jesse Thilo <jthilo@gnu.org>
23082
23083 * po/ru.po: Added Russian translation.
23084
230851999-07-26 Jesse Thilo <jthilo@gnu.org>
23086
23087 * configure.in: Added Russian translation.
23088
230891999-07-06 Jesse Thilo <jthilo@gnu.org>
23090
23091 * configure.in, NEWS, README:
23092 Released version 1.28.
23093
230941999-06-14 Jesse Thilo <jthilo@gnu.org>
23095
23096 * src/system.h:
23097 Squashed redefinition warning on some systems.
23098
23099 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
23100 Have configure build version string instead of relying on ANSI string
23101 concatentation.
23102
231031999-06-14 Jesse Thilo <jthilo@gnu.org>
23104
23105 * po/POTFILES.in: Got rid of version.c.
23106
231071999-06-14 Jesse Thilo <jthilo@gnu.org>
23108
23109 * acconfig.h, configure.in:
23110 Have configure build version string instead of relying on ANSI string
23111 concatentation.
23112
231131999-06-08 Jesse Thilo <jthilo@gnu.org>
23114
23115 * doc/bison.1:
23116 Dropped mention of `+' for long-named options.
23117
231181999-05-30 Jesse Thilo <jthilo@gnu.org>
23119
23120 * src/files.c: Added <unistd.h> for unlink().
23121
23122 * src/Makefile.am, src/system.h:
23123 I18n fixes.
23124
231251999-05-30 Jesse Thilo <jthilo@gnu.org>
23126
23127 * README: Added a FAQ list.
23128
23129 * configure.in, acconfig.h:
23130 I18n fixes.
23131
231321999-05-30 Jesse Thilo <jthilo@gnu.org>
23133
23134 * doc/FAQ, doc/Makefile.am:
23135 Added a FAQ list.
23136
231371999-05-19 Jesse Thilo <jthilo@gnu.org>
23138
23139 * src/alloc.h, src/symtab.h, src/version.c:
23140 Protected inclusion of "config.h" with HAVE_CONFIG_H.
23141
231421999-04-18 Jesse Thilo <jthilo@gnu.org>
23143
23144 * src/.cvsignore, src/Makefile.am:
23145 Reorganized: sources in `src', documentation in `doc'.
23146
23147 * src/lex.c (literalchar):
23148 fixed the code for escaping double quotes (thanks
23149 Jonathan Czisny.)
23150
231511999-04-18 Jesse Thilo <jthilo@gnu.org>
23152
23153 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
23154 Adjusted paths to reflect directory reorganization.
23155
231561999-04-18 Jesse Thilo <jthilo@gnu.org>
23157
23158 * doc/.cvsignore, doc/Makefile.am:
23159 Reorganized: sources in `src', documentation in `doc'.
23160
231611999-04-18 Jesse Thilo <jthilo@gnu.org>
23162
23163 * configure.in:
23164 Updated AC_INIT file to reflect directory reorganization.
23165
23166 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
23167 Reorganized: sources in `src', documentation in `doc'.
23168
231691999-04-13 Jesse Thilo <jthilo@gnu.org>
23170
23171 * src/allocate.c:
23172 Don't declare calloc() and realloc() if not necessary.
23173
231741999-04-13 Jesse Thilo <jthilo@gnu.org>
23175
23176 * configure.in, acconfig.h, acinclude.m4:
23177 Don't declare calloc() and realloc() if not necessary.
23178
231791999-03-23 Jesse Thilo <jthilo@gnu.org>
23180
23181 * po/.cvsignore: Added i18n support.
23182
231831999-03-23 Jesse Thilo <jthilo@gnu.org>
23184
23185 * acconfig.h, configure.in, Makefile.am:
23186 Added i18n support.
23187
231881999-03-22 Jesse Thilo <jthilo@gnu.org>
23189
23190 * src/bison.s1: Fixed #line numbers.
23191
231921999-03-15 Jesse Thilo <jthilo@gnu.org>
23193
23194 * po/es.po, po/fr.po, po/nl.po, po/de.po:
23195 Added PO files from Translation Project.
23196
231971999-03-03 Jesse Thilo <jthilo@gnu.org>
23198
23199 * Makefile.am:
23200 Added support for non-ANSI compilers (ansi2knr).
23201
232021999-02-16 Jesse Thilo <jthilo@gnu.org>
23203
23204 * configure.in: Bumped version number to 1.27.
23205
23206 * Makefile.am:
23207 Added `bison.simple' to list of files removed by `make distclean'.
23208
232091999-02-12 Jesse Thilo <jthilo@gnu.org>
23210
23211 * src/files.c, src/files.h:
23212 Defined locations of parser files in config.h instead of Makefile.
23213
232141999-02-12 Jesse Thilo <jthilo@gnu.org>
23215
23216 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
23217 Defined locations of parser files in config.h instead of Makefile.
23218
232191999-02-09 Jesse Thilo <jthilo@gnu.org>
23220
23221 * Makefile.am:
23222 Removed inappropriate use of $< macro.
23223
232241999-02-05 Jesse Thilo <jthilo@gnu.org>
23225
23226 * po/Makefile.in.in, po/POTFILES.in:
23227 Add `po' directory skeleton.
23228
232291999-01-27 Jesse Thilo <jthilo@gnu.org>
23230
23231 * README: Document help-bison list.
23232
23233 * configure.in: Add check for mkstemp().
23234
232351999-01-20 Jesse Thilo <jthilo@gnu.org>
23236
23237 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
23238 Hush a few compiler warnings.
23239
23240 * src/files.c:
23241 Add tryclose(), which verifies that fclose was successful.
23242 Hush a couple of compiler warnings.
23243
232441999-01-20 Jesse Thilo <jthilo@gnu.org>
23245
23246 * Makefile.am, OChangeLog:
23247 ChangeLog is now automatically generated. Include the old version as
23248 OChangeLog.
23249
232501999-01-14 Jesse Thilo <jthilo@gnu.org>
23251
23252 * 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:
23253 Update FSF address.
23254
232551999-01-14 Jesse Thilo <jthilo@gnu.org>
23256
23257 * doc/bison.texinfo: Fix formatting glitch.
23258
23259 * doc/bison.texinfo: Update FSF address.
23260
232611999-01-14 Jesse Thilo <jthilo@gnu.org>
23262
23263 * acconfig.h: Update FSF address.
23264
232651999-01-08 Jesse Thilo <jthilo@gnu.org>
23266
23267 * src/system.h:
23268 Don't define PACKAGE here, since config.h defines it.
23269
232701998-12-30 Jesse Thilo <jthilo@gnu.org>
23271
23272 * src/reader.c: Update copyright date.
23273
23274 * src/main.c:
23275 Ditch sprintf to statically-sized buffers in fatal/warn functions in
23276 favor of output directly to stderr (avoids buffer overruns).
23277
23278 * src/reader.c: Some checks for premature EOF.
23279
23280 * 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:
23281 Use prototypes if the compiler understands them.
23282
23283 * src/files.c: Honor TMPDIR on Unix hosts.
23284 Use prototypes if the compiler understands them.
23285
23286 * src/reader.c:
23287 Fix a couple of buffer overrun bugs.
23288 Use prototypes if the compiler understands them.
23289
23290 * src/system.h: Include unistd.h and ctype.h.
23291 Use #ifdef instead of #if for NLS symbols.
23292
232931998-12-30 Jesse Thilo <jthilo@gnu.org>
23294
23295 * doc/bison.texinfo:
23296 Delete comment "consider using @set for edition number, etc..." since
23297 we now are doing so.
23298
232991998-12-30 Jesse Thilo <jthilo@gnu.org>
23300
23301 * configure.in:
23302 Use prototypes if the compiler understands them.
23303
23304 * NEWS: Document 1.26 highlights.
23305
23306 * Makefile.am: Require Automake 1.3 or later.
23307
23308 * acconfig.h:
23309 Use prototypes if the compiler understands them.
23310
233111998-12-29 Jesse Thilo <jthilo@gnu.org>
23312
23313 * src/version.c:
23314 Use VERSION symbol from automake for version number.
23315
233161998-12-29 Jesse Thilo <jthilo@gnu.org>
23317
23318 * acconfig.h, configure.in, version.cin:
23319 Use VERSION symbol from automake for version number.
23320
233211998-11-28 Jesse Thilo <jthilo@gnu.org>
23322
23323 * Makefile.am:
23324 Distribute original version of simple parser (bison.s1), not built
23325 version (bison.simple).
23326
233271998-11-28 Jesse Thilo <jthilo@gnu.org>
23328
23329 * doc/bison.texinfo: Add info dir entry.
23330
23331 * doc/bison.texinfo:
23332 Let automake put version number into documentation.
23333
233341998-11-26 Jesse Thilo <jthilo@gnu.org>
23335
23336 * src/bison.cld, src/build.com, src/vmshlp.mar:
23337 Add non-RCS files from /gd/gnu/bison.
23338
233391998-11-26 Jesse Thilo <jthilo@gnu.org>
23340
23341 * doc/bison.1:
23342 Document the BISON_HAIRY and BISON_SIMPLE variables.
23343
233441998-11-25 Jesse Thilo <jthilo@gnu.org>
23345
23346 * src/version.c: Build version.c automatically.
23347
23348 * src/reader.c:
23349 Fix token numbering (used to start at 258, not 257).
23350
23351 * src/system.h: Include config.h.
23352
23353 * src/getargs.c: Update bug report address.
23354
23355 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
23356 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
23357
233581998-11-25 Jesse Thilo <jthilo@gnu.org>
23359
23360 * Makefile.am:
23361 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
23362
23363 * configure.in, version.cin:
23364 Build version.c automatically.
23365
23366 * AUTHORS: Add AUTHORS file.
23367
23368 * README: Update bug report address.
23369
23370 * bison.simple:
23371 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
23372
23373 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
23374 Add automake stuff.
23375
233761998-11-25 Jesse Thilo <jthilo@gnu.org>
23377
23378 * doc/bison.texinfo: Clean up some formatting.
23379
233801998-05-05 Richard Stallman <rms@gnu.org>
23381
23382 * doc/bison.texinfo:
23383 Explain better why to make a pure parser.
23384
233851998-01-05 Richard Stallman <rms@gnu.org>
23386
23387 * src/files.c (openfiles):
23388 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
23389 find a temporary directory, if possible. Do not unlink files while
23390 they are open.
23391
233921997-08-25 Richard Stallman <rms@gnu.org>
23393
23394 * src/reader.c (stack_offset;):
23395 Change some warni to warns.
23396
23397 * src/lex.c (literalchar): Use warns, not warni.
23398
233991997-06-28 Richard Stallman <rms@gnu.org>
23400
23401 * src/bison.s1: Add a Bison version comment.
23402
23403 * src/main.c (fatal, warn, berror):
23404 Use program_name.
23405
234061997-06-28 Richard Stallman <rms@gnu.org>
23407
23408 * Makefile.in (bison_version): New variable.
23409 (dist): Use that variable.
23410 (bison.s1): Substitute the Bison version into bison.simple.
23411
23412 * bison.simple: Add a Bison version comment.
23413
234141997-06-18 Richard Stallman <rms@gnu.org>
23415
23416 * src/main.c (fatal, warn, berror):
23417 Make error messages standard.
23418 (toomany): Improve error message text.
23419
23420 * 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:
23421 new.h renamed to alloc.h.
23422
234231997-06-18 Richard Stallman <rms@gnu.org>
23424
23425 * Makefile.in: new.h renamed to alloc.h.
23426
234271997-05-24 Richard Stallman <rms@gnu.org>
23428
23429 * src/lex.c (literalchar):
23430 Fix the code for escaping \, " and '.
23431
23432 (lex): Avoid trouble when there are many chars
23433 to discard in a char literal with just several chars in it.
23434
234351997-05-17 Richard Stallman <rms@gnu.org>
23436
23437 * src/bison.s1:
23438 Use malloc, if using alloca is troublesome.
23439 (YYSTACK_USE_ALLOCA): New flag macro.
23440 Define it for some systems and compilers.
23441 (YYSTACK_ALLOC): New macro.
23442 (yyparse): Use YYSTACK_ALLOC to allocate stack.
23443 If it was malloc'd, free it.
23444
234451997-05-17 Richard Stallman <rms@gnu.org>
23446
23447 * bison.simple:
23448 Use malloc, if using alloca is troublesome.
23449 (YYSTACK_USE_ALLOCA): New flag macro.
23450 Define it for some systems and compilers.
23451 (YYSTACK_ALLOC): New macro.
23452 (yyparse): Use YYSTACK_ALLOC to allocate stack.
23453 If it was malloc'd, free it.
23454
234551997-04-23 Richard Stallman <rms@gnu.org>
23456
23457 * src/bison.s1:
23458 (alloca) [__hpux]: Always define as __builtin_alloca.
23459
234601997-04-23 Richard Stallman <rms@gnu.org>
23461
23462 * bison.simple:
23463 (alloca) [__hpux]: Always define as __builtin_alloca.
23464
234651997-04-22 Richard Stallman <rms@gnu.org>
23466
23467 * src/bison.s1:
23468 [__hpux]: Include alloca.h (right for HPUX 10)
23469 instead of declaring alloca (right for HPUX 9).
23470
23471 * src/bison.s1 (__yy_memcpy):
23472 Declare arg `count' as unsigned int.
23473 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
23474
234751997-04-22 Richard Stallman <rms@gnu.org>
23476
23477 * bison.simple:
23478 [__hpux]: Include alloca.h (right for HPUX 10)
23479 instead of declaring alloca (right for HPUX 9).
23480
23481 * bison.simple (__yy_memcpy):
23482 Declare arg `count' as unsigned int.
23483 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
23484
234851997-01-03 Richard Stallman <rms@gnu.org>
23486
23487 * src/allocate.c: [__STDC__ or _MSC_VER]:
23488 Declare calloc and realloc to return void *.
23489
234901997-01-02 Richard Stallman <rms@gnu.org>
23491
23492 * src/system.h:
23493 [_MSC_VER]: Include stdlib.h and process.h.
23494 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
23495
23496 * src/main.c (main): Return FAILURE as a value.
23497 (printable_version): Declare arg as int, not char.
23498
234991997-01-02 Richard Stallman <rms@gnu.org>
23500
23501 * Makefile.in (dist):
23502 Explicitly check for symlinks, and copy them.
23503
235041996-12-19 Richard Stallman <rms@gnu.org>
23505
23506 * src/files.c:
23507 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
23508
235091996-12-18 Paul Eggert <eggert@gnu.org>
23510
23511 * src/bison.s1 (yyparse):
23512 If __GNUC__ and YYPARSE_PARAM are both defined,
23513 declare yyparse to have a void * argument.
23514
235151996-12-18 Paul Eggert <eggert@gnu.org>
23516
23517 * bison.simple (yyparse):
23518 If __GNUC__ and YYPARSE_PARAM are both defined,
23519 declare yyparse to have a void * argument.
23520
235211996-12-17 Richard Stallman <rms@gnu.org>
23522
23523 * src/reduce.c (nbits): Add some casts.
23524
235251996-08-12 Richard Stallman <rms@gnu.org>
23526
23527 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
23528
235291996-08-12 Richard Stallman <rms@gnu.org>
23530
23531 * bison.simple: Test _MSDOS as well as _MSDOS_.
23532
235331996-07-31 Richard Stallman <rms@gnu.org>
23534
23535 * src/bison.s1:
23536 [__sun && __i386]: Include alloca.h.
23537
235381996-07-31 Richard Stallman <rms@gnu.org>
23539
23540 * bison.simple:
23541 [__sun && __i386]: Include alloca.h.
23542
235431996-07-30 Richard Stallman <rms@gnu.org>
23544
23545 * src/bison.s1: Comment change.
23546
23547 * src/bison.s1: Test _MSDOS_, not MSDOS.
23548
235491996-07-30 Richard Stallman <rms@gnu.org>
23550
23551 * bison.simple: Comment change.
23552
23553 * bison.simple: Test _MSDOS_, not MSDOS.
23554
235551996-06-01 Richard Stallman <rms@gnu.org>
23556
23557 * 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:
23558 Insert `_' macro around many string constants.
23559
23560 * src/main.c:
23561 Insert `_' macro around many string constants.
23562
23563 (main): Call setlocale, bindtextdomain and textdomain.
23564
23565 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
23566 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
23567 [ENABLE_NLS]: Include libintl.h.
23568 [ENABLE_NLS] (gettext): Define.
23569 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
23570 (N_, PACKAGE, LOCALEDIR): New macros.
23571
235721996-06-01 Richard Stallman <rms@gnu.org>
23573
23574 * POTFILES.in: New file.
23575
23576 * Makefile.in (allocate.o):
23577 Define target explicitly.
23578
23579 * Makefile.in (CFLAGS): Set to @CFLAGS@.
23580 (LDFLAGS): Set to @LDFLAGS@.
23581 (configure): Run autoconf only if preceding `cd' succeeds.
23582 (bison.s1): Redirect output to temporary file then move the
23583 temporary to the target, rather than redirecting directly to bison.s1.
23584 (clean): Remove config.status and config.log.
23585 (distclean): Don't remove config.status here.
23586
235871996-05-12 Richard Stallman <rms@gnu.org>
23588
23589 * src/bison.s1:
23590 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
23591
235921996-05-12 Richard Stallman <rms@gnu.org>
23593
23594 * bison.simple:
23595 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
23596
235971996-05-11 Richard Stallman <rms@gnu.org>
23598
23599 * src/bison.s1 (__yy_memcpy):
23600 Really reorder the args, as was supposedly done on Feb 14 1995.
23601 (yyparse): Calls changed accordingly.
23602
236031996-05-11 Richard Stallman <rms@gnu.org>
23604
23605 * Makefile.in (dist): Don't use $(srcdir).
23606
23607 * bison.simple (__yy_memcpy):
23608 Really reorder the args, as was supposedly done on Feb 14 1995.
23609 (yyparse): Calls changed accordingly.
23610
236111996-01-27 Richard Stallman <rms@gnu.org>
23612
23613 * src/output.c (output_rule_data):
23614 Test YYERROR_VERBOSE in the conditional
23615 around the definition of ttyname.
23616
236171995-12-29 Richard Stallman <rms@gnu.org>
23618
23619 * src/bison.s1:
23620 Fix line numbers in #line commands.
23621
236221995-12-29 Richard Stallman <rms@gnu.org>
23623
23624 * bison.simple:
23625 Fix line numbers in #line commands.
23626
236271995-12-27 Richard Stallman <rms@gnu.org>
23628
23629 * src/bison.s1 (YYPARSE_PARAM_DECL):
23630 In C++, make it always null.
23631 (YYPARSE_PARAM_ARG): New macro.
23632 (yyparse): Use YYPARSE_PARAM_ARG.
23633
236341995-12-27 Richard Stallman <rms@gnu.org>
23635
23636 * bison.simple (YYPARSE_PARAM_DECL):
23637 In C++, make it always null.
23638 (YYPARSE_PARAM_ARG): New macro.
23639 (yyparse): Use YYPARSE_PARAM_ARG.
23640
236411995-11-29 Richard Stallman <rms@gnu.org>
23642
23643 * doc/bison.texinfo:
23644 Describe literal string tokens, %raw, %no_lines, %token_table.
23645
236461995-11-29 Daniel Hagerty <hag@gnu.org>
23647
23648 * doc/bison.texinfo: Fixed update date
23649
236501995-10-16 Richard Stallman <rms@gnu.org>
23651
23652 * src/version.c: Version 1.25.
23653
236541995-10-16 Richard Stallman <rms@gnu.org>
23655
23656 * NEWS: *** empty log message ***
23657
236581995-10-16 Richard Stallman <rms@gnu.org>
23659
23660 * doc/bison.1, doc/bison.rnh:
23661 Add new options.
23662
236631995-10-15 Richard Stallman <rms@gnu.org>
23664
23665 * src/vmsgetargs.c, src/getargs.c:
23666 Added -n, -k, and -raw switches.
23667 (noparserflag, toknumflag, rawtoknumflag): New variables.
23668
23669 * src/symtab.h (SALIAS):
23670 New #define for adding aliases to %token.
23671 (struct bucket): Added `alias' field.
23672
23673 * src/reduce.c (reduce_grammar):
23674 Revise error message.
23675 (print_notices): Remove final `.' from error message.
23676
23677 * src/reader.c (reader_output_yylsp):
23678 New function.
23679 (readgram): Use `#if 0' around code that accepted %command
23680 inside grammar rules: The documentation doesn't allow it,
23681 and it will fail since the %command processors scan for the next %.
23682 (parse_token_decl): Extended the %token
23683 declaration to allow a multi-character symbol as an alias.
23684 (parse_thong_decl): New function.
23685 (read_declarations): Added %thong declarations.
23686 (read_declarations): Handle NOOP to deal with allowing
23687 % declarations as another means to specify the flags.
23688 (readgram): Allow %prec prior to semantics embedded in a rule.
23689 (skip_to_char, read_declarations, copy_definition)
23690 (parse_token_decl, parse_start_decl, parse_type_decl)
23691 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
23692 (get_type_name, copy_guard, copy_action, readgram)
23693 (get_type, packsymbols): Revised most error messages.
23694 Changed `fatal' to `warnxxx' to avoid aborting for error.
23695 Revised and use multiple warnxxx functions to avoid using VARARGS1.
23696 (read_declarations): Improve the error message for
23697 an invalid character. Do not abort.
23698 (read_declarations, copy_guard, copy_action): Use
23699 printable_version to avoid unprintable characters in printed output.
23700 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
23701 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
23702 Allow the type of a non-terminal can be given
23703 more than once, as long as all specifications give the same type.
23704
23705 * src/output.c:
23706 (output_headers, output_trailers, output, output_gram)
23707 (output_rule_data): Implement noparserflag variable.
23708 Implement toknumflag variable.
23709 (output): Call reader_output_yylsp to output LTYPESTR.
23710
23711 * src/main.c (main):
23712 If reader sees an error, don't process the grammar.
23713 (fatals): Updated to not use VARARGS1.
23714 (printable_version, int_to_string, warn, warni, warns, warnss)
23715 (warnsss): New error reporting functions. Avoid abort for error.
23716
23717 * src/lex.h:
23718 Added THONG and NOOP for alias processing.
23719 Added SETOPT for the new code that allows setting options with %flags.
23720
23721 * src/lex.c:
23722 Include getopt.h. Add some extern decls.
23723 (safegetc): New function to deal with EOF gracefully.
23724 (literalchar); new function to deal with reading \ escapes.
23725 (lex): Use literalchar.
23726 (lex): Implemented "..." tokens.
23727 (literalchar, lex, parse_percent_token): Made tokenbuffer
23728 always contain the token. This includes growing the token
23729 buffer while reading an integer.
23730 (parse_percent_token): Replaced if-else statement with percent_table.
23731 (parse_percent_token): Added % declarations as another
23732 way to specify the flags -n, -l, and -r. Also added hooks for
23733 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
23734 major changes to files.c.
23735 (lex) Retain in the incoming stream a character following
23736 an incorrect '/'.
23737 (skip_white_space, lex): Revised most error messages
23738 and changed fatal to warn to avoid aborting.
23739 (percent_table): Added %thong declarations.
23740
23741 * src/gram.h: Comment changes.
23742
23743 * src/files.c (openfiles, open_extra_files, done):
23744 Add faction flag
23745 and actfile file. Handle noparserflag. Both for -n switch.
23746
23747 * src/conflicts.c (resolve_sr_conflict):
23748 Remove use of alloca.
23749
237501995-06-01 Jim Meyering <meyering@gnu.org>
23751
23752 * doc/bison.texinfo: *** empty log message ***
23753
237541995-05-06 Richard Stallman <rms@gnu.org>
23755
23756 * src/bison.s1: Comment change.
23757
237581995-05-06 Richard Stallman <rms@gnu.org>
23759
23760 * bison.simple: Comment change.
23761
237621995-05-03 Richard Stallman <rms@gnu.org>
23763
23764 * src/version.c: Version now 1.24.
23765
23766 * src/bison.s1: Change distribution terms.
23767
23768 * src/version.c: Version now 1.23.
23769
237701995-05-03 Richard Stallman <rms@gnu.org>
23771
23772 * doc/bison.texinfo:
23773 Rewrite "Conditions for Using Bison".
23774 Update version to 1.24.
23775
237761995-05-03 Richard Stallman <rms@gnu.org>
23777
23778 * bison.simple: Change distribution terms.
23779
237801995-02-23 Richard Stallman <rms@gnu.org>
23781
23782 * src/files.c: Test __VMS_POSIX as well as VMS.
23783
237841995-02-14 Jim Meyering <meyering@gnu.org>
23785
23786 * src/bison.s1 (__yy_memcpy):
23787 Renamed from __yy_bcopy to avoid
23788 confusion. Reverse FROM and TO arguments to be consistent with
23789 those of memcpy.
23790
237911995-02-14 Jim Meyering <meyering@gnu.org>
23792
23793 * bison.simple (__yy_memcpy):
23794 Renamed from __yy_bcopy to avoid
23795 confusion. Reverse FROM and TO arguments to be consistent with
23796 those of memcpy.
23797
237981994-11-10 David J. MacKenzie <djm@gnu.org>
23799
23800 * NEWS: reformat
23801
23802 * NEWS: New file.
23803
23804 * Makefile.in (DISTFILES): Include NEWS.
23805
23806 * Makefile.in (DISTFILES):
23807 Include install-sh, not install.sh.
23808
23809 * configure.in: Update to Autoconf v2 macro names.
23810
238111994-10-05 David J. MacKenzie <djm@gnu.org>
23812
23813 * Makefile.in: fix typo
23814
23815 * Makefile.in (prefix, exec_prefix):
23816 Let configure set them.
23817
238181994-09-28 David J. MacKenzie <djm@gnu.org>
23819
23820 * Makefile.in: Set datadir to $(prefix)/share.
23821
238221994-09-15 Richard Stallman <rms@gnu.org>
23823
23824 * src/bison.s1:
23825 Update copyright notice and GPL version.
23826
238271994-09-15 Richard Stallman <rms@gnu.org>
23828
23829 * bison.simple:
23830 Update copyright notice and GPL version.
23831
238321994-07-12 Richard Stallman <rms@gnu.org>
23833
23834 * src/reduce.c, src/reader.c:
23835 entered into RCS
23836
238371994-05-05 David J. MacKenzie <djm@gnu.org>
23838
23839 * Makefile.in: entered into RCS
23840
238411994-03-26 Richard Stallman <rms@gnu.org>
23842
23843 * src/bison.s1: entered into RCS
23844
238451994-03-26 Richard Stallman <rms@gnu.org>
23846
23847 * bison.simple: entered into RCS
23848
238491994-03-25 Richard Stallman <rms@gnu.org>
23850
23851 * src/main.c: entered into RCS
23852
238531994-03-24 Richard Stallman <rms@gnu.org>
23854
23855 * src/conflicts.c: entered into RCS
23856
238571994-01-02 Richard Stallman <rms@gnu.org>
23858
23859 * Makefile.in: *** empty log message ***
23860
238611993-11-21 Richard Stallman <rms@gnu.org>
23862
23863 * src/bison.s1: *** empty log message ***
23864
238651993-11-21 Richard Stallman <rms@gnu.org>
23866
23867 * doc/bison.texinfo: entered into RCS
23868
23869 * doc/bison.texinfo: *** empty log message ***
23870
238711993-11-21 Richard Stallman <rms@gnu.org>
23872
23873 * bison.simple: *** empty log message ***
23874
238751993-10-25 David J. MacKenzie <djm@gnu.org>
23876
23877 * doc/bison.texinfo: *** empty log message ***
23878
238791993-10-19 Richard Stallman <rms@gnu.org>
23880
23881 * src/bison.s1: *** empty log message ***
23882
238831993-10-19 Richard Stallman <rms@gnu.org>
23884
23885 * bison.simple: *** empty log message ***
23886
238871993-10-14 Richard Stallman <rms@gnu.org>
23888
23889 * src/bison.s1: *** empty log message ***
23890
238911993-10-14 Richard Stallman <rms@gnu.org>
23892
23893 * bison.simple: *** empty log message ***
23894
238951993-09-14 David J. MacKenzie <djm@gnu.org>
23896
23897 * doc/bison.texinfo: *** empty log message ***
23898
238991993-09-13 Noah Friedman <friedman@gnu.org>
23900
23901 * Makefile.in: *** empty log message ***
23902
239031993-09-10 Richard Stallman <rms@gnu.org>
23904
23905 * src/conflicts.c: *** empty log message ***
23906
23907 * src/system.h: entered into RCS
23908
239091993-09-10 Richard Stallman <rms@gnu.org>
23910
23911 * doc/bison.1: entered into RCS
23912
239131993-09-06 Noah Friedman <friedman@gnu.org>
23914
23915 * src/version.c: entered into RCS
23916
239171993-09-06 Noah Friedman <friedman@gnu.org>
23918
23919 * Makefile.in: *** empty log message ***
23920
239211993-07-30 David J. MacKenzie <djm@gnu.org>
23922
23923 * Makefile.in: *** empty log message ***
23924
239251993-07-24 Richard Stallman <rms@gnu.org>
23926
23927 * src/bison.s1: *** empty log message ***
23928
239291993-07-24 Richard Stallman <rms@gnu.org>
23930
23931 * bison.simple: *** empty log message ***
23932
239331993-07-08 David J. MacKenzie <djm@gnu.org>
23934
23935 * Makefile.in: *** empty log message ***
23936
239371993-07-04 Richard Stallman <rms@gnu.org>
23938
23939 * src/bison.s1: *** empty log message ***
23940
239411993-07-04 Richard Stallman <rms@gnu.org>
23942
23943 * bison.simple: *** empty log message ***
23944
239451993-06-26 David J. MacKenzie <djm@gnu.org>
23946
23947 * src/getargs.c: entered into RCS
23948
239491993-06-26 David J. MacKenzie <djm@gnu.org>
23950
23951 * doc/bison.texinfo: *** empty log message ***
23952
23953 * doc/bison.1: New file.
23954
239551993-06-25 Richard Stallman <rms@gnu.org>
23956
23957 * src/getargs.c: New file.
23958
239591993-06-16 Richard Stallman <rms@gnu.org>
23960
23961 * src/bison.s1: *** empty log message ***
23962
239631993-06-16 Richard Stallman <rms@gnu.org>
23964
23965 * bison.simple: *** empty log message ***
23966
239671993-06-03 Richard Stallman <rms@gnu.org>
23968
23969 * src/bison.s1: New file.
23970
239711993-06-03 Richard Stallman <rms@gnu.org>
23972
23973 * doc/bison.texinfo: *** empty log message ***
23974
239751993-06-03 Richard Stallman <rms@gnu.org>
23976
23977 * bison.simple: New file.
23978
239791993-05-19 Richard Stallman <rms@gnu.org>
23980
23981 * doc/bison.texinfo: New file.
23982
239831993-05-07 Noah Friedman <friedman@gnu.org>
23984
23985 * Makefile.in: *** empty log message ***
23986
239871993-04-28 Noah Friedman <friedman@gnu.org>
23988
23989 * src/reader.c: *** empty log message ***
23990
239911993-04-23 Noah Friedman <friedman@gnu.org>
23992
23993 * src/alloc.h: entered into RCS
23994
239951993-04-20 David J. MacKenzie <djm@gnu.org>
23996
23997 * src/version.c: *** empty log message ***
23998
23999 * src/files.c, src/allocate.c:
24000 entered into RCS
24001
24002 * src/reader.c: *** empty log message ***
24003
24004 * src/lex.c: entered into RCS
24005
24006 * src/conflicts.c: New file.
24007
24008 * src/symtab.c: entered into RCS
24009
24010 * src/alloc.h: New file.
24011
24012 * src/LR0.c: entered into RCS
24013
240141993-04-18 Noah Friedman <friedman@gnu.org>
24015
24016 * src/reader.c: New file.
24017
24018 * src/version.c: *** empty log message ***
24019
240201993-04-18 Noah Friedman <friedman@gnu.org>
24021
24022 * Makefile.in: *** empty log message ***
24023
240241993-04-17 Noah Friedman <friedman@gnu.org>
24025
24026 * Makefile.in: *** empty log message ***
24027
240281993-04-15 Richard Stallman <rms@gnu.org>
24029
24030 * src/main.c, src/files.c:
24031 New file.
24032
240331993-04-15 Noah Friedman <friedman@gnu.org>
24034
24035 * configure.in: entered into RCS
24036
24037 * configure.in: *** empty log message ***
24038
24039 * configure.in: New file.
24040
240411993-04-14 Richard Stallman <rms@gnu.org>
24042
24043 * Makefile.in: New file.
24044
240451993-04-13 Richard Stallman <rms@gnu.org>
24046
24047 * src/version.c: New file.
24048
240491993-03-25 Richard Stallman <rms@gnu.org>
24050
24051 * src/output.c: entered into RCS
24052
240531992-09-25 Richard Stallman <rms@gnu.org>
24054
24055 * configure.bat: entered into RCS
24056
240571992-06-22 Richard Stallman <rms@gnu.org>
24058
24059 * src/vmsgetargs.c: entered into RCS
24060
240611992-06-22 Richard Stallman <rms@gnu.org>
24062
24063 * doc/bison.rnh: entered into RCS
24064
240651992-04-20 David J. MacKenzie <djm@gnu.org>
24066
24067 * README: entered into RCS
24068
240691992-01-22 Richard Stallman <rms@gnu.org>
24070
24071 * src/machine.h: entered into RCS
24072
240731991-12-21 Richard Stallman <rms@gnu.org>
24074
24075 * src/lalr.c, src/closure.c:
24076 entered into RCS
24077
240781991-12-20 Richard Stallman <rms@gnu.org>
24079
24080 * src/state.h: entered into RCS
24081
240821991-12-18 Richard Stallman <rms@gnu.org>
24083
24084 * src/print.c, src/nullable.c, src/derives.c:
24085 entered into RCS
24086
240871991-11-03 David J. MacKenzie <djm@gnu.org>
24088
24089 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
24090 entered into RCS
24091
240921988-09-09 Richard Stallman <rms@gnu.org>
24093
24094 * src/bison.hairy: entered into RCS
24095
240961987-12-16 Richard Stallman <rms@gnu.org>
24097
24098 * REFERENCES: entered into RCS
dc546b0f 24099
f294a2c2 24100
04098407 24101 -----
f294a2c2 24102
ea0a7676
JD
24103 Copyright (C) 1987-1988, 1991-2011 Free Software Foundation,
24104 Inc.
f294a2c2 24105
04098407
PE
24106 Copying and distribution of this file, with or without
24107 modification, are permitted provided the copyright notice and this
24108 notice are preserved.