]> git.saurik.com Git - bison.git/blame - ChangeLog
lr.default-reductions: rename "full" value to "most".
[bison.git] / ChangeLog
CommitLineData
a6e5a280
JD
12011-03-20 Joel E. Denny <joeldenny@joeldenny.org>
2
3 lr.default-reductions: rename "full" value to "most".
4 Unlike "consistent" and "accepting", "full" doesn't answer the
5 question of "which states".
6 * doc/bison.texinfo (%define Summary): Update.
7 (Default Reductions): Update.
8 * src/print.c (print_reductions): Update.
9 * src/reader.c (prepare_percent_define_front_end_variables):
10 Update.
11 * src/tables.c (action_row): Update.
12 * tests/input.at (%define enum variables): Update.
13 * tests/reduce.at (%define lr.default-reductions): Update.
14
49e8e901
JD
152011-03-13 Joel E. Denny <joeldenny@joeldenny.org>
16
17 * src/parse-gram.c, src/parse-gram.h: Regenerate.
18
8f462efe
AD
192011-03-09 Akim Demaille <akim@lrde.epita.fr>
20
21 named references: fix double free.
22 In `rhs[name]: "a" | "b"', do not free "name" twice.
23 Reported by Tys Lefering.
24 <http://lists.gnu.org/archive/html/bug-bison/2010-06/msg00002.html>
25 * src/named-ref.h, src/named-ref.c (named_ref_copy): New.
26 * src/parse-gram.y (current_lhs): Rename as...
27 (current_lhs_symbol): this.
28 (current_lhs): New function. Use it to free the current lhs
29 named reference.
30 * src/reader.c: Bind lhs to a copy of the current named reference.
31 * src/symlist.c: Rely on free (0) being valid.
32 * tests/named-refs.at: Test this.
33
686e83e3
AD
342011-03-09 Akim Demaille <akim@lrde.epita.fr>
35
36 tests: style changes.
37 * tests/named-refs.at (Redundant words in LHS brackets)
38 (Unresolved references): here.
39
f0e2c228
JD
402011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
41
42 java: fix parser tracing bug.
43 * NEWS (2.5): Document.
44 * data/lalr1.java (YYParser::YYStack::print): Don't skip top
45 element.
46
4c2a6e42
JD
472011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
48
49 java: finish fixing parser stack popping bug.
50 * NEWS (2.5): Document.
51 * data/lalr1.java (YYParser::YYStack::pop): Fix off-by-one error
52 in clearing the location stack. Also fix pop function that
53 accepts no arguments.
54
6f75992b
AB
552011-03-06 Angelo Borsotti <angelo.borsotti@gmail.com> (tiny change)
56
57 java: fix parser stack popping bug.
58 Reported at
59 <http://lists.gnu.org/archive/html/bug-bison/2011-02/msg00005.html>.
60 * THANKS (Angelo Borsotti): Add.
61 * data/lalr1.java (YYParser::YYStack::pop): Fix off-by-one error
62 in clearing the value stack. Previously, the top element of the
63 stack wasn't cleared and so the value was not garbage collected.
64
121c4982
JD
652011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
66
67 doc: cite publication for LAC.
68 * doc/bison.texinfo (LAC): Here.
69
5da0355a
JD
702011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
71
72 doc: clean up terminology for mysterious conflicts.
73 * doc/bison.texinfo (Mystery Conflicts): Rename node to...
74 (Mysterious Conflicts): ... this, which is already the section
75 title and the name used in the index. Update all cross-references
76 to this node. Also, don't imply that R/R conflicts are the only
77 kind of mysterious conflict.
78
d815ec4a
JD
792011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
80
81 lr.default-reductions: rename "all" value to "full".
82 States that shift the error token do not have default reductions,
83 and GLR disables some default reductions, so "all" was a misnomer.
84 * doc/bison.texinfo (%define Summary): Update.
85 (Default Reductions): Update.
86 * src/print.c (print_reductions): Update.
87 * src/reader.c (prepare_percent_define_front_end_variables):
88 Update.
89 * src/tables.c (action_row): Update.
90 * tests/input.at (%define enum variables): Update.
91 * tests/reduce.at (%define lr.default-reductions): Update.
92
6f04ee6c
JD
932011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
94
95 doc: create a new Tuning LR section in the manual.
96 And clean up all other documentation of the features described
97 there.
98 * NEWS (2.5): Tweak wording of lr.type and parse.lac entries a
99 bit, update the cross-references to the manual, and point out that
100 LAC has caveats. Don't be so adamant that IELR+LAC=canonical LR.
101 That is, as the referenced section in the manual documents, LAC
102 does not fix infinite parsing loops on syntax errors.
103 * doc/bison.texinfo: Consistently drop the "(1)" suffix from LALR,
104 IELR, and LR in @cindex.
105 (%define Summary): Condense the entries for lr.default-reductions,
106 lr.keep-unreachable-states, lr.type, and parse.lac into brief
107 summaries, and cross-reference the appropriate subsections of
108 Tuning LR. For parse.lac, mention that it's only implemented for
109 deterministic parsers in C.
110 (Error Reporting): When mentioning %error-verbose, mention LAC,
111 and add cross-reference to the LAC section.
112 (Tuning LR): New section with an extended version of the
113 documentation removed from %define Summary. Change all
114 cross-references in the manual to point here instead of there.
115 (Calc++ Parser): When mentioning %error-verbose, mention LAC, and
116 add cross-reference to the LAC section.
117 (Table of Symbols): In %error-verbose and YYERROR_VERBOSE entries,
118 add cross-references to Error Reporting.
119 (Glossary): Capitalize entry titles consistently. Add definitions
120 for "defaulted state" and "unreachable state". Expand IELR
121 acronym in IELR's entry.
122
71caec06
JD
1232011-02-20 Joel E. Denny <joeldenny@joeldenny.org>
124
125 doc: add bibliography to manual.
126 * doc/bison.texinfo (Mystery Conflicts): Cross-reference
127 bibliography instead of citing publications directly.
128 (Generalized LR Parsing): Likewise.
129 (Bibliography): New section. Not all entries are cross-referenced
130 yet, but that will come in future patches.
131
77768165
JD
1322011-02-19 Joel E. Denny <joeldenny@joeldenny.org>
133
134 java: test and document previous bug fix.
135 * NEWS (2.5): Document it.
136 * tests/java.at (_AT_DATA_JAVA_CALC_Y): To one of the yyerror
137 invocations, pass a location that spans multiple tokens. Change
138 yyerror to report all of a location rather than just the begin
139 position. Extend yylex and Position to count tokens on a line.
140 Remove getHashCode as it's unused. Update all expected output.
141
8db68289
BK
1422011-02-19 Bernd Kiefer <kiefer@dfki.de> (tiny change)
143
144 java: fix location handling bug.
145 Reported at
146 <http://lists.gnu.org/archive/html/bison-patches/2011-02/msg00005.html>.
147 * data/lalr1.java (YYParser::yylloc): For non-empty RHS, fix
148 reversed access to location stack.
149 * THANKS (Bernd Kiefer): Add.
150
f3103c5b
AD
1512010-05-11 Akim Demaille <demaille@gostai.com>
152
153 doc: please Emacs.
154 * doc/bison.texinfo (Local Variables): Move this after the
155 LocalWords, since the latter are looked for in the whole document,
156 while the former are looked for only at its end.
157 Require american spell checking.
158
406dec82
JD
1592011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
160
161 doc: clean up new subsections in manual.
162 * doc/bison.texinfo (%define Summary): Reword so it reads well as
163 a separate section. For example, add an intro, and move most of
164 the text outside of the @deffn so it is not indented so far.
165 (%code Summary): Likewise.
166 (Table of Symbols): Reword %code entry to match the %code entry in
167 Decl Summary.
168
2f4518a1
JD
1692011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
170
171 doc: finish splitting apart the manual's Decl Summary section.
172 Suggested by Akim Demaille at
173 <http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00013.html>.
174 * doc/bison.texinfo (Decl Summary): Extract most of the %define
175 entry into...
176 (%define Summary): ... this new subsection, and update all
177 cross-references. For readability of the patches, rewriting of
178 the text so it makes sense as a separate subsection will come in a
179 later patch. Moreover, the majority of the text describing the
180 various new LR features should likely move to another new section
181 somewhere.
182
8e6f2266
JD
1832011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
184
185 doc: begin to split apart the manual's Decl Summary section.
186 Discussed in thread starting at
187 <http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00013.html>.
188 * doc/bison.texinfo (Decl Summary): Extract most of the %code
189 entry into...
190 (%code Summary): ... this new subsection, and update all
191 cross-references. For readability of the patches, rewriting of
192 the text so it makes sense as a separate subsection will come in a
193 later patch.
194
9913d6e4
JD
1952011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
196
197 doc: clean up naming of various Bison files.
198 The Bison manual's names for various files associated with a Bison
199 parser has devolved into inconsistency. This patch makes the
200 naming consistent for the most important files. First, it chooses
201 "grammar file" over "input file". The former appears to be more
202 traditional in the Bison manual, and Bison has other input
203 files (skeletons). Second, it chooses "parser implementation
204 file" over names like "parser file", "parser source file", "parser
205 source code file", and "parser output file". The new name makes
206 it clearer where Bison generates the main parser implementation,
207 and it is easily distinguishable from "parser header file".
208 * doc/bison.texinfo: Implement throughout.
209
840341d6
JD
2102011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
211
212 doc: give credit to more of Bison's developers.
213 * doc/bison.texinfo (Introduction): Don't imply that only Robert
214 Corbett, Richard Stallman, and Wilfred Hansen have contributed to
215 Bison. However, I don't have time to write a full history, so
216 just point readers to THANKS and ChangeLog.
217
d89e48b3
JD
2182011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
219
220 doc: document experimental features better.
221 * doc/bison.texinfo (Introduction): Say that IELR(1) and canonical
222 LR(1) are experimental. Mention Java. Normally experimental
223 features probably shouldn't be mentioned in the introduction.
224 However, if Bison's limitations to LALR(1), C, and C++ are so
225 important that they should be mentioned here, then it's important
226 to point out that Bison is beginning to escape those limitations.
227 Moreover, these particular experimental features have very little
228 chance of being removed.
229 * src/getargs.c (usage): Say that IELR(1) and canonical LR(1) are
230 experimental.
231
eb8c66bb
JD
2322011-01-29 Joel E. Denny <joeldenny@joeldenny.org>
233
234 Do not allow identifiers that start with a dash.
235 This cleans up our previous fixes for a bug whereby Bison
236 discarded `.field' in `$-1.field'. The previous fixes were less
237 restrictive about where a dash could appear in an identifier, but
238 the restrictions were hard to explain. That bug was reported and
239 this final fix was originally suggested by Paul Hilfinger. This
240 also fixes a remaining bug reported by Paul Eggert whereby Bison
241 parses `%token ID -123' as `%token ID - 123' and handles `-' as an
242 identifier. Now, `-' cannot be an identifier. Discussed in
243 threads beginning at
244 <http://lists.gnu.org/archive/html/bug-bison/2011-01/msg00000.html>,
245 <http://lists.gnu.org/archive/html/bug-bison/2011-01/msg00004.html>.
246 * NEWS (2.5): Update entry describing the dash extension to
247 grammar symbol names. Also, move that entry before the named
248 references entry because the latter mentions the former.
249 * doc/bison.texinfo (Symbol): Update documentation for symbol
250 names. As suggested by Paul Eggert, mention the effect of periods
251 and dashes on named references.
252 (Decl Summary): Update documentation for unquoted %define values,
253 which, as a side effect, can no longer start with dashes either.
254 * src/scan-code.l (id): Implement.
255 * src/scan-gram.l (id): Implement.
256 * tests/actions.at (Exotic Dollars): Extend test group to exercise
257 bug reported by Paul Hilfinger.
258 * tests/input.at (Symbols): Update test group, and extend to
259 exercise bug reported by Paul Eggert.
260 * tests/named-refs.at (Stray symbols in brackets): Update test
261 group.
262 ($ or @ followed by . or -): Likewise.
263 * tests/regression.at (Invalid inputs): Likewise.
264
448dc38b
JD
2652011-01-24 Joel E. Denny <joeldenny@joeldenny.org>
266
267 * data/yacc.c: Fix last apostrophe warning from xgettext.
268
7e5ef706
PE
2692011-01-09 Paul Eggert <eggert@cs.ucla.edu>
270
271 Fix minor problems encountered by a fresh bootstrap.
272 * data/glr.c, data/yacc.c: Do not use apostrophes in '#' comments,
273 as they confuse xgettext, which tries to parse them as C character
274 constants in a preprocessor directive.
275 * data/yacc.c (yy_lac): Don't use printf %d format on *yyesp, as
276 that expression might not promote to int on some platforms.
277 * src/parse-gram.c, src/parse-gram.h: Regenerate.
278
8cbbf178
JD
2792011-01-09 Joel E. Denny <joeldenny@joeldenny.org>
280
281 Improve error messages for `$' or `@' followed by `.' or `-'.
282 Previously, for this special case of an invalid reference, the
283 usual "symbol not found in production:" was printed. However,
284 because the symbol name was parsed as the empty string, that
285 message was followed immediately by a newline instead of a symbol
286 name. In reality, this is a syntax error, so the reference is
287 invalid regardless of the symbols actually appearing in the
288 production. Discussed at
289 <http://lists.gnu.org/archive/html/bison-patches/2011-01/msg00012.html>.
290 * src/scan-code.l (parse_ref): Report the above case as a syntax
291 error. Other than that, continue to handle this case like any
292 other invalid reference that Bison manages to parse because
293 "possibly meant" messages can still be helpful to the user.
294 * tests/named-refs.at ($ or @ followed by . or -): New test group.
295
35430378
JD
2962011-01-08 Joel E. Denny <joeldenny@joeldenny.org>
297
298 doc: don't use @acronym.
299 Lately, many GNU packages are dropping it. See
300 <http://lists.gnu.org/archive/html/bison-patches/2011-01/msg00003.html>.
301 * doc/bison.texinfo: Remove all uses.
302
d236ad94
AR
3032011-01-05 Alex Rozenman <rozenman@gmail.com>
304
305 Do not allow identifiers that start with a negative number.
306 Reported by Paul Hilfinger as a side effect of named references
307 support at
308 <http://lists.gnu.org/archive/html/bug-bison/2011-01/msg00000.html>.
309 Suggested by Paul Eggert.
310 * src/scan-code.l ({letter}, {id}): Adjust lexical definitions.
311 * src/scan-gram.l ({letter}, {id}): Likewise.
312
9a4292e5
JD
3132011-01-03 Joel E. Denny <joeldenny@joeldenny.org>
314
315 * ChangeLog (2011-01-02): improve description.
316
17300e83
JD
3172011-01-03 Joel E. Denny <joeldenny@joeldenny.org>
318
319 maint: don't update copyright years in bootstrap.
320 * .x-update-copyright: Add entry for bootstrap.
321 * bootstrap: Remove 2011 from copyright years. The bootstrap
322 version we're currently using comes from an older version of
323 gnulib.
324 * bootstrap.conf (bootstrap_sync): Add comments explaining this
325 issue.
326
ea0a7676
JD
3272011-01-02 Joel E. Denny <joeldenny@joeldenny.org>
328
329 maint: run "make update-copyright".
330
f52e1e5e
JD
3312011-01-02 Joel E. Denny <joeldenny@joeldenny.org>
332
9a4292e5 333 maint: prepare to use year ranges in copyright notices.
f52e1e5e 334 * README (Copyright statements): New section explaining the range
9a4292e5
JD
335 notation. The GNU maintainers document requires this explanation:
336 <http://www.gnu.org/prep/maintain/maintain.html#Copyright-Notices>.
337 I copied our explanation from coreutils.
f52e1e5e
JD
338 * build-aux/update-b4-copyright: Revert 2010-06-17 changes that
339 disabled Bison's automated use of ranges.
340 * cfg.mk (update-copyright-env): Likewise.
341
210c1eef
JD
3422011-01-02 Joel E. Denny <joeldenny@joeldenny.org>
343
344 Correct my email address.
345 * ChangeLog: In all recent entries.
346 * THANKS (Joel E. Denny): Here.
347
3482010-12-19 Joel E. Denny <joeldenny@joeldenny.org>
6ee881f6
JD
349
350 doc: cleanup.
351 * NEWS (2.5): Try to sort entries according to how interesting
352 users might find them.
353
210c1eef 3542010-12-19 Joel E. Denny <joeldenny@joeldenny.org>
3b1977ea
JD
355
356 doc: cleanup.
357 * NEWS (2.5): Make some minor improvements to wording, and format
358 entries more consistently.
359 * doc/bison.texinfo (Language and Grammar): Point out that IELR
360 and canonical LR are experimental features.
361 (Decl Summary): In list of %define variables, make wording more
362 consistent. Improve discussion of using LALR for GLR.
363
210c1eef 3642010-12-19 Joel E. Denny <joeldenny@joeldenny.org>
4c38b19e
JD
365
366 parse.lac: document.
367 * NEWS (2.5): Add entry for LAC, and mention LAC in entry for
368 other corrections to verbose syntax error messages.
369 * doc/bison.texinfo (Decl Summary): Rewrite entries for
370 lr.default-reductions and lr.type to be clearer, to mention
371 %nonassoc's effect on canonical LR, and to mention LAC. Add entry
372 for parse.lac.
373 (Glossary): Add entry for LAC.
374
210c1eef 3752010-12-11 Joel E. Denny <joeldenny@joeldenny.org>
723fe7d1
JD
376
377 parse.lac: implement exploratory stack reallocations.
378 * data/yacc.c: Rename %define variable parse.lac.es-capacity to
379 parse.lac.es-capacity-initial. Accept parse.lac.memory-trace
380 with values of "failures" (default) or "full".
381 (b4_declare_parser_state_variables): Add yyesa, yyes, and
382 yyes_capacity variables.
383 (YYSTACK_USE_ALLOCA): Ignore it if LAC requested.
384 (YYSTACK_ALLOC, YYSTACK_FREE, YYSTACK_ALLOC_MAXIMUM): Define if
385 LAC requested.
386 (YYCOPY_NEEDED): New cpp macro.
387 (YYCOPY): Define if LAC requested.
388 (yy_lac_stack_realloc): New function implementing stack
389 reallocations. Use YYMAXDEPTH for maximum stack size given that
390 the stack should never need to grow larger than the main state
391 stack needs to grow without LAC.
392 (YY_LAC_ESTABLISH): Update yy_lac invocation.
393 (yy_lac): Add arguments for exploratory stack memory data
394 recorded in the main parser. Invoke yy_lac_stack_realloc when
395 reallocation is necessary.
396 (yysyntax_error): Add the same new arguments and pass them to
397 yy_lac.
398 (yypstate_delete): Free yyes if necessary.
399 (yyesa, yyes, yyes_capacity): #define these to yypstate members
400 in the case of push parsing.
401 (yyparse, yypush_parse): Initialize yyes and yyes_capacity.
402 Update yysyntax_error invocations. At yyreturn, free yyes if
403 necessary.
404 * src/parse-gram.y: %define parse.lac full.
405 * tests/input.at (LAC: errors for %define): Extend for
406 parse.lac-memory-trace.
407 * tests/regression.at (LAC: Exploratory stack): Extend to check
408 that stack reallocs happen when expected.
409 (LAC: Memory exhaustion): Update to use YYMAXDEPTH and
410 parse.lac.es-capacity-initial.
411
210c1eef 4122010-12-11 Joel E. Denny <joeldenny@joeldenny.org>
ea13bea8
JD
413
414 parse.lac: implement as %define variable.
415 LAC = lookahead correction. See discussion at
416 <http://lists.gnu.org/archive/html/bison-patches/2009-09/msg00034.html>.
417 However, one point there must be corrected: because of %nonassoc,
418 LAC is *not* always redundant for lr.type=canonical-lr.
419 * data/yacc.c: Accept values of "none" (default) or "full" for
420 parse.lac. Accept %define parse.lac.es-capacity to specify
421 capacity of LAC's temporary exploratory stack. It defaults to 20
422 and, for now, will not grow dynamically.
423 (b4_lac_flag, b4_lac_if): New m4 macros. Evaluate as true for
424 parse.lac!=none.
425 (YYBACKUP): Invoke YY_LAC_DISCARD.
426 (YY_LAC_ESTABLISH, YY_LAC_DISCARD): New cpp macros that invoke
427 yy_lac and track when it needs to be invoked
428 (yy_lac): New function that, given the current stack, determines
429 whether a token can eventually be shifted. Return status mimics
430 yyparse return status.
431 (yysyntax_error): Change yystate argument to yyssp so stack top
432 can be passed to yy_lac. If LAC is requested, build expected
433 token list by invoking yy_lac for every token instead of just
434 checking the current state for lookaheads. Return 2 if yy_lac
435 exhausts memory.
436 (yyparse, yypush_parse): Use local variable yy_lac_established and
437 cpp macros YY_LAC_ESTABLISH and YY_LAC_DISCARD to implement LAC.
438 Update yysyntax_error invocation. Add yyexhaustedlab code if LAC
439 is requested.
440 * tests/conflicts.at (%nonassoc and eof): Extend to check the
441 effect of each of -Dlr.type=canonical-lr and -Dparse.lac=full.
442 (%error-verbose and consistent errors): Likewise.
443 (LAC: %nonassoc requires splitting canonical LR states): New test
444 group demonstrating how LAC can fix canonical LR.
445 * tests/input.at (LAC: Errors for %define): New test group.
446 * tests/regression.at (LAC: Exploratory stack): New test group.
447 (LAC: Memory exhaustion): New test group.
448
210c1eef 4492010-11-21 Joel E. Denny <joeldenny@joeldenny.org>
dcd39f1d
JD
450
451 build: use gnulib's new bootstrap_sync option.
452 Now, whenever we update bison's copy of gnulib, bootstrap will
453 update itself the next time it's run.
454 * bootstrap: Copy from latest gnulib for bootstrap_sync support.
455 * bootstrap.conf (bootstrap_sync): Set to true.
456 * gnulib: Update to latest so bootstrap is in sync now.
457
210c1eef 4582010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
3b837882
JD
459
460 yysyntax_error: adjust prior fixes for branch-2.5's lalr1.cc.
461 On master, there is no yychar in lalr1.cc, but there is on
462 branch-2.5, and the prior cherry-pick of "Fix handling of yychar
463 manipulation in user semantic actions" wasn't adjusted for that
464 difference.
465 * data/lalr1.cc (yy::parser::parse): Translate yychar before
466 every use of yytoken, and add comments explaining this approach.
467 * tests/conflicts.at (%error-verbose and consistent errors):
468 Extend to test yychar manipulation with lalr1.cc.
469
210c1eef 4702010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
095a1d11
JD
471
472 yysyntax_error: fix for consistent error with lookahead.
473 * NEWS (2.5): Document.
474 * data/yacc.c (yysyntax_error): In a verbose syntax error
475 message while in a consistent state with a default action (which
476 must be an error action given that yysyntax_error is being
477 invoked), continue to drop the expected token list, but don't
478 drop the unexpected token unless there actually is no lookahead.
479 Moreover, handle that internally instead of returning 1 to tell
480 the caller to do it. With that meaning of 1 gone, renumber
481 return codes more usefully.
482 (yyparse, yypush_parse): Update yysyntax_error usage. Most
483 importantly, set yytoken to YYEMPTY when there's no lookahead.
484 * data/glr.c (yyreportSyntaxError): As in yacc.c, don't drop the
485 unexpected token unless there actually is no lookahead.
486 * data/lalr1.cc (yy::parser::parse): If there's no lookahead,
487 set yytoken to yyempty_ before invoking yysyntax_error_.
488 (yy::parser::yysyntax_error_): Again, don't drop the unexpected
489 token unless there actually is no lookahead.
490 * data/lalr1.java (YYParser::parse): If there's no lookahead,
491 set yytoken to yyempty_ before invoking yysyntax_error.
492 (YYParser::yysyntax_error): Again, don't drop the unexpected
493 token unless there actually is no lookahead.
494 * tests/conflicts.at (%error-verbose and consistent
495 errors): Extend test group to further reveal how the previous
496 use of the simple "syntax error" message was too general. Test
497 yacc.c, glr.c, lalr1.cc, and lalr1.java. No longer an expected
498 failure.
499 * tests/java.at (AT_JAVA_COMPILE, AT_JAVA_PARSER_CHECK): Move
500 to...
501 * tests/local.at: ... here.
502 (_AT_BISON_OPTION_PUSHDEFS): Push AT_SKEL_JAVA_IF definition.
503 (AT_BISON_OPTION_POPDEFS): Pop it.
504 (AT_FULL_COMPILE): Extend to handle Java.
505
210c1eef 5062010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
678094a2
JD
507
508 yysyntax_error: more preparation for readability of next patch.
509 There are no behavioral changes here.
510 * data/glr.c (yyreportSyntaxError): Reorganize.
511 * data/lalr1.cc (yy::parser::yysyntax_error_): Reorganize.
512 * tests/conflicts.at (%error-verbose and consistent errors):
513 Reorganize.
514
210c1eef 5152010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
f953cb20
JD
516
517 yysyntax_error: prepare for readability of next patches.
518 These are purely whitespace changes that result in ugly code
519 but that make the next couple of patches much easier to read.
520 * data/glr.c (yyreportSyntaxError): Reindent.
521 * data/lalr1.cc (yy::parser::yysyntax_error_): Reindent.
522 * data/lalr1.java (YYParser::yysyntax_error): Reindent.
523 * data/yacc.c (yysyntax_error): Reindent.
524
0e0f066b
JD
5252010-10-31 Joel E. Denny <joeldenny@joeldenny.org>
526
527 yysyntax_error: improve invocation readability.
528 * data/yacc.c (yyparse, yypush_parse): For yysyntax_error
529 invocation, get rid of the while loop, which is misleading
530 because there are really at most two iterations.
531
5f1485d8
JD
5322010-10-31 Joel E. Denny <joeldenny@joeldenny.org>
533
534 * ChangeLog: Correct some errors in previous entries.
535
2f3fd8f9
JD
5362010-10-17 Joel E. Denny <joeldenny@joeldenny.org>
537
538 maint: re-anchor all .gitignore entries.
539 * bootstrap: Copy from gnulib's latest for the fix to
540 automatically anchor entries it constructs.
541 * gnulib: Update to latest just so it has the same bootstrap.
542 * .gitignore, build-aux/.gitignore, doc/.gitignore:
543 * lib/.gitignore, m4/.gitignore, po/.gitignore:
544 * runtime-po/.gitignore: Re-anchor all entries.
545
86996fca
PE
5462010-10-08 Paul Eggert <eggert@cs.ucla.edu>
547
ea6046b9
PE
548 Fix portability problem on OpenBSD 4.7.
549
550 Jim Meyering reported this in
551 <http://lists.gnu.org/archive/html/bug-bison/2010-10/msg00007.html>.
552 * data/yacc.c: Use EXIT_SUCCESS as a witness for stdlib.h,
553 not _STDLIB_H. EXIT_SUCCESS has been defined by the standard
554 for quite some time.
555 * src/parse-gram.c, src/parse-gram.h: Regenerate.
556 * tests/regression.at: Tamper with the renamed witness.
557
86996fca
PE
558 Adjust to recent changes to gnulib bootstrap.
559
560 * .cvsignore, build-aux/.cvsignore, doc/.cvsignore, etc/.cvsignore:
561 * examples/calc++/.cvsignore, lib/.cvsignore, m4/.cvsignore:
562 * po/.cvsignore, runtime-po/.cvsignore, src/.cvsignore:
563 * tests/.cvsignore: Remove; I don't use CVS to maintain Bison
564 anymore and don't know of anybody else who does. If someone needs
565 these files, they can resurrect them.
566 * .gitignore, build-aux/.gitignore, doc/.gitignore, lib/.gitignore:
567 * m4/.gitignore, po/.gitignore, runtime-po/.gitignore:
568 Omit leading '/', since bootstrap omits it.
569 Adjust file names to match current contents better.
570 * bootstrap: Sync from gnulib: this contains the new gnulib_mk_hook
571 installed just for us.
572 * bootstrap.conf (excluded_files): Don't exclude codeset.m4,
573 glibc21.m4, inttypes_h.m4, size_max.m4, xsize.m4, as they are now
574 needed somehow. Don't have time to look into why.
575 (gnulib_modules): Change malloc to malloc-gnu. Do we really assume
576 the GNU malloc behavior, where malloc (0) != NULL unless we're
577 out of storage? If not, we can omit malloc-gnu; but for now I left
578 it in to be safe.
579 (vc_ignore): Remove.
580 * README-hacking: Renamed from HACKING, since gnulib bootstrap now
581 uses that convention.
582
7527c744
JD
5832010-08-05 Joel E. Denny <joeldenny@joeldenny.org>
584
585 Version 2.4.3.
586 * NEWS (2.4.3): Set date.
587
d034d520
JD
5882010-08-04 Joel E. Denny <joeldenny@joeldenny.org>
589
590 maint: add gettext version to release announcements.
591 Suggested by Paul Hilfinger at
592 <http://lists.gnu.org/archive/html/bison-patches/2010-07/msg00019.html>
593 <http://lists.gnu.org/archive/html/bison-patches/2010-08/msg00002.html>.
594 * cfg.mk (bootstrap-tools): Add gettext.
595
cf22447c
JD
5962010-08-04 Joel E. Denny <joeldenny@joeldenny.org>
597
598 doc: fix -W and %expect documentation some.
599 * NEWS (2.4.3): Mention that there are documentation fixes.
600 * doc/bison.texinfo (Expect Decl): Make it clear that %expect
601 turns conflicts into errors not warnings.
602 (Shift/Reduce): Likewise.
603 (Bison Options): Don't mention -Wsyntax. It doesn't exist.
604
4631c34f
JD
6052010-08-01 Joel E. Denny <joeldenny@joeldenny.org>
606
607 -Werror: fix for rules useless in parser after conflicts.
608 * NEWS (2.4.3): Document fix.
609 * src/complain.c (error_message): Extend to handle incomplete
610 error messages so warn and warn_at can be used in more cases.
611 * src/gram.c (grammar_rules_useless_report): Use warn_at so that
612 -Werror is always obeyed.
613 * src/reduce.c (reduce_print): Use warn so that the "warnings
614 being treated as errors" message is printed consistently before
615 the first warning message. This makes testing easier.
616 * tests/local.at (AT_BISON_WERROR_MSG): New macro.
617 (AT_BISON_CHECK_NO_XML): Extend to check -Werror and
618 --warnings=error when warnings appear in bison's stderr.
619
3e948170
JD
6202010-07-29 Joel E. Denny <joeldenny@joeldenny.org>
621
622 maint: enable gnits only at stable releases.
623 * configure.ac (AM_INIT_AUTOMAKE): Underscore or dash in a
624 version string should disable gnits. Explain in comments.
625
82df2d6d
JD
6262010-07-28 Joel E. Denny <joeldenny@joeldenny.org>
627
628 i18n: update.
629 * po/POTFILES.in: Add src/graphviz.c.
630
6e0ecb9a
JD
6312010-07-28 Joel E. Denny <joeldenny@joeldenny.org>
632
633 i18n: fix for gnulib.
634 * po/POTFILES.in: Add remaining gnulib files that have
635 translatable strings.
636
83e34842
JD
6372010-07-25 Joel E. Denny <joeldenny@joeldenny.org>
638
639 maint: use announce-gen's new --mail-headers.
640 * HACKING (Announce): Update instructions.
641 * cfg.mk (announcement_Cc_): Define.
642 * configure.ac (AM_GNU_GETTEXT_VERSION): Update to 0.18 as
643 required by latest gnulib.
644 * gnulib: Update to latest.
645
0162a44c
JD
6462010-07-24 Joel E. Denny <joeldenny@joeldenny.org>
647
648 tests: handle Valgrind that complains about >&-.
649 * tests/output.at (AT_CHECK_OUTPUT): Extend to accept pre-tests.
650 (Output files: -dv >&-): Skip test group if running
651 maintainer-check-valgrind.
652
241ac701
AD
6532010-06-17 Paul Eggert <eggert@cs.ucla.edu>
654
655 Update from GFDL GFDL 1.2 to 1.3.
656 * doc/bison.texinfo: Update GFDL version number.
657 * doc/fdl.texi: Update to version 1.3, taken from:
658 http://www.gnu.org/licenses/fdl.texi
659
6e30ede8
PE
6602010-06-17 Paul Eggert <eggert@cs.ucla.edu>
661
662 Do not use date ranges in copyright notices.
663 See http://www.gnu.org/prep/maintain/maintain.html#Copyright-Notices
664
665 * HACKING, Makefile.am, NEWS, PACKAGING, README, README-alpha:
666 * TODO, bootstrap, bootstrap.conf:
667 * build-aux/update-b4-copyright, cfg.mk, configure.ac:
668 * data/README, data/bison.m4, data/c++-skel.m4, data/c++.m4:
669 * data/c-skel.m4, data/c.m4, data/glr.c, data/glr.cc:
670 * data/java-skel.m4, data/java.m4, data/lalr1.cc:
671 * data/lalr1.java, data/location.cc:
672 * data/xslt/bison.xsl:
673 * data/xslt/xml2dot.xsl, data/xslt/xml2text.xsl:
674 * data/xslt/xml2xhtml.xsl, data/yacc.c, djgpp/Makefile.maint:
675 * djgpp/README.in, djgpp/config.bat, djgpp/config.sed:
676 * djgpp/config.site, djgpp/config_h.sed, djgpp/djunpack.bat:
677 * djgpp/subpipe.c, djgpp/subpipe.h:
678 * djgpp/testsuite.sed, doc/bison.texinfo:
679 * doc/refcard.tex, etc/README, etc/bench.pl.in:
680 * examples/calc++/Makefile.am, examples/extexi:
681 * lib/abitset.c, lib/abitset.h:
682 * lib/bbitset.h, lib/bitset.c, lib/bitset.h:
683 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
684 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
685 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
686 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
687 * lib/libiberty.h, lib/main.c, lib/timevar.c:
688 * lib/timevar.def, lib/timevar.h, lib/vbitset.c:
689 * lib/vbitset.h, lib/yyerror.c, m4/bison-i18n.m4:
690 * m4/c-working.m4, m4/cxx.m4, m4/subpipe.m4, m4/timevar.m4:
691 * src/AnnotationList.c, src/AnnotationList.h:
692 * src/InadequacyList.c, src/InadequacyList.h, src/LR0.c:
693 * src/LR0.h, src/Sbitset.c, src/Sbitset.h, src/assoc.c:
694 * src/assoc.h, src/closure.c, src/closure.h, src/complain.c:
695 * src/complain.h, src/conflicts.c, src/conflicts.h:
696 * src/derives.c, src/derives.h, src/files.c, src/files.h:
697 * src/flex-scanner.h, src/getargs.c, src/getargs.h:
698 * src/gram.c, src/gram.h, src/graphviz.c, src/ielr.c:
699 * src/ielr.h, src/lalr.c, src/lalr.h:
700 * src/location.c, src/location.h, src/main.c:
701 * src/muscle-tab.c, src/muscle-tab.h, src/named-ref.c:
702 * src/named-ref.h, src/nullable.c, src/nullable.h:
703 * src/output.c, src/output.h, src/parse-gram.y:
704 * src/print-xml.c, src/print-xml.h, src/print.c, src/print.h:
705 * src/print_graph.c, src/print_graph.h, src/reader.c:
706 * src/reader.h, src/reduce.c, src/reduce.h, src/relation.c:
707 * src/relation.h, src/scan-code.h, src/scan-code.l:
708 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
709 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
710 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
711 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
712 * tests/actions.at, tests/atlocal.in, tests/c++.at:
713 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
714 * tests/existing.at, tests/glr-regression.at:
715 * tests/headers.at, tests/input.at, tests/java.at:
716 * tests/local.at, tests/named-refs.at:
717 * tests/output.at, tests/push.at, tests/reduce.at:
718 * tests/regression.at, tests/sets.at, tests/skeletons.at:
719 * tests/synclines.at, tests/testsuite.at, tests/torture.at:
720 * data/Makefile.am, data/location.cc, doc/Makefile.am, src/Makefile.am:
721 * tests/Makefile.am, lib/Makefile.am, examples/Makefile.am:
722 * etc/Makefile.am:
723 Don't use date ranges in copyright notices.
724
3d4a0cad
AD
7252010-05-11 Akim Demaille <demaille@gostai.com>
726
727 lalrl1.cc: give a chance to user defined YYLLOC_DEFAULT.
728 * data/lalr1.cc (YYLLOC_DEFAULT): Move its definition from the
729 header file to the implementation file, after the user %code
730 sections.
731 * NEWS (2.5): Document this.
732
e7bab2df
AD
7332010-05-07 Akim Demaille <demaille@gostai.com>
734
735 c++: use YYRHSLOC.
736 * data/lalr1.cc (YYRHSLOC): New.
737 (YYLLOC_DEFAULT): Use it.
738 * data/glr.cc: If location_type was user defined, do not include
739 location.hh, and do not produce location.hh and position.hh.
740 * tests/calc.at (YYLLOC_DEFAULT): Use YYRHSLOC.
741 Check that glr.cc supports user defined location_type.
742 * NEWS: Document this.
743
baacae49
AD
7442010-05-10 Akim Demaille <demaille@gostai.com>
745
746 doc: fix lalr1.cc documentation.
747 * doc/bison.texinfo (C++ Scanner Interface): Fix yylex signature.
748 (C++ Bison Interface): Fix lalr1.cc skeleton name.
749 (C++ Parser Interface): Fix semantic_type and location_type names.
750 Document yy::parser::token.
751 Reported by Jerry Quinn.
752
95a2de56
AD
7532010-05-04 Akim Demaille <demaille@gostai.com>
754
755 lalr1.cc: don't generate location.hh when location_type is defined
756 * data/bison.m4 (b4_percent_define_use): New.
757 (b4_percent_define_get): Use it.
758 Accept a default value.
759 * data/c++.m4: Do not provide a default value for the %define
760 variable location_type, rather, use b4_percent_define_get with a
761 default argument where its value is needed.
762 * data/lalr1.cc: Do not load location.cc (which outputs both
763 location.hh and position.hh) if the user defined location_type.
764 Do not include location.hh either.
765 * data/glr.cc: Likewise.
766
0f404a0a
AD
7672010-05-04 Akim Demaille <demaille@gostai.com>
768
769 lalr1.cc: location_type: make sure we don't depend on loc.(begin|end).
770 * tests/calc.at (Span): Instead of begin/end, as in the built-in
771 location class, use first and last.
772 Define YYLLOC_DEFAULT to adjust to these changes.
773 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Adjust to the
774 location_type changes.
775
bdc360ae
AD
7762010-05-04 Akim Demaille <demaille@gostai.com>
777
778 tests: enhance AT_SYNCLINES_COMPILE.
779 * tests/synclines.at (AT_TEST_SYNCLINE): Move GCC 4.5 protection
780 into...
781 (AT_SYNCLINES_COMPILE): here.
782 Add more distcc patterns.
783
ca7a59e8
JD
7842010-05-01 Joel E. Denny <joeldenny@joeldenny.org>
785
786 tests: fix maintainer-xml-check.
787 * data/xslt/xml2dot.xsl (xsl:template match="bison-xml-report"):
788 Update output to include comments now produced by --graph.
789 (xsl:template match="automaton"): As for --graph, name the
790 digraph after the grammar file.
791 * src/print-xml.c (escape_bufs): Enlarge array.
792 (print_xml): Add bug-report and url attributes to
793 bison-xml-report element.
794
ad6f84e5
JD
7952010-05-01 Joel E. Denny <joeldenny@joeldenny.org>
796
797 In DOT output, convert from "/*" comments to "//" comments.
798 This handles the possibility that a "*/" might appear in
799 variable portions of those comments at some point in the future.
800 * src/graphviz.c (start_graph): Implement.
801
43fdc9fd
JD
8022010-04-30 Joel E. Denny <joeldenny@joeldenny.org>
803
804 Document that undefined %prec identifier warnings will remain.
805 * NEWS (2.4.3): Here.
806 (2.4.2): Here.
807
e02df72c
JD
8082010-04-30 Joel E. Denny <joeldenny@joeldenny.org>
809
810 Revert 2009-12-30 change for undefined %prec token complaints.
811 That is, keep them as warnings because that should be sufficient
812 to satisfy POSIX without creating backward compatibility issues.
813 Suggested by Richard Stallman at
814 <http://lists.gnu.org/archive/html/bison-patches/2010-03/msg00033.html>.
815 * NEWS (2.5): Remove mention of complaint.
21279295
JD
816 * src/reader.c (grammar_rule_check): Convert complaint back to
817 warning.
e02df72c
JD
818 * tests/input.at (%prec's token must be defined): Update.
819
ba3063f6
JD
8202010-04-25 Joel E. Denny <joeldenny@joeldenny.org>
821
822 build: don't require src/bison during bootstrap.
823 Suggested by Eric Blake at
824 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00003.html>.
825 * bootstrap.conf (bootstrap_epilogue): New function to make sure
826 src/parse-gram.[ch] are stamped later than src/parse-gram.y.
827
e0fda26c
JD
8282010-04-25 Joel E. Denny <joeldenny@joeldenny.org>
829
830 i18n: fix untranslatable string.
831 Reported by Goran Uddeborg at
832 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00000.html>.
833 * src/muscle-tab.c (muscle_percent_define_insert): Here.
834
ecbca7db
AD
8352010-04-13 Akim Demaille <demaille@gostai.com>
836
837 tests: calc: minor refactoring.
838 * tests/calc.at (_AT_DATA_CALC_Y): Simplify yylex.
839
ed228e60
AD
8402010-04-13 Akim Demaille <demaille@gostai.com>
841
842 tests: calc: simplify location management.
843 * tests/local.at (AT_LOC_PUSHDEF, AT_LOC_POPDEF): New.
844 (_AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS): Use them to
845 define the appropriate AT_LOC accessors.
846 * tests/calc.at: Use AT_LOC accessors.
847
cacfdef7
AD
8482010-04-13 Akim Demaille <demaille@gostai.com>
849
850 test location_type.
851 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS):
852 Define AT_LOCATION_TYPE_IF.
853 (_AT_BISON_OPTION_POPDEFS): Undefine AT_LOCATION_TYPE_IF.
854 * tests/calc.at (_AT_DATA_CALC_Y): When %define location_type is
855 used, provide a user location type and use it.
856 (Simple LALR1 C++ Calculator): Add a test case for location_type.
857
2f61c4a2
AD
8582010-04-13 Akim Demaille <demaille@gostai.com>
859
860 tests: check fclose's return value.
861 * tests/calc.at (_AT_DATA_CALC_Y): Check fclose's return status.
862
16d9244d
AD
8632010-04-13 Akim Demaille <demaille@gostai.com>
864
865 tests: don't depend on the actual location type.
866 * tests/calc.at: Use yy::parser::location_type rather than
867 yy::location, since the former is always right, and might point to
868 another type than the latter.
869
3e4a253b
AD
8702010-04-13 Akim Demaille <demaille@gostai.com>
871
872 formatting changes.
873 * tests/calc.at: Formatting changes.
874
df5df58d
AD
8752010-04-13 Akim Demaille <demaille@gostai.com>
876
877 lalr1.cc: remove useless forward declaration.
878 * data/lalr1.cc: Include location.hh before stack.hh.
879 Remove the useless forward declarations of position and location.
880 Reported by Chris Morley.
881 * data/glr.cc: Likewise.
882
88bb35d6
JD
8832010-04-11 Joel E. Denny <joeldenny@joeldenny.org>
884
885 * NEWS (2.4.3): Mention fix for Sun Studio C++.
886
585ef2eb
JD
8872010-04-10 Joel E. Denny <joeldenny@joeldenny.org>
888
889 tests: fix for newer Sun Studio C++.
890 Reported by Dagobert Michelsen at
891 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00023.html>.
892 * THANKS (Dagobert Michelsen): Add.
893 * configure.ac (AC_PREREQ): Set to 2.64 so we get the latest
894 Autoconf macro for handling the restrict keyword.
895 * gnulib: Update to latest, which no longer overrides that macro
896 from Autoconf.
897
a005dbcb
JD
8982010-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
899
900 portability: fix pointer arithmetic to conform to C standard.
901 Reported by Tys Lefering at
902 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00035.html>.
903 This fix is already implemented in glr.c and does not apply to
904 lalr1.java.
905 * data/lalr1.cc (yy::parser::parse): Increase size of
906 yyerror_range and adjust subscripting so you don't have to
907 subtract one from the beginning of the array.
908 * data/yacc.c (b4_declare_parser_state_variables,
909 yyparse, yypush_parse): Likewise.
910
8a8b33e8
AD
9112010-04-05 Akim Demaille <demaille@gostai.com>
912
913 remove useless include.
914 * src/graphviz.h: Don't include stdbool.h.
915
a0279765
AD
9162010-04-05 Akim Demaille <demaille@gostai.com>
917
918 graph: sign the output file.
919 * src/graphviz.c (start_graph): Issue comments about Bison.
920 Suggested by Tys Lefering.
921
132247cd
JD
9222010-03-31 Joel E. Denny <jdenny@ces.clemson.edu>
923
924 portability: fix test suite for GCC 4.5's new #error message.
925 Reported by Tys Lefering at
926 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00030.html>.
927 * NEWS (2.4.3): Mention.
928 * tests/synclines.at (AT_TEST_SYNCLINE): Implement.
929
c0259969
AD
9302010-03-30 Akim Demaille <demaille@gostai.com>
931
932 fix comments.
933 * src/graphviz.h: Add missing license notice.
934 Document.
935
23761f42
AD
9362010-03-25 Akim Demaille <demaille@gostai.com>
937
938 tests: fix 250: parse.error=verbose overflow.
939 * tests/regression.at (parse.error=verbose overflow): Avoid the
940 double inclusion of stdlib.h as it triggers hard errors.
941
9097fda0
JD
9422010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
943
944 portability: fix for BSD make.
945 Reported by Johan van Selst at
946 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00016.html>.
947 * tests/Makefile.am ($(TESTSUITE)): Qualify package.m4 in
948 this dependency list as in package.m4's target rule.
949
7a9c3cb3
JD
9502010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
951
952 portability: fix spawning on at least FreeBSD 8 and FreeBSD 9.
953 Reported by Johan van Selst at
954 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00014.html>.
955 * NEWS (2.4.3): New.
956 * THANKS (Johan van Selst): Add.
957 * gnulib: Update to latest.
958
5a3c69f1
JD
9592010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
960
961 maint: update for changes to gnulib's announce-gen.
962 * HACKING (Announce): RELEASE_TYPE=major must now be written
963 RELEASE_TYPE=stable.
964
ea66d039
JD
9652010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
966
967 Version 2.4.2.
968 * NEWS (2.4.2): Set version and date. For the recent test suite
969 portability fixes, don't be so optimistic about their success
970 given the lack of feedback on the affected platforms.
971
c50befe6
JD
9722010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
973
974 tests: fix maintainer-xml-check for recent changes.
975 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Use
976 AT_BISON_CHECK_NO_XML rather than AT_BISON_CHECK because an
977 output file whose name conflicts with a previous output file
978 is now never generated.
979
47fa5747
JD
9802010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
981
982 portability: fix several issues with M4 subprocess.
983
984 M4's output pipe was not being drained upon fatal errors during
985 scan_skel. As a result, broken-pipe messages from M4 were seen
986 on at least AIX, HP-UX, Solaris, and RHEL4, and this caused a
987 failure in the test suite. The problem was that, on platforms
988 where the default disposition for SIGPIPE is ignore instead of
989 terminate, M4 sometimes saw fwrite fail with errno=EPIPE and
990 then reported it. However, there's some sort of race condition,
991 because the new test group occasionally succeeded.
992 Reported by Albert Chin at
993 <http://lists.gnu.org/archive/html/bug-bison/2010-02/msg00004.html>.
994
995 There were also problems with the test suite livelocking on
996 Tru64 5.1b. Reported by Didier Godefroy at
997 <http://lists.gnu.org/archive/html/bug-bison/2009-05/msg00005.html>.
998 Switching to create_pipe_bidi suggested by Akim Demaille.
999
1000 To attempt to solve both of these problems, switch to gnulib's
1001 create_pipe_bidi and register M4 process as a slave. Along the
1002 way, clean up file name conflict handling, which was affected by
1003 the broken-pipe problem before the switch.
1004 * NEWS (2.4.2): Document.
1005 * THANKS (Didier Godefroy): Add.
1006 * bootstrap.conf (gnulib_modules): Add pipe.
1007 * gnulib: Update to latest to make sure we have all the latest
1008 fixes.
1009 * lib/Makefile.am (libbison_a_SOURCES): Remove subpipe.h and
1010 subpipe.c.
1011 * po/POTFILES.in (lib/subpipe.c): Remove.
1012 * src/files.c (compute_output_file_names): Update invocations
1013 of output_file_name_check.
1014 (output_file_name_check): In the case that the grammar file
1015 would be overwritten, use complain instead of fatal, but replace
1016 the output file name with /dev/null. Use the /dev/null solution
1017 for the case of two conflicting output files as well because it
1018 seems safer in case Bison one day tries to open both files at
1019 the same time.
1020 * src/files.h (output_file_name_check): Update prototype.
1021 * src/output.c (output_skeleton): Use create_pipe_bidi and
1022 wait_subprocess. Assert that scan_skel completely drains the
1023 pipe.
1024 * src/scan-skel.l (at_directive_perform): Update
1025 output_file_name_check invocation.
1026 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Check that the
1027 grammar file actually isn't overwritten.
1028 (Conflicting output files: -o foo.y): Update expected output.
1029 * tests/skeletons.at (Fatal errors but M4 continues producing
1030 output): New test group.
1031
d67e37a7
JD
10322010-02-04 Joel E. Denny <jdenny@ces.clemson.edu>
1033
1034 Update POTFILES.
1035 * HACKING (Release Procedure): Add reminder about keeping
1036 POTFILES files up-to-date.
1037 * po/POTFILES.in (src/muscle-tab.c, src/scan-skel.l): Add.
1038
0ee1af2e
JD
10392010-02-01 Joel E. Denny <jdenny@clemson.edu>
1040
1041 Code cleanup.
1042 * tests/atlocal.in (abs_top_srcdir): Remove shell variable,
1043 which is already defined in atconfig.
1044
2655c7cd
JD
10452010-01-21 Joel E. Denny <jdenny@clemson.edu>
1046
1047 * cfg.mk (gnulib_dir): Assume gnulib is a subdirectory.
1048
8ebc7dca
JD
10492010-01-21 Joel E. Denny <jdenny@clemson.edu>
1050
1051 maint: automate PACKAGE_COPYRIGHT_YEAR update, and update it.
1052 * HACKING (Release Procedure): Update notes on copyright years.
1053 * Makefile.am (update-package-copyright-year): New target rule.
1054 * build-aux/update-package-copyright-year: New file.
1055 * cfg.mk (update-copyright): Add update-package-copyright-year
1056 as a dependency.
1057
f0a43dd1
JD
10582010-01-19 Joel E. Denny <jdenny@clemson.edu>
1059
1060 * bootstrap: Import improvements from latest gnulib.
1061
e4ca7a85
JD
10622010-01-19 Joel E. Denny <jdenny@clemson.edu>
1063
1064 build: require Automake 1.11.1 to avoid a security flaw.
1065 * HACKING (Release Procedure): Don't document Automake security
1066 flaw here.
1067 * configure.ac (AM_INIT_AUTOMAKE): Require 1.11.1, and explain
1068 why here.
1069
8d830047
JD
10702010-01-19 Joel E. Denny <jdenny@clemson.edu>
1071
1072 gnulib: update to latest.
1073
e5926647
JD
10742010-01-19 Joel E. Denny <jdenny@clemson.edu>
1075
1076 ChangeLog (2006-09-15): add Odd Arild Olsen's role for push.c.
1077
5a2f6eb4
JD
10782010-01-15 Joel E. Denny <jdenny@clemson.edu>
1079
1080 Thank the developer of the initial push parser implementation.
1081 This unfortunate oversight is several years old.
1082 * THANKS (Odd Arild Olsen): Add.
1083
1c4ad777
JD
10842010-01-04 Joel E. Denny <jdenny@clemson.edu>
1085
1086 Fix some comments concerning LR(0) versus LALR(1).
1087
1088 Stop equating LR(0) with nondeterminism and LALR(1) with
1089 determinism. That is, if all states are consistent, then LR(0)
1090 tables are deterministic. On the other hand, LALR(1) tables
1091 might be nondeterministic before conflict resolution, and GLR
1092 permits LALR(1) tables to remain nondeterministic.
1093 * src/LR0.c, src/LR0.h: Here.
1094 * src/lalr.c, src/lalr.h: Here.
1095 * src/main.c (main): Here.
1096 * src/state.c, src/state.h: Here.
1097
1098 * src/ielr.h (ielr): In preconditions, expect LR(0) not LALR(1)
1099 parser tables.
1100
1462fcee
JD
11012010-01-04 Joel E. Denny <jdenny@clemson.edu>
1102
1103 maint: run "make update-copyright"
1104
510df951
JD
11052009-12-30 Joel E. Denny <jdenny@clemson.edu>
1106
1107 POSIX: complain if %prec's token was not defined.
1108 * NEWS (2.5): Document.
1109 * src/reader.c (grammar_rule_check): Convert warning to
1110 complaint.
1111 * tests/input.at (%prec's token must be defined): Update.
1112
2c203528
JD
11132009-12-30 Joel E. Denny <jdenny@clemson.edu>
1114
1115 POSIX: warn if %prec's token was not defined.
1116 Reported by Florian Krohm at
1117 <http://lists.gnu.org/archive/html/bug-bison/2009-12/msg00005.html>.
1118 * NEWS (2.4.2): Document.
1119 * src/reader.c (grammar_rule_check): Implement.
1120 (grammar_current_rule_prec_set): Add comments explaining that we
1121 here assume a %prec identifier is a token, but we still manage
1122 to support POSIX.
1123 * tests/input.at (%prec's token must be defined): New test
1124 group.
1125
a93cdd3d
JD
11262009-12-31 Joel E. Denny <jdenny@clemson.edu>
1127
1128 * HACKING (Release Procedure): Recommend a secure automake.
1129
bb57985c
AD
11302008-12-11 Akim Demaille <demaille@gostai.com>
1131
1132 Propagate i18n changes into glr.c.
1133 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
1134 building the error message format dynamically.
1135 * data/lalr1.java: Formatting changes.
1136
70afaf26
JD
11372009-12-22 Joel E. Denny <jdenny@clemson.edu>
1138
1139 Port small part of master's 11707b2b so future ports are easier.
1140 * data/lalr1.java (YYParser::yysyntax_error): Untabify.
1141
8200219a
AD
11422008-12-11 Akim Demaille <demaille@gostai.com>
1143
1144 Simplify the i18n of the error messages.
1145 * data/lalr1.cc: Comment changes.
1146
39f6a8d1
AD
11472008-11-11 Akim Demaille <demaille@gostai.com>
1148
1149 Prefer M4 to CPP.
1150 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
1151 YYERROR_VERBOSE.
1152
e657f369
AD
11532008-11-11 Akim Demaille <demaille@gostai.com>
1154
1155 Support i18n of the parse error messages.
1156 * TODO (lalr1.cc/I18n): Remove.
1157 * data/lalr1.cc (yysyntax_error_): Support the translation of the
1158 error messages, as done in yacc.c.
1159 Stay within the yy* pseudo namespace.
1160
1e05521d
JD
11612009-12-22 Joel E. Denny <jdenny@clemson.edu>
1162
1163 Port small part of master's 8901f32e so future ports are easier.
1164 * data/lalr1.cc (yy::parser::yysyntax_error_): Always add second
1165 argument, but name it in the function definition only when
1166 verbose error messages are enabled and it'll thus be used.
1167 (yy::parser::parse): Update use of yysyntax_error_.
1168
2728ac7e
JD
11692009-12-29 Joel E. Denny <jdenny@clemson.edu>
1170
1171 portability: `<' and `>' are not always defined on addresses.
1172 Specifically, don't sort objects by their memory addresses when
1173 they're not allocated in the same array or other object. Though
1174 I haven't found a test case where that fails on my platform, C
1175 says the behavior is undefined.
1176 * src/AnnotationList.c (AnnotationList__insertInto): Remove
1177 FIXME. Use new id field of InadequacyList nodes rather than
1178 their memory addresses when sorting.
1179 (AnnotationList__compute_from_inadequacies): Add
1180 inadequacy_list_node_count argument to pass to
1181 InadequacyList__new_conflict.
1182 * src/AnnotationList.h
1183 (AnnotationList__compute_from_inadequacies): Update prototype
1184 and documentation for new argument.
1185 * src/InadequacyList.c (InadequacyList__new_conflict): Add
1186 node_count argument and use it to assign a unique ID.
1187 * src/InadequacyList.h (InadequacyListNodeCount): New typedef.
1188 (InadequacyList): Add id field.
1189 (InadequacyList__new_conflict): Update prototype and
1190 documentation for new argument.
1191 * src/ielr.c (ielr_compute_annotation_lists): Update
1192 AnnotationList__compute_from_inadequacies invocation.
1193
abcc7c03
JD
11942009-12-20 Joel E. Denny <jdenny@clemson.edu>
1195
1196 Fix handling of yychar manipulation in user semantic actions.
1197 The problem was that yacc.c didn't always update the yychar
1198 translation afterwards. However, other skeletons appear to be
1199 fine. glr.c appears to already translate yychar before every
1200 use. lalr1.cc does not define yychar and does not document its
1201 replacement, yyla, for users. It does provide yyclearin, but
1202 that does not manipulate yyla and thus requires no translation
1203 update. In lalr1.java, yychar is out of scope during semantic
1204 actions.
1205 * NEWS (2.5): Document.
1206 * data/yacc.c (YYBACKUP): Don't bother translating yychar into
1207 yytoken here.
1208 (yyparse, yypush_parse): Instead, translate before every use of
1209 yytoken, and add comments explaining this approach.
1210 * tests/actions.at (Destroying lookahead assigned by semantic
1211 action): New test group checking that translation happens before
1212 lookahead destructor calls at parser return. Previously,
1213 incorrect destructors were called.
1214 * tests/conflicts.at (%error-verbose and consistent
1215 errors): New test group checking that translation happens at
1216 syntax error detection before the associated verbose error
1217 message and the associated lookahead destructor calls. While
1218 the destructor call is fixed by this patch, the verbose error
1219 message is currently incorrect due to another bug (see
1220 comments in test group), so this is an expected failure for now.
1221
62efdd2a
JD
12222009-12-21 Joel E. Denny <jdenny@clemson.edu>
1223
1224 YYFAIL: warn about uses and remove from lalr1.java.
1225 * NEWS (2.5): Document.
5f1485d8 1226 * data/lalr1.java (YYParser::YYFAIL): Rename to YYERRLAB,
62efdd2a
JD
1227 and make it private. Update all uses.
1228 * src/scan-code.l (SC_RULE_ACTION): Implement warning.
1229
41d35e54
JD
12302009-12-21 Joel E. Denny <jdenny@clemson.edu>
1231
1232 YYFAIL: deprecate.
1233 * NEWS (2.4.2): Document deprecation and the phase-out plan.
5f1485d8 1234 * data/lalr1.java (YYParser::YYFAIL): Add comment about
41d35e54
JD
1235 deprecation.
1236 * data/yacc.c (YYFAIL): Likewise, and suppress warnings about
1237 YYFAIL from GCC cpp's -Wunused-macros.
1238 * doc/bison.texinfo (Java Action Features): Remove YYFAIL
1239 documentation.
1240 (LocalWords): Remove YYFAIL.
1241
692d04cb
JD
12422009-12-17 Joel E. Denny <jdenny@clemson.edu>
1243
1244 Code cleanup.
1245 * src/symtab.c, src/symtab.h (symbol_class_get_string): Remove
1246 function, which is no longer used.
1247
34731471
JD
12482009-12-16 Joel E. Denny <jdenny@clemson.edu>
1249
1250 Add gcc's -Wundef to test suite and fix another warning from it.
1251 * NEWS (2.4.2): Update description of -Wundef fix.
1252 * configure.ac (WARN_CXXFLAGS_TEST): New substitution.
1253 (WARN_CFLAGS_TEST): New substitution.
1254 * data/glr.c: Avoid warning about __STRICT_ANSI__.
1255 * tests/atlocal.in (CFLAGS): Use WARN_CFLAGS_TEST instead of
1256 WARN_CFLAGS.
1257 (NO_WERROR_CFLAGS): Likewise.
1258 (CXXFLAGS): Use WARN_CXXFLAGS_TEST instead of WARN_CXXFLAGS.
1259
3bba2dad
JD
12602009-12-16 Joel E. Denny <jdenny@clemson.edu>
1261
1262 * data/yacc.c: Reformat m4 a little.
1263
af2ffe5c
JD
12642009-12-16 Joel E. Denny <jdenny@clemson.edu>
1265
1266 Document gcc -Wundef fix.
1267 * NEWS (2.4.2): Here.
1268 * THANKS (Jonathan Nieder): Add.
1269
874ac415
JN
12702009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
1271
1272 Simplify y.tab.c when location tracking is disabled.
1273 * data/yacc.c: Do not check YYLTYPE_IS_TRIVIAL if location
1274 tracking is not enabled. Instead, unconditionally define
1275 YY_LOCATION_PRINT as a no-op for backward compatibility.
1276
06caf0e1
JN
12772009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
1278
1279 Avoid warnings from gcc -Wundef y.tab.c.
1280 * data/glr.c: Check if YYENABLE_NLS and YYLTYPE_IS_TRIVIAL are
1281 defined before using them.
1282 * data/lalr1.cc: Likewise.
1283 * data/yacc.c: Likewise.
1284
687f011a
JD
12852009-12-15 Joel E. Denny <jdenny@clemson.edu>
1286
1287 autoconf: update to latest for fix of M4 detection.
1288 Reported by Eric Blake.
1289 * submodules/autoconf: Update.
1290
fb9a3976
JD
12912009-12-15 Joel E. Denny <jdenny@clemson.edu>
1292
1293 portability: use -DGNULIB_POSIXCHECK.
1294 Reported by Eric Blake. See discussions at
1295 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00008.html>
1296 and
1297 <http://lists.gnu.org/archive/html/bug-gnulib/2009-10/msg00108.html>.
1298 * HACKING (Release checks): Suggest -DGNULIB_POSIXCHECK.
1299 * bootstrap.conf (gnulib_modules): Add all the printf modules
1300 suggested by -DGNULIB_POSIXCHECK. Add realloc-posix as
1301 suggested by -DGNULIB_POSIXCHECK for gnulib's own vasnprintf.c.
1302 (excluded_files): Remove m4/printf-posix.m4.
1303 * tests/atlocal.in (LIBS): As for LDADD in src/local.mk, add
1304 lib/libbison.a so gnulib libraries can be linked.
1305
f1fb412c
JD
13062009-12-14 Joel E. Denny <jdenny@clemson.edu>
1307
1308 Enable assertion output and --disable-assert for configure.
1309 * bootstrap.conf (gnulib_modules): Add assert module.
1310 * src/system.h (aver): Define as assert, and summarize the
1311 discussion on this issue.
1312
51c7ca01
JD
13132009-12-14 Joel E. Denny <jdenny@clemson.edu>
1314
1315 Expand GLR acronym in summary of Bison.
1316 Based on discussion with Akim Demaille starting at
1317 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00087.html>.
1318 * doc/bison.texinfo (Introduction): Here.
1319 * src/getargs.c (usage): Here.
1320
1f68dca5
AR
13212009-10-03 Alex Rozenman <rozenman@gmail.com>
1322
1323 Document named references.
1324 * doc/bison.texinfo (Actions): Add new example and xref to
1325 Using Named References node.
1326 (Using Named References): New node.
1327
aa01d193
JD
13282009-10-16 Joel E. Denny <jdenny@clemson.edu>
1329
1330 cleanup.
1331 * src/Sbitset.c (Sbitset__new_on_obstack): Use Sbitset instead
1332 of char*.
1333 (Sbitset__isEmpty): Use Sbitset instead of char*.
1334 * src/Sbitset.h (Sbitset): Make it a pointer to unsigned char
1335 instead of char. This helps to avoid casting errors.
1336 (Sbitset__or): Use Sbitset instead of char*.
1337
61747047
JD
13382009-10-16 Joel E. Denny <jdenny@clemson.edu>
1339
1340 portability: don't assume 8-bit bytes.
1341 That is, use CHAR_BIT and UCHAR_MAX instead of 8 and 0xff.
1342 * src/Sbitset.h (Sbitset__nbytes): Here.
1343 (Sbitset__byteAddress): Here.
1344 (Sbitset__bit_mask): Here.
1345 (Sbitset__last_byte_mask): Here.
1346 (Sbitset__ones): Here.
1347 (SBITSET__FOR_EACH): Here.
1348
a70596de
JD
13492009-10-11 Joel E. Denny <jdenny@clemson.edu>
1350
1351 portability: use va_start and va_end in the same function.
1352 * src/complain.c (error_message): Move va_end from here...
1353 (ERROR_MESSAGE): ... to here.
1354
51f255a5
JD
13552009-10-08 Joel E. Denny <jdenny@clemson.edu>
1356
1357 * data/bison.m4: Update comments for rename to muscle-tab.h.
1358
23ec25b7
JD
13592009-10-08 Joel E. Denny <jdenny@clemson.edu>
1360
1361 Rename muscle_tab.* to muscle-tab.* for consistency with master.
1362 * src/Makefile.am (bison_SOURCES): Update.
1363 * src/getargs.c, src/ielr.c, src/lalr.c, src/main.c,
1364 src/output.c, src/parse-gram.y, src/print.c, src/reader.c,
1365 src/tables.c: Update include.
1366 * src/muscle_tab.c, src/muscle_tab.h: Rename to...
1367 * src/muscle-tab.c, src/muscle-tab.h: ... these and update
1368 include.
1369
0ab402b4
JD
13702009-10-07 Joel E. Denny <jdenny@clemson.edu>
1371
1372 Minor code cleanup.
1373 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT): Remove macro and
1374 replace all uses with UNIQSTR_CONCAT.
1375 * src/uniqstr.c (uniqstr_vsprintf): New function.
1376 * src/uniqstr.h (uniqstr_vsprintf): Add prototype.
1377 (UNIQSTR_CONCAT, UNIQSTR_GEN_FORMAT, UNIQSTR_GEN_FORMAT_): New
1378 macros.
1379
42ec0ae1
JD
13802009-10-04 Joel E. Denny <jdenny@clemson.edu>
1381
1382 Minor code cleanup.
1383 * src/parse-gram.y: Clean up sorting of declarations.
1384 Use types to simplify %printer declarations where possible.
1385 Provide %printer for BRACKETED_ID and symbol.prec.
1386 * src/symtab.c: Whitespace change.
1387
9637e0ed
JD
13882009-10-04 Joel E. Denny <jdenny@clemson.edu>
1389
1390 tests: skip tests of file names that platform does not support.
1391 Reported by Michael Raskin at
1392 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
1393 * THANKS (Michael Raskin): Add.
1394 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
1395 to fail at least for file names containing ":" or "\".
1396
69a2ab11
JD
13972009-09-23 Joel E. Denny <jdenny@clemson.edu>
1398
1399 yysyntax_error: avoid duplicate lookahead collection.
1400 Except when memory reallocation is required, this change
1401 eliminates the need to invoke yysyntax_error twice and thus to
1402 repeat the collection of lookaheads. It also prepares for
1403 future extensions that will make those repetitions more
1404 expensive and that will require additional memory management in
1405 yysyntax_error. Finally, it fixes an obscure bug already
1406 exercised in the test suite.
1407 * data/yacc.c (yysyntax_error): Add arguments for message
1408 buffer variables stored in the parser. Instead of size, return
1409 status similar to yyparse status but indicating success of
1410 message creation. Other than the actual reallocation of the
1411 message buffer, import and clean up memory management code
1412 from...
1413 (yyparse, yypush_parse): ... here.
1414 * tests/regression.at (%error-verbose overflow): No longer an
1415 expected failure.
1416
d88cf117
JD
14172009-09-23 Joel E. Denny <jdenny@clemson.edu>
1418
1419 yysyntax_error: test memory management more.
1420 * tests/atlocal.in (NO_WERROR_CFLAGS): New cpp macro.
1421 * tests/regression.at (%error-verbose and YYSTACK_USE_ALLOCA):
1422 New test group.
1423 (%error-verbose overflow): New test group that reveals an
1424 obscure bug. Expected fail for now.
1425
9da640ea
AD
14262008-12-11 Akim Demaille <demaille@gostai.com>
1427
1428 Pass the token type to yysyntax_error.
1429 * data/yacc.c (yysyntax_error): Take the transated token instead
1430 of the raw number.
1431 Adjust callers.
1432
d3d3628b
AD
14332008-12-11 Akim Demaille <demaille@gostai.com>
1434
1435 Simplify the i18n of the error messages.
1436 * data/yacc.c (yysyntax_error): Rewrite, using a switch instead
1437 of building dynamically the format string.
1438
4c6b13f3
JD
14392009-10-03 Joel E. Denny <jdenny@clemson.edu>
1440
1441 Remove dead code.
1442 * src/symtab.c (symbol_pack): Here because every symbol's number
1443 is always defined by this time.
1444
f840c05a
AR
14452009-10-03 Alex Rozenman <rozenman@gmail.com>
1446
1447 Add additional space after periods in NEWS.
1448 * NEWS (2.5): here.
1449
17a407dc
JD
14502009-09-29 Joel E. Denny <jdenny@clemson.edu>
1451
1452 Use the correct conversion specifier for size_t.
1453 Reported by Jim Meyering.
1454 * src/Sbitset.h (SBITSET__INDEX__CONVERSION_SPEC): New, "zu"
1455 because Sbitset__Index is size_t.
1456 * src/Sbitset.c (Sbitset__fprint): Use it instead of %d.
1457
4b7a4c1b
JD
14582009-09-27 Joel E. Denny <jdenny@clemson.edu>
1459
1460 tests: don't abuse AT_BISON_CHECK.
1461 * tests/regression.at (parse-gram.y: LALR = IELR): Move
1462 additional shell commands outside of AT_BISON_CHECK.
1463
873ac263
JD
14642009-09-26 Joel E. Denny <jdenny@clemson.edu>
1465
1466 tests: check that parse-gram.y's IELR and LALR are identical.
1467 * tests/atlocal.in (abs_top_srcdir): New shell variable.
1468 * tests/regression.at (parse-gram.y: LALR = IELR): New test
1469 group.
1470
232be91a
AD
14712009-09-16 Akim Demaille <demaille@gostai.com>
1472
1473 doc: comment changes.
1474 * doc/bison.texinfo: Comment changes.
1475
c781580d
AD
14762009-09-16 Akim Demaille <demaille@gostai.com>
1477
1478 doc: spell checking.
1479 * doc/bison.texinfo: here.
1480
348f5608
AR
14812009-09-19 Alex Rozenman <rozenman@gmail.com>
1482
1483 Keep sub-messages aligned. Fix strings for translation.
f840c05a
AR
1484 * src/location.h (location_print): Add return value.
1485 * src/location.c (location_print): Return number of printed
348f5608 1486 characters.
f840c05a
AR
1487 * src/complain.h (complain_at_indent, warn_at_indent): Prototype
1488 new functions.
1489 * src/complain.cpp (indent_ptr): New static variable.
1490 (error_message, complain_at_indent, warn_at_indent): Implement
1491 the alignment mechanism.
1492 * src/scan-code.l (parse_ref, show_sub_messages): Fix strings
1493 for translations. Use new alignment mechanism.
1494 * tests/named-ref.at: Adjust test-cases.
348f5608
AR
1495 * NEWS (2.5): Add an announcement about named references.
1496
d93b5f50
JD
14972009-09-13 Joel E. Denny <jdenny@clemson.edu>
1498
1499 tests: clean up push.at test group titles.
1500 * tests/push.at: Remove "Push Parsing: " from test group titles
1501 because these are already under the banner "Push Parsing Tests".
1502
4c56b131
AR
15032009-09-12 Alex Rozenman <rozenman@gmail.com>
1504
1505 Provide an additional sub-message for clarity.
1506 Add "symbol not found in production" error message when
1507 an "invalid reference" is detected in named references
1508 resolution.
1509 * src/scan-code.l: Update "invalid reference" case.
1510 * tests/named-ref.at: Adjust test-cases.
1511
93d0103d
JD
15122009-09-10 Joel E. Denny <jdenny@clemson.edu>
1513
1514 Clean up yacc.c a little.
1515 * data/yacc.c: Clean up M4 for readability, and make output
1516 whitespace more consistent. For the main parse function
1517 comment, instead of saying "yyparse or yypush_parse", say either
1518 "yyparse" or "yypush_parse" depending on which it actually is.
1519
628be6c9
JD
15202009-09-03 Joel E. Denny <jdenny@clemson.edu>
1521
1522 Complain about unused %define variables and %code qualifiers.
1523 * NEWS (2.5): Document.
1524 * data/bison.m4 (b4_check_user_names): Complain instead of warn.
1525 * doc/bison.texinfo (Decl Summary): Document complaint, and
1526 improve %define documentation a little otherwise.
1527 * tests/input.at (Reject unused %code qualifiers): Update.
1528 (%define errors): Update.
1529 (%define, --define, --force-define): Update.
1530 (%define backward compatibility): Update.
1531 (Unused %define api.pure): Update.
1532 * tests/push.at (Push Parsing: Unsupported Skeletons): Update.
1533
c842365a
JD
15342009-09-03 Joel E. Denny <jdenny@clemson.edu>
1535
1536 Use aver not assert.
1537 * src/output.c: Don't include assert.h.
1538 (output_skeleton): Use aver not assert.
1539 * src/system.h (aver): In documentation of why, add links to
1540 Paul Eggert's explanations in the mailing lists.
1541
14e568d7
AR
15422009-09-05 Alex Rozenman <rozenman@gmail.com>
1543
1544 Use "Unresolved reference" error message when no symbols were found
1545 in a symbolic reference resolution. Remove .expr and -expr from
1546 the shown reference when the reference is unresolved.
1547 * src/scan-code.l: Change the error message, adjust location columns,
1548 rename variable "exact_mode" to "explicit_bracketing".
1549 * tests/named-ref.at: Adjust existing tests and add a new one.
1550
dac8cc0d
AD
15512009-09-03 Akim Demaille <demaille@gostai.com>
1552
1553 * NEWS (2.4.2): Add "Internationalization" item.
1554
3710dd02
AD
15552009-09-03 Akim Demaille <demaille@gostai.com>
1556
1557 bootstrap: fix/improve find_tool.
1558 * bootstrap (find_tool): Improve error messages.
1559 Fix typo about find_tool_names.
1560
9852b61c
JD
15612009-08-29 Joel E. Denny <jdenny@clemson.edu>
1562
1563 Fix gcc 3.4.4 shadowing warning reported by Eric Blake.
1564 See
1565 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00093.html>.
1566 * src/scan-code.h (code_props_rule_action_init): Rename
1567 named_ref arg to name so it doesn't shadow named_ref type. This
1568 makes it consistent with the function definition in scan-code.l
1569 anyway.
1570
f37495f6
JD
15712009-08-28 Joel E. Denny <jdenny@clemson.edu>
1572
1573 %define: accept unquoted values.
1574 * NEWS (2.5): Group all %define changes together, and document
1575 this one. Remove quotes in IELR and canonical LR entry.
1576 * doc/bison.texinfo: Remove quotes in most examples throughout.
1577 (Decl Summary): Update %define documentation.
1578 (Table of Symbols): Likewise.
1579 * src/ielr.c (LrType): Update documentation.
1580 * src/parse-gram.y (content.opt): Add production for ID.
5bf2bf7a 1581 * tests/calc.at: Remove quotes in most tests.
f37495f6
JD
1582 * tests/existing.at: Likewise.
1583 * tests/input.at: Likewise.
1584 * tests/local.at: Likewise.
1585 * tests/push.at: Likewise.
1586 * tests/reduce.at: Likewise.
1587 * tests/torture.at: Likewise.
1588
3a414bbf
JD
15892009-08-28 Joel E. Denny <jdenny@clemson.edu>
1590
1591 %define lr.type: make values lowercase IDs.
1592 That is, "LALR" => "lalr", "IELR" => "ielr", and
1593 "canonical LR" => "canonical-lr".
1594 * NEWS (2.5): Update documentation.
1595 * doc/bison.texinfo (Decl Summary): Likewise.
1596 * src/ielr.c (ielr): Use new values.
1597 * src/ielr.h (ielr): Update documentation.
1598 * src/reader.c (prepare_percent_define_front_end_variables): Use
1599 and validate new values.
1600 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
1601 grammars.
1602 * tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
1603
4bb975e1
EB
16042009-08-27 Eric Blake <ebb9@byu.net>
1605
1606 scan-gram: avoid portability trap with ctype usage.
1607 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
1608 Avoid compiler warning.
1609
74baf5c9
JD
16102009-08-27 Joel E. Denny <jdenny@clemson.edu>
1611
1612 tests: use perl for printing special sequences to files.
1613 And skip tests if perl is not available. This is better than
1614 playing tricks with shell portability. Suggested by Akim
1615 Demaille.
1616 * tests/input.at (Bad character literals): Use it here for
1617 omitting final newlines.
1618 (Bad escapes in literals): Use it here for special characters.
1619
d63e1279
JD
16202009-08-26 Joel E. Denny <jdenny@clemson.edu>
1621
1622 tests: show a use of %define lr.default-reductions "consistent"
1623 * tests/conflicts.at (%nonassoc and eof): Extend to test that it
1624 prevents the omission of expected tokens for %error-verbose.
1625
833d1720
AD
16262009-08-26 Akim Demaille <demaille@gostai.com>
1627
1628 tests: portability fix.
1629 * tests/input.at (Bad escapes in literals): Don't expect "echo
1630 '\0'" to output \ then 0.
1631
e4bcae3c
JD
16322009-08-26 Joel E. Denny <jdenny@clemson.edu>
1633
1634 Actually handle the yytable zero value correctly this time.
1635 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c: Don't
1636 mention zero values in the YYTABLE comments.
1637 * data/glr.c (yytable_value_is_error): Don't check for zero
1638 value.
1639 * data/lalr1.cc (yy_table_value_is_error_): Likewise.
1640 * data/yacc.c (yytable_value_is_error): Likewise.
1641 * data/lalr1.java (yy_table_value_is_error_): Likewise.
1642 (yysyntax_error): Fix typo in code: use yytable_ not yycheck_.
1643 * src/tables.h: In header comments, explain why it's useless to
1644 check for a zero value in yytable.
1645
d5eb0826
JD
16462009-08-25 Joel E. Denny <jdenny@clemson.edu>
1647
1648 More fixes related to last two patches.
1649 * data/c.m4 (b4_table_value_equals): Comment that YYID must be
1650 defined.
1651 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c: Fix
1652 yytable comments: zero indicates syntax error not default
1653 action.
1654 * data/glr.c (yyis_pact_ninf): Rename to...
1655 (yypact_value_is_default): ... this.
1656 (yyisDefaultedState): Update for rename.
1657 (yyis_table_ninf): Rename to...
1658 (yytable_value_is_error): ... this, and check for value zero
1659 besides just YYTABLE_NINF.
1660 (yygetLRActions): Check for default value from yypact. It
1661 appears that this check is always performed before this function
1662 is invoked, and so adding the check here is probably redundant.
1663 However, the code may evolve after this subtlety is forgotten.
1664 Also, update for rename to yytable_value_is_error. Because that
1665 macro now checks for zero, a different but equivalent branch of
1666 the if-then-else here is evaluated.
1667 (yyreportSyntaxError): Update for rename to
1668 yytable_value_is_error. The zero condition was mishandled
1669 before.
1670 (yyrecoverSyntaxError): Update for renames. No behavioral
1671 changes.
1672 * data/lalr1.cc, data/lalr1.java (yy_pact_value_is_default_):
1673 New function.
1674 (yy_table_value_is_error_): New function.
1675 (parse): Use new functions where possible. No behavioral
1676 changes.
1677 (yysyntax_error_, yysyntax_error): Use yy_table_value_is_error_.
1678 The zero condition was mishandled before.
1679 * data/yacc.c (yyis_pact_ninf): Rename to...
1680 (yypact_value_is_default): ... this.
1681 (yyis_table_ninf): Rename to...
1682 (yytable_value_is_error): ... this, and check for value zero
1683 besides just YYTABLE_NINF.
1684 (yysyntax_error): Update for rename to yytable_value_is_error.
1685 The zero condition was mishandled before.
1686 (yyparse): Update for renames. No behavioral changes.
1687 * src/tables.h: Improve comments about yypact, yytable, etc.
1688 more. Most importantly, say yytable value of zero means syntax
1689 error not default action.
1690
1fa30307
JD
16912009-08-25 Joel E. Denny <jdenny@clemson.edu>
1692
1693 Fix %error-verbose for conflicts resolved by %nonassoc.
1694 * NEWS (2.5): Document.
1695 * data/glr.c (yyreportSyntaxError): Fix this by checking
1696 yyis_table_ninf.
1697 * data/yacc.c (yysyntax_error): Likewise.
1698 * data/lalr1.cc (yysyntax_error_): Fix this by checking
1699 yytable_ninf_.
1700 * data/lalr1.java (yysyntax_error): Likewise.
1701 * tests/conflicts.at (%nonassoc and eof): Update expected output
1702 and remove FIXME.
1703
77373efa
JD
17042009-08-25 Joel E. Denny <jdenny@clemson.edu>
1705
1706 Some code and documentation improvements.
1707 * data/c.m4 (b4_table_value_equals): New macro to capture
1708 some repeated code.
1709 * data/glr.c (yyis_pact_ninf): Use it here.
1710 (yyis_table_ninf): Likewise.
1711 (yyreportSyntaxError): Improve internal comments.
1712 * data/yacc.c (yyis_pact_ninf): New macro copied from glr.c.
1713 Use it everywhere possible.
1714 (yyis_table_ninf): Likewise.
1715 (yysyntax_error): Improve internal comments.
1716 * data/lalr1.cc (yysyntax_error_): Likewise.
1717 * data/lalr1.java (yysyntax_error): Likewise.
1718 * src/tables.h: Improve comments about yypact, yytable, etc.
1719
890ab17c
JD
17202009-08-21 Joel E. Denny <jdenny@clemson.edu>
1721
1722 Use locale when quoting.
1723 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
1724 quote rather than implementing quoting here.
1725
c5196098
EB
17262009-08-20 Eric Blake <ebb9@byu.net>
1727
aa50ba7b
EB
1728 Make previous patch more robust.
1729 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
1730 argmatch.h.
1731 (output_skeleton): Use it.
1732 Suggested by Akim Demaille.
1733
c5196098
EB
1734 Import latest m4/m4.m4.
1735 * submodules/autoconf: Update to autoconf 2.64.
1736 * configure.ac (M4_GNU_OPTION): New define.
1737 * src/output.c (output_skeleton): Use it to resolve FIXME.
1738 * NEWS: Mention this.
1739
39fb7e62
JD
17402009-08-19 Joel E. Denny <jdenny@clemson.edu>
1741
1742 Fix complaints about escape sequences.
1743 Discussed starting at
1744 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
1745 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
1746 For a \0 and similar escape sequences meaning the null
1747 character, report an invalid escape sequence instead of an
1748 invalid null character because the latter does not actually
1749 appear in the user's input.
1750 In all escape sequence complaints, don't escape the initial
1751 backslash, and don't quote when the sequence appears at the end
1752 of the complaint line unless there's whitespace that quotearg
1753 won't escape.
1754 Consistently say "invalid" not "unrecognized".
1755 Consistently prefer "empty character literal" over "extra
1756 characters in character literal" warning for invalid escape
1757 sequences; that is, consistently discard those sequences.
1758 * tests/input.at (Bad escapes in literals): New.
1759
c33bc800
AD
17602009-08-19 Akim Demaille <demaille@gostai.com>
1761
1762 doc: fixes.
1763 * doc/bison.texinfo: Fix minor Texinfo errors.
1764
8fbbeba2
AD
17652009-08-19 Akim Demaille <demaille@gostai.com>
1766
1767 doc: %initial-action to initialize yylloc.
1768 Reported by Bill Allombert.
1769 * doc/bison.texinfo: Set fill-column to 76.
1770 (Location Type): Document the use of %initial-action to initialize
1771 yylloc.
1772
1874a474
JD
17732009-08-18 Joel E. Denny <jdenny@clemson.edu>
1774
1775 maint: update for gnulib's recent update-copyright changes
1776 * gnulib: Update.
1777 * .x-update-copyright (COPYING): Add as it's no longer implied
1778 when .x-update-copyright is present.
1779 * cfg.mk (update-copyright-local): Remove, now ignored.
1780 (update-copyright): Declare update-b4-copyright as a dependency.
1781
f4bfd5a9
AD
17822009-08-17 Akim Demaille <demaille@gostai.com>
1783
1784 build: require gettext 0.17.
1785
1786 Suggested by Bruno Haible.
1787 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
1788 * configure.ac: require gettext 0.17 to ensure compatibility with
1789 gnulib.
1790
2509eba6
AD
17912009-08-17 Akim Demaille <demaille@gostai.com>
1792
1793 build: lower gettext requirements.
1794
1795 Bison was uselessly requiring the formatstring macros from
1796 gettext, which resulted in mo files not being installed on systems
1797 that perfectly supported Bison mo files. Lower the requirement.
1798 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
1799
aa50ba7b
EB
1800 * configure.ac: Require need-ngettext instead of
1801 need-formatstring-macros.
1802 Reported by Martin Jabocs.
1803 Suggested by Bruno Haible.
1804 * INSTALL: Restructure.
1805 (Internationalization): New.
2509eba6 1806
314542f9
JD
18072009-08-14 Joel E. Denny <jdenny@clemson.edu>
1808
1809 maint: fix use of copyright year intervals.
1810 * gnulib: Update.
1811 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
1812 as now recommended in gnulib/NEWS.
1813 * build-aux/update-b4-copyright: Fix.
1814 * cfg.mk (update-copyright-env): Configure update-copyright.
1815
24985964
JD
18162009-08-13 Joel E. Denny <jdenny@clemson.edu>
1817
1818 Make it easier to write deterministic tests.
1819 Continues Akim's work from his 2009-06-10 commits.
1820 * src/reader.c (check_and_convert_grammar): Don't add any
1821 symbols after the first symbols_do invocation.
1822 * src/symtab.c (symbols_sorted): New static global.
1823 (user_token_number_redeclaration): Update comments.
1824 (symbol_from_uniqstr): If a new symbol is being created, assert
1825 that symbols_sorted hasn't been allocated yet.
1826 (symbols_free): Free symbols_sorted.
1827 (symbols_cmp, symbols_cmp_qsort): New functions.
1828 (symbols_do): Sort symbol_table into symbols_sorted on first
1829 invocation.
1830 * tests/input.at (Numbered tokens): Recombine tests now that the
1831 output should be deterministic across multiple numbers.
1832
47076da5
AD
18332009-08-12 Akim Demaille <demaille@gostai.com>
1834
1835 distcheck: fix.
1836
aa50ba7b 1837 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
47076da5 1838
36dfe466
JD
18392009-08-10 Joel E. Denny <jdenny@clemson.edu>
1840
1841 * tests/Makefile.am (TESTSUITE_AT): Add named-refs.at.
1842
07c0db18
JD
18432009-08-10 Joel E. Denny <jdenny@clemson.edu>
1844
1845 Miscellaneous code readability improvements.
1846
1847 * src/reader.c (reader): Move %define front-end variable
1848 defaults and checking into...
1849 (prepare_percent_define_front_end_variables): ... this new
1850 function.
1851
1852 * src/scan-gram.l (INITIAL): For consistency with string
1853 literals, don't store open quote on character literal. It's
1854 discarded before returning anyway.
1855 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
1856 Make length test more readable, and make the character stored
1857 for an empty literal more obvious while consistent with the
1858 previous behavior.
1859
1860 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
1861 USER_NUMBER_HAS_STRING_ALIAS throughout.
1862 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
1863 that is repeated in symtab.h. Improve argument names to make it
1864 clear which side of the symbol-string alias pair is which.
1865 (symbol_check_alias_consistency): Improve local variable names
1866 for the same purpose.
1867 * src/symtab.h (struct symbol): Make comments about aliases
1868 clearer.
1869 (symbol_make_alias): Improve comments and argument name.
1870 * src/output.c (token_definitions_output): Update for rename to
1871 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
1872
1a323c2f
AR
18732009-08-08 Alex Rozenman <rozenman@gmail.com>
1874
1875 Convert "misleading reference" messages to warnings.
1876 * src/scan-code.l: New function 'show_sub_messages', more
1877 factoring.
1878 * tests/named-ref.at: Adjust tests.
1879
38609c34
JD
18802009-08-06 Joel E. Denny <jdenny@clemson.edu>
1881
1882 maint: run "make update-copyright"
1883
642f240e
JD
18842009-08-06 Joel E. Denny <jdenny@clemson.edu>
1885
1886 maint: make update-b4-copyright easier to use
1887 * build-aux/update-b4-copyright: In warnings, report line
1888 numbers rather than character positions.
1889 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
1890 that update-copyright runs it.
1891 * gnulib: Update.
1892
d0caad01
JD
18932009-08-05 Joel E. Denny <jdenny@clemson.edu>
1894
1895 maint: clean up update-b4-copyright code
1896 * build-aux/update-b4-copyright: Do not accept 2-digit
1897 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
1898 Don't accept a `[' in a b4_copyright argument.
1899 Format code more consistently.
1900 Don't assume b4*copyright never occurs.
1901
ac2def56
JD
19022009-08-04 Joel E. Denny <jdenny@clemson.edu>
1903
1904 maint: automate b4_copyright updates.
1905 * Makefile.am (update-b4-copyright): New target rule.
1906 * build-aux/Makefile.am (EXTRA_DIST): Add update-b4-copyright.
1907 * build-aux/update-b4-copyright: New.
1908 * data/yacc.c: Remove stray characters around b4_copyright
1909 invocations.
1910
dbbb64f0
JD
19112009-08-04 Joel E. Denny <jdenny@clemson.edu>
1912
1913 maint: automate annual package-wide copyright-year update.
1914 * .x-update-copyright: New.
1915 * Makefile.am (EXTRA_DIST): Remove maint.mk.
1916 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
1917 update-copyright. Remove gnumakefile, which is implied by
1918 maintainer-makefile.
1919 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
1920 * gnulib: Update.
1921 * maint.mk: Remove, now copied from gnulib.
1922 * examples/extexi: Add missing "(C)" in copyright statement so
1923 update-copyright can recognize it.
1924 * src/LR0.h: Likewise.
1925 * src/print.h: Likewise.
1926 * src/print_graph.h: Likewise.
1927 * src/gram.c: Add missing comma in copyright statement.
1928 * src/gram.h: Likewise.
1929
bfa018d4
JD
19302009-08-04 Joel E. Denny <jdenny@clemson.edu>
1931
1932 Fix "make distcheck".
1933 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
1934 of just calc.stamp.
1935
4521fcdf
JD
19362009-08-01 Joel E. Denny <jdenny@clemson.edu>
1937
1938 Pacify "gcc -Wunused" for the input function from Flex.
1939 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
1940 and later.
1941 * src/scan-code.l: Add "%option noinput", which I cannot find in
1942 the Flex manual, but which Flex has supported since at least as
1943 far back as 2.5.4. However, if any of our developers still use
1944 Flex 2.5.4, they'll need to stop configuring with
1945 --enable-gcc-warnings because "%option noinput" didn't work
1946 correctly until Flex 2.5.6.
1947 * src/scan-gram.l: Likewise.
1948 * src/scan-skel.l: Likewise.
1949
992e874a
AR
19502009-07-31 Alex Rozenman <rozenman@gmail.com>
1951
1952 Fix --enable-gcc-warnings problems.
1953 * src/reader.c: Adjust variable names.
1954 * src/scan-code.l: Fix prototypes and adjust names.
1955 * src/named-ref.c: Remove redundant "if".
1956
a1ed2b71
JD
19572009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
1958
1959 Fix a --enable-gcc-warnings problem.
1960 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
1961 variable.
1962
cbc6a70e 19632009-07-24 Alex Rozenman <rozenman@gmail.com>
1e20ad11
AR
1964
1965 Fix some memory leaks.
1966 * src/named-ref.c: Add a pointer check (named_ref_free).
1967 * src/scan-code.l: New function (variant_table_free). Called in
1968 code_scanner_free.
1969 * src/symlist.c: Call to named_ref_free (symbol_list_free).
1970
ac9b0e95
JD
19712009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
1972
1973 Warn about character literals not of length one.
1974 * NEWS (2.5): Document.
1975 * src/scan-gram.l (INITIAL): Remove comment that we don't check
1976 the length.
1977 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
1978 * tests/input.at (Bad character literals): New test group.
1979
2de160e1
JD
19802009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
1981
1982 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
1983
cba97506
JD
19842009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
1985
1986 Some M4 cleanup in the testsuite.
1987 Suggested by Eric Blake at
1988 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
1989 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
1990 complicate the code by distinguishing between a missing value
1991 and an empty string value for an optional argument. This fix is
1992 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
1993 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
1994 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
1995 arguments are not needed because of the following changes.
1996 Fix stale comments.
1997 Bison developers should use GNU M4 and should not use
1998 POSIXLY_CORRECT when building the test suite, so do not
1999 complicate the code by avoiding $10 and above.
2000 Do not quote an empty string value for an optional argument, and
2001 do not distinguish between a missing value and an empty string
2002 value.
2003
62eb2d1b
JD
20042009-07-21 Joel E. Denny <jdenny@ces.clemson.edu>
2005
2006 * m4/m4.m4: Make it a sym link to submodules/autoconf/m4/m4.m4.
2007
620b2e36
JD
20082009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
2009
2010 Revert unnecessary column realignment in --help output.
2011 Reported by Akim Demaille at
2012 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
2013 * src/getargs.c (usage): Here.
2014
cbc6a70e 20152009-07-04 Alex Rozenman <rozenman@gmail.com>
dad6544d
AR
2016
2017 Alphabetical order in src/Makefile.am.
2018 * src/Makefile.am: Adjust.
2019
cbc6a70e 20202009-07-04 Alex Rozenman <rozenman@gmail.com>
d5e8574b
AR
2021
2022 Style changes and factoring.
2023 * src/named-ref.h: Add comments.
2024 * src/parse-gram.y: Readability and style changes.
2025 * src/reader.c: Factoring: assign_named_ref function.
2026 * src/scan-code.l: Factoring and style changes. Rename
2027 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
2028 Use "unsigned" type for variant index. Improve readablity.
2029 * src/scan-gram.l: Change error messages and add comments.
2030 * src/symlist.h: symbol_list_null: New function decl.
2031 * src/symlist.c: symbol_list_null: Implement here.
2032 * tests/named-refs.at: Adjust for new error messages.
2033
ae09ec85
EB
20342009-06-29 Eric Blake <ebb9@byu.net>
2035
2036 scan-code: avoid compiler warnings
2037 * src/scan-code.l (parse_named_ref): Use correct specifiers.
2038
80d653fd
AD
20392009-06-29 Akim Demaille <demaille@gostai.com>
2040
2041 build: avoid concurrent extraction of calc++.
2042 * examples/calc++/Makefile.am (calc.stamp): New.
2043 Depend on it to create the sources of calc++ so that concurrent
2044 builds don't launch several "extexi" in parallel.
2045 Not only this is inefficient, this also builds incorrect sources
2046 with several extractions mixed together.
2047
7685e2f7
AR
20482009-06-27 Alex Rozenman <rozenman@gmail.com>
2049
2050 Implement support for named symbol references.
2051 * src/parse-gram.y: Add new syntax (named_ref.opt).
2052 * src/reader.c: Store named refs in symbol lists.
2053 * src/reader.h: New argument for symbol_append and
2054 action_append functions.
2055 * src/scan-code.h: Add new field (named_ref) into
2056 code_props data structure. Keeps named ref of midrule
2057 actions.
2058 * src/scan-code.l: Support for named refs in semantic
2059 action code. New function 'parse_named_ref'.
2060 * src/scan-gram.l: Support bracketed id.
2061 * src/symlist.c: Store named refs in symbol lists.
2062 * src/symlist.h: New field in symbol list: named_ref.
2063 * src/named-ref.h: New file, a struct for named_ref.
2064 * src/named-ref.cp: New file, named_ref_new function.
2065 * src/local.mk: Add two new files.
2066 * tests/testsuite.at: Include new test group:
2067 * tests/named-refs.at: this new file.
2068
67f8cf51
AD
20692009-06-25 Akim Demaille <demaille@gostai.com>
2070
2071 hash: check insertion for memory exhaustion.
2072 * src/uniqstr.c (uniqstr_new): New.
2073
83b66ddd
AD
20742009-06-11 Akim Demaille <demaille@gostai.com>
2075
2076 style changes.
2077 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
2078 * src/print-xml.c: Style changes.
2079 * tests/conflicts.at: Comment changes.
2080
517cb0ad
AD
20812009-06-11 Akim Demaille <demaille@gostai.com>
2082
2083 xml: beware of user strings used to give a %prec to rules.
2084 * tests/conflicts.at (%prec with user strings): New.
2085 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
2086 XML output.
2087
75c7a52a
AD
20882009-06-11 Akim Demaille <demaille@gostai.com>
2089
2090 hash: check insertion for memory exhaustion.
2091 * src/muscle-tab.c (muscle_insert, muscle_grow)
2092 * src/state.c (state_hash_insert): Check the return value of
2093 hash_insert.
2094
66ed9753
AD
20952009-06-10 Akim Demaille <demaille@gostai.com>
2096
2097 deterministic test suite.
2098 Some consistency checks on symbols are performed after all the
2099 symbols were read, by an iteration over the symbol table. This
2100 traversal is nondeterministic, which can be a problem for test
2101 cases.
2102 Avoid this.
2103 Addresses another form of nondeterminism reported by Joel E. Denny.
2104 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
2105
2106 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
2107 test in two.
2108 Use different file names for the three tests to make the
2109 maintenance easier.
2110
ed15d907
AD
21112009-06-10 Akim Demaille <demaille@gostai.com>
2112
95d176ff
AD
2113 deterministic user-token-number redeclaration errors.
2114 Address nondeterminism reported by Joel E. Denny.
2115 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
2116
2117 * src/uniqstr.h: Comment changes.
2118 * src/location.h (boundary_cmp, location_cmp): New.
2119 * src/symtab.c (user_token_number_redeclaration): New.
2120 (symbol_translation): Use it.
2121 * tests/input.at (Numbered tokens): Adjust the expected output.
2122
21232009-05-25 Akim Demaille <demaille@gostai.com>
2124
ed15d907 2125 gnulib: update.
aa50ba7b
EB
2126 * gnulib: Update to latest.
2127 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
2128 * m4/.gitignore: Regen.
2129 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
2130 Call xalloc_die on hash_insert failures.
2131 Requested by the new __warn_unused_result__ attribute of
2132 hash_insert.
ed15d907 2133
e3a33f7c
JD
21342009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2135
2136 Convert multiple variable definition warnings to complaints.
2137 * NEWS (2.5): Add a new entry for that change.
2138 * doc/bison.texinfo (Decl Summary): Update %define entry.
2139 (Bison Options): Update -D/--define/-F/--force-define entry.
2140 * src/muscle_tab.c (muscle_percent_define_insert): Implement.
2141 * src/muscle_tab.h (muscle_percent_define_insert): Update
2142 comments.
2143 * tests/input.at (`%define errors'): Update.
2144 (`%define, --define, --force-define'): Update.
2145
34d41938
JD
21462009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2147
2148 -F/--force-define and relative %define/-D/--define priorities.
2149 * NEWS (2.5): Add documentation to -D/--define entry.
2150 * build-aux/cross-options.pl: Hard-code association of
2151 --force-define with %define.
2152 * doc/bison.texinfo (Decl Summary): In %define entry,
2153 cross-reference command-line options.
2154 (Bison Options): Add documentation to -D/--define entry.
2155 (Option Cross Key): Widen column for --force-define row.
2156 * src/getargs.c (usage): Document -F/--force-define. Realign
2157 options in output.
2158 (short_options, long_options, getargs): Parse -F/--force-define,
2159 and update muscle_percent_define_insert invocation.
2160 * src/muscle_tab.h (muscle_percent_define_how): New enum type.
2161 (muscle_percent_define_insert): Add argument with that type.
2162 * src/muscle_tab.c (muscle_percent_define_insert): Implement
2163 -F/--force-define behavior and priorities.
2164 * src/parse-gram.y (prologue_declaration): Update
2165 muscle_percent_define_insert invocations.
2166 * tests/input.at (`%define, --define'): Rename to...
2167 (`%define, --define, --force-define'): ... this and extend.
2168
246c4efa
JD
21692009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2170
2171 Update some comments to make sense for -D.
2172 * data/bison.m4 (b4_check_user_names): In header comments, say
2173 "user occurrence" instead of "grammar occurrence".
2174 * src/muscle_tab.h (muscle_percent_define_insert): Likewise.
2175 (muscle_percent_code_grow): Likewise just for consistency.
2176
531683e7
JD
21772009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2178
2179 * data/c++.m4: Update copyright year.
2180
e7bfa8b7
JD
21812009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
2182
2183 * data/c++.m4 (b4_namespace_close): Simplify slightly.
2184
8c221795
JD
21852009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
2186
2187 Handle a trailing `:' in a user-supplied C++ namespace better.
2188 * data/c++.m4 (b4_namespace_close): Don't let it be printed
2189 among the closing braces here. This fix might make the
2190 generated code easier to debug, but otherwise it should be
2191 insignificant because a trailing `:' is a C++ error already.
2192
c8bf65f0
AD
21932009-05-19 Akim Demaille <demaille@gostai.com>
2194
2195 remove useless variable.
2196 * src/getargs.c (skeleton_arg): Remove now useless variable.
2197 Should help the compiler see that this printf-like call is sane.
2198
7ac45a46
AD
21992009-05-11 Akim Demaille <demaille@gostai.com>
2200
2201 doc: use C++ headers.
2202 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
2203 headers.
2204
601bdfab
AD
22052009-05-05 Akim Demaille <demaille@gostai.com>
2206
2207 fix hexadecimal token number support.
2208 * src/scan-gram.l: Catch incorrect ids after hexadecimal numbers.
2209
d19123e6
AD
22102009-05-05 Akim Demaille <demaille@gostai.com>
2211
2212 tests: check token numbers.
2213 * tests/input.at (Numbered tokens): New.
2214
ecdfea9a
AD
22152009-05-04 Akim Demaille <demaille@gostai.com>
2216
2217 bison: catch bad symbol names.
2218 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
2219 * tests/input.at: Adjust.
2220
43e6aea5
AD
22212009-05-04 Akim Demaille <demaille@gostai.com>
2222
2223 space changes.
2224 * src/scan-gram.l: Untabify to be robust to zealous editors.
2225
c046698e
AD
22262009-05-04 Akim Demaille <demaille@gostai.com>
2227
2228 identifiers: dashes are letters.
2229 Dashes can now start identifiers (symbols and directives).
b10dd689 2230
c046698e
AD
2231 * src/scan-gram.l ({letter}): Add dash.
2232 ({id}): Remove it.
2233 * tests/input.at (Symbols): Adjust.
2234 Remove stray comment.
2235 * tests/regression.at (Invalid inputs): Adjust error message.
2236 * doc/bison.texinfo (Symbols): Update.
2237
966aba65
JD
22382009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
2239
2240 Declare %code to be a permanent feature.
2241 * NEWS (2.4.2): Here.
2242 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
2243 experimental.
2244 (Decl Summary): Likewise.
2245
812775a0
JD
22462009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
2247
2248 Convert underscores to dashes in some %define variable names.
2249 For now, just api.push-pull and lr.keep-unreachable-states.
2250 Maintain old names for backward compatibility.
2251 * NEWS (2.5): Document.
2252 * data/c.m4 (b4_identification): Update comment.
2253 * data/yacc.c: Update access.
2254 * doc/bison.texinfo: Update.
2255 * etc/bench.pl.in (bench_grammar): Update use.
2256 * src/files.c (tr): Move to...
2257 * src/getargs.c, src/getargs.h (tr): ... here because I can't
2258 think of a better place to expose it. My logic is that, for all
2259 uses of tr so far, command-line arguments can be involved, and
2260 getargs.h is already included.
2261 * src/main.c (main): Update access.
2262 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
2263 variable names to new variable names before assigning value.
2264 * src/reader.c (reader): Update setting default.
2265 * tests/calc.at: Update uses.
2266 * tests/conflicts.at (Unreachable States After Conflict
2267 Resolution): Update use.
2268 * tests/input.at (%define enum variables): Update use.
2269 (%define backward compatibility): New test group.
2270 * tests/push.at: Update uses.
2271 * tests/reduce.at: Update uses.
2272 * tests/torture.at: Update uses.
2273
1c4aa81d
JD
22742009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
2275
2276 Set all front-end %define defaults in one place.
2277 * src/main.c (main): Move lr.keep_unreachable_states default...
2278 * src/reader.c (reader): ... to here.
2279
1d0f55cc
JD
22802009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
2281
2282 Rename lr.default_reductions to lr.default-reductions.
2283 * NEWS (2.5): Here.
2284 * doc/bison.texinfo: Here.
2285 * src/lalr.c (initialize_LA): Here.
2286 * src/print.c (print_reductions): Here.
2287 * src/reader.c (reader): Here.
2288 * src/tables.c (action_row): Here.
2289 * tests/input.at (%define enum variables): Here.
2290 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
2291
0b593457
JD
22922009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
2293
2294 Pacify ./configure --enable-gcc-warnings.
2295 * tests/input.at (Symbols): Prototype yyerror and yylex.
2296
0939aa2d
AD
22972009-04-21 Akim Demaille <demaille@gostai.com>
2298
2299 tests: check the use of dashes and periods in symbols.
2300 * tests/input.at (Symbol): New test group.
2301
0b593457 23022009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
ae618dcc
JD
2303
2304 Document how `%define "var" "value"' is not M4-friendly.
2305 * src/parse-gram.y (variable): In comments here.
2306
0b593457 23072009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
6789b8bd
JD
2308
2309 Add copyright updates missed during previous cherry pick.
2310 * src/output.c: Here.
2311 * src/parse-gram.y: Here.
2312 * src/scan-gram.l: Here.
2313
663ce7bb
AD
23142009-04-20 Akim Demaille <demaille@gostai.com>
2315
2316 variables: accept dashes.
2317 * src/scan-gram.l ({id}): Also accept dashes after the initial
2318 letter.
2319 ({directive}): Use {id}.
2320 * src/parse-gram.y: Comment and formatting changes.
2321 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
2322 symbols.
2323 * src/complain.h, src/complain.c (yacc_at): New.
2324 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
2325 symbol names.
2326 * src/output.c (token_definitions_output): Do not #define token
2327 names with dashes.
2328
379261b3
JD
23292009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
2330
2331 Clean up recent patches a little.
2332 Reported by Akim Demaille.
2333 * doc/bison.texinfo (Understanding): Fix typos.
2334 * src/print.c (print_reductions): Don't use negated variable.
2335
25029e16
JD
23362009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
2337
2338 List accepted values for a %define enum variable with an invalid value.
2339 Suggested by Akim Demaille at
2340 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
2341 * data/bison.m4 (_b4_percent_define_check_values): Implement.
2342 * src/muscle_tab.c (muscle_percent_define_check_values): Implement.
2343 * tests/input.at (%define lr.default_reductions invalid values): Merge
2344 into...
2345 (%define enum variables): ... here, and update output.
2346
620b5727
JD
23472009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
2348
2349 Rename "default rule" to "default reduction".
2350 This includes changing variable names in code, changing
2351 comments, and renaming %define lr.default_rules to %define
2352 lr.default_reductions.
2353 * NEWS (2.5): Update IELR documentation.
2354 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c:
2355 Adjust YYDEFACT and yydefact_ documentation.
2356 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
2357 and lr.type documentation. Make some other wording
2358 improvements.
2359 (Glossary): Adjust cross-references and Default Reduction
2360 definition.
2361 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
2362 Remove a confusing comment pointed out by Akim Demaille.
2363 (initialize_LA): Adjust code.
2364 * src/print-xml.c (print_reductions): Adjust code.
2365 * src/print.c (print_reductions): Adjust code.
2366 * src/reader.c (reader): Adjust code.
2367 * src/tables.c (action_row): Adjust code.
2368 (token_actions): Adjust code.
2369 * src/tables.h: Adjust YYDEFACT documentation.
2370 * tests/input.at (%define lr.default_rules invalid values):
2371 Rename test group to...
2372 (%define lr.default_reductions invalid values): ... this, and
2373 update grammar file and expected output.
2374 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
2375 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
2376
34a6c2d1
JD
23772009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2378
2379 Document %define lr.type and lr.default_rules.
2380 * NEWS (2.5): Add an entry.
2381 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
2382 besides just LALR(1) and GLR(1).
2383 * doc/bison.texinfo (Introduction): Likewise.
2384 (Language and Grammar): Bison is no longer limited to LALR(1)
2385 restrictions.
2386 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
2387 when trying to distinguish from GLR. Talk about LR(1) grammars
2388 rather than LALR(1) grammars.
2389 (Decl Summary): In %define api.push_pull entry, say it applies
2390 to deterministic parsers in C rather than LALR(1) parsers in C.
2391 Add lr.default_rules entry.
2392 Add lr.type entry.
2393 (Mystery Conflicts): Bison is no longer limited to LALR(1)
2394 restrictions.
2395 (Generalized LR Parsing): Same changes as for the previous GLR
2396 section.
2397 (Memory Management): Say deterministic rather than LALR(1).
2398 (Understanding): Correct some bison output.
2399 Index discussion of "accepting state".
2400 Say deterministic rather than LALR(1).
2401 (Bison Options): In --yacc entry, say deterministic rather than
2402 LALR(1).
2403 In --report, --graph, and --xml entries, just don't mention
2404 LALR(1).
2405 (C++ Parsers): Say deterministic rather than LALR(1).
2406 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
2407 (Glossary): Add Accepting State, Consistent State, Default Rule,
2408 and IELR(1) definitions.
2409 In Generalized LR (GLR) definition, make same changes as in
2410 previous GLR sections.
2411 In LALR(1) definition, say Bison uses LALR(1) by default rather
2412 than implying Bison is limited to LALR(1).
2413 (LocalWords): Add IELR.
2414
f805dfcb
JD
24152009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2416
2417 Finish implementing %define lr.type.
2418 Its value can be "LALR", "IELR", or "canonical LR".
2419 * lib/timevar.def (TV_IELR_PHASE1): New var.
2420 (TV_IELR_PHASE2): New var.
2421 (TV_IELR_PHASE3): New var.
2422 (TV_IELR_PHASE4): New var.
2423 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
2424 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
2425 Sbitset.h, ielr.h, and ielr.c.
2426 * src/getargs.h, src/getargs.c (enum trace, trace_args,
2427 trace_types): Add trace_ielr.
2428 * src/lalr.h, src/lalr.c (ngotos): Export it.
2429 (F): Rename to...
2430 (goto_follows): ... this, update all uses, and export it.
2431 (set_goto_map): Export it.
2432 (map_goto): Export it.
2433 (compute_lookahead_tokens): Don't free goto_follows yet. Now
2434 handled in ielr.
2435 (initialize_LA): Export it. Move lookback allocation to...
2436 (lalr): ... here because, for canonical LR, initialize_LA must
2437 be invoked but lookback and much of the rest of LALR isn't
2438 needed.
2439 * main.c (main): Instead of lalr, invoke ielr, which invokes
2440 lalr.
2441 * src/reader.c (reader): Default lr.type to "LALR".
2442 Default lr.default_rules to "accepting" if lr.type is "canonical
2443 LR". Leave the default as "all" otherwise.
2444 Check for a valid lr.type value.
2445 * src/state.h, src/state.c (struct state_list): Add state_list
2446 member.
2447 (state_new): Initialize state_list member to NULL.
2448 (state_new_isocore): New function, exported.
2449 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
2450 exercises all values of lr.type.
2451 (GNU AWK Grammar): Rename test group to...
2452 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
2453 AT_TEST_EXISTING_GRAMMAR.
2454 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
2455 (GNU pic Grammar): Rename test group to...
2456 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
2457 AT_TEST_EXISTING_GRAMMAR.
2458 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
2459 all values of lr.type.
2460 (Single State Split): New test groups using AT_TEST_LR_TYPE.
2461 (Lane Split): Likewise.
2462 (Complex Lane Split): Likewise.
2463 (Split During Added Lookahead Propagation): Likewise.
2464
166366b2
JD
24652009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2466
2467 Add new files for IELR and canonical LR implementation.
2468 * src/AnnotationList.c: New.
2469 * src/AnnotationList.h: New.
2470 * src/InadequacyList.c: New.
2471 * src/InadequacyList.h: New.
2472 * src/Sbitset.c: New.
2473 * src/Sbitset.h: New.
2474 * src/ielr.c: New.
2475 * src/ielr.h: New.
2476
03c07b03
JD
24772009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
2478
2479 Implement %define lr.default_rules.
2480 Its value describes the states that are permitted to contain
2481 default rules: "all", "consistent", or "accepting".
2482 * src/reader.c (reader): Default lr.default_rules to "all".
2483 Check for a valid lr.default_rules value.
2484 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
2485 is "accepting", then only mark the accepting state as
2486 consistent.
2487 (initialize_LA): Tell state_lookahead_tokens_count whether
2488 lr.default_rules is "accepting".
2489 * src/tables.c (action_row): If lr.default_rules is not "all",
2490 then disable default rules in inconsistent states.
2491 * src/print.c (print_reductions): Use this opportunity to
2492 perform some assertions about whether lr.default_rules was
2493 obeyed correctly.
2494 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
2495 helps with checking the parser tables for a grammar.
2496 * tests/input.at (%define lr.default_rules invalid values): New
2497 test group.
2498 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
2499 AT_TEST_TABLES_AND_PARSE.
2500 (`no %define lr.default_rules'): New test group generated by
2501 AT_TEST_LR_DEFAULT_RULES.
2502 (`%define lr.default_rules "all"'): Likewise.
2503 (`%define lr.default_rules "consistent"'): Likewise.
2504 (`%define lr.default_rules "accepting"'): Likewise.
2505
44c124a3
AD
25062009-04-20 Akim Demaille <demaille@gostai.com>
2507
2508 Consistently refer to Yacc, not YACC.
2509 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
2510
42660736
JD
25112009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
2512
2513 Pacify make maintainer-check-posix.
2514 * tests/input.at (%define, --define): Move bison command-line
2515 options before grammar file name.
2516
a2d05674
JD
25172009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
2518
2519 Document semicolon warnings.
2520 * NEWS (2.5): Here.
2521
c4fae1ef
AD
25222008-12-08 Akim Demaille <demaille@gostai.com>
2523
2524 Fix portability issue in the test suite.
2525 * tests/local.at (AT_MATCHES_CHECK): New.
2526 Based on Perl instead of Sed. Sed has too many portability
2527 pitfalls, not ever Sed is GNU Sed.
2528 * tests/actions.at (Fix user actions without a trailing semicolon):
2529 Use it.
2530
42f4393a
DJ
25312008-12-07 Di-an Jan <dianj@freeshell.org>
2532
2533 Implement the FIXME that ends an user action with a semicolon
2534 if it seems necessary.
2535 * src/scan-code.l (flex rules section): Flag cpp directive from
2536 any `#' to the first unescaped end-of-line. Semicolon is not
2537 needed after `;', `{', '}', or cpp directives and is needed after
2538 any other token (whitespaces and comments have no effect).
2539 * tests/actions.at (Fix user actions without a trailing semicolon):
2540 New test.
2541 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
2542 to make user actions complete statements.
2543 Adjust column numbers in error messages.
2544 * tests/regression.at (Fix user actions without a trailing semicolon):
2545 Remove. Covered by new test.
2546
bd5df716
AD
25472009-04-14 Akim Demaille <demaille@gostai.com>
2548
2549 doc: minor fixes.
2550 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
2551 (Table of Symbols): Remove duplicate entry for %debug.
2552
7ba0d59d
EB
25532009-04-10 Eric Blake <ebb9@byu.net>
2554
2555 submodules: update to latest
2556 * submodules/autoconf: Use latest upstream Autoconf.
2557
b4d71a96
EB
25582009-04-06 Eric Blake <ebb9@byu.net>
2559
2560 Work around autoconf 2.63b bug in testsuite.
2561 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
2562 autoconf bug related to # in test.
2563
4ecd3681
JD
25642009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
2565
2566 * NEWS (2.5): Describe new -D/--define feature.
2567
c65e5292
AD
25682008-11-10 Akim Demaille <demaille@gostai.com>
2569
2570 --trace=muscles
2571 * src/getargs.h, src/getargs.c (trace_muscle): New.
2572 (trace_types, trace_args): Support it.
2573 * src/output.c (output_skeleton): Use it.
2574
96002de2
AD
25752008-11-10 Akim Demaille <demaille@gostai.com>
2576
2577 muscles_output.
2578 * src/output.c (muscles_output): New, extracted from...
2579 (output_skeleton): here.
2580 Adjust.
2581
fadb13b5
AD
25822008-11-21 Akim Demaille <demaille@gostai.com>
2583
2584 Display the changes in cross-options.texi.
2585 * build-aux/cross-options.pl ($sep): New, to separate items.
2586 * doc/Makefile.am ($(srcdir)/cross-options.texi): Use diff to display
2587 the changes.
2588
72183df4
DJ
25892008-11-20 Di-an Jan <dianj@freeshell.org>
2590
2591 Improves options in the manual.
2592 * doc/bison.texinfo (-g, -x): Add space before argument.
2593 (Option Cross Key): Implement FIXME: listing directives also.
2594 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
2595 (Short Option): Special case -d. Put arguments inside @option.
fadb13b5 2596 (Bison Directive): Add column, automatically extracted from
72183df4
DJ
2597 src/scan-gram.l (actual name passed as the first argument)
2598 with special case for %define.
2599 * doc/Makefile.am (doc/cross-options.texi): Pass src/scan-gram.l
2600 to build-aux/cross-options.pl.
2601 * src/getargs.c (usage): Document limitations of cross-options.pl.
2602 * src/scan-gram.l: Likewise.
2603
e80b068c
AD
26042009-02-25 Akim Demaille <demaille@gostai.com>
2605
2606 Copyright years.
2607 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
2608
e3ee30b8
AD
26092008-12-08 Akim Demaille <demaille@gostai.com>
2610
2611 Install autoconf as a submodule to get m4sugar.
2612 * .gitmodules: Add submodules/autoconf.
2613 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
2614 submodules/autoconf.
2615
c4eb1e84
JD
26162008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2617
2618 Simplify last patch slightly.
2619 * src/getargs.c (getargs): Here.
2620
10fa0146
JD
26212008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2622
2623 Fix last warning from --enable-gcc-warnings.
2624 * src/getargs.c (getargs): Don't assign const address to non-const
2625 pointer.
2626
6f5be1ab
DJ
26272008-11-17 Di-an Jan <dianj@freeshell.org>
2628
2629 Handle --enable-gcc-warnings.
2630 * src/getargs.c (command_line_location): Set parameters to void.
2631
11c4e57d
AD
26322008-11-11 Akim Demaille <demaille@gostai.com>
2633
2634 AT_FULL_COMPILE.
2635 * tests/actions.at, tests/regression.at: Use it.
2636
e186a284
AD
26372008-11-07 Akim Demaille <demaille@gostai.com>
2638
2639 Pass command line location to skeleton_arg and language_argmatch.
2640 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
2641 The location argument is now mandatory.
2642 Adjust all dependencies.
2643 (getargs): Use command_line_location.
2644
e14c6831
AD
26452008-11-07 Akim Demaille <demaille@gostai.com>
2646
2647 -D, --define.
2648 * src/getargs.c (usage): Document -D.
2649 Fix help string for --locations.
2650 (command_line_location): New.
2651 (short_options, long_options, getargs): Support -D, --define.
2652 (getargs): Move -d support at the right place.
2653 * doc/bison.texinfo (Bison Options): Update.
2654 * tests/input.at (%define, --define): New.
2655
75c21b61
AD
26562008-11-07 Akim Demaille <demaille@gostai.com>
2657
2658 Initialize the muscle table before parsing the command line.
2659 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
2660 (getargs): Define file_name.
2661 * src/main.c (main): Initialize muscle_tab before calling
2662 getargs.
2663 * src/muscle_tab.c (muscle_init): No longer define file_name, as
2664 its value is not available yet.
2665
33d2a860
AD
26662008-11-09 Akim Demaille <demaille@gostai.com>
2667
2668 Require the generation of parse-gram.output.
2669 * src/Makefile.am (YACC): Pass --report=all.
2670
006faedf
JD
26712009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
2672
2673 * NEWS (2.5): New stub.
2674
ecd1b61c
JD
26752009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
2676
2677 Fix options documentation.
2678 * build-aux/cross-options.pl: As in --help output, write optional
2679 arguments as [=ARG] not =[ARG].
2680 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
2681
f67c4037
AD
26822008-11-07 Akim Demaille <demaille@gostai.com>
2683
2684 Fix --help.
2685 * src/getargs.c (usage): Fix help string for -W.
2686
0213d651
AD
26872008-11-07 Akim Demaille <demaille@gostai.com>
2688
2689 Handle more general types of option arguments.
2690 * build-aux/cross-options.pl: The argument ends at the first
2691 space, not the first non-symbol character.
2692 Use @var for each word appearing the argument description.
2693
c19178bf
JD
26942009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
2695
2696 Remove spurious initial empty lines.
2697 * data/location.cc: End the @output lines with an @.
2698
0d2b2ab0
AD
26992008-11-04 Akim Demaille <demaille@gostai.com>
2700
2701 Remove spurious initial empty lines.
2702 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
2703 * data/yacc.c: End the @output lines with an @.
2704
8ba62e3e
JD
27052009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
2706
2707 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
2708 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
2709 requirements for a correct m4 are stricter.
2710 * m4/m4.m4: Replace with Autoconf 2.63's m4/m4.m4.
2711 * configure.ac: Update to use AC_PROG_GNU_M4.
2712 Reported by Eric Blake.
2713
5bc993d9
JD
27142009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2715
2716 Help with updating web manual.
2717 * HACKING: Incorporate instructions from gnulib/doc/README.
2718 * bootstrap.conf (gnulib_modules): Add gendocs.
2719
580c075d
JD
27202009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2721
2722 Fix strange %define locations for default values.
2723 Reported by Akim Demaille at
2724 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
2725 and discussed again starting at
2726 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
2727 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
2728 because location information is bogus.
2729 Use angle brackets to delimit fake file name because square brackets
2730 look like underexpanded m4. Choose a better fake file name.
2731 Use negative line numbers.
2732 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
2733 * src/location.c (location_print): If line for a boundary is negative,
2734 only print that boundary's file name.
2735 * src/location.h: Document that.
2736 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2737 defaults): Update output.
2738
5d3a1ecb
AD
27392008-11-07 Akim Demaille <demaille@gostai.com>
2740
2741 Locations without columns for command line arguments.
2742 * src/location.c (location_print): Don't display negative columns.
2743 * src/location.h: Document this.
2744
015e86a7
JD
27452009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
2746
2747 Add reminder about uploading public key to keys.gnupg.net.
2748 * HACKING (Release Procedure): Here.
2749
c1455bab
AD
27502009-03-31 Akim Demaille <demaille@gostai.com>
2751
2752 bootstrap: --help to stdout.
2753 * bootstrap (usage): Don't send --help to stderr.
2754 Use a here doc instead of a long string.
2755
2075a82a
AD
27562009-03-31 Akim Demaille <demaille@gostai.com>
2757
2758 bootstrap: README-hacking no longer exists
2759 * bootstrap (checkout_only_file): Set to HACKING.
2760
26fccd4d
AD
27612009-03-26 Akim Demaille <demaille@gostai.com>
2762
2763 doc: merge HACKING and README-hacking.
2764 Two files is confusing.
2765 Reported by Alexandre Duret-Lutz.
5bc993d9 2766
26fccd4d
AD
2767 * README-hacking: Merge into...
2768 * HACKING (Working from the repository): here.
2769
6469c4d7
AD
27702009-03-26 Akim Demaille <demaille@gostai.com>
2771
2772 doc: update README-hacking.
2773 * README-hacking: We now use git and git submodules.
2774 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
2775
b328890a
AD
27762009-03-26 Akim Demaille <demaille@gostai.com>
2777
2778 lalr1.cc: avoid GCC 4.3 warnings.
2779 GCC 4.3 now warns about "a || b && c" and asks for explicit
2780 parentheses.
2781 Reported by Alexandre Duret-Lutz.
2782 * data/location.cc: Update copyright years.
2783 (Position::operator==): Use parens to make precedence explicit.
2784 Compare lines and columns first, as they are more likely to be
2785 different, and they are faster to compare.
2786
f3079439
AD
27872009-03-26 Akim Demaille <demaille@gostai.com>
2788
2789 gnulib: update.
2790 * gnulib: Update to latest.
2791 * lib/Makefile.am (AM_CPPFLAGS): It is now defined by gnulib, so
2792 use +=.
2793
8defe11b
AD
27942009-01-08 Akim Demaille <demaille@gostai.com>
2795
2796 Fix grep portability issues.
2797 Grep on Solaris does not support -q.
2798 Reported by Summum Bonum.
5bc993d9 2799
8defe11b
AD
2800 * NEWS: Add a stub for 2.4.2.
2801 * THANKS: Add Summum Bonum.
2802 * tests/atlocal.in (EGREP): New.
2803 (CC, CXX, XSLTPROC): Make it possible to override them via
2804 envvars.
2805 * tests/java.at: Use $EGREP instead of egrep.
2806 Use AT_CHECK's ignore instead of grep's -q.
2807
41930e7a
JD
28082008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
2809
2810 Version 2.4.1.
2811 * NEWS: Set version and date.
2812 * lib/Makefile.am: Update copyright year.
2813 * tests/atlocal.in: Update copyright year.
2814
d07932ef
JD
28152008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
2816
2817 Semicolon feature removal is not about future language support.
2818 * NEWS: The semicolon feature is no longer active for newer languages,
2819 so don't claim that it causes trouble for them.
2820
0364b334
JD
28212008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
2822
2823 * gnulib: Update submodule to HEAD.
2824
876fd835
AD
28252008-12-09 Akim Demaille <demaille@gostai.com>
2826
2827 Update data/README.
2828 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
2829
bee1df15
EB
28302008-12-05 Eric Blake <ebb9@byu.net>
2831
2832 Build testsuite with newer autoconf.
2833 * tests/output.at (m4_expand): Don't override in newer autoconf,
2834 where the underlying implementation changed.
2835 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
2836 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
2837 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
2838 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
2839 since some of them contain unbalanced ')'.
2840
7e6d1e22
JD
28412008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
2842
2843 * NEWS: Clarify a little.
2844
a957d06c
JD
28452008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
2846
2847 * NEWS: Update for recent changes.
2848
462503f8
JD
28492008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2850
2851 Fix unexpanded macros in GLR defines file.
2852 Reported by Csaba Raduly at
2853 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
2854 * THANKS (Csaba Raduly): Add.
2855 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
2856 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
2857 lexer in a separate module that includes the defines file.
2858 (AT_CHECK_CALC): Use AT_FULL_COMPILE and request compilation of lexer
2859 source.
2860 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
2861 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
2862 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
2863 (AT_DATA_SOURCE_PROLOGUE): New.
2864 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
2865 (AT_DATA_SOURCE): New.
2866 (AT_FULL_COMPILE): New, copied from master branch and extended to
2867 support an additional source file.
2868
bf151b75
JD
28692008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2870
2871 Don't let maintainer-*-check targets force a version update.
2872 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
2873 handled.
2874
f56274a8
DJ
28752008-11-17 Di-an Jan <dianj@freeshell.org>
2876
2877 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
2878 Align menus. Adjust word wrapping. Use node names for menu names.
2879 (Examples): Don't abbreviate node names.
2880 (LocalWords): Remove abbreviations.
2881 (Copying): Make description a sentence.
bf151b75 2882 (Java Action Features): Remove period to match the rest of menu.
f56274a8 2883
b5775a81
PB
28842008-11-11 Paolo Bonzini <bonzini@gnu.org>
2885
2886 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
2887 * configure.ac: Adjust usage.
2888 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
2889 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
2890 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
2891
7ed73f82
JD
28922008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
2893
2894 Don't add a semicolon to actions for %skeleton or %language.
2895 It breaks Java test cases as reported by Akim Demaille.
2896 * src/scan-code.l: Implement.
2897
4b1ebc49
JD
28982008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
2899
2900 Clean up %skeleton and %language priority implementation.
2901 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
2902 remove static qualifier because others will soon need to see it.
2903 (language_prio): Likewise.
2904 (getargs): Use command_line_prio rather than 0.
2905 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
2906 enum fields.
2907 (skeleton_prio): Extern it.
2908 (language_prio): Extern it.
2909 * src/parse-gram.y: Use grammar_prio rather than 1.
2910
738cde3e
AD
29112008-11-04 Akim Demaille <demaille@gostai.com>
2912
2913 * NEWS: Mention the trailing semicolon in action.
2914
d6fb461d
AD
29152008-11-04 Akim Demaille <demaille@gostai.com>
2916
2917 Reformat NEWS.
2918 * NEWS: Use more outline-mode markup.
2919 Suggested by Jim Meyering.
2920
14da0cdd
JD
29212008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
2922
2923 Fix user actions without a trailing semicolon.
2924 Reported by Sergei Steshenko at
2925 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
2926 * THANKS (Sergei Steshenko): Add.
2927 * src/scan-code.l (SC_RULE_ACTION): Fix it.
2928 * tests/regression.at (Fix user actions without a trailing semicolon):
2929 New test case.
2930
c9ba9e59
JD
29312008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2932
2933 Initiate further development.
2934 * NEWS: Create an empty section for new entries.
2935 * gnulib: Update submodule to HEAD.
2936
bfb40910
JD
29372008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2938
2939 * NEWS: Version 2.4.
2940
241fda7a
JD
29412008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2942
2943 Prepare for next release.
2944 * NEWS: Briefly mention changes since 2.3b.
2945 * README: Say GNU m4 1.4.6, which we've been requiring in release
2946 announcements already, not 1.4.3, which breaks the build.
2947
ed4d67dc
JD
29482008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2949
2950 Say %language is experimental.
2951 We're thinking of extending it's effect on output file naming. See the
2952 thread at
2953 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
2954 * NEWS: Say it's experimental.
2955 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
2956 recommend it over %skeleton for now.
2957 (Bison Options): Likewise.
2958 (C++ Bison Interface): Use %skeleton not %language.
2959 (Calc++ Parser): Use %skeleton not %language.
2960 * src/getargs.c (usage): Say it's experimental.
2961
e254a580
DJ
29622008-11-01 Di-an Jan <dianj@freeshell.org>
2963 Paolo Bonzini <bonzini@gnu.org>
2964
2965 Support all Java parser class modifiers.
2966 * data/java.m4 (b4_percent_define_get3): New.
2967 (b4_final_if, b4_strictfp_if): New.
2968 * data/lalr1.java (final, strictfp, extends, implements): Support.
2969 * doc/bison.texinfo (final, strictfp, extends, implements): Add
2970 documentation.
2971 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
2972 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
2973 (AT_CHECK_JAVA_GREP): New.
2974 (Java parser class modifiers): New test.
2975 (Java parser class extends and implements): New test.
2976
2977 Model exception propagation better with throws and lex_throws.
2978 * data/java.m4 (b4_list2): New.
2979 (throws): Change default.
2980 * data/lalr1.java (yyaction): Add throws.
2981 (parse): Add lex_throws in addition to throws.
2982 * doc/bison.texinfo (throws, lex_throws): Add documentation.
2983 * tests/java.at (Java throws specifications): New test.
2984
2985 Improve documentation for Java parsers.
2986 * doc/bison.texinfo (Java Parsers): Add subsections.
2987 Don't quote first argument of %define.
2988 (Java Bison Interface): Document output files. Move documentation
2989 of parser class and merge into Java Parser Interface. Document
2990 features that error out. Document directives with no effect.
2991 Move note about Javadoc higher.
2992 (Java Semantic Values): Explicitly mention stype.
2993 Document that generic types cannot be used.
2994 (Java Location Values): Use @deftypeivar. Document constructors.
2995 Correct return value for toString.
2996 (Java Parser Interface): List undocumented constants/fields.
2997 Move documentation of fields added by %parse-param closer to list
2998 of members. Document that token names are added as fields.
2999 Document constructors accurately. Remove error method.
3000 (Java Scanner Interface): Move note on %pure-parser to Java Bison
3001 Interface. Describe %code lexer and yylex accutately.
3002 Remove documentation that does not match the code.
3003 (Java Action Features): New.
3004 (Java Differences): Add reference. Add item on semantic values.
3005 Add note about @{ ... @}. Clarify %% epilogue placement.
3006 (Java Declarations Summary): New.
3007
3008 Fix Java skeleton.
3009 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
3010 (b4_remove_comma): Quote test argument.
3011 (b4_identification): Remove "bison" field.
3012 * tests/java.at (Java parser class and package names): New test.
3013 (Java %parse-param and %lex-param): New test.
3014 (Java stype, position_class and location_class): New test.
3015
f259e4e6
PB
30162008-10-31 Di-an Jan <dianj@freeshell.org>
3017
3018 * data/lalr1.jave: Update copyright years.
3019 (YYParser): Correct name of "generated from" file in Javadoc:
3020 use b4_file_name instead of @ofile@.
3021 (Location constructor): Correct Javadoc parameter name.
3022 (yylloc): Add missing opening m4 quote after b4_location_if.
3023 This removes a stray [ in the Javadoc of Lexer.getStartPos.
3024 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
3025 (YYParser constructor): Correct Javadoc parameter name.
3026
cae5057f
JD
30272008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
3028
3029 Always put auxiliary code files in the same dir as other output files.
3030 * src/files.c (compute_file_name_parts): When the user specifies
3031 --output but not --file-prefix, extract the directory prefix from the
3032 file prefix not from the grammar file name. This affects the location
3033 of files like location.hh generated by the C++ skeleton. The includes
3034 in the other output files require this fix.
3035 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
3036 for expected output files.
3037 (Output files): Add a test for the above.
3038
4af432ba
JD
30392008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
3040
3041 * gnulib: Update submodule to HEAD.
3042
e26d4e43
JD
30432008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
3044
3045 Update copyright year.
3046 * src/files.c: Here.
3047
c0ee9e21
DJ
30482008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
3049
3050 Don't overwrite the input file.
3051 * src/files.c (output_file_name_check): Fatal error if using input file
3052 for output.
3053 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
3054 argument.
3055 (Conflicting output files): Add test.
3056
482dc52f
AD
30572008-10-28 Akim Demaille <demaille@gostai.com>
3058
3059 Space changes.
3060 * data/lalr1.cc: Formatting changes.
3061
52cbbe84
AD
30622008-10-28 Akim Demaille <demaille@gostai.com>
3063
3064 Don't define debugging functions when !YYDEBUG.
3065 * data/lalr1.cc (debug_stream, set_debug_stream)
3066 (debug_level_type, debug_level, set_debug_level): Don't
3067 declare them when YYDEBUG is not defined.
3068 The implementation are already YYDEBUG-aware.
3069
0925d5bf
AD
30702008-10-28 Akim Demaille <demaille@gostai.com>
3071
3072 Prefer "continue" for empty loop bodies.
3073 * etc/bench.pl.in: Use "continue" instead of {}.
3074
cf98343c
AD
30752008-10-28 Akim Demaille <demaille@gostai.com>
3076
3077 Space and comments changes.
3078 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
3079 * data/c.m4, data/lalr1.cc: Space changes.
3080
9f467b7d
AD
30812008-10-28 Akim Demaille <demaille@gostai.com>
3082
3083 Make gnulib a submodule.
3084 * gnulib: New.
3085 * .gitmodules (gnulib): New.
3086
0f0e1ace
JD
30872008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
3088
3089 Fix yyerror_range for user-defined location type in C++. Reported by
3090 Georg Sauthoff at
3091 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
3092 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
3093 * THANKS (Georg Sauthoff): Add.
3094
548e2104
JD
30952008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
3096
3097 Update several administrative files mainly to facilitate releasing.
3098 * HACKING (Administrivia): Make the git-merge-changelog notes more
3099 helpful.
3100 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
3101 (Release Procedure): Update for git and add numerous details that were
3102 previously missing.
3103 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
3104 * maint.mk (announcement): Don't list bison as a bootstrap tool so
3105 that announcements don't claim we bootstrapped with whatever bison
3106 happened to be in PATH. Add flex as a bootstrap tool.
3107 * Makefile.maint: Remove, previously replaced by maint.mk.
3108 * Makefile.cfg: Remove, and migrate settings to...
3109 * cfg.mk: ... here for the sake of `make announcement'.
3110 * bootstrap.conf (gnulib_modules): Add announce-gen.
3111 * README: Say GNU Bison instead of just Bison. Suggested by Karl
3112 Berry.
3113
ddf17a6e
PB
31142008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
3115
3116 Small but important bugfixes for the Java skeleton.
3117 * data/lalr1.java (yyerror): Change Location to b4_location_type.
3118 (yy_symbol_print): Call toString on yyvaluep.
3119
e1145ad8
AD
31202008-08-29 Akim Demaille <demaille@gostai.com>
3121
3122 Clarify UPDATED use.
bee1df15 3123 * doc/bison.texinfo: It refers to the last edition of this file,
e1145ad8 3124 not to the release date of Bison.
bee1df15 3125 Reported by Joel E. Denny.
e1145ad8 3126
0df72d78
AD
31272008-08-29 Akim Demaille <demaille@gostai.com>
3128
3129 * README: Update FAQ pointer.
3130 Reported by Joel E. Denny.
3131
9a90b6bb
EB
31322008-08-27 Eric Blake <ebb9@byu.net>
3133
3134 Resync m4sugar from autoconf.
3135 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
3136 (m4_init): Adjust to latest m4.git changes.
3137 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
3138 effects.
3139 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
3140 (_m4_list_cmp): Reduce side effects.
3141
65015668
AD
31422008-08-27 Akim Demaille <demaille@gostai.com>
3143
3144 Check yyerrok in calc.at.
bee1df15
EB
3145 * tests/calc.at (calc.y): Use yyerrok on "( error )".
3146 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
3147 expected.
65015668 3148
98e26a92
AD
31492008-08-27 Akim Demaille <demaille@gostai.com>
3150
3151 Support yyerrok in lalr1.cc.
3152 YYBACKUP is still to import back into lalr1.cc.
bee1df15 3153 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
98e26a92 3154
86c0e784
JD
31552008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
3156
3157 For maintainer-check*, don't recompile for a $(VERSION) update.
3158 * cfg.mk: New file.
3159 (_is-dist-target): Override the one in GNUmakefile.
3160 * Makefile.am (EXTRA_DIST): Add cfg.mk.
3161
88511166
JD
31622008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
3163
3164 Update for recent change to gnulib.
3165 * src/parse-gram.y: Don't include strverscmp.h. It comes from
3166 string.h now.
3167
6bbb2ed5
EB
31682008-08-15 Eric Blake <ebb9@byu.net>
3169
d67c52e8
EB
3170 Remaining m4sugar merge from autoconf.
3171 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
3172 * data/m4sugar/foreach.m4: New file, copied from autoconf.
3173 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
3174 * src/output.c (output_skeleton): Tell m4 how to find it.
3175
6bbb2ed5
EB
3176 Partial m4sugar merge from autoconf: m4_map.
3177 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
3178 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
3179 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
3180 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
3181 for empty list.
3182 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
3183 Likewise.
3184 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
3185 declares it.
3186
8dce3875
JD
31872008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
3188
3189 Keep .version and PACKAGE_VERSION in sync.
3190 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
3191 dependency, and add comments justifying this in more detail. Discussed
3192 starting at
3193 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
3194
882a1fbf
EB
31952008-08-06 Eric Blake <ebb9@byu.net>
3196
a3764451
EB
3197 Partial m4sugar merge from autoconf: m4_shiftn.
3198 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
3199 (m4_shift2, m4_shift3): New macros.
3200 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
3201 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
3202 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
3203 * data/java.m4 (b4_remove_comma): Likewise.
3204
882a1fbf
EB
3205 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
3206 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
3207 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
3208 (m4_init): Consolidate wrapped text into single m4_wrap.
3209 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
3210 in wrapped text.
3211
a30e920d
EB
32122008-08-05 Eric Blake <ebb9@byu.net>
3213
dfcc5959
EB
3214 Partial m4sugar merge from autoconf: builtins, version.m4.
3215 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
3216 (m4_prepend): Remove, as it is unused and inherently quadratic,
3217 whereas m4_append is linear in newer m4.
3218 (m4_mkstemp): New builtin.
3219 (m4_symbols): Make rename conditional.
3220 (m4_version_prereq): Ensure fatal error if used in bison, which
3221 intentionally lacks version.m4.
3222
a30e920d
EB
3223 Fix comments in m4sugar.
3224 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
3225
445b7470
JD
32262008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
3227
3228 Update for recent .gitignore fix in Gnulib.
3229 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
3230 anchored .gitignore entries.
3231
a1e50014
JD
32322008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
3233
3234 Set gnu or gnits strictness.
3235 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
3236 development and gnits strictness for releases. Based on Eric Blake's
3237 suggestion at
3238 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
3239
d43f77e7
PB
32402008-07-31 Paolo Bonzini <bonzini@gnu.org>
3241
3242 * NEWS: Clarify documentation of %language.
3243
fee2ed87
PB
32442008-07-31 Paolo Bonzini <bonzini@gnu.org>
3245
3246 Support usage of git-merge-changelog.
3247 * .gitattributes: New.
3248 * HACKING: Document usage of git-merge-changelog.
3249 * bootstrap: Install git-merge-changelog entries in .git/config
3250 if appropriate.
3251
78029cd5
JD
32522008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3253
3254 Remove remaining dependence on CVS Id keyword.
3255 * ChangeLog: For the sake of people still using CVS, don't use dollars
3256 when mentioning Id.
3257 * data/xslt/bison.xsl: Remove Id from header comments, where it was
3258 unusual anyway.
3259 * data/xslt/xml2dot.xsl: Likewise.
3260 * data/xslt/xml2text.xsl: Likewise.
3261 * data/xslt/xml2xhtml.xsl: Likewise.
3262 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
3263 * doc/Makefile.am (neutralize): Remove, no longer needed.
3264 (.x.1): Don't use neutralize.
3265 (edit): Don't substitute for ID.
3266 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
3267
c53d18b1
JD
32682008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3269
3270 Fix dependence on computed configure variables.
3271 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
3272 $(top_srcdir)/configure.ac so that changes to computed variables, such
3273 as PACKAGE_VERSION, are seen.
3274 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
3275
5523ac79
JD
32762008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
3277
3278 Update copyright dates for recent changes.
3279 * Makefile.am: Here.
3280 * src/Makefile.am: Here.
3281 * src/reduce.c: Here.
3282 * tests/reduce.at: Here.
3283
8fa36911
JD
32842008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
3285
3286 Use git-version-gen for version names between releases.
3287 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
3288 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
3289 * .prev-version: New.
3290 * .version.in: Remove.
78029cd5 3291 * ChangeLog: Remove the Id previously used for capturing the CVS
8fa36911
JD
3292 revision.
3293 * GNUmakefile: Remove, now copied from Gnulib.
3294 * Makefile.am: Add code suggested by comments in
3295 build-aux/git-version-gen.
3296 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
3297 .prev-version, and .version.
3298 * NEWS (2.3b+): Rename to...
3299 (?.?): ... this because we're dropping the "+" version naming scheme,
3300 but, in general, we still can't be sure of our next release name.
3301 * bootstrap: Add a quick hack to remove from .gitignore the
3302 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
3303 entry. This should really be fixed in gnulib instead.
3304 * bootstrap.conf (gnulib_modules): Add gnumakefile.
3305 * configure.ac (AC_INIT): Set version name by invoking
3306 build-aux/git-version-gen.
3307 (AC_CONFIG_FILES): Remove .version, now generated by
3308 build-aux/git-version-gen.
3309 * maint.mk: New, copied from coreutils.
3310 * doc/.cvsignore (bison.1): Add.
3311 * doc/.gitignore (/bison.1): Add.
3312 * doc/bison.1: Remove, generated.
3313 * src/.cvsignore (revision.c): Remove.
3314 * src/.gitignore (/revision.c): Remove.
3315 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
3316 (BUILT_SOURCES): Remove revision.c.
3317 (revision.c): Remove.
3318 * src/getargs.c (version): Don't print revision after the VERSION.
3319 * src/revision.h: Remove.
3320
bcf07cb7
JD
33212008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
3322
3323 Fix untranslatable composition of sentences. Reported by Goran
3324 Uddeborg at
3325 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
3326 * THANKS (Goran Uddeborg): Add.
3327 * src/reduce.c (reduce_print): Report the number of nonterminals and
3328 rules useless in the grammar in separate sentences.
3329 * tests/reduce.at (Useless Rules): Update output.
3330 (Reduced Automaton): Likewise.
3331 (Underivable Rules): Likewise.
3332 (Empty Language): Likewise.
3333
9aacab9a
JD
33342008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
3335
3336 Fix some .gitignore and .cvsignore problems.
3337 * bootstrap (insert_sorted_if_absent): Replace all uses with...
3338 (insert_vc_ignore): ... this new function, which prepends `/' to all
3339 .gitignore entries before passing them to insert_sorted_if_absent.
3340 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
3341 .cvsignore files are maintained even though Bison developers run
3342 bootstrap while using Git.
3343 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
3344 unneeded by Bison.
3345 (gnulib): Add.
3346 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
3347 unneeded. Reported by Eric Blake.
3348 * lib/.gitignore (/*~): Add.
3349 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
3350 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
3351 Blake.
3352 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
3353
a9fc7990
JD
33542008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
3355
3356 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
3357 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
3358 * bootstrap.conf (gnulib_modules): Add unsetenv.
3359 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
3360 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
3361 (/setenv.m4): Add.
3362 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
3363 the first argument because it may become position-dependent, and unset
3364 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
3365 Add comments explaining these issues in more detail.
3366
0f1d6f10
JD
33672008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
3368
3369 Add .gitignore everywhere based on .cvsignore.
3370 * .gitignore: New.
3371 * build-aux/.gitignore: New.
3372 * data/.gitignore: New.
3373 * doc/.gitignore: New.
3374 * etc/.gitignore: New.
3375 * examples/.gitignore: New.
3376 * examples/calc++/.gitignore: New.
3377 * lib/.gitignore: New.
3378 * m4/.gitignore: New.
3379 * po/.gitignore: New.
3380 * runtime-po/.gitignore: New.
3381 * src/.gitignore: New.
3382 * tests/.gitignore: New.
3383
7bd1665a
JD
33842008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3385
3386 * NEWS (2.3b+): New section, empty for now.
3387 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
3388
72c5b982
JD
33892008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3390
3391 * NEWS (2.3b): Update release date since there has been a delay in
3392 getting the announcements and tarballs out.
3393
bd02cd5d
JD
33942008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
3395
3396 * NEWS: Version 2.3b.
3397 * configure.ac (AC_INIT): Likewise.
3398 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
3399
9126263e
JD
34002008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
3401
3402 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
3403 been doing it for years.
3404 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
3405 (Release Procedure): Add FIXME about make alpha being unmaintained.
3406
fa6aa7b3
JD
34072008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
3408
3409 * data/yacc.c: Reformat m4 a little for readability.
3410 * src/lalr.c (build_relations): Correct comment.
3411
d30b312d
JMG
34122008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3413
3414 DJGPP specific issue.
3415 * djgpp/config.sed: Fixes required to run configure scripts generated
3416 by autoconf 2.62.
3417
138d4cd9
JD
34182008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
3419
3420 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
3421 coordinator@translationproject.org.
3422
8f7e2e1f
JD
34232008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3424
3425 * THANKS: Add Eric Blake.
3426
f55efa38
JD
34272008-04-23 Eric Blake <ebb9@byu.net>
3428
3429 Revert prior patch, by working around autoconf regression.
3430 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
3431 ("Output file name: ("): Uncomment test.
3432 ("Output file name: )"): Likewise.
3433 Based on an idea from Noah Misch.
3434
096c9f9d
JD
34352008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3436
3437 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
3438 2.61. Reported by Juan Manuel Guerrero at
3439 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
3440 * tests/output.at ("Output file name: ("): Comment out test case for
3441 now.
3442 ("Output file name: )"): Likewise.
3443
0f664b89
JD
34442008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3445
3446 * GNUmakefile: Update git-version-gen invocation so make dist
3447 succeeds.
3448
1cfe6375
JD
34492008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3450
3451 Update to the current gnulib CVS repository, and fix trigraph handling
3452 in Bison.
3453 * bootstrap: Update gnulib CVS repository URL.
3454 (symlink_to_dir): Encapsulate the code that guarantees the destination
3455 directory exists into...
3456 (check_dst_dir): ... this new function, and...
3457 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
3458 fail when copying files into lib/uniwidth/.
3459 * src/output.c (prepare_symbols): When writing yytname muscles, where
3460 symbol names will be encoded in C-string literals, tell quotearg to
3461 escape trigraphs. This used to be the default in gnulib.
3462 * tests/regression.at (Token definitions): Because of the change in
3463 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
3464 escapes trigraphs in symbol names. Thus, yytname no longer has
3465 trigraphs unnecessarily doubly escaped. Update test case output.
3466 Extend test case to be sure Bison's own error messages will no longer
3467 have trigraphs in symbol names unnecessarily escaped once.
3468
74c52fc8
JD
34692008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
3470
3471 Fix make dist infinite loop reported by Juan Manuel Guerrero at
3472 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
3473 * .cvsignore: Add .version.
3474 * .version.in: New.
3475 * bootstrap.conf (gnulib_modules): Add git-version-gen.
3476 * configure.ac (AC_CONFIG_FILES): Add .version.
3477 * build-aux/.cvsignore: Add git-version-gen.
3478
8e55b3aa
JD
34792008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
3480
3481 * NEWS (2.3a+): Mention that -g now takes an argument.
3482 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
3483 consistency. Update the -g and -x entries now that they take
3484 arguments. Use brackets to indicate optional arguments.
3485 * src/getargs.c (usage): Explain the relationship between arguments of
3486 long and short options more completely. Document --defines and -d
3487 separately since the former takes an argument but, for POSIX Yacc, the
3488 latter does not.
3489 (short_options): Let -W take an optional argument like --warnings.
8452fdd9 3490 (getargs): Sort cases.
8e55b3aa 3491
59c5ac72
AD
34922008-02-28 Akim Demaille <demaille@gostai.com>
3493
3494 * doc/bison.texinfo: Fix a few typos.
3495
118d4978
AD
34962008-02-28 Akim Demaille <akim@epita.fr>
3497
3498 * doc/bison.texinfo (Bison Options): Document -W.
3499 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
3500
7020f1e9
AD
35012008-02-28 Akim Demaille <akim@epita.fr>
3502
3503 * src/getargs.c (short_options): Split and sort for readability.
3504 -g and -x take optional arguments, just like their long options.
3505 * build-aux/cross-options.pl: Use /x to make the regexp easier to
3506 understand.
3507 Fix the handling of $opt which resulted in all the argument to be
3508 considered as optional.
3509
59da312b
JD
35102008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
3511
3512 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
3513 say its interface is experimental.
3514 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
3515 Java.
3516 (Bison Options): In the -L and --language entry, mention Java.
3517 (Java Bison Interface): Say the interface is experimental.
3518 * src/getargs.c (usage): Mention -L and --language.
3519
3520 * NEWS (2.3a+): Say the push parsing interface is experimental.
3521 * doc/bison.texinfo (Push Decl): Likewise.
3522 (Decl Summary): Likewise in the "%define api.push_pull" entry.
3523 (Push Parser Function): Likewise.
3524 (Pull Parser Function): Likewise.
3525 (Parser Create Function): Likewise.
3526 (Parser Delete Function): Likewise.
3527 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
3528 yypull_parse, and yypush_parse entries.
3529
3530 * NEWS (2.3a+): Mention XML support, and say the schema is
3531 experimental.
3532 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
3533 * src/getargs.c (usage): Say the XML schema is experimental.
3534
3535 * NEWS (2.3a+): Say option instead of flag.
3536
2bb3ebec
WP
35372008-02-21 Wojciech Polak <polak@gnu.org>
3538
3539 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
3540 text.
3541
333e670c
JD
35422008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
3543
3544 Fix impure push parser compile error reported by Bob Rossi at
3545 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
3546 * data/yacc.c: Clean up whitespace in the output a little.
3547 (yypstate_allocated): Define for impure push parsers regardless of
3548 whether the pull interface is also requested.
3549 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
3550 check impure push parsers without the pull interface.
3551
3552 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
3553 yyerror takes arguments specified by %parse-param while yypstate_new
3554 does not.
3555 * doc/bison.texinfo (Parser Create Function): Document that
3556 yypstate_new returns 0 for multiple impure parser instances.
3557 * tests/push.at (Push Parsing: Multiple impure instances): Update
3558 expected stderr output.
3559
798096e1
JD
35602008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3561
3562 * runtime-po/POTFILES.in (push.c): Remove.
3563
9ca7f077
JD
35642008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
3565
3566 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
3567 * data/push.c: Rename to...
3568 * data/yacc.c: ... this, overwriting it.
3569 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
3570 `%push-pull-parser' -> `%define api.push_pull "both"'.
3571 Remove old yacc.c tests, and update push.c tests to yacc.c.
3572
42ee26bb
JD
35732008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
3574
3575 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
3576 `"%code top" blocks' instead of `%code "top" blocks'.
3577 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
3578 Clean up whitespace in the output a little.
3579
b1cc23c4
JD
35802008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
3581
3582 Fix documentation problems reported by Tim Josling at
3583 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
3584 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
3585 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
3586 integers. Explain the effect of literal string aliases on error
3587 messages. Copy token 0 documentation from the C++ skeleton
3588 documentation.
3589
ab7f29f8
JD
35902008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
3591
3592 Accept a token number in a %left, %right, or %nonassoc for POSIX
3593 conformance. Reported by Tim Josling at
3594 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
3595 * NEWS (2.3a+): Mention.
3596 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
3597 and code numbers are treated by precedence declarations.
3598 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
3599 of symbols.1.
3600 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
3601 of symbol.
3602 (symbol.prec): New, just like symbol but allows INT.
3603 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
3604 longer holds.
3605 * tests/regression.at (Token number in precedence declaration): New
3606 test case.
3607
a924ef36
JMG
36082008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3609
3610 DJGPP specific issues.
3611 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
3612 be changed. Copyright timestamp adjusted.
3613 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
3614 be changed. Copyright timestamp adjusted.
3615 * djgpp/config.site: Copyright timestamp adjusted.
3616 * djgpp/config_h.sed: Copyright timestamp adjusted.
3617 * djgpp/djunpack.bat: Copyright timestamp adjusted.
3618 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
3619 filename translation list.
3620 * djgpp/subpipe.c (init_subpipe): Check the environment variables
3621 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
3622 files shall be created. Before trying to use the temp dir where the
3623 environment variable points to check that the dir really exists. If
3624 not default to the cwd as temp dir. Copyright timestamp adjusted.
3625 * djgpp/subpipe.h: Copyright timestamp adjusted.
3626 * djgpp/testsuite.sed: Copyright timestamp adjusted.
3627
389c8cfd
PE
36282008-01-30 Paul Eggert <eggert@cs.ucla.edu>
3629
3630 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
3631
5d1cfef4
PE
36322008-01-09 Paul Eggert <eggert@cs.ucla.edu>
3633
3634 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
3635 Problem reported by Claudio Saavedra in
3636 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
3637
e2dcf996
WP
36382008-01-05 Wojciech Polak <polak@gnu.org>
3639
3640 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
3641 document's title with the input grammar file name.
3642
da730230
JD
36432007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
3644
3645 Automate regression testing of the XML/XSLT implementation. Discussed
3646 starting at
3647 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
3648 * configure.ac (XSLTPROC): New substitution.
3649 * Makefile.am (maintainer-xml-check): New phony target invoking...
3650 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
3651 invoking make maintainer-check with BISON_TEST_XML=1.
3652 * tests/atlocal.in (XSLTPROC): New.
3653 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
3654 not to report reachable memory when Bison is expected to have a
3655 non-zero exit status and (2) to compare XML/XSLT output with --graph
3656 and --report=all output for every working grammar when
3657 BISON_TEST_XML=1.
3658 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
3659 (AT_BISON_CHECK_XML): New.
3660 (AT_QUELL_VALGRIND): New.
3661 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
3662 (AT_CHECK): ... don't redefine this since this was the old way to
3663 quell Valgrind.
3664 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
3665 AT_BISON_CHECK invocations.
3666 * tests/c++.at: Likewise.
3667 * tests/calc.at: Likewise.
3668 * tests/conflicts.at: Likewise.
3669 * tests/cxx-type.at: Likewise.
3670 * tests/existing.at: Likewise.
3671 * tests/glr-regression.at: Likewise.
3672 * tests/headers.at: Likewise.
3673 * tests/input.at: Likewise.
3674 * tests/java.at: Likewise.
3675 * tests/output.at: Likewise.
3676 * tests/push.at: Likewise.
3677 * tests/reduce.at: Likewise.
3678 * tests/regression.at: Likewise.
3679 * tests/sets.at: Likewise.
3680 * tests/skeletons.at: Likewise.
3681 * tests/synclines.at: Likewise.
3682 * tests/torture.at: Likewise.
3683 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
3684 tends to hang xsltproc.
3685 (Big horizontal): Likewise.
3686
408476bc
JD
36872007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
3688
3689 In XML output, remove redundant class attribute on symbol element.
3690 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
3691 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
3692 look up a symbol to determine whether it's a nonterminal or terminal.
3693 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
3694 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
3695
3696 Add prec/assoc information to XML output.
3697 * src/gram.c (grammar_rules_print_xml): For each rule that has a
3698 %prec, add a percent_prec attribute.
3699 * src/print-xml.c (print_grammar): For each terminal that has a
3700 precedence or associativity, add a prec or assoc attribute.
3701 (xml_indent): New.
3702 (xml_puts): Use xml_indent.
3703 (xml_printf): Use xml_indent.
3704 * src/print-xml.h (xml_indent): Prototype.
3705
3706 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
3707 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
3708
d4a26c48
JD
37092007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
3710
3711 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
3712 (bison:ruleByNumber): ... this for clarity.
3713 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
3714 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
3715 (xsl:template match="reduction"): Update.
3716 (xsl:template match="item"): Update.
3717 (xsl:template match="reduction"): Update.
3718
3719 In the XML output, don't print the list of rules where symbols appear.
3720 Compute it in XSLT instead. Discussed at
3721 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
3722 * data/xslt/bison.xsl (bison:ruleByLhs): New.
3723 (bison:ruleByRhs): New.
3724 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
3725 bison:ruleByRhs.
3726 (xsl:template match="terminal/rule"): Remove.
3727 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
3728 bison:ruleByRhs.
3729 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
3730 Remove.
3731 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
3732 bison:ruleByRhs and mode="number-link" for rule template.
3733 (xsl:template match="terminal/rule"): Remove.
3734 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
3735 bison:ruleByRhs and mode="number-link" for rule template.
3736 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
3737 Rewrite as...
3738 (xsl:template match="rule" mode="number-link"): ... this.
3739 * src/print-xml.c (print_grammar): Don't print the list of rules.
3740
ef1b4273
JD
37412007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
3742
3743 Don't let --report affect XML output; always print all information.
3744 Discussed at
3745 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
3746 * src/conflicts.c (log_resolution): Implement.
3747 * src/print-xml.c (print_core): Implement.
3748 (print_state): Implement.
3749 (print_xml): Implement.
3750
3751 * NEWS (2.3a+): Fix quotes.
3752 * src/parse-gram.y (prologue_declaration): For consistency with -v,
3753 don't let %verbose clear the list specified by --report.
3754
0f6cd9e3
AD
37552007-11-26 Akim Demaille <akim@epita.fr>
3756
3757 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
3758
d80fb37a
JD
37592007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
3760
3761 In the XML output, list useless and unused symbols and rules with the
3762 useful ones and add a "usefulness" attribute. Discussed starting at
3763 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
3764 * src/gram.c (grammar_rules_partial_print_xml): Remove.
3765 (grammar_rules_print_xml): Print all rules instead of just those
3766 useful in the grammar, and add a "usefulness" attribute.
3767 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
3768 * src/print-xml.c (print_rules_useless_in_parser): Remove.
3769 (print_grammar): Print all nonterminals instead of just useful ones,
3770 and add a "usefulness" attribute to nonterminals and terminals.
3771 (print_xml): Don't print a separate "reductions" or
3772 "rules-useless-in-parser" element.
3773 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
3774 (reduce_xml): Remove.
3775 (reduce_token_unused_in_grammar): New.
3776 (reduce_nonterminal_useless_in_grammar): New.
3777 * src/reduce.h (reduce_xml): Remove prototype.
3778 (reduce_token_unused_in_grammar): Add prototype.
3779 (reduce_nonterminal_useless_in_grammar): Add prototype.
3780 * data/xslt/xml2text.xsl: Update for XML changes.
3781 * data/xslt/xml2xhtml.xsl: Update for XML changes.
3782 * tests/reduce.at (Useless Terminals): Update output.
3783 (Useless Rules): Update output.
3784 (Reduced Automaton): Update output.
3785
3786 Say "Terminals unused in grammar" instead of "Unused terminals".
3787 * NEWS (2.3a+): Update.
3788 * doc/bison.texinfo (Understanding): Update example output.
3789 * src/reduce.c (reduce_output): Implement.
3790 * data/xslt/xml2text.xsl: Implement.
3791 * data/xslt/xml2xhtml.xsl: Implement.
3792
1bb2bd75
JD
37932007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
3794
3795 Accept --report-file=FILE to override the default `.output' filename.
3796 * NEWS (2.3a+): Mention.
3797 * doc/bison.texinfo (Bison Options): Add an entry.
3798 * src/files.c (compute_output_file_names): Don't override
3799 spec_verbose_file if already set.
3800 * src/getargs.c (usage): Document --report-file.
3801 (REPORT_FILE_OPTION): New anonymous enum member.
3802 (long_options): Add entry for it.
3803 (getargs): Add case for it setting spec_verbose_file.
3804
3805 * build-aux/cross-options.pl: Don't record a short option just because
3806 there's an arg.
3807 * doc/.cvsignore: Add yacc.1.
3808
a005a9c4
AD
38092007-11-14 Akim Demaille <akim@epita.fr>
3810
3811 * doc/yacc.1.in: New.
3812 * configure.ac, doc/Makefile.am: Adjust.
3813 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
3814 config.h symbol.
3815 Use AC_SUBST for assignments too.
3816 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
3817
cff03fb2
JD
38182007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
3819
3820 * src/gram.c: Remove comments that duplicate comments in gram.h.
3821
3822 When reporting useless rules and nonterminals, say "useless in grammar"
3823 instead of "useless", and say "useless in parser" instead of "never
3824 reduced". Discussed starting at
3825 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
3826 * NEWS (2.3a+): Mention this change.
3827 * data/xslt/xml2text.xsl: Update output text and expected input XML
3828 element names to match changes below.
3829 * data/xslt/xml2xhtml.xsl: Likewise.
3830 (xsl:template match="bison-xml-report"): Add missing entry in Table of
3831 Contents: "Rules useless in parser due to conflicts".
3832 * doc/bison.texinfo (Decl Summary): Reword a little.
3833 (Understanding): Update example output for changes below.
3834 * src/gram.c: (rule_useful_p): Rename to...
3835 (rule_useful_in_grammar_p): ... this.
3836 (rule_useless_p): Rename to...
3837 (rule_useless_in_grammar_p): ... this.
3838 (rule_never_reduced_p): Rename to...
3839 (rule_useless_in_parser_p): ... this.
3840 (grammar_rules_print): Update for renames.
3841 (grammar_rules_print_xml): Update for renames.
3842 (grammar_rules_never_reduced_report): Rename to...
3843 (grammar_rules_useless_report): ... this since it is used for either
3844 kind of useless rule.
3845 * src/gram.h: Reword comments and update function names in prototypes.
3846 * src/main.c (main): Say "rule useless in parser due to conflicts".
3847 * src/print-xml.c (print_rules_never_reduced): Rename to...
3848 (print_rules_useless_in_parser): ... this, and rename output XML
3849 element "rules-never-reduced" to "rules-useless-in-parser".
3850 (print_xml): Update for rename.
3851 * src/print.c (print_results): Say "Rules useless in parser due to
3852 conflicts".
3853 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
3854 (nonterminals_reduce): Say "nonterminal useless in grammar".
3855 (reduce_output): Say "Nonterminals useless in grammar".
3856 Say "Rules useless in grammar".
3857 (reduce_xml): Rename output XML element "useless" to
3858 "useless-in-grammar".
3859 (reduce_print): Don't report the count of grammatically useless rules
3860 as "rules never reduced" just because %yacc is specified.
3861 In the correct report of this count, say nonterminal(s) and rule(s)
3862 "useless in grammar".
3863 * tests/conflicts.at (S/R in initial): Update expected output.
3864 (Defaulted Conflicted Reduction): Likewise.
3865 (Unreachable States After Conflict Resolution): Likewise.
3866 * tests/existing.at (GNU pic Grammar): Likewise.
3867 * tests/reduce.at (Useless Nonterminals): Likewise.
3868 (Useless Rules): Likewise.
3869 (Reduced Automaton): Likewise.
3870 (Underivable Rules): Likewise.
3871 (Empty Language): Likewise.
3872
66f0441d
JD
38732007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
3874
3875 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
3876 here document and before the EOF so that BSD's implementation of Bourne
3877 shell doesn't parse the delimiter as part of the here document.
3878 * doc/.cvsignore: Add cross-options.texi.
3879 * src/getargs.c (usage): Add a blank line after the warning categories.
3880
d0ee4105
PB
38812007-11-08 Paolo Bonzini <bonzini@gnu.org>
3882
3883 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
3884
e8b1fb9b
AD
38852007-11-05 Akim Demaille <akim@epita.fr>
3886
3887 Remove Id: from bison.1.
3888 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
3889 (perl -0777 -pi -e 's/\.PP\nId): New.
3890 (.x.1): Use it to ignore the version control revision.
3891
2f7a96b5
AD
38922007-11-05 Akim Demaille <demaille@gostai.com>
3893
3894 * build-aux/Makefile.am: Ship cross-options.pl.
3895 * doc/Makefile.am: Always refer to cross-options.texi with
3896 $(srcdir).
3897 (MAINTAINERCLEANFILES): Add it.
3898
f4101aa6
AD
38992007-11-04 Akim Demaille <demaille@gostai.com>
3900
3901 Generate the long/short option cross-table.
3902 * build-aux/cross-options.pl: New.
3903 * doc/Makefile.am (cross-options.texi): New.
3904 * doc/bison.texinfo: Use it.
3905
727a1401
AD
39062007-11-04 Akim Demaille <demaille@gostai.com>
3907
3908 Generate bison.1 using help2man.
3909 * doc/common.x, doc/bison.x: New.
3910 * doc/Makefile.am (bison.1, .x.1): New.
3911 The code is taken from autoconf-2.61/man/Makefile.am.
3912 * configure.ac: Look for help2man.
3913
6aeb9c57
AD
39142007-11-04 Akim Demaille <demaille@gostai.com>
3915
3916 Complete --help.
3917 * src/getargs.c (usage): Document -W, make it clear that -d,
3918 -g and -x have optional arguments.
3919
d7be4085
AD
39202007-11-04 Akim Demaille <demaille@gostai.com>
3921
3922 Find sha1sum when named gsha1sum.
3923 * bootstrap (find_tool): New.
3924 ($SHA1SUM): New.
3925
d9df47b6
JD
39262007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
3927
3928 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
3929 at
3930 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
3931 * NEWS (2.3a+): Mention.
3932 * data/bison.m4 (b4_pure_if): Don't define it here.
3933 * data/c.m4 (b4_identification): Depend on individual skeletons to
3934 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
3935 values of the %define variables api.pure or api.push_pull. Define
3936 YYPURE, YYPUSH, and YYPULL accordingly.
3937 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
3938 glr.cc has already defined b4_pure_flag.
3939 * data/push.c: Define b4_pure_if based on `%define api.pure'.
3940 Remove YYPUSH and YYPULL since they're back in b4_identification again.
42ee26bb 3941 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
d9df47b6
JD
3942 * doc/bison.texinfo (Pure Decl): Update.
3943 (Push Decl): Update.
3944 (Decl Summary): Add api.pure to %define entry.
3945 In %pure-parser entry, say it's deprecated and reference %define.
3946 (Pure Calling): Update.
3947 (Error Reporting): Update.
3948 (C++ Scanner Interface): Update.
3949 (How Can I Reset the Parser): Update.
3950 (Table of Symbols): In %pure-parser entry, say it's deprecated and
3951 reference %define.
3952 * src/getargs.c (pure_parser): Remove global variable.
3953 * src/getargs.h (pure_parser): Remove extern.
3954 * src/output.c (prepare): Don't define pure_flag muscle.
3955 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
3956 wrapper around `%define api.pure'.
3957 * tests/calc.at (Simple LALR Calculator): Update.
3958 (Simple GLR Calculator): Update.
3959 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
3960 Update.
3961 (GLR: Resolve ambiguity, pure, locations): Update.
3962 (GLR: Merge conflicting parses, pure, no locations): Update.
3963 (GLR: Merge conflicting parses, pure, locations): Update.
3964 * tests/glr-regression.at (Uninitialized location when reporting
3965 ambiguity): Update
3966 * tests/input.at (Unused %define api.pure): New test case.
3967 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
3968 AT_PURE_IF and AT_PURE_AND_LOC_IF.
3969 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
3970
c373bf8b
JD
39712007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
3972
3973 %define push_pull -> %define api.push_pull. Discussed starting at
3974 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
3975 * data/push.c: Expect the new name.
3976 * data/yacc.c: Likewise.
3977 * doc/bison.texinfo (Push Decl): Update.
3978 (Decl Summary): Update %define entry.
3979 (Push Parser Function): Update.
3980 (Pull Parser Function): Update.
3981 (Parser Create Function): Update.
3982 (Parser Delete Function): Update.
3983 * tests/calc.at (Simple LALR Calculator): Update.
3984 * tests/input.at (%define enum variables): Update.
3985 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
3986 (Push Parsing: Multiple impure instances): Update.
3987 (Push Parsing: Unsupported Skeletons): Update.
3988 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
3989 (Exploding the Stack Size with Malloc): Update.
3990
3991 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
3992 other entries some.
3993
32f19b6b
JD
39942007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
3995
3996 For the XML output's terminal element, rename @number to @token-number,
3997 and add @symbol-number. In the nonterminal element, rename @number to
3998 @symbol-number. Discussed starting at
3999 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
4000 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
4001 renames.
4002 (xsl:template match="nonterminal"): Likewise.
4003 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
4004 (xsl:template match="nonterminal"): Likewise.
4005 * src/print-xml.c (print_grammar): Implement.
4006
255a6b90
JD
40072007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4008
4009 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
4010 2007-10-11 change, the child elements here are items not rules.
408476bc 4011 (xsl:template match="item"): New.
255a6b90
JD
4012 (xsl:template match="rule"): Update for new reduced itemset.
4013 (xsl:template match="point"): Remove.
4014 (xsl:template match="empty"): For consistency with --graph, don't
4015 output "/* empty */".
4016 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
4017 line-wrap, don't pass a negative value as first-line-length since this
4018 won't work with the following changes.
4019 (xsl:template name="line-wrap"): Simplify slightly.
4020 (xsl:template name="ws-search"): Eliminate recursion.
4021 * src/print_graph.c (print_core): Don't print a reduction's lookahead
4022 set next to an item whose dot is not at the end of the RHS even if it
4023 happens to be associated with the same rule.
4024
88c78747
JD
40252007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
4026
31984206
JD
4027 Add %define lr.keep_unreachable_states.
4028 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
4029 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
4030 * src/main.c (main): Implement it.
4031 * tests/conflicts.at (Unreachable States After Conflict Resolution):
4032 Extend to test it, and fix a typo.
4033
40342007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
4035
4036 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
88c78747
JD
4037 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
4038 the example .output text.
4039 * tests/regression.at (Extra lookahead sets in report): Improve wording
4040 of comments.
4041
b7a70162
WP
40422007-10-17 Wojciech Polak <polak@gnu.org>
4043
4044 * src/print-xml.c (print_grammar): Renamed
4045 <terminal> and <nonterminal> attributes:
4046 "type" to "number" and "symbol" to "name".
4047 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
4048 Use new attribute names.
4049 (xsl:template match="nonterminal"): Likewise.
4050 * data/xslt/xml2xhtml.xsl: Likewise.
4051
a0de5091
JD
40522007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
4053
4054 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
4055 (Option Cross Key): Likewise.
4056
4057 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
4058 next to an item whose dot is not at the end of the RHS even if it
4059 happens to be associated with the same rule.
4060 * src/print.c (print_core): Likewise.
4061 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
4062 (Resolved SR Conflicts): Update output.
4063 * tests/regression.at (Extra lookahead sets in report): New test case.
4064
4c20d18d
WP
40652007-10-11 Wojciech Polak <polak@gnu.org>
4066
4067 * src/print-xml.c (print_core): Remove item set
4068 redundancy.
4069 * data/xslt/bison.xsl (bison:ruleNumber): New key.
4070 Improve processing time. Suggested by Joel E. Denny.
4071 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
4072 Write xsl:param "required" attribute as comment.
4073 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
4074 (xsl:template match="rule"): Support new reduced itemset.
4075 (xsl:template match="point"): Remove.
4076 * data/xslt/xml2xhtml.xsl: Likewise.
4077
f506ad1c
JD
40782007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
4079
4080 * src/getargs.c (version): Update copyright year.
4081
21f1b063
JD
40822007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
4083
4084 Make xml2dot.xsl and --graph produce the same output.
4085 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
4086 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
4087 escaped later.
4088 (xsl:template name="output-node"): Use the new escape template instead
4089 of the string-replace template directly.
4090 (xsl:template name="output-edge"): Likewise.
4091 (xsl:template name="escape"): New, escapes backslashes and newlines in
4092 addition to quotation marks.
4093 * src/graphviz.c (start_graph, output_node, output_edge): Add
4094 whitespace to output for legibility.
4095
4096 Make xml2text.xsl and --report produce the same output, and remove the
4097 XML "conflicts" element since a conflict summary is easily extracted
4098 from the automaton.
4099 * data/xslt/bison.xsl: New.
4100 (xsl:template match="state" mode="bison:count-conflicts): New.
4101 * data/xslt/xml2text.xsl: Import bison.xsl.
4102 (xsl:template match="bison-xml-report"): Instead of styling the
4103 "conflicts" element, style the "automaton" element with mode
4104 "conflicts". Unlike the former, the latter lists S/R and R/R
4105 conflicts for a state on the same line.
4106 (xsl:template match="conflicts"): Remove.
4107 (xsl:template match="conflict"): Remove.
4108 (xsl:template match="terminal"): Line-wrap the list of rules in which
4109 the terminal is used.
4110 (xsl:template match="nonterminal"): Likewise for nonterminals.
4111 (xsl:template match="automaton" mode="conflicts"): New.
4112 (xsl:template match="state" mode="conflicts"): New.
4113 (xsl:template name="line-wrap"): New.
4114 (xsl:template name="ws-search"): New.
4115 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
4116 (xsl:template match="bison-xml-report"): Instead of styling the
4117 "conflicts" element, style the "automaton" element with mode
4118 "conflicts."
4119 (xsl:template match="conflicts"): Remove.
4120 (xsl:template match="conflict"): Remove.
4121 (xsl:template match="automaton" mode="conflicts"): New.
4122 (xsl:template match="state" mode="conflicts): New.
4123 * src/conflicts.c (conflicts_output_xml): Remove.
4124 * src/conflicts.h (conflicts_output_xml): Remove prototype.
4125 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
4126 * src/print.c (print_grammar): Consistently wrap at the 66th column so
4127 the corresponding XSLT is easier. Also, never wrap between a word and
4128 the comma that follows it.
4129
793fbca5
JD
41302007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
4131
4132 Improve C++ namespace support. Discussed starting at
4133 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
4134 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
4135 b4_namespace_close): New macros that interpret the %define variable
4136 "namespace" so its value can contain "::" to indicate nested
4137 namespaces.
4138 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
4139 the above macros.
4140 * data/lalr1.cc (b4_namespace): Likewise.
4141 * data/location.cc (b4_namespace): Likewise.
4142 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
4143 inside a new table in the general %define entry. Document `%define
4144 namespace' there as well. Point the %name-prefix entry to it since it
4145 explains it more completely in the case of C++.
4146 (C++ Bison Interface): Mention `%define namespace' instead of
4147 %name-prefix.
4148 (Table of Symbols): Remove the `%define push_pull' entry. The %define
4149 entry suffices.
4150 * tests/c++.at (Relative namespace references): New test case.
4151 (Absolute namespace references): New test case.
4152 (Syntactically invalid namespace references): New test case.
4153 * tests/input.at (C++ namespace reference errors): New test case.
4154
35b8730d
JD
41552007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
4156
4157 Add syncline support and location accessor to internal %define
4158 interfaces.
4159 * data/bison.m4 (b4_percent_define_get_loc): New.
4160 (b4_percent_define_get_syncline): New.
4161 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
4162 (b4_percent_define_default): Record defining location as line 1 rather
4163 than 0 for the sake of synchronizing #line's, and define
4164 b4_percent_define_syncline(VARIABLE).
4165 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
4166 * src/muscle_tab.c (muscle_syncline_grow): New.
4167 (muscle_code_grow): Use muscle_syncline_grow.
4168 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
4169 define b4_percent_define_syncline(VARIABLE).
4170 (muscle_percent_define_get_loc): New.
4171 (muscle_percent_define_get_syncline): New.
4172 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
4173 remove some unused variables.
4174 (muscle_percent_define_default): Record defining location as line 1
4175 rather than 0 for the sake of synchronizing #line's, and define
4176 b4_percent_define_syncline(VARIABLE).
4177 (muscle_percent_define_check_values): Use
4178 muscle_percent_define_get_loc.
4179 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
4180 (muscle_percent_define_get_syncline): Prototype.
4181 * tests/skeletons.at (%define Boolean variables: invalid skeleton
4182 defaults): Update output for location change.
4183 (Complaining during macro argument expansion): Extend to test
4184 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
4185
7dc4a694
JD
41862007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
4187
4188 Fix some error-reporting macro bugs.
4189 * data/bison.m4 (b4_cat): New.
4190 (b4_error, b4_error_at): Use b4_cat to send error directives directly
4191 to stdout so they don't become arguments to other macros. Update
4192 comments and add examples.
4193 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
4194 add examples.
4195 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
4196 after printing the error directive so that M4 doesn't report subsequent
4197 problems that are induced by this problem.
4198 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
4199 instead of just in them. Recognize @\n in both places. Both expand to
4200 the empty string. Needed by b4_cat.
4201 * tests/skeletons.at (Complaining during macro argument expansion):
4202 New test case.
4203 (Fatal errors make M4 exit immediately): New test case.
4204
d4bd2295
JD
42052007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
4206
4207 Implement --print-datadir.
4208 * src/getargs.c (usage): Mention.
4209 (PRINT_DATADIR_OPTION): New anonymous enum member.
4210 (long_options): Add entry for it.
4211 (getargs): Add case for it calling compute_pkgdatadir.
4212 * src/output.c (output_skeleton): Encapsulate data directory
4213 computation from here...
4214 (prepare): ... and from here...
4215 (compute_pkgdatadir): ... into this new function.
4216 * src/output.h (compute_pkgdatadir): Prototype.
4217
34cdeddf
JD
42182007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
4219
4220 * src/print-xml.c (escape_bufs): New static global variable
4221 replacing...
4222 (xml_escape_n): ... the static local variable buf here.
4223 (print_xml): Free memory for escape_bufs.
4224 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
4225
d782395d
JD
42262007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
4227
4228 Replace `%push-parser' and `%push-pull-parser' with
4229 `%define push_pull "push"' and `%define push_pull "both"'.
4230 `%define push_pull "pull"' is the default.
4231 * doc/bison.texinfo (Push Decl, Push Parser Function,
4232 Pull Parser Function, Parser Create Function, Parser Delete Function):
4233 Update declarations.
4234 (Decl Summary, Table of Symbols): Replace %push-parser and
4235 %push-pull-parser entries with a %define push_pull entry.
4236 * data/bison.m4 (b4_percent_define_check_values): New macro.
4237 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
4238 definitions...
4239 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
4240 definitions...
4241 * data/push.c: ... to here and compute them from the value of the
4242 %define variable push_pull.
4243 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
4244 parsing requests here...
4245 * data/yacc.c: ... hack this to switch to push.c any time
4246 b4_use_push_pull_flag or the %define variable push_pull is set. This
4247 will go away when we mv push.c yacc.c.
4248 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
4249 push parsing is not supported since unused %define variables are
4250 reported anyway.
4251 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
4252 * src/muscle_tab.h (muscle_percent_define_check_values): Update
4253 comments for consistency with b4_percent_define_check_values.
4254 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
4255 muscles.
4256 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
4257 Remove.
4258 (prologue_declaration): Remove %push-parser and %push-pull-parser
4259 rules.
4260 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
4261 * tests/calc.at: Update declarations.
4262 * tests/input.at (%define enum variables): New test case.
4263 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
4264 declaration.
4265 (Push Parsing: Multiple impure instances): Update declaration.
4266 (Push Parsing: Unsupported Skeletons): New test case.
4267 * tests/torture.at (Exploding the Stack Size with Alloca): Update
4268 declaration.
4269 (Exploding the Stack Size with Malloc): Update declaration.
4270
3f999f78
WP
42712007-09-24 Wojciech Polak <polak@gnu.org>
4272
4273 Add XSLT transformations.
4274
4275 * data/xslt/xml2dot.xsl: Transform XML into DOT.
4276 * data/xslt/xml2text.xsl: Transform XML into plain text.
4277 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
4278 * data/Makefile.am (xsltdir): New variable.
4279 (dist_xslt_DATA): Add xslt/*.xsl files.
4280
a4f75309
PE
42812007-09-23 Paul Eggert <eggert@cs.ucla.edu>
4282
4283 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
4284 Problem reported by Wojciech Polak.
4285 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
4286 (xml_printf): Undo change I made on 21 September; that is,
4287 indent 2 spaces, not 1.
4288
ad5feac4
JD
42892007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
4290
4291 Pacify ./configure --enable-gcc-warnings.
4292 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
4293 `char const *' instead of `char *'.
4294 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
4295 local variable `sep'.
4296
41d7a5f2
PE
42972007-09-21 Paul Eggert <eggert@cs.ucla.edu>
4298
4299 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
4300 elsewhere.
4301 * src/print-xml.c: Prefer "const" after types; that's more consistent.
4302 (xml_printf): Indent just 1 space for level.
4303 (e_char, xlate_char): Remove.
4304 (xml_escape_string): Rewrite to avoid undefined behavior (used
4305 storage that was freed from the stack).
4306 (xml_escape_n): Don't bother checking for subscript error.
4307
3f999f78
WP
43082007-09-21 Wojciech Polak <polak@gnu.org>
4309
4310 Add Bison XML Automaton Report.
41d7a5f2
PE
4311
4312 Add support for an -x option to generate an XML report.
4313 It is not documented yet.
4314 * src/print-xml.c: New file.
4315 * src/print-xml.h: Likewise.
4316 * lib/timevar.def (TV_XML): New var.
4317 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
4318 * src/conflicts.c: Include print-xml.h.
4319 (solved_conflicts_xml_obstack): New var.
4320 (log_resolution, conflicts_solve, conflicts_free):
4321 Add support for XML report.
4322 (conflicts_output_val): New function.
4323 * src/conflicts.h (conflicts_output_val): New decl.
4324 * src/files.c (spec_xml_file): New var.
4325 (compute_output_file_names, output_file_names_free): Add XML support.
4326 * src/files.h (spec_xml_file): New decl.
4327 * src/getargs.c (xml_flag): New var.
4328 (usage, short_options, long_options, getargs): Add XML support.
4329 * src/getargs.h (xml_flag): New decl.
4330 * src/gram.c: Include print-xml.h.
4331 (rule_lhs_print_xml, rule_rhs_print_xml):
4332 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
4333 New functions.
4334 * src/gram.h: Declare external ones.
4335 * src/main.c: Include print-xml.h.
4336 (main): Add XML support.
4337 * src/reduce.c: Include print-xml.h.
4338 (reduce_xml): New function.
4339 * src/reduce.h: Declare it.
4340 * src/state.c: Include print-xml.h.
4341 (state_new): Add XML support.
4342 (state_rule_lookahead_tokens_print_xml): New function.
4343 * src/state.h: Declare it.
4344 (struct state): New member solved_conflicts_xml.
4345 * src/symtab.c (symbol_class_get_string): New function.
4346 * src/symtab.h: Declare it.
4347
6d8e724d
PE
43482007-09-21 Paul Eggert <eggert@cs.ucla.edu>
4349
4350 * GNUmakefile: Switch to coreutils's version.
4351 * bootstrap: Likewise.
4352 * Makefile.cfg: Adjust to new GNUmakefile.
4353 * README-hacking: Likewise.
4354
4355 Import from gnulib:
4356
4357 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
4358 Bruno Haible <bruno@clisp.org>
4359
4360 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
4361 and is a script that invokes bison. Tighten the code. Add comments.
4362
922bdd7f
JD
43632007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
4364
4365 Spell "boolean" as "Boolean". Reported by Akim Demaille.
4366 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
4367 * doc/bison.texinfo (Decl Summary): Fix.
4368 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
4369 * tests/input.at (Boolean %define variables): Update output.
4370 * tests/skeletons.at (%define boolean variables: invalid skeleton
4371 defaults): Rename to...
4372 (%define Boolean variables: invalid skeleton defaults): ... this and
4373 update output.
4374
1b17b01d
JD
43752007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
4376
4377 In impure push mode, don't allow more than one yypstate to be allocated
4378 since multiple impure parsers would corrupt yynerrs.
4379 * data/push.c (yypstate_allocated): New static global variable
4380 initialized to 0.
4381 (yypull_parse): If yypstate_new returns 0, don't report it as memory
4382 exhaustion if yypstate_allocated is 1, but still return 2.
4383 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
4384 already 1. Otherwise, set it to 1.
4385 (yypstate_delete): Set it to 0.
4386 * tests/push.at (Push Parsing: Multiple impure instances): New test
4387 case.
4388
9987d1b3
JD
43892007-08-17 Bob Rossi <bob@brasko.net>
4390
4391 * doc/bison.texinfo (Push Decl): Document the push parser.
4392 (Table of Symbols): Ditto.
4393 (Pure Decl): Ditto.
4394 (Decl Summary): Ditto.
4395 (Multiple Parsers, Push Parser Function, Pull Parser Function,
4396 Parser Create Function, Parser Delete Function):
4397 Add new push parser symbols.
4398 (Table of Symbols): Document push-parser, push-pull-parser,
4399 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
4400
f16b0819
PE
44012007-08-15 Paul Eggert <eggert@cs.ucla.edu>
4402
4403 Update to GPLv3.
4404 * doc/gpl-3.0.texi: New file.
4405 * doc/gpl.texi: Remove.
4406 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
4407 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
4408 * README-hacking, TODO, bootstrap, bootstrap.conf:
4409 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
4410 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
4411 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
4412 * data/lalr1.cc, data/lalr1.java, data/location.cc:
4413 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
4414 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
4415 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
4416 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
4417 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
4418 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
4419 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
4420 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
4421 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
4422 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
4423 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
4424 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
4425 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
4426 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
4427 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
4428 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
4429 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
4430 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
4431 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
4432 * src/complain.c, src/complain.h, src/conflicts.c:
4433 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
4434 * src/files.h, src/flex-scanner.h, src/getargs.c:
4435 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
4436 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
4437 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
4438 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
4439 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
4440 * src/print.c, src/print.h, src/print_graph.c:
4441 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
4442 * src/reduce.h, src/relation.c, src/relation.h:
4443 * src/revision.h, src/scan-code.h, src/scan-code.l:
4444 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
4445 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
4446 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
4447 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
4448 * tests/Makefile.am, tests/actions.at, tests/c++.at:
4449 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
4450 * tests/existing.at, tests/glr-regression.at:
4451 * tests/headers.at, tests/input.at, tests/java.at:
4452 * tests/local.at, tests/output.at, tests/push.at:
4453 * tests/reduce.at, tests/regression.at, tests/sets.at:
4454 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
4455 * tests/torture.at:
4456 Update to GPLv3.
4457
728c4be2
JD
44582007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
4459
4460 Get rid of broken %no-parser, -n, and --no-parser implementation and
4461 documentation.
4462 * TODO: Don't mention them.
4463 * doc/bison.1: Likewise.
4464 * doc/bison.texinfo (Decl Summary): Likewise.
4465 (Bison Options): Likewise.
4466 (Option Cross Key): Likewise.
4467 * src/getargs.c (no_parser_flag): Remove global variable.
4468 (usage): Don't print description of -n and --no-parser.
4469 (long_options): Remove --no-parser entry here.
4470 (getargs): Remove -n case in the switch here.
4471 * src/getargs.h (no_parser_flag): Remove extern.
4472 * tests/regression.at (Web2c Actions): Remove comment that mentions
4473 --no-parser.
4474
5d31a216
JD
44752007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
4476
4477 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
4478 name user variables starting with `yy'. Just pass NULL instead of a
4479 dummy local &yylval to yypush_parse.
4480 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
4481 starting with `yy'.
4482
a2ea208d
JD
44832007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
4484
4485 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
4486 true since it's then always used regardless of whether yyoverflow is
4487 defined. Reported by Christian Burger at
4488 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
4489 * THANKS: Add Christian Burger.
4490
91661ebb
JD
4491 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
4492 node names: say "Decl Summary" not "Bison Declaration Summary".
4493
cbd50549
JD
44942007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
4495
4496 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
4497 determine whether this function has already complained about an invalid
4498 value for a %define boolean variable, don't check whether Bison has
4499 ever examined the value. As written, the check was a tautology.
4500 Instead, record and check for this complaint using a separate muscle.
4501
eb1b0740
JD
45022007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4503
4504 Fix push parsing memory leak reported by Brandon Lucia at
4505 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
4506 * THANKS: Add Brandon Lucia.
4507 * data/push.c (yypstate_delete): Free the stack if it was reallocated
4508 but the parse never completed and thus freed it.
4509 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
4510 * tests/testsuite.at: Include push.at.
4511 * test/push.at: New.
4512 (Push Parsing: Memory Leak for Early Deletion): New test case.
4513
9d774aff
JD
45142007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
4515
4516 Improve handling of multiple S/R conflicts in the same state and of S/R
4517 conflicts involving multiple reductions.
4518 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
4519 set for a state here or Bison will abort if it is reassigned on a
4520 later conflicted reduction in the same state.
4521 Similarly, don't finalize and assign the solved conflicts report here
4522 or it will be lost if it is reassigned on a later conflicted reduction
4523 in the same state.
4524 (set_conflicts): Instead, assign them both here after all S/R conflicts
4525 in the state have been fully examined.
4526 * src/print.c (shift_set): Rename to...
4527 (no_reduce_set): ... this.
4528 (print_reductions): Update for rename, and add %nonassoc error action
4529 tokens to no_reduce_set so that, when printing the first remaining
4530 reduction on an error action token, the reduction is enclosed in
4531 brackets.
4532 (print_results): Update for rename.
4533 * tests/conflicts.at (Solved conflicts report for multiple reductions
4534 in a state): New test case.
4535 (%nonassoc error actions for multiple reductions in a state): New test
4536 case.
4537
4538 * src/main.c (main): Don't depend on C99 features.
4539
10159d2a
JD
45402007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
4541
4542 * build-aux/.cvsignore: Add compile.
b541ffdf
JD
4543 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
4544 uniwidth.
10159d2a 4545
953b3935
JD
45462007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
4547
4548 * bootstrap (slurp): Create target directories that don't exist.
4549 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
4550
6ce2d93a
JD
45512007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
4552
4553 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
4554 than item number.
4555 * closure.c (closure): Likewise.
4556 * state.h (reductions): Comment sorting of rules.
4557 (state): Comment sorting of items.
4558
ce3448d5
JD
45592007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
4560
4561 Fix C++ test cases after recent Gnulib changes. Discussed starting at
4562 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
4563 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
4564 definition in order to avoid Gnulib headers since we don't use config.h
4565 here.
4566 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
4567 rather than AT_DATA so that config.h is included.
4568
8a86eef0
JD
45692007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
4570
4571 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
4572 instead of fprintf. Guard these functions with #if YYDEBUG instead of
4573 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
4574 and so that YYFPRINTF is guaranteed to be defined here.
4575
b1a81613
JD
45762007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
4577
4578 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
4579 with...
4580 (muscle_percent_define_check_values): ... this more helpful function.
4581 Again, it's not used yet, but it will be.
4582 * src/muscle_tab.h: Likewise.
4583
71b61d4d
JD
4584 Improve some comments in parser table construction.
4585 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
4586 (generate_states): Don't mention ruleset, which is internal to closure.
4587 * src/closure.c (closure): Explain sorting of core and itemset, which
4588 is required for this function to behave correctly.
4589 * src/closure.h (closure): Mention sorting.
4590
2a6b783d
JD
45912007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
4592
4593 * src/lalr.c (state_lookahead_tokens_count): For code readability,
4594 move the check for disabled transitions to an aver since conflict
4595 resolution hasn't happened yet.
4596
4597 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
4598 labels a state as inconsistent just because it has error transitions.
4599 The original form of this check appeared in revision 1.1 of lalr.c,
4600 which was committed on 1991-12-21. Now (at least), changing the
4601 consistency label on such a state appears to have no useful effect in
4602 any of the places it is examined, which I enumerate below. The key
4603 point to understanding each item in this enumeration is that a state
4604 with an error transition is labelled consistent in the first place only
4605 if it has no rules, so the check cannot matter for states that have
4606 rules. (1) Labelling a state as inconsistent will cause set_conflicts
4607 to try to identify its conflicts, and a state must have *rules* to have
4608 conflicts. (2) Labelling a state as inconsistent will affect how
4609 action_row sets the default *rule* for the state. (3) Labelling a
4610 state as inconsistent will cause build_relations to add lookback edges
4611 to *rules* in that state.
4612 * src/state.h (struct state): Word the comment for member consistent
4613 more carefully.
4614
14462c2b
JD
46152007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4616
4617 Don't depend on C99 features.
4618 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
4619 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
4620 * src/reader.c (check_and_convert_grammar): Fix for-loop.
4621 * src/state.c (state_mark_reachable_states): Fix for-loop.
4622 (state_remove_unreachable_states): Fix for-loop.
4623
4624 Don't widen struct state with member reachable just to temporarily
4625 record reachability. Instead, use a local bitset.
4626 * src/state.h (struct state): Remove member.
4627 * src/state.c (state_new): Don't initialize it.
4628 (state_mark_reachable_states): Rename to...
4629 (state_record_reachable_states): ... this, and use bitset.
4630 (state_remove_unreachable_states): Use bitset.
4631
5a43d418
JD
46322007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
4633
4634 * src/Makefile.am (yacc): Quote target action commands properly so
4635 that the yacc script isn't corrupt. Reported by Hans Aberg at
4636 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
4637
0c650a20
JD
4638 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
4639 the case of pure parsers. Reported by Frans Englich at
4640 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
4641 * THANKS: Add Frans Englich.
4642
61fee93e
JD
4643 * NEWS (2.3a+): In the %code entry, reference section `Bison
4644 Declaration Summary' from the manual now since the %code summary has
4645 moved there.
4646 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
4647 in the rules section must be terminated by semicolons.
4648
f124d423
JD
46492007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
4650
4651 Extend the front-end API for %define variables to more completely
4652 mirror the back-end. This will be useful in the future.
4653 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
4654 Update comments to mention the new front-end counterparts of these
4655 macros.
4656 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
4657 for muscle_string_decode and muscle_location_decode.
4658 (muscle_string_decode): New static function.
4659 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
4660 (muscle_percent_define_get, muscle_percent_define_ifdef): New
4661 functions.
4662 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
4663 muscle_percent_define_get to mimic the b4_percent_define_flag_if
4664 implementation more closely.
4665 (muscle_percent_define_invalid_value): New function.
4666 * src/muscle_tab.h (muscle_percent_define_get,
4667 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
4668 Prototype.
4669
75ad86ee
JD
46702007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
4671
4672 * NEWS (2.3a+): Mention yesterday's state-removal change.
4673 (2.3a): Remove the %language entry, which was added after 2.3a.
4674 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
4675 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
4676 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
4677 tests/existing.at: Update copyright date.
4678
5967f0cf
JD
46792007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4680
4681 If conflict resolution makes states unreachable, remove those states,
4682 report rules that are then unused, and don't report conflicts in those
4683 states.
4684 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
4685 New global function.
4686 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
4687 function.
4688 * src/main.c (main): After conflict resolution, remove the unreachable
4689 states and update all data structures that reference states by number.
4690 * src/state.c (state_new): Initialize each state's reachable member to
4691 false.
4692 (state_mark_reachable_states): New static function.
4693 (state_remove_unreachable_states): New global function.
4694 * src/state.h (struct state): Add member bool reachable.
4695 (state_remove_unreachable_states): Prototype.
4696 * tests/conflicts.at (Unreachable States After Conflict Resolution):
4697 New test case.
4698 * tests/existing.at (GNU pic Grammar): Update test case output now that
4699 an unused rule is discovered.
4700
b09f4f48
JD
47012007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4702
4703 Minor code cleanup in parser table construction.
4704 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
4705 (new_itemsets, save_reductions): Update for rename to nitemset.
4706 * src/closure.c (nritemset): Rename to...
4707 (nitemset): ... this since the "r" appears to meaningless and isn't
4708 used in the comments.
4709 (closure): Update for rename.
4710 * src/closure.h (nritemset): Update extern to...
4711 (nitemset): ... this.
4712 * src/lalr.c (LA): Fix a typo in comments.
4713 * src/print.c (print_core): Update for rename to nitemset.
4714 * src/print_graph.c (print_graph): Likewise.
4715 * src/state.h: Fix some typos in header comments.
4716
bbb44d83
PE
47172007-04-04 Paul Eggert <eggert@cs.ucla.edu>
4718
9b33de72
PE
4719 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
4720 still sticks to ASCII. Sorry!
4721
bbb44d83
PE
4722 * README-hacking: New file, taken mostly from coreutils, with changes
4723 for Bison. Contains much of the contents of:
4724 * README-cvs: Remove.
4725 * bootstrap: Sync from gnulib.
4726 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
4727 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
4728
29553547
JD
47292007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
4730
4731 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
4732 Setzer.
4733 (Java Differences): Fix some typos.
4734 * THANKS: Add Sebastian Setzer.
4735
01b477c6
PB
47362007-03-07 Paolo Bonzini <bonzini@gnu.org>
4737
730739e4
AD
4738 * data/java.m4 (b4_single_class_if): Remove.
4739 (b4_abstract_if): Look at "%define abstract".
4740 (b4_lexer_if): New.
4741 (b4_union_name): Rename...
4742 (b4_yystype): ... to this. Map to "%define stype".
4743 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
4744 b4_maybe_throws): Fix quoting.
4745 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
4746 * data/lalr1.java (Lexer interface): Always define.
4747 (Lexer interface within parser class): Remove.
4748 (YYLexer class): New, used when "%code lexer" is present.
4749 (constructor): When "%code lexer" is used, pass %lex-param
4750 to the lexer constructor.
4751 (yylex, yyparse): Remove %lex-param from method invocations
4752 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
4753
4754 * doc/bison.texinfo (Java Bison Interface): Mention "%define
4755 abstract". Rename "%define union_name" to "%define stype".
4756 Rename method names according to previous patch.
4757 (Java Scanner Interface): Describe "%code lexer" instead of
4758 "%pure-parser" and "%define single_class".
4759 (Java Differences): Mention "%code lexer".
4760
4761 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
4762 Include scanner here, using macros from tests/local.at.
4763 (AT_DATA_CALC_Y): Remove final argument.
4764 (_AT_CHECK_JAVA_CALC): Likewise.
4765 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
4766 of %locations and %error-verbose.
4767 (main): Test with and without %lex-param.
4768 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
4769 (AT_BISON_OPTION_POPDEFS): Pop it.
01b477c6 4770
122bea3a
JMG
47712007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4772
4773 DJGPP spefic issue. Inhibit the use of disallowed characters for
4774 file name genertion on Win98, WinXP, etc. These are |<>":?*\
4775 and concern testsuite case 46.
4776 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
4777 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
4778 * djgpp/config.bat: Inhibit the use of disallowed characters.
4779
9611cfa2
JD
47802007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
4781
4782 Miscellaneous %define and %code cleanup.
4783 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
4784 values are interpreted.
4785 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
4786 documentation a little more.
4787 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
4788 muscle_percent_define_insert, muscle_percent_code_grow): New
4789 functions/macros.
4790 * src/muscle_tab.h (muscle_percent_define_insert,
4791 muscle_percent_code_grow): Prototype.
4792 * src/parse-gram.y (prologue_declaration): Use
4793 muscle_percent_define_insert and muscle_percent_code_grow when parsing
4794 %define and %code directives.
4795
4796 Make it easy to share %define boolean variables between the front-end
4797 and back-end. Though not used yet, this will be useful in the future.
4798 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
4799 Bison uses of names rather than just skeleton uses of names.
4800 (b4_percent_define_get, b4_percent_define_ifdef): Rename
4801 b4_percent_define_skeleton_variables(VARIABLE) to
4802 b4_percent_define_bison_variables(VARIABLE).
4803 (b4_percent_code_get, b4_percent_code_ifdef): Rename
4804 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
4805 b4_percent_code_bison_qualifiers(QUALIFIER).
4806 (b4_check_user_names_wrap): Update for renames.
4807 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
4808 muscle_percent_define_default): New functions mimicking
4809 b4_percent_define_flag_if and b4_percent_define_default.
4810
4811 For %define variables, report locations for invalid values and
bbb44d83 4812 redefinitions.
9611cfa2
JD
4813 * data/bison.m4 (b4_percent_define_flag_if): Read
4814 b4_percent_define_loc(VARIABLE) to report the location of an invalid
4815 value for VARIABLE.
4816 (b4_percent_define_default): Save a special location in
4817 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
4818 must later be reported as invalid.
4819 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
4820 functions.
4821 (muscle_percent_define_insert): Record the location of VARIABLE in
4822 muscle percent_define_loc(VARIABLE), and use it to report the previous
4823 location for a redefinition.
4824 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
4825 (muscle_percent_define_default): Update like b4_percent_define_default.
4826 (muscle_grow_user_name_list): Rename to...
4827 (muscle_user_name_list_grow): ... this for consistency and use
4828 muscle_location_grow.
4829 * src/muscle_tab.h (muscle_location_grow): Prototype.
4830 * tests/input.at (%define errors): Update expected output.
4831 * tests/skeletons.at (%define boolean variables: invalid skeleton
4832 defaults): New test case.
4833
0bf92491
JD
48342007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
4835
4836 * src/print.c (lookahead_set, state_default_rule): Remove.
4837 (print_reductions): Replace state_default_rule invocation with
4838 equivalent use of yydefact, which was computed in token_actions in
4839 tables.c.
4840 (print_results): Don't allocate lookahead_set.
4841
d3b12988
PB
48422007-02-27 Paolo Bonzini <bonzini@gnu.org>
4843
4844 * data/lalr1.java: Prefix all private members with yy.
4845
f57a7536
JD
48462007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
4847
4848 Use YYFPRINTF instead of fprintf where appropriate. Reported by
9b33de72 4849 Sebastien Fricker at
f57a7536 4850 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
9b33de72 4851 * THANKS: Add Sebastien Fricker.
f57a7536
JD
4852 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
4853 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
4854 accept a variable number of arguments.
4855
6404a5bf
JD
48562007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
4857
4858 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
4859
e4e09639
JMG
48602007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4861
4862 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
4863 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
4864 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
4865
d7e0a1a7
PE
48662007-02-11 Paul Eggert <eggert@cs.ucla.edu>
4867
4868 Undo my 2007-02-07 change, switching back to the c-strcase module
4869 introduced in the 2007-02-03 change. Bruno Haible reported that
4870 the 2007-02-07 change would be dangerous in Turkish if we add a
4871 language whose name contains "i", since "i" is not lowercase "I"
4872 in Turkish.
4873 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
4874 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
4875 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
4876 * m4/.cvsignore: Remove strcase.m4.
4877 * src/getargs.c: Revert 2007-02-07 change, as follows.
4878 Include c-strcase.h.
4879 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
4880
deee93a1
JD
48812007-02-11 Bruno Haible <bruno@clisp.org>
4882
4883 Enable the Java related testsuite tests when the only Java compiler
4884 found is a gcj < 4.3. Discussed at
4885 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
4886 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
4887
574add85
JD
48882007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
4889
4890 * data/Makefile.am: Update copyright date.
4891 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
4892 yypstate_new returns NULL.
4893 (yypstate_new): Return NULL if malloc does.
4894 * src/reader.c (packgram): Move translation of rule actions from the
4895 beginning of packgram to...
4896 (check_and_convert_grammar): ... here right before packgram is invoked
4897 so it's easier to write more complete comments, and remove redundant
4898 code.
4899
e785ccf7
JD
49002007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
4901
4902 As in semantic actions, make @$ in %initial-action, %destructor, and
4903 %printer imply %locations.
4904 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
4905 scanning @$.
4906 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
4907 (@$ in %initial-action implies %locations,
4908 @$ in %destructor implies %locations,
4909 @$ in %printer implies %locations): ... these new test cases.
4910
1cfe1ed7
PE
49112007-02-07 Paul Eggert <eggert@cs.ucla.edu>
4912
4913 Undo most of the 2007-02-03 change, switching to the strcase module
4914 now that gnulib strcase has been fixed.
4915 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
4916 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
4917 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
4918 * m4/.cvsignore: Add strcase.m4.
4919 * src/getargs.c: Revert 2007-02-03 change, as follows.
4920 Don't include c-strcase.h.
4921 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
4922 strcasecmp has "unspecified behavior" outside the POSIX locale,
4923 but it works fine in practice if at least one argument is ASCII,
4924 as is the case in Bison.
4925
0049ec86
PB
49262007-02-07 Paolo Bonzini <bonzini@gnu.org>
4927
4928 * tests/java.at: Skip tests if only one of javac/java is present.
4929 Reported by Joel E. Denny.
4930 * tests/atlocal.in: Adjust copyright years.
4931
49322007-02-05 Paolo Bonzini <bonzini@gnu.org>
4933
4934 * data/lalr1.java (Stack): Work around old verifiers that disallow
4935 access to the private fields of an inner class, from the outer class.
4936 We can make Stack's fields public because user code doesn't have access
4937 to the instance of Stack used by parse(). Reported by Paul Eggert.
4938
2c2b7220
PE
49392007-02-03 Paul Eggert <eggert@cs.ucla.edu>
4940
4941 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
4942 the right spot for these files?
4943 * bootstrap.conf (gnulib_modules): Add c-strcase.
4944 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
4945 c-strncasecmp.c.
4946 * src/getargs.c: Include c-strcase.h.
4947 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
4948 to avoid unspecified behavior.
4949
b2b81dae
JD
49502007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
4951
4952 * doc/bison.texinfo (Decl Summary): Correct typo.
4953
c1d19e10
PB
49542007-01-30 Paolo Bonzini <bonzini@gnu.org>
4955
4956 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
4957 Complain if the value does not match empty, "true" or "false".
4958 * data/c++.m4: Adjust default definitions of %define variables.
4959 * data/java.m4: Adjust default definitions of %define variables.
4960 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
4961 to above behavior.
4962 * tests/input.at (Boolean %define variables): Test new behavior.
4963
8405b70c
PB
49642007-01-29 Paolo Bonzini <bonzini@gnu.org>
4965
4966 * NEWS: Mention java.
4967 * TODO: Remove things that are done.
4968 * bootstrap.conf: Add javacomp-script and javaexec-script.
4969 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
4970
4971 * data/Makefile.am: Add new files.
4972 * data/java-skel.m4: New.
4973 * data/java.m4: New.
4974 * data/lalr1.java: New.
4975
4976 * doc/bison.texinfo: Put "A Complete C++ Example" under
4977 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
4978 under Other Languages.
4979
4980 * src/getargs.c (valid_languages): Add Java.
4981 * src/getargs.h (struct bison_language): Update size of string fields.
4982
4983 * tests/Makefile.am: Add java.at.
4984 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
4985 * tests/java.at: New.
4986 * tests/testsuite.at: Include it.
4987
3eb82471
JD
49882007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
4989
4990 Clean up.
4991 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
4992 at_directive_argv arguments so these no longer have to be global
4993 variables. Also, update the implementation for the following changes.
4994 (fail_for_at_directive_too_many_args,
4995 fail_for_at_directive_too_few_args): Add at_directive_name argument.
4996 (at_directive_name): Remove as at_directive_argv[0] will be used for
4997 this now.
4998 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
4999 for the directive name.
5000 (at_directive_argc, at_directive_argv): Make these local within
5001 skel_lex instead of global.
5002 (INITIAL): Update directive start action for above changes.
5003 (SC_AT_DIRECTIVE_ARG): Rename to...
5004 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
5005 (SC_AT_DIRECTIVE_SKIP_WS): Update.
5006 (scan_skel): Move yylex_destroy to...
5007 (skel_scanner_free): ... here.
5008 * tests/skeletons.at (installed skeleton file name): Rename to...
5009 (installed skeleton file names): ... this.
5010
148d66d8
JD
50112007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
5012
5013 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
5014 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
5015 Summary" not "Directives".
5016 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
5017 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
5018 since the former is now the more complete one.
5019 (Prologue Alternatives): Likewise and do the same for %defines.
5020 (Table of Symbols): Add summary of %code, add summary of %define, and
5021 move full %code documentation to...
5022 (Decl Summary): ... here for consistency with other entries in these
5023 sections.
5024 Move %define entry in order to keep this list alphabetized.
5025 Reword %define entry a little to put less emphasis on the skeleton
5026 concept, which most users shouldn't have to think about.
5027
665f0c24
PE
50282007-01-26 Paul Eggert <eggert@cs.ucla.edu>
5029
5030 Adjust to recent gnulib changes.
5031 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
5032 Add string.h, string_.h, unistd_.h, wchar_.h.
5033 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
5034 * src/system.h: Don't include <stpcpy.h>; this is now done by
5035 <string.h>.
5036
592d0b1e
PB
50372007-01-23 Paolo Bonzini <bonzini@gnu.org>
5038
5039 Simplify implementation of unqualified %code, implement macros for
5040 uniform treatment of boolean %define flags. Document %define.
5041 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
5042 b4_percent_code_ifdef): New.
5043 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
5044 * data/c++.m4: Define default value for global_tokens_and_yystype.
5045 * data/glr.cc: Likewise.
5046 * data/location.cc: Use b4_percent_define_flag_if.
5047
148d66d8 5048 * doc/bison.texinfo (Decl Summary): Document %define.
592d0b1e
PB
5049
5050 * src/parse-gram.y (Unqualified %code): Change muscle name to
5051 b4_percent_code().
5052 (content.opt): Default to empty.
5053
a7867f53
JD
50542007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
5055
5056 Implement support for relative and absolute skeleton file names.
5057 Discussed starting at
5058 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
5059 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
5060 (Bison Options): Document in --skeleton entry.
5061 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
5062 full_skeleton can't necessarily hold all of pkgdatadir.
5063 If the specified skeleton file name contains a `/', don't prepend
5064 pkgdatadir.
5065 * src/parse-gram.y (prologue_declaration): If the specified skeleton
5066 file name contains a `/', prepend the grammar file directory.
5067 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
5068 * skeletons.at: New file.
5069 (relative skeleton file names): New test case.
5070 (installed skeleton file names): New test case.
5071 * tests/testsuite.at: Include skeletons.at.
5072
5073 * bootstrap: Update copyright to 2007.
5074
830c9b18
PB
50752007-01-17 Paolo Bonzini <bonzini@gnu.org>
5076
5077 * bootstrap: Remove occurrences of .#bootmp from the files.
5078
a8c2e813
AD
50792007-01-17 Akim Demaille <akim@epita.fr>
5080
5081 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
5082 nonterminals.
5083 Use per-type %printer.
5084
279cabb6
JD
50852007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
5086
5087 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
5088 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
5089 djgpp/config.site, src/files.c, src/files.h, src/main.c,
5090 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
5091 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
5092 tests/glr-regression.at, tests/input.at, tests/local.at,
5093 tests/output.at, tests/torture.at: Update copyright to 2007.
5094
bb32f4f2
AD
50952007-01-16 Akim Demaille <akim@epita.fr>
5096
5097 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
5098 error code.
5099 (Calc++ Scanner): Exit with failure if we can't open the input
5100 file.
5101 Accept "-" standing for stdin.
5102 (Calc++ Top Level): Print the result only if the parsing was
5103 successful.
5104
7cff04b5
AD
51052007-01-16 Akim Demaille <akim@epita.fr>
5106
5107 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
5108
a4e25e1d
JD
51092007-01-15 Paolo Bonzini <bonzini@gnu.org>
5110 and Joel E. Denny <jdenny@ces.clemson.edu>
5111
5112 Clean up %define and %code implementation in M4 some. Most
5113 importantly, rename all related macros to be in the b4_percent_define
5114 and b4_percent_code namespaces. Also, complete support for `.' in
5115 %define variable names and %code qualifiers.
5116 * data/bison.m4 (b4_check_user_names): Check for special
5117 "SKELETON-NAMESPACE(name)" macros instead of using two nested
5118 m4_foreach loops.
5119 (b4_get_percent_define, b4_get_percent_code): Rename to...
5120 (b4_percent_define_get, b4_percent_code_get): ... these.
5121 Extend documentation with examples.
5122 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
5123 b4_percent_define_skeleton_variables and
5124 b4_percent_code_skeleton_qualifiers.
5125 Expect any value for the %define variable `foo' to be stored in the
5126 macro named `b4_percent_define(foo)'; expect any %code blocks for the
5127 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
5128 expect any unqualified %code blocks to be stored in a macro named
5129 `b4_percent_code_unqualified'.
5130 Use m4_indir so that %define variable names and %code qualifiers can
5131 contain `.', which is allowed by the grammar parser.
5132 (b4_percent_define_default): New macro to set a default value for a
5133 %define variable.
5134 (m4_wrap): Update wrapped code, and fix some underquoting.
5135 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
5136 Expect grammar uses of %define variables and %code qualifiers to be
5137 defined in b4_percent_define_user_variables and
5138 b4_percent_code_user_qualifiers.
5139 * data/c++.m4: Use b4_percent_define_default rather than
5140 m4_define_default. Fix some underquoting. Skeleton usage of %define
5141 variable define_location_comparison now implies skeleton usage of
5142 %define variable filename_type.
5143 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
5144 data/push.c, data/yacc.c: Update macro names.
5145 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
5146 muscle names.
5147
e37c665c
JMG
51482007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5149
5150 DJGPP specific issues.
5151
5152 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
5153 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
5154
7d2d521f
JD
51552007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
5156
5157 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
5158 run parsers in all tests so that Valgrind is invoked during
5159 maintainer-check-valgrind.
5160 (Duplicate representation of merged trees): Free all semantic values.
5161 (Duplicated user destructor for lookahead): Likewise.
5162
e0ac9b4b
JD
51632007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
5164
5165 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
5166 command-line prefix.
5167 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
5168 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
5169 miss Valgrind messages.
5170 (Exploding the Stack Size with Malloc): Likewise.
5171
78143faa
JD
51722007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
5173
5174 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
5175 locals. Reported by Juan Manuel Guerrero at
5176 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
5177 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
5178 Fix some indentation also.
5179 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
5180 explaining this issue.
5181
7ecec4dd
JD
51822007-01-09 Paolo Bonzini <bonzini@gnu.org>
5183 and Joel E. Denny <jdenny@ces.clemson.edu>
5184
5185 Simplify union and prologue handling, and escape union and lex/parse
5186 params with digraphs.
5187 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
5188 values to the empty string since these are no longer guaranteed
5189 initialized by the front-end.
5190 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
5191 braces around b4_user_stype since this is no longer done by the
5192 front-end.
5193 * src/files.c, src/files.h (pre_prologue_obstack,
5194 post_prologue_obstack): Remove.
5195 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
5196 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
5197 with digraphs. This fixes lex params and parse params.
5198 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
5199 * src/output.c (prepare): Remove muscle insertion of the prologues.
5200 (output): Remove freeing of pre_prologue_obstack and
5201 post_prologue_obstack.
5202 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
5203 than prologue_augment for prologue parsing so you don't need prologue
5204 obstacks.
5c80250c
JD
5205 (grammar_declaration): For %union RHS, use `braceless' instead of
5206 "{...}" so that braces are already stripped and code is escaped with
5207 digraphs.
7ecec4dd
JD
5208 * src/reader.c (prologue_augment): Remove.
5209 (reader): Remove initialization of pre_prologue_obstack and
5210 post_prologue_obstack.
5211 * src/reader.h (prologue_augment): Remove.
5212
5213 * data/c.m4: Remove stray parenthesis.
5214
16dc6a9e
JD
52152007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5216
5217 Remove quotes from variables names in %define directives and from
5218 qualifiers in %code directives, and restrict the characters that are
5219 allowed in them to M4-friendly ones. For %define, continue to support
5220 the quoted form as a deprecated feature. Discussed starting at
5221 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
5222 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
5223 %code.
5224 * doc/bison.texinfo (Prologue Alternatives): Update.
91661ebb
JD
5225 (Decl Summary): In %defines entry, update mention of `%code requires'
5226 and `%code provides'.
16dc6a9e
JD
5227 (C++ Location Values): Update %define uses.
5228 (Calc++ Parser Interface): Likewise.
5229 (Calc++ Parser): Likewise, and update `%code requires' uses.
148d66d8 5230 (Table of Symbols): Update %code documentation.
16dc6a9e
JD
5231 * src/parse-gram.y (prologue_declaration): For %define variables, use
5232 `variable' instead of `STRING'.
5233 (grammar_declaration): For %code qualifiers, use `ID' instead of
5234 `STRING'.
5235 (variable): New nonterminal that takes an `ID' or a `STRING'.
5236 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
5237 and %define uses.
5238 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
5239 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
5240 (%define errors): Update %define uses.
5241
e9813cd4
JD
52422007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5243
5244 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
5245 instead of muscle_insert for %define values so that M4-special
5246 characters are replaced with digraphs.
5247 * tests/input.at (%define errors): Extend to check weird values.
5248
6afc30cc
JD
52492007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5250
5251 Instead of having skeletons declare all valid %define variables and
5252 %code qualifiers, provide macros that retrieve the associated values
5253 and build these lists automatically. Thus Bison will now warn when a
5254 variable or qualifier is not used by the skeleton in the current
5255 invocation regardless of whether it might sometimes be used by that
5256 skeleton in other invocations. Also, move all %define value macros to
5257 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
5258 form, which is replaced by %code.
5259 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
5260 (b4_check_user_names): ... this, and change the series of valid name
5261 arguments to a single list argument for names used in the skeleton
5262 similar to the existing list argument for names used in the grammar.
5263 Warn instead of complaining.
5264 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
5265 values and %code code, to format %code code properly, and to build
5266 lists of all %define variables and %code qualifiers used in the
5267 skeleton: b4_skeleton_percent_define_variables and
5268 b4_skeleton_percent_code_qualifiers.
5269 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
5270 Remove, and...
5271 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
5272 the skeleton names lists can finish building first. In place of
5273 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
5274 expect the lists b4_user_percent_define_variables and
5275 b4_user_percent_code_qualifiers.
5276 * data/c++.m4: Where setting default values for b4_parser_class_name,
5277 b4_location_type, b4_filename_type, b4_namespace, and
5278 b4_define_location_comparison, update their names to the
5279 b4_percent_define_ namespace.
5280 * data/glr.c: Don't use b4_check_percent_define_variables and
5281 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
5282 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
5283 (b4_parser_class_name, b4_namespace): Define these using
a4e25e1d 5284 b4_get_percent_define for parser_class_name and namespace.
6afc30cc
JD
5285 * data/location.cc: Use b4_get_percent_define.
5286 * data/push.c: Don't use b4_check_percent_define_variables and
5287 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
5288 * data/yacc.c: Likewise, and don't call m4_exit in
5289 b4_use_push_for_pull_if or m4_wrap code will never execute.
5290 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
5291 Rename to...
5292 (muscle_grow_user_name_list): ... this for consistency with the
5293 terminology used in bison.m4.
5294 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
5295 %define variable names, and rename muscle used_percent_define_variables
5296 to user_percent_define_variables.
5297 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
5298 user_percent_code_qualifiers.
5299 (content): Remove.
5300 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
5301 {CODE} form is no longer accepted.
5302 * tests/input.at (Reject bad %code qualifiers): Rename to...
5303 (Reject unused %code qualifiers): ... this, and update test output.
5304 (%define error): Update test output.
5305
7eb8a0bc
JD
53062007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
5307
5308 Check for unrecognized %define variables similar to checking for
5309 unrecognized %code qualifiers. Check for redefined %define variables.
5310 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
5311 generalizes...
5312 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
5313 (b4_check_percent_define_variables): New, also wraps it.
5314 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
5315 variables using b4_check_percent_define_variables.
5316 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
5317 all those exercised in the test suite and all those listed in the
5318 `Default values' section of c++.m4. Are there others?
5319 * data/push.c, data/yacc.c: Declare no valid %define variables.
5320 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
5321 similar to muscle_find, but it works even when the muscle stores a
5322 const value.
5323 (muscle_grow_used_name_list): New function for constructing the used
5324 name list muscles that b4_check_for_unrecognized_names requires.
5325 * src/parse-gram.y (prologue_declaration): Warn if a variable is
5326 %define'd more than once. Define the b4_used_percent_define_variables
5327 muscle with muscle_grow_used_name_list.
5328 (grammar_declaration): Abbreviate %code code with
5329 muscle_grow_used_name_list.
5330 * tests/input.at (%define errors): New.
5331
3fc65ead
JD
53322007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5333
5334 Provide warn_at, complain_at, and fatal_at function callbacks to the
5335 skeletons, and use this for %code qualifier complaints.
5336 * data/bison.m4 (b4_error_at): New, invoked by...
5337 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
5338 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
5339 @fatal_at(...@) directives.
5340 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
5341 qualifiers in b4_used_percent_code_qualifiers and to use
5342 b4_complain_at.
5343 * src/location.c, src/location.h (boundary_set_from_string): New global
5344 function.
5345 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
5346 function.
5347 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
5348 to b4_used_percent_code_qualifiers.
5349 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
5350 function.
5351 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
5352 (lineno): Rename to...
5353 (out_lineno): ... this so I don't misunderstand it again.
5354 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
5355 here; these newlines are in the input but not the output file.
5356 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
5357 (at_directive_perform): ... this new static function, and add handling
5358 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
5359 directives.
5360 * tests/input.at (Reject bad %code qualifiers): Update test output with
5361 locations and extend.
5362
5363 * tests/output.at (Output file name: [, Output file name: ]): Remove
5364 bogus comment about these tests failing.
5365
1c7b7e1d
JD
53662007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5367
5368 Clean up b4_check_percent_code_qualifiers a little.
5369 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
5370 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
5371 documentation and add examples.
5372 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
5373 qualifiers here.
5374
08af01c2
JD
53752007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
5376
5377 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
5378 unreliable -- especially when they're hidden inside another macro.
5379 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
5380 data/c.m4: Remove m4_divert(-1).
5381 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
5382 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
5383 m4_divert_push(0) and m4_divert_pop(0).
279cabb6 5384 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
08af01c2
JD
5385 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
5386 pushed and popped by m4sugar, should be first on the stack.
5387
5388 Provide warn, complain, and fatal function callbacks to the skeletons.
5389 This provides more flexibility than m4_fatal, improves the error
5390 message format, and captures messages for translation. Discussed
5391 starting at
5392 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
5393 * data/bison.m4 (b4_error): New, invoked by...
5394 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
5395 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
5396 directives. Because these M4 macros might be called when the current
5397 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
5398 the previous removal of uses of m4_divert, which caused trouble.
5399 (b4_check_percent_code_qualifiers): Use b4_complain instead of
5400 m4_fatal to report unrecognized %code qualifiers.
5401 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
5402 push parser requests.
5403 * data/glr.c: Use b4_complain instead of m4_fatal to report
5404 non-deterministic push parser requests.
5405 Update @output usage to @output(...@) form.
5406 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
5407 report missing %defines. Update @output usage to @output(...@) form.
5408 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
5409 @output(...@) form.
5410 * src/main.c (main): Invoke skel_scanner_free.
5411 * src/scan-skel.h (skel_scanner_free): Prototype new function.
5412 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
5413 obstack_for_string from flex-scanner.h.
5414 (YY_DECL): Use to declare skel_lex static.
5415 (decode_at_digraphs): Remove; now handled in the new
5416 SC_AT_DIRECTIVE_ARG start condition.
5417 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
5418 functions.
5419 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
5420 at_directive_argv): New static globals.
5421 (INITIAL): Use fail_for_invalid_at.
5422 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
5423 recognize the start of a generalized `@directive(...@)' form and
5424 start...
5425 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
5426 directive args (using the new obstack_for_string), to decode the
5427 contained @ diagraphs, and to perform the directive. It recognizes
5428 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
5429 @output(...@).
5430 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
5431 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
5432 `@,'.
5433 (scan_skel): Initialize obstack_for_string on the first call.
5434 (skel_scanner_free): New function to free obstack_for_string.
5435 * tests/input.at (Reject bad %code qualifiers): Update test output.
5436
8e0a5e9e
JD
54372007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
5438
5439 Consolidate the 4 prologue alternative directives (%code, %requires,
5440 %provides, and %code-top) into a single %code directive with an
5441 optional qualifier field. Discussed at
5442 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
5443 * NEWS (2.3a+): Rewrite the existing entry for the prologue
5444 alternatives.
5445 * doc/bison.texinfo (Prologue Alternatives): Update.
5446 (Decl Summary): Update to %code "requires" and %code "provides".
5447 (Calc++ Parser): Update to %code "requires".
148d66d8 5448 (Table of Symbols): Remove entries for %requires, %provides, and
8e0a5e9e
JD
5449 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
5450 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
5451 are replaced by b4_percent_code_provides and b4_percent_code_requires,
5452 which are skeleton-specific.
5453 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
5454 declare what %code qualifiers it supports and to complain if any other
5455 qualifiers were used in the grammar.
5456 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
5457 and b4_user_code([b4_percent_code_provides]) in place of
5458 b4_user_requires and b4_user_provides.
5459 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
5460 Add b4_user_code([b4_percent_code_top]) and
5461 b4_user_code([b4_percent_code]).
5462 Invoke b4_check_percent_code_qualifiers.
5463 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
5464 PERCENT_REQUIRES): Remove.
5465 (grammar_declaration): Remove RHS's for %code-top, %provides, and
5466 %requires. Rewrite the %code RHS as the unqualified form defining the
5467 muscle b4_percent_code. Add another RHS for the qualified %code form,
5468 which defines muscles of the form b4_percent_code_QUALIFIER and the
5469 b4_used_percent_code_qualifiers muscle.
5470 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
5471 PERCENT_REQUIRES): Remove.
5472 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
5473 %code "requires" and %code "provides".
5474 * tests/input.at (Reject bad %code qualifiers): New.
5475
95021767
JD
54762007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
5477
5478 Use the new code_props interface for destructors and printers.
5479 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
5480 printer_location members, and change the type of the destructor and
5481 printer members to code_props.
5482 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
5483 symbol_printer_get, semantic_type_destructor_set,
5484 semantic_type_printer_set, default_tagged_destructor_set,
5485 default_tagless_destructor_set, default_tagged_printer_set,
5486 default_tagless_printer_set): Use code_props in arguments and return
5487 types in place of char const * and location.
5488 (symbol_destructor_location_get, symbol_printer_location_get): Remove
5489 since the locations are now contained in the return of
5490 symbol_destructor_get and symbol_printer_get.
5491 * src/output.c (symbol_destructors_output, symbol_printers_output):
5492 Replace with...
5493 (symbol_code_props_output): ... this to eliminate duplicate code.
5494 (output_skeleton): Update to use symbol_code_props_output.
5495 * src/reader.c (symbol_should_be_used): Update use of
5496 symbol_destructor_get.
5497 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5498 Update uses of the various _destructor_set and _printer_set functions.
5499 * src/symtab.c: (default_tagged_destructor_location,
5500 default_tagless_destructor_location, default_tagged_printer_location,
5501 default_tagless_printer_location): Remove since we...
5502 (default_tagged_destructor, default_tagless_destructor,
5503 default_tagged_printer, default_tagless_printer): ... change the type
5504 of these to code_props.
5505 (symbol_new, semantic_type_new, symbol_destructor_set,
5506 semantic_type_destructor_set, symbol_destructor_get,
5507 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
5508 symbol_check_alias_consistency, default_tagged_destructor_set,
5509 default_tagless_destructor_set, default_tagged_printer_set,
5510 default_tagless_printer_set): Update.
5511 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
5512 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
5513 code_props members.
5514 (symbol_print): Use SYMBOL_CODE_PRINT.
5515
f6857bbf
JD
55162007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
5517
5518 Use the new code_props interface for rule actions.
5519 * src/symlist.h (symbol_list): Replace action, action_location, and
5520 used members with a code_props action_props member.
5521 * src/reader.c (symbol_should_be_used, grammar_rule_check,
5522 grammar_midrule_action, grammar_current_rule_merge_set,
5523 grammar_current_rule_symbol_append, packgram): Update.
5524 * src/scan-code.h (translate_rule_action): Remove, no longer used.
5525 * src/scan-code.l (handle_action_dollar): Update.
5526 (translate_rule_action): Remove, no longer used.
5527 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
5528
7c0c6181
JD
55292007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
5530
5531 Use the new code_props interface in parse-gram.y.
5532 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
5533 Update all uses of translate_* functions to use the new code_props
5534 interface and to use gram_scanner_last_string_free and
5535 code_scanner_last_string_free where possible.
5536 (grammar_declaration): symbol_list_destructor_set and
5537 symbol_list_printer_set now perform the translation, so don't do it
5538 here. Use gram_scanner_last_string_free where possible.
5539 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
5540 translate_code): Remove, no longer used.
5541 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
5542 symbol_list_printer_set): Perform code translation here rather than
5543 depending on the caller to do so.
5544
5545 * src/symlist.h (struct symbol_list): Correct some documentation typos.
5546 * src/scan-gram.h (gram_last_string): Remove declaration.
5547 * src/scan-gram.l (last_string): Declare it static.
5548
28e52c0d
JD
55492007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
5550
5551 Encapsulate code properties and related functionality for the various
5552 destructors, printers, and actions into a code_props structure and
5553 interface. This patch merely implements code_props in scan-code.h and
5554 scan-code.l. Future patches will rewrite other modules to use it.
5555 Discussed starting at
5556 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
5557 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
5558 consistently initialize const structs that have an empty location
5559 field.
5560 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
5561 to ensure consistency.
5562 * src/scan-code.h (code_props): New structure.
5563 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
5564 function, macro, and const global variable for initializing a
5565 code_props with no code.
5566 (code_props_plain_init, code_props_symbol_action_init,
5567 code_props_rule_action_init, code_props_translate_code): The rest of
5568 the new code_props functional interface. Among other things, the init
5569 functions set the code_props kind field so that
5570 code_props_translate_code will know whether to behave like
5571 translate_symbol_action, translate_rule_action, or translate_code.
5572 These old translate functions must remain until all other modules are
5573 updated to use the new code_props interface.
5574 (code_scanner_last_string_free): New function similar to
5575 gram_scanner_last_string_free.
5576 (code_scanner_free): Add documentation.
5577 * src/scan-code.l: Implement the new interface.
5578 (code_lex): Make it static, add a code_props* argument, and remove the
5579 rule argument.
5580 (last_string): New static global similar to the one in scan-gram.l.
5581 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
5582 instead of rule.
5583 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
5584 code_props since Bison may one day use this information for destructors
5585 and printers.
5586 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
5587 (handle_action_dollar): Use symbol_list_n_get and set used flag
5588 directly since symbol_list_n_used_set is removed.
5589 (translate_action): Add a code_props* argument and remove the rule,
5590 action, and location arguments. Pass the code_props* on to code_lex.
5591 (translate_rule_action, translate_symbol_action, translate_code):
5592 Rewrite as wrappers around the new code_props interface.
5593 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
5594 it would eventually need to break the encapsulation of code_props.
5595
96034983
JD
55962007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
5597
5598 * etc/.cvsignore: New.
5599
945e396c
JD
56002007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
5601
5602 Add maintainer-push-check to run maintainer-check using push parsing in
5603 place of pull parsing where available.
5604 * Makefile.am (maintainer-push-check): New.
5605 * data/bison.m4 (b4_use_push_for_pull_if): New.
5606 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
5607 appropriately based on their existing values.
5608 (yypush_parse): Don't print push-parser-specific diagnostics if push
5609 parsing is being used in place of pull parsing.
5610 * data/yacc.c: If push parsing should replace pull parsing, redirect to
5611 push.c.
5612 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
5613 variable, and insert b4_use_push_for_pull_flag into muscles.
5614 * tests/Makefile.am (maintainer-push-check): New.
5615
7d596384
JD
56162006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
5617
5618 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
5619 (whether successful or failed) so that yypush_parse can be invoked
5620 again to start a new parse using the same yypstate.
5621 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
5622 check multiple yypull_parse invocations on the same yypstate. For pull
5623 mode, extend to check multiple yyparse invocations.
5624 (Exploding the Stack Size with Alloca): Extend to try with
5625 %push-pull-parser.
5626 (Exploding the Stack Size with Malloc): Likewise.
5627
5628 * tests/calc.at (Simple LALR Calculator): Don't specify
5629 %skeleton "push.c" since %push-pull-parser implies that now.
5630 * tests/headers.at (export YYLTYPE): Don't check for the push
5631 declarations. Otherwise, this test case can't be used to see if push
5632 mode can truly emulate pull mode.
5633 * tests/input.at (Torturing the Scanner): Likewise.
5634 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
5635 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
5636 AT_YACC_IF, which now includes the case of push mode since %skeleton
5637 need not be used for push mode. This will be more intuitive once
5638 push.c is renamed to yacc.c.
5639
7172e23e
JD
56402006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
5641
5642 For push mode, convert yyparse from a macro to a function, invoke yylex
5643 instead of passing a yylexp argument to yypull_parse, and don't
5644 generate yypull_parse or yyparse unless %push-pull-parser is declared.
5645 Discussed starting at
5646 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
5647 * data/bison.m4 (b4_pull_if): New.
5648 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
5649 * data/push.c: Improve M4 quoting a little.
5650 (b4_generate_macro_args, b4_parenthesize): Remove.
5651 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
5652 any time a pull parser is requested.
5653 Don't #define this as a wrapper around yypull_parse. Instead, when
5654 both push and pull are requested, make it a function that does that
5655 same thing.
5656 (yypull_parse): If there's a b4_prefix, #define this to
5657 b4_prefix[pull_parse] when both push and pull are requested.
5658 Don't define this as a function unless both push and pull are
5659 requested.
5660 Remove the yylexp argument and hard-code yylex invocation instead.
5661 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
5662 %push-parser.
5663 * src/getargs.c (pull_parser): New global initialized to true.
5664 * getargs.h (pull_parser): extern it.
5665 * src/output.c (prepare): Insert pull_flag muscle.
5666 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
5667 (prologue_declaration): Set both push_parser and pull_parser = true for
5668 %push-pull-parser. Set push_parser = true and pull_parser = false for
5669 %push-parser.
5670 * src/scan-gram.l: Don't accept %push_parser as an alternative to
5671 %push-parser since there's no backward-compatibility concern here.
5672 Scan %push-pull-parser.
5673 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
5674 instead of %push-parser.
5675 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
5676 prototype it in the module that calls yyparse.
5677 * tests/input.at (Torturing the Scanner): Likewise.
5678 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
5679
2e7944cb
JD
56802006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
5681
5682 Update etc/bench.pl. Optimize push mode a little (the yyn change
5683 deserves most of the credit).
5684 * Makefile.am (SUBDIRS): Add etc subdirectory.
5685 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
5686 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
5687 yytoken, yyval, and yyloc declarations to...
5688 (yyparse or yypush_parse): ... here to improve performance. For
5689 yypush_parse invocations after the first, be sure to assign yyn its old
5690 value again.
5691 (yypstate_new): Don't bother initializing the yyresult field since the
5692 initial value isn't used.
5693 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
5694 remove the #define that, in push mode, set it to yyps->NAME.
5695 * etc/Makefile.am: New.
5696 * etc/bench.pl: Remove and build it instead from...
5697 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
5698 "tests/bison" from the build directory by default rather than just
5699 invoking "bison" from $PATH.
5700 (calc_grammar): Update push parser code: don't declare yylval globally,
5701 don't define yyparse_wrapper, and don't #define yyparse.
5702 (bench_grammar): Update to check all working combinations of yacc.c,
5703 push.c, impure, pure, pull, and push.
5704
c3d50342
JD
57052006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
5706
5707 For push mode, add pull wrappers around yypush_parse.
5708 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
5709 (yypull_parse): New function wrapping yypush_parse.
5710 (yyparse): New #define wrapping yypull_parse.
5711 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
5712 is declared.
5713 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
5714 prototype yylex in the module that calls yyparse, and don't prototype
5715 yyparse there. Otherwise, the yyparse expansion won't compile.
5716 * tests/input.at (Torturing the Scanner): Likewise.
5717
94ebeba5
JD
57182006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
5719
5720 Enable push parsers to operate in impure mode. Thus, %push-parser no
5721 longer implies %pure-parser. The point of this change is to move
5722 towards being able to test the push parser code by running the entire
5723 test suite as if %push-parser had been declared.
5724 * data/push.c (yypush_parse): For impure mode, remove the
5725 yypushed_char, yypushed_val, and yypushed_loc arguments.
5726 Instead, declare these as local variables initialized to the global
5727 yychar, yylval, and yylloc.
5728 For the first yypush_parse invocation only, restore the initial values
5729 of these global variables when it's time to read a token since they
5730 have been overwritten.
5731 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
5732 %push-parser.
5733 * tests/calc.at (Simple LALR(1) Calculator): Always declare
5734 %pure-parser along with %push-parser since this test case was designed
5735 for pure push parsers.
5736 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
5737 (AT_YACC_OR_PUSH_IF): New.
5738 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
5739 add a note that it's still wrong for some cases (as it has been for a
5740 while).
5741 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
5742 %push-parser no longer implies %pure-parser.
5743
a0633178
JD
57442006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5745
5746 Remove some unnecessary differences between the pull parser code and
5747 the push parser code. This patch enables yynerrs in push mode.
5748 * data/push.c: Reformat M4 a little.
5749 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
5750 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
5751 because push mode is on. Instead, if pure mode is on, move yynerrs
5752 to...
5753 (b4_declare_parser_state_variables): ... here.
5754 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
5755 to yyps->NAME so it can be used in yypush_parse.
5756 (yypush_parse): Don't omit uses of yynerrs in push mode.
5757
8646b6a3
JD
57582006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5759
5760 Fix bug such that the first pushed token's value and location are
5761 sometimes overwritten (sometimes by %initial-action) before being used.
5762 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
5763 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
5764 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
5765 more closely mimic the pull parser logic.
5766 Don't copy the pushed token to yychar, yylval, and yylloc until it's
5767 time to read a token, which is after any initialization of yylval and
5768 yylloc.
5769 (gottoken): Rename label to...
5770 (yyread_pushed_token): ... for clarity and to avoid infringing on the
5771 user namespace.
5772
9baf4d74
JD
57732006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5774
5775 Rearrange initialization of the parser state variables so that the
5776 skeleton doesn't have to have a copy for pull mode and another for push
5777 mode. This patch also fixes at least a bug such that yylloc was not
5778 initialized (with b4_location_initial_line and
5779 b4_location_initial_column) upon calling yypush_parse. However, that
5780 initialization now overwrites the first token's location;
5781 %initial-action assigning @$ already did the same thing, and both bugs
5782 will be fixed in a later patch.
5783 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
5784 (b4_declare_parser_state_variables): Remove initialization of yytoken,
5785 yyss, yyvs, yyls, and yystacksize.
5786 (yypstate_new): Remove initialization of some yypstate fields: yystate,
5787 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
5788 yylsp.
5789 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
5790 yyps->NAME so it can be used in yypush_parse.
5791 (yyparse or yypush_parse): For yypush_parse, don't print the
5792 "Starting parse" diagnostic for invocations after the first.
5793 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
5794 yypush_parse, only do it for the first invocation.
5795 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
5796 initialization to occur in yypush_parse but only on the first
5797 invocation.
5798
23522164
JD
57992006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5800
5801 * data/push.c: Add CPP guards around push parser declarations in both
5802 the header and the code file.
5803 In the code file, move the push parser declarations to the same place
5804 they appear in the header file.
5805 Clean up the M4 some, especially the inconsistent underquoting in
5806 some b4_c_function_def and b4_c_function_decl uses.
5807
bb010fe5
JD
58082006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5809
5810 Encapsulate the push parser state variables into an M4 macro so the
5811 push skeleton doesn't have to list them again for pull mode's yyparse.
5812 For push mode, remove yypush_parse's local equivalents of these
5813 variables to eliminate unnecessary copying between the two sets at
5814 run-time. This patch also fixes at least a bug related to multiple
5815 %initial-action invocations in push mode.
5816 * data/push.c (b4_declare_parser_variables): Rename to...
5817 (b4_declare_scanner_communication_variables): ... this for clarity and
5818 update both uses.
5819 (b4_declare_yyparse_variables): Remove and move its contents to the one
5820 spot where it was invoked.
5821 (b4_declare_parser_state_variables): New macro containing the parser
5822 state variables required by push mode.
5823 (struct yypstate): Replace all fields but yynew with
5824 b4_declare_parser_state_variables.
5825 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
5826 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
5827 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
5828 (yyparse or yypush_parse): For yyparse in pull mode, replace local
5829 parser state variable declarations with
5830 b4_declare_parser_state_variables.
5831 Don't initialize parser state variables when calling yypush_parse since
5832 yypstate_new already does that.
5833 Invoke the user's initial action only upon the first yypush_parse
5834 invocation.
5835 Remove all code that copies between the local parser state variables
5836 and the yypstate.
5837
2d212f8c
JD
58382006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5839
5840 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
5841 prevent a name collision in a future patch where these names will
5842 sometimes be #define'd.
5843 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
5844 since it no longer has the same name as the existing argument.
5845 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
5846
e6e704dc
JD
58472006-12-19 Paolo Bonzini <bonzini@gnu.org>
5848 and Joel E. Denny <jdenny@ces.clemson.edu>
5849
5850 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
5851 that the argument is case-insensitive, and there's no `=' here.
5852 For the %skeleton entry, mention that %language is better.
5853 (Bison Options): Likewise for --language and --skeleton. Move the
5854 --skeleton entry so that the `Tuning the parser' section is sorted
5855 alphabetically on long options.
5856 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
5857 %language directive in detail here; cross-reference the %language
5858 documentation instead.
5859 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
5860 `%require "2.3b"' so that the example is always up-to-date.
148d66d8 5861 (Table of Symbols): Add entries for %language and %skeleton.
e6e704dc
JD
5862 * examples/extexi (normalize): Instead of replacing every %require
5863 argument with the current Bison version, just substitute for
5864 `@value{VERSION}'. This guarantees that we're testing what actually
5865 appears in the documentation.
5866 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
5867 rather than `@VERSION@'.
5868
0e021770
PE
58692006-12-18 Paul Eggert <eggert@cs.ucla.edu>
5870
fd575f05
PE
5871 * NEWS: Reword the %language news a bit, and put it earlier.
5872
0e021770
PE
5873 * src/getargs.c (skeleton_arg): Last arg is now location const *.
5874 Rewrite to simplify the logic.
5875 (language_argmatch): Likewise.
fd575f05
PE
5876 (program_name): We now own this var.
5877 * src/getargs.h (struct bison_language): Use char[] rather than
5878 const char *.
0e021770
PE
5879
5880 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
5881 Java is supported.
5882 * src/complain.c (program_name): Remove decl; no longer needed.
5883 * src/main.c (program_name): Remove; now belongs to getargs.
5884
58852006-12-18 Paolo Bonzini <bonzini@gnu.org>
5886
5887 * NEWS: Document %language.
5888
5889 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
5890
5891 * data/c-skel.m4, data/c++-skel.m4: New files.
5892 * data/glr.c: Complain on push parsers.
5893
5894 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
5895 over %skeleton.
148d66d8 5896 (Decl Summary): Document %language and %skeleton.
0e021770
PE
5897 (Command line): Document -L.
5898
5899 * examples/extexi: Rewrite %require directive.
5900 * examples/calc++/Makefile.am: Pass VERSION to extexi.
5901
5902 * src/files.c (compute_exts_from_gc): Look in language structure
5903 for .y extension.
5904 (compute_file_name_parts): Check whether .tab should be added.
5905 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
5906 (language, skeleton_arg, language_argmatch): New.
5907 (long_options): Add --language.
5908 (getargs): Use skeleton_arg, add -L/--language.
5909 * src/getargs.h: Include location.h.
5910 (struct bison_language, language, skeleton_arg, language_argmatch): New.
5911 * src/output.c (prepare): Pick default skeleton from struct language.
5912 Don't dispatch C skeletons here.
5913 * src/parse-gram.y (PERCENT_LANGUAGE): New.
5914 (prologue_declaration): Add "%language" rule, use skeleton_arg.
5915 * src/scan-gram.l ("%language"): New rule.
5916
5917 * tests/calc.at: Test %skeleton and %language.
5918 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
5919 (AT_GLR_IF): Look for %skeleton "glr.cc".
5920 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
5921 (AT_YACC_IF): Reject %language.
5922
5691bf57
PE
59232006-12-18 Paul Eggert <eggert@cs.ucla.edu>
5924
db06f0ce
PE
5925 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
5926 since it wasn't used; only the typedef name 'semantic_type' is needed.
5927 Also, omit trailing white space.
5928
5691bf57
PE
5929 * bootstrap: Sync from coreutils.
5930 (gnulib_extra_files): Add build-aux/announce.gen.
5931 (slurp): Adjust .gitignore files like .cvsignore files.
5932 * build-aux/announce-gen: Remove from CVS, since bootstrap
5933 now creates this.
5934
791934e4
JD
59352006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
5936
5937 Make %push-parser imply %pure-parser. This fixes several bugs; see
5938 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
5939 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
5940 pure_parser = true.
5941 * data/push.c: Don't bother testing b4_push_if when deciding whether
5942 to expand b4_declare_parser_variables globally.
5943 (yypush_parse): Likewise in here.
5944
5945 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
5946 (yy_reduce_print): Reformat M4 for readability.
5947
ee5abb37
JD
59482006-12-15 Bob Rossi <bob@brasko.net>
5949 and Joel Denny <jdenny@ces.clemson.edu>
5950
5951 * data/push.c (yypstate): Add typedef, and update all uses of
5952 struct yypstate to just yypstate.
5953 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
5954
16ca01f9
JD
59552006-12-14 Bob Rossi <bob@brasko.net>
5956
5957 * data/push.c (yypush_parse): Declare prototype regardless of
5958 %locations option.
5959
ab8e7e1a
JD
59602006-12-14 Bob Rossi <bob@brasko.net>
5961
5962 * data/push.c (yyparse): Remove the prototype and the #define when in
5963 push-parser mode.
5964
9bf32be3
JD
59652006-12-13 Bob Rossi <bob@brasko.net>
5966
5967 * data/push.c (yypstate_init): Rename to...
5968 (yypstate_new): ... this and use b4_c_function_def.
5969 (yypstate_delete): New.
5970 (yypush_parse): Change parameters yynval and yynlloc to be const.
5971 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
5972 yypstate_delete functions.
5973
f02e2948
JD
59742006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
5975
5976 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
5977 strange test case titles. Reported by Bob Rossi.
5978
38eb7751
PE
59792006-12-13 Paul Eggert <eggert@cs.ucla.edu>
5980
5981 * TODO: Add pointer to Sylvain Schmitz's work on static detection
5982 of potential ambiguities in GLR grammers.
5983
bd9d212b
JD
59842006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
5985
5986 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
5987 `bison ', use m4_index instead of m4_substr since chopping up a string
5988 containing M4-special characters causes problems here.
5989
5990 Fix a couple of bugs related to special characters in user-specified
5991 file names, and make it easier for skeletons to compute output file
5992 names with the same file name prefix as Bison-computed output file
5993 names.
5994 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
5995 b4_parser_file_name and b4_spec_defines_file instead of
5996 @output_parser_name@ and @output_header_name@, which are now redundant.
5997 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
5998 b4_parser_file_name, b4_spec_defines_file, and the new
5999 @basename(FILENAME@) instead of @output_parser_name@ and
6000 @output_header_name@, which inappropriately escaped the file names as
6001 C string literals.
6002 * src/files.c (all_but_ext): Remove static qualifier.
6003 (compute_output_file_names): Move `free (all_but_ext)' to...
6004 (output_file_names_free): ... here since all_but_ext is needed later.
6005 * src/files.h (all_but_ext): Extern.
6006 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
6007 exactly what MUSCLE_INSERT_STRING used to do.
6008 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
6009 characters are escaped properly.
6010 * src/output.c (prepare): Define muscle file_name_all_but_ext as
6011 all_but_ext.
6012 For pkgdatadir muscle, maintain previous functionality by using
6013 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
6014 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
6015 digraphs would never be expanded. Hopefully no one has M4-special
6016 characters in his Bison installation path.
6017 * src/scan-skel.l: Don't parse @output_header_name@ and
6018 @output_parser_name@ anymore since they're now redundant.
6019 In @output, use decode_at_digraphs.
6020 Parse a new @basename command that invokes last_component.
6021 (decode_at_digraphs): New.
6022 (BASE_QPUTS): Remove unused.
6023 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
6024 (Output file name): New tests.
6025
3f7ca628
JD
60262006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
6027
6028 Warn about output files that are generated by the skeletons and that
6029 conflict with other output files.
6030 * data/glr.c: Don't generate the header file here when glr.cc does.
6031 * src/files.c (file_names, file_names_count): New static globals.
6032 (compute_output_file_names): Invoke output_file_name_check for files
6033 not generated by the skeletons and remove existing checks.
6034 (output_file_name_check): New function that warns about conflicting
6035 output file names.
6036 (output_file_names_free): Free file_names.
6037 * src/files.h (output_file_name_check): Declare.
6038 * src/scan-skel.l: Invoke output_file_name_check for files generated by
6039 the skeletons.
6040 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
6041 (Conflicting output files): New tests.
6042
178e123e
PE
60432006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
6044
6045 * doc/bison.texinfo: Fix a couple of typos.
6046
60472006-12-08 Bob Rossi <bob@brasko.net>
8def5cd0
JD
6048
6049 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
6050 Rename to...
6051 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
6052 update all uses.
6053 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
6054 (yypush_parse): Rename yypvars argument to yyps and remove redundant
6055 local pv.
6056 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
6057 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
6058
ea17f233
JD
60592006-12-07 Bob Rossi <bob@brasko.net>
6060 and Joel Denny <jdenny@ces.clemson.edu>
6061
6062 * data/push.c (yypvarsinit): Change return type from void* to struct
6063 yypvars*. No longer cast to void* on return.
6064 (struct yypvars): Remove yylen since it need not be remembered between
6065 yypushparse invocations.
6066 (yypushparse): Don't copy between yylen and pv->yylen.
6067
55a30bda
JD
60682006-12-05 Bob Rossi <bob@brasko.net>
6069
6070 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
6071 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
6072 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
6073 (struct yypvars): Remove b4_declare_parser_variables.
6074 (yypvarsinit): Remove init code for removed variables.
6075 (global scope): Do not declare b4_declare_parser_variables if
6076 push or pure mode.
6077 (yypushparse): Add b4_declare_parser_variables.
6078 Init new local variables, and remove init code for removed
6079 yypvars variables.
6080 (yyparse): Delete.
6081 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
6082 and yyparse for other modes.
6083 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
6084 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
6085 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
6086 (AT_PURE_LEX_IF): True if pure or push parser.
6087
85894313
JD
60882006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
6089
6090 Document Yacc prologue alternatives and default %destructor's and
6091 %printer's as experimental. Don't mention Java yet. Discussed at
6092 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
6093 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
6094 (2.3a): Annotate this entry to say the old forms of these features were
6095 also experimental.
6096 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
148d66d8 6097 Table of Symbols): Say they're experimental. Comment out any mention
85894313
JD
6098 of Java (we'll want this back eventually).
6099
02975b9a
JD
61002006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
6101
6102 Support a file name argument to %defines. Deprecate `=' in
6103 %file-prefix, %name-prefix, and %output. Discussed at
6104 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
6105 * NEWS (2.3a+): Mention.
148d66d8 6106 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
02975b9a
JD
6107 form of %defines, and remove `=' from entries for %file-prefix,
6108 %name-prefix, and %output.
6109 * src/parse-gram.y (prologue_declaration): Implement.
6110 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
6111 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
6112 all but one occurrence of %name-prefix.
6113 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
6114 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
6115 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
6116 occurrence of each of %file-prefix and %output. Add check for %defines
6117 with argument.
6118 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
6119 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
6120 Remove the `=' from %output.
6121
287b314e
JD
61222006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
6123
6124 Don't escape $ in test case titles since Autoconf 2.61 now does that
6125 correctly.
6126 * tests/actions.at (Default %printer and %destructor are not for error
6127 or $undefined): Here.
6128 (Default %printer and %destructor are not for $accept): Here.
6129 * tests/input.at (Invalid $n and @n): Here.
6130
3ebecc24
JD
61312006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
6132
6133 Rename <!> to <>. Discussed starting at
6134 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
6135 * NEWS (2.3a+): Update.
148d66d8 6136 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
3ebecc24
JD
6137 Update.
6138 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
6139 * src/scan-gram.l (INITIAL): Implement.
6140 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
6141 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
6142 comment.
6143 * tests/actions.at (Default tagless %printer and %destructor,
6144 Default tagged and per-type %printer and %destructor,
6145 Default %printer and %destructor are not for error or $undefined,
6146 Default %printer and %destructor are not for $accept,
6147 Default %printer and %destructor for mid-rule values): Update.
6148 * tests/input.at (Default %printer and %destructor redeclared,
6149 Unused values with default %destructor): Update.
6150
26b8a438
JD
61512006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
6152
6153 Don't let %prec take a nonterminal.
6154 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
6155 token.
6156 * tests/input.at (%prec takes a token): New test checking that %prec
6157 won't take a nonterminal.
6158
07c39ae9
JD
61592006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
6160
405d53b7
JD
6161 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
6162 it was double-quoted.
07c39ae9
JD
6163 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
6164 grammar is maintained with Bison's highest standards.
6165 * src/getargs.c: Fix some typos in Doxygen comments.
6166
580b8926
JD
61672006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
6168
6169 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
6170 later. Reported by Paul Eggert in
6171 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
6172 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
6173 * src/scan-code.l (translate_action): Don't bother invoking
6174 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
6175 (code_scanner_free): Instead of invoking
6176 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
6177 which frees more.
6178 * src/scan-gram.l (gram_scanner_free): Likewise.
6179 * src/scan-skel.l (scan_skel): Likewise.
6180
4502eadc
JD
61812006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
6182
6183 * src/files.c (tr): Change return type to void.
6184 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
6185 has been called previously for the same key.
6186 (muscle_find): Return storage instead of value so that
6187 --enable-gcc-warnings doesn't produce warnings that the return discards
6188 const. aver that the value and storage are the same since storage
6189 could potentially be NULL when value is not.
6190 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
6191 same as 0.
6192
7746c8f6
PE
61932006-11-08 Paul Eggert <eggert@cs.ucla.edu>
6194
6195 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
6196 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
6197 us a slightly cleaner distribution, and also works.
6198 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
6199 gnulib changes.
6200
eb095650
PE
62012006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
6202 and Paul Eggert <eggert@cs.ucla.edu>
6203
6204 Don't let Bison leak memory except when it complains.
6205 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
6206 (spec_defines_file, dir_prefix): Now char *, not const char *,
6207 since they are freed.
6208 * src/files.c: Likewise.
6209 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
6210 Likewise.
6211 (tr): Now operates in-place. All uses changed.
6212 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
6213 values.
6214 (compute_file_name_parts, compute_output_file_names): Don't store
6215 read-only data in variables that will be freed.
6216 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
6217 src_extension, and header_extension.
6218 (output_file_names_free): New public function to free
6219 spec_verbose_file, spec_graph_file, spec_defines_file,
6220 parser_file_name, and dir_prefix.
6221 * src/getargs.c (getargs): Don't store read-only data in variables that
6222 will be freed.
6223 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
6224 (which previously existed but was unused), and quotearg_free.
6225 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
6226 * src/muscle_tab.c: Likewise.
6227 (muscle_entry): Make the value char const *,
6228 and add a new storage member that is char * and can be freed.
6229 (muscle_entry_free): New private function.
6230 (muscle_init): Use it instead of free.
6231 (muscle_insert, muscle_grow): Update and use new storage member.
6232 (muscle_code_grow): Free the string passed to muscle_grow
6233 since it's not needed anymore.
6234 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
6235 add a new `char *code' member.
6236 ("{...}"): Declare semantic type as code.
6237 * src/scan-code.h (translate_rule_action):
6238 (translate_symbol_action, translate_code, translate_action): Return
6239 `char const *' rather than `char *' since external code should not free
6240 these strings.
6241 * src/scan-code.l: Likewise.
6242 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
6243 which is "{...}" in the parser.
6244 * tests/Makefile.am (maintainer-check-valgrind): Set
6245 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
6246 Valgrind.
6247 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
6248 complain.
6249 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
6250 expecting a non-zero exit status sets --leak-check=summary and
6251 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
6252 this case, and we don't want to hear about it.
6253
ac564be4
PE
62542006-11-08 Paul Eggert <eggert@cs.ucla.edu>
6255
6256 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
6257 instead of from the template, to simplify configuration a bit.
6258 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
6259 and m4/wint_t.m4, as they are needed with the latest gnulib.
6260
17bd8a73
JD
62612006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6262
6263 Disable unset/unused mid-rule value warnings by default, and recognize
6264 --warnings=midrule-values to enable them. Discussed starting at
6265 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
6266 * NEWS (2.3a+): Mention.
6267 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
6268 warnings): Add entry for midrule-values subargument.
6269 * src/reader.c (symbol_should_be_used): Don't return true just because
6270 the value is a set/used mid-rule value unless
6271 --warnings=midrule-values was specified.
6272 * tests/input.at (Unused values, Unused values before symbol
6273 declarations): Run tests with and without --warnings=midrule-values.
6274
6275 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
6276 than LIST_FREE directly.
6277
89eb3c76
JD
62782006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6279
6280 Finish implementing --warnings=error, which should not be implied by
6281 --warnings=all (or by its synonyms -W and --warnings without
6282 subarguments).
6283 * src/complain.c (set_warning_issued): New function to report that
6284 warnings are being treated as errors and to record an error if so.
6285 Invoke...
6286 (warn_at, warn): ... here.
6287 * src/getargs.c (warnings_args, warnings_types): Reorder so that
6288 "error - warnings are errors" does not appear above "all - all of the
6289 above".
6290 (getargs): For -W and --warnings without subarguments, don't let
6291 FLAGS_ARGMATCH set warnings_error in warnings_flag.
6292 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
6293
ba7560e2
JD
62942006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6295
6296 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
6297 empty subargument list. For example: `bison --warnings= parser.y'.
6298
31283fc3
JD
62992006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6300
6301 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
6302 the parser header file so that gcc doesn't warn.
6303
12e35840
JD
63042006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6305
6306 Split the default %destructor/%printer into two kinds: <*> and <!>.
6307 Discussed starting at
6308 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
6309 * NEWS (2.3a+): Mention.
6310 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
6311 previous change today related to mid-rules.
148d66d8 6312 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
3ebecc24 6313 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
12e35840
JD
6314 (TYPE_TAG_ANY): Add as <*>.
6315 (TYPE_TAG_NONE): Add as <!>.
6316 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
6317 for <*> and <!>.
6318 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
6319 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
6320 * src/symlist.c (symbol_list_default_new): Split into tagged and
6321 tagless versions.
6322 (symbol_list_destructor_set, symbol_list_printer_set): Split
6323 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
6324 SYMLIST_DEFAULT_TAGLESS.
6325 * src/symlist.h: Update symbol_list_default*_new prototypes.
6326 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
6327 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
6328 * src/symtab.c (default_destructor, default_destructor_location,
6329 default_printer, default_printer_location): Split each into tagged and
6330 tagless versions.
6331 (symbol_destructor_get, symbol_destructor_location_get,
6332 symbol_printer_get, symbol_printer_location_get): Implement tagged
6333 default and tagless default cases.
6334 (default_destructor_set, default_printer_set): Split each into tagged
6335 and tagless versions.
6336 * src/symtab.h: Update prototypes.
6337 * tests/actions.at (Default %printer and %destructor): Rename to...
6338 (Default tagless %printer and %destructor): ... this, and extend.
6339 (Per-type %printer and %destructor): Rename to...
6340 (Default tagged and per-type %printer and %destructor): ... this, and
6341 extend.
6342 (Default %printer and %destructor for user-defined end token): Extend.
6343 (Default %printer and %destructor are not for error or $undefined):
6344 Update.
6345 (Default %printer and %destructor are not for $accept): Update.
6346 (Default %printer and %destructor for mid-rule values): Extend.
6347 * tests/input.at (Default %printer and %destructor redeclared): Extend.
6348 (Unused values with default %destructor): Extend.
6349
f91b1629
JD
63502006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6351
6352 Don't apply the default %destructor/%printer to an unreferenced midrule
6353 value. Mentioned at
6354 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
6355 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
6356 like $@n instead of just @n so that the default %destructor/%printer
6357 logic doesn't see them as user-defined symbols.
6358 (symbol_is_dummy): Check for both forms of the name.
6359 * src/reader.c (packgram): Remove the `$' from each midrule symbol
6360 name for which the midrule value is referenced in any action.
6361 * tests/actions.at (Default %printer and %destructor for mid-rule
6362 values): New test.
6363 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
6364 for change to dummy symbol names.
6365
519d0004
JD
63662006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
6367
6368 Warn about unset midrule $$ if the corresponding $n is used.
6369 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
6370 $n usage.
6371 (packgram): Before invoking grammar_rule_check on any rule, make sure
6372 all actions have already been scanned in order to set `used' flags.
6373 Otherwise, checking that a midrule's $$ is set will not always work
6374 properly because the midrule check must forward-reference the midrule's
6375 parent rule.
6376 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
6377 warning.
6378
a501eca9
JD
63792006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
6380
6381 More improvements to the documentation of the prologue alternatives:
6382 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
6383 Bison manual.
6384 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
6385 some text to clarify the relative importance of the new directives and
6386 to show how these directives may be viewed as code labels.
6387
2cbe6b7f
JD
63882006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
6389
6390 Similar to the recently removed %before-header, add %code-top as the
6391 alternative to the pre-prologue. Mentioned at
6392 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
6393 Also, let the prologue alternatives appear in the grammar section.
6394 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
6395 (prologue_declaration): Move the existing prologue alternatives to...
6396 (grammar_declaration): ... here and add %code-top.
6397 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
6398
6399 Clean up and extend documentation for the prologue alternatives.
6400 * NEWS (2.3a+): Describe prologue alternatives.
6401 * doc/bison.texinfo (Prologue): Move discussion of prologue
6402 alternatives to...
6403 (Prologue Alternatives): ... this new section, and extend it to discuss
6404 all 4 directives in detail.
148d66d8
JD
6405 (Table of Symbols): Clean up discussion of prologue alternatives and
6406 add %code-top.
2cbe6b7f 6407
e557d3ea
JMG
64082006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6409
6410 DJGPP specific issues.
6411
6412 * djgpp/config.bat: config.hin has been moved to lib. Adjust
6413 config.bat accordingly.
6414 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
6415 * djgpp/config.site: Likewise.
6416
136a0f76
PB
64172006-10-16 Paolo Bonzini <bonzini@gnu.org>
6418
27bd5d67
PB
6419 Replace %*-header with %provides, %requires, %code. See discussion at
6420 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
6421
136a0f76
PB
6422 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
6423 (b4_user_start_header): Remove.
6424 * data/glr.c: Use new macros instead of b4_*start_header
6425 and b4_*end_header.
6426 * data/glr.cc: Likewise.
6427 * data/lalr1.cc: Likewise.
6428 * data/push.c: Likewise.
6429 * data/yacc.c: Likewise.
6430
6431 * doc/bison.texinfo: Remove %before-header, rename
6432 %{start,end,after}-header to %requires, %provides, %code.
6433
6434 * src/parse-gram.y: Likewise (also rename token names accordingly).
6435 * src/scan-gram.l: Likewise.
6436 * tests/actions.at: Likewise.
6437
10f429ef
PE
64382006-10-14 Paul Eggert <eggert@cs.ucla.edu>
6439
6440 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
6441 Problem reported by Joel E. Denny.
6442
64432006-10-14 Jim Meyering <jim@meyering.net>
6444
6445 (Sync from coreutils.)
6446 Work also when the working directory (with e.g. coreutils sources)
6447 is version controlled with git, rather than CVS.
6448 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
6449 rather than CVS.
6450 In messages and comments, say e.g., "checked-out sources",
6451 rather than "CVS sources".
6452 (version_controlled_file): New function. Work for git as well as
6453 for CVS. Don't use grep's -q option.
6454 (slurp): Call it here, in place of CVS-specific code.
6455
c4bd5bf7
JD
64562006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
6457
6458 Fix testsuite for ./configure --enable-gcc-warnings:
6459 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
6460 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
6461 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
6462 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
6463 * test/regression.at (Diagnostic that expects two alternatives):
6464 Likewise.
6465
46356ea4
PE
64662006-10-12 Paul Eggert <eggert@cs.ucla.edu>
6467
231ed89a
PE
6468 * bootstrap.conf (gnulib_modules): Add config-h.
6469 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
6470 worry about HAVE_CONFIG_H.
6471 * lib/abitset.c: Likewise.
6472 * lib/bitset.c: Likewise.
6473 * lib/bitset_stats.c: Likewise.
6474 * lib/bitsetv-print.c: Likewise.
6475 * lib/bitsetv.c: Likewise.
6476 * lib/ebitset.c: Likewise.
6477 * lib/get-errno.c: Likewise.
6478 * lib/lbitset.c: Likewise.
6479 * lib/subpipe.c: Likewise.
6480 * lib/timevar.c: Likewise.
6481 * lib/vbitset.c: Likewise.
6482 * lib/bitset.c: Include "bitset.h" first, to test interface.
6483 * lib/bitset_stats.c: Include "bitset_stats.h" first.
6484 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
6485 * lib/bitsetv.c: Include "bitsetv.h" first.
6486 * lib/get-errno.c: Include "get-errno.h" first.
6487 * m4/.cvsignore: Add config-h.m4.
6488 * tests/actions.at (Default %printer and %destructor for ...):
6489 Adjust expected line numbers in output to reflect removal of #if
6490 HAVE_CONFIG_H lines.
6491 * tests/glr-regression.at (Missed %merge type warnings when ...):
6492 Likewise.
6493 * tests/regression.at (Braced code in declaration in rules section):
6494 Likewise.
6495 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
6496 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
6497 Include <config.h> unconditionally.
6498
46356ea4
PE
6499 * bootstrap: Sync from coreutils, as follows:
6500
6501 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
6502
6503 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
6504 variable was sometimes used without being initialized. This
6505 messed up the installation of the INSTALL file in some cases.
6506
6507 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
6508
6509 * bootstrap (usage, main program, symlink_to_gnulib): Add option
6510 --copy. Inspired by a suggestion from Bruno Haible.
6511
6512 2006-10-03 Jim Meyering <jim@meyering.net>
6513
6514 * bootstrap: Undo last change to this file, since now gnulib-tool
6515 sticks with the automake default in generating dependencies.
6516
dd4bf078
PE
65172006-10-12 Paul Eggert <eggert@cs.ucla.edu>
6518
cf2a5f7c
PE
6519 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
6520 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
6521
6522 * doc/bison.1: Add copyright notice.
6523
6524 * data/glr.c: Don't include <stdarg.h>; not used.
6525
35fe0834
PE
6526 * NEWS: The -g and --graph options now output graphs in Graphviz
6527 DOT format, not VCG format.
6528 * doc/bison.1: Likewise.
6529 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
fcab4a2e
PE
6530 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
6531 of this change in
6532 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
35fe0834
PE
6533 * TODO: Remove Graphviz entry.
6534 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
6535 remove vcg.c, vcg.h, vcg_defaults.h.
6536 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
6537 * src/graphviz.c, src/graphviz.h: New files.
6538 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
6539 * src/files.h: Make comment more generic.
6540 * src/main.c (main): Likewise.
6541 * src/print_graph.h: Likewise.
6542 * src/getargs.c (usage): Make usage description more generic.
6543 * src/print_graph.c: Include graphviz.h rather than vcg.h.
6544 (static_graph, fgraph): Remove. All uses changed to pass
6545 arguments instead of sharing a static var.
6546 (print_core, print_actions, print_state, print_graph):
6547 Output graphviz format rather than VCG format.
6548 * tests/.cvsignore: Remove *.vcg; add *.dot.
6549 * tests/output.at: Expect *.dot files, not *.vcg files.
6550
dd4bf078
PE
6551 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
6552 accommodates the 2006-10-08 change.
6553
efdd7421
PE
65542006-10-11 Bob Rossi <bob@brasko.net>
6555
6556 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
6557 (b4_yyssa, b4_yyerror_range): New macros.
6558 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
6559 (yypvarsinit): Remove init of removed fields.
6560 (yypushparse): Remove use of removed fields; use new macros instead.
6561
96a1981a
PE
65622006-10-11 Paul Eggert <eggert@cs.ucla.edu>
6563
6564 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
6565 in a push parser. Reindent slightly to match yacc.c better.
6566
65672006-10-11 Bob Rossi <bob@brasko.net>
6568
46356ea4
PE
6569 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
6570 yymsg_alloc fields.
6571 (yypvarsinit, yypushparse): Remove init of removed fields.
6572 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
96a1981a 6573
c1630a8b
PE
65742006-10-09 Paul Eggert <eggert@cs.ucla.edu>
6575
6576 * THANKS: Add Paolo Bonzini and Bob Rossi.
6577
90b9908d
PB
65782006-10-08 Paolo Bonzini <bonzini@gnu.org>
6579
6580 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
6581 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
6582 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
6583 b4_define_user_cde and uses): Remove.
6584 (b4_comment, b4_prefix, b4_sync_start): New.
6585 * data/bison.m4: New file, with most of the content removed from c.m4.
6586 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
6587 * src/output.c (output_skeleton): Pass bison.m4.
6588 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
6589 only if specified.
6590
cf806753
PE
65912006-10-05 Paul Eggert <eggert@cs.ucla.edu>
6592
6593 Fix test failure reported by Tom Lane in
6594 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
6595 and try to make such failures easier to catch in the future.
6596 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
6597 that's now the caller's responsibility.
6598 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
6599 Set yychar = YYEOF if it's negative.
6600 * tests/actions.at (yylex): Abort if asked to read past EOF.
6601 * tests/conflicts.at (yylex): Likewise.
6602 * tests/cxx-type.at (yylex): Likewise.
6603 * tests/glr-regression.at (yylex): Likewise.
6604 * tests/input.at (yylex): Likewise.
6605 * tests/regression.at (yylex): Likewise.
6606 * tests/torture.at (yylex): Likewise.
6607
0e2f006a
PE
66082006-10-01 Paul Eggert <eggert@cs.ucla.edu>
6609
6610 Fix problems with translating English-language diagnostics.
6611 * bootstrap: Fix bug introduced in recent bootstrap changes, with
6612 respect to bison-runtime pot generation. The YY_ stuff
6613 wasn't being captured.
6614 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
6615 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
6616 * runtime-po/POTFILES.in: Add data/push.c.
6617
e3ddc1e3
PE
66182006-09-29 Paul Eggert <eggert@cs.ucla.edu>
6619
6620 Merge bootstrap changes from coreutils.
6621
6622 2006-09-28 Jim Meyering <jim@meyering.net>
6623
6624 Automatically generated dependencies are important even
6625 when all of the sources in a directory come from gnulib.
6626 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
6627 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
6628
6629 2006-09-23 Jim Meyering <jim@meyering.net>
6630
6631 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
6632
6633 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6634
6635 * bootstrap: Add support for --force.
6636 (usage): New function. Describe usage less tersely.
6637 (CVS_only_file): New var.
6638
01e972b3
PE
66392006-09-21 Paul Eggert <eggert@cs.ucla.edu>
6640
6641 * data/push.c (YYPUSH_MORE): Make it an enum instead.
6642 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
6643 Adjust white space and comments to match GNU style better.
6644
c63d3e90
PE
66452006-09-20 Bob Rossi <bob@brasko.net>
6646
6647 * data/push.c (yyresult_get): Remove function.
6648 (YYPUSH_MORE): Add #define.
6649 (yypushparse): Modify return value.
6650
e70f46d1
PE
66512006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6652
6653 * stamp-h.in: Remove; no longer needed.
6654 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
6655 Remove config.h, config.hin, intl (no longer created).
6656 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
6657 stamp-h1.
6658
6659 Sync bootstrap from coreutils, as follows:
6660
6661 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
6662
6663 * bootstrap (symlink_to_gnulib): New function.
6664 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
6665 to copies-of-gnulib.
6666 (cp_mark_as_generated, slurp, gnulib_files):
6667 Avoid making a copy if it's the same as the old version.
6668 (gnulib_files): Add support for this variable (used by Bison).
6669
a92be413
PE
66702006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6671
6672 * src/getargs.c (usage): Rework to use conventions similar to
6673 coreutils, to make translation a bit easier and the code a bit
6674 smaller. Problem reported by Tim Van Holder.
6675
4f82b42a
PE
66762006-09-15 Paul Eggert <eggert@cs.ucla.edu>
6677
3b2942e6
PE
6678 Use some of gnulib's new modules, taken from coreutils.
6679
6680 * bootstrap: Sync from coreutils, except add support for gnulib_files.
6681 * bootstrap.conf: New file.
6682 (gnulib_modules): Add configmake, inttypes, unistd.
6683 (XGETTEXT_OPTIONS): Add complain, complain_at,
6684 fatal, fatal_at, warn, warn_at, unexpected_end.
6685 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
6686 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
6687 (gl_EARLY): Add.
6688 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
6689 (gl_INIT): Add
6690 (GNULIB_AUTOCONF_SNIPPET): Remove.
6691 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
6692 the pickiest.
6693 * lib/.cvsignore: Add inttypes_.h.
6694 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
6695 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
6696 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
6697 no-longer-necessary initializations.
6698 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
6699 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
6700 use the unistd module.
6701 * src/system.h: Likewise.
6702 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
6703 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
6704 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
6705 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
6706 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
6707 * src/system.h: Include inttypes.h unconditionally, now that we
6708 use the inttypes module. Don't bother to include stdint.h, since
6709 inttypes.h now does that for us.
6710 (LOCALEDIR): Remove, now that we use the configmake module.
6711 * src/getargs.c: Include configmake.h.
6712 * src/main.c: Likewise.
6713 * src/output.c: Likewise.
6714 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
6715 not from $abs_top_builddir, since config.h moved.
6716
6717
4f82b42a
PE
6718 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
6719 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
6720
6721 * src/parse-gram.y (symbol_declaration): Don't put statements
6722 before declarations; it's not portable to C89.
6723 * src/scan-code.l (handle_action_at): Likewise.
6724
6725 * src/scan-code.l: Always initialize braces_level; the old code
6726 left it uninitialized and therefore had undefined behavior.
6727
6728 Don't attempt to redefine 'assert', since it runs afoul of
6729 systems where standard headers (mistakenly) include <assert.h>.
6730 Instead, define and use our own alternative, called 'aver'.
6731 * src/reader.c: Don't include assert.h, since we no longer
6732 use assert.
6733 * src/scan-code.l: Likewise.
6734 * src/system.h (assert): Remove, replacing with....
6735 (aver): New function, taking a bool arg. All uses changed.
6736 * src/tables.c (pack_vector): Ensure that aver arg is bool,
6737 not merely an integer.
6738
31c10e38
PE
67392006-09-15 Bob Rossi <bob@brasko.net>
6740
e5926647
JD
6741 Add support for push parsing. Based on the original work of
6742 Odd Arild Olsen <oao@fibula.no>.
31c10e38
PE
6743 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
6744 * data/c.m4 (YYPUSH): New.
6745 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
e5926647 6746 * data/push.c: New file.
31c10e38
PE
6747 * src/getargs.c (push_parser): New var.
6748 * src/getargs.h (push_parser): New declaration.
6749 * src/output.c (prepare): Add macro insertion of `push_flag'.
6750 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
6751 (prologue_declaration): Parse %push-parser.
6752 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
6753 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
6754 list of removed lines from the traces observed.
6755 (AT_CHECK_CALC_LALR): Added push parser tests.
6756
fa7b79c0
PE
67572006-09-13 Paul Eggert <eggert@cs.ucla.edu>
6758
21fe08ca
PE
6759 * NEWS: Version 2.3a.
6760 * configure.ac (AC_INIT): Likewise.
6761
e8ec4d9b
PE
6762 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
6763 "#define YYSTYPE int" that caused "make maintainer-check" to fail
6764 due to header ordering dependencies. I don't know why the #define
6765 was there.
6766
fa7b79c0
PE
6767 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
6768 runtime cost when YYDEBUG is not defined, and so that some tests
6769 that used to fail now work. Problem and initial suggestion by
6770 Paolo Bonzini.
6771 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
6772 * data/glr.cc (b4_parser_class_name):
6773 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
6774 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
6775 (yydebug_) [YYDEBUG]: New member.
6776 (yycdebug_): Now defined only if YYDEBUG.
6777 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
6778 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
6779 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
6780 if YYYDEBUG.
6781 (debug_stream, set_debug_stream, debug_level, set_debug_level):
6782 Define only if YYDEBUG.
6783 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
6784 set_debug_level.
6785 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
6786 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
6787 AT_CHECK_CALC_GLR_CC that are working now.
6788
4ec13d60
PE
67892006-09-12 Paul Eggert <eggert@cs.ucla.edu>
6790
6791 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
6792 We don't need them in glr.cc, and glr.c defines them.
6793 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
6794 assumes that defining it to anything is the same as defining
6795 it to 1. Problem reported by Paolo Bonzini.
6796
8e1687ae
PE
67972006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
6798
6799 * data/c.m4 (b4_null, b4_case): Define.
6800 * src/output.c (prepare_symbols): Use b4_null.
6801 (user_actions_output): Use b4_case.
6802
3dc5e96b
PE
68032006-09-11 Paul Eggert <eggert@cs.ucla.edu>
6804
aef3da86
PE
6805 * data/glr.c (b4_shared_declarations): Put start-header first,
6806 before any #includes that we generate, so that feature-test
6807 macros work. Problem reported by Michael Deutschmann in
6808 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
6809 * data/lalr1.cc: Likewise.
6810 * doc/bison.texinfo (Prologue): Document that feature-test macros
6811 should be defined before any Bison declarations.
6812 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
6813 that depend on location.hh after, not before, Bison decls, since
6814 we now include location.hh after the first user prologue.
6815
3dc5e96b
PE
6816 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
6817 Sander Brandenburg in
6818 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
6819 Also, fix minor white space and comment issues.
aef3da86
PE
6820 (Prologue): Mention that it's better to define feature-test macros
6821 before Bison declarations. Problem reported by Michael Deutschmann.
6822
6823 * README-cvs: Fix typo: "&" should be "&&". Problem reported
6824 by Jim Meyering.
6825 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
6826 This adjusts to recent gnulib changes.
3dc5e96b 6827
b2a0b7ca
JD
68282006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
6829
6830 Finish implementation of per-type %destructor/%printer. Discussed
6831 starting at
6832 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
6833 and
6834 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
6835 * NEWS (2.3+): Add a description of this feature to the default
6836 %destructor/%printer description.
6837 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
6838 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
6839 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
6840 list node contains a semantic type.
6841 * src/symtab.c, src/symtab.h: Extend with a table that associates
6842 semantic types with their %destructor's and %printer's.
6843 (semantic_type_from_uniqstr, semantic_type_get,
6844 semantic_type_destructor_set, semantic_type_printer_set): New functions
6845 composing the public interface of that table.
6846 (symbol_destructor_get, symbol_destructor_location_get,
6847 symbol_printer_get, symbol_printer_location_get): If there's no
6848 per-symbol %destructor/%printer, look up the per-type before trying
6849 the default.
6850 * tests/actions.at (Per-type %printer and %destructor): New test case.
6851 * tests/input.at (Default %printer and %destructor redeclared):
6852 Extend to check that multiple occurrences of %symbol-default in a
6853 single %destructor/%printer declaration is an error.
6854 (Per-type %printer and %destructor redeclared, Unused values with
6855 per-type %destructor): New test cases.
6856
3be03b13
JD
68572006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
6858
6859 Require default %destructor/%printer to be declared using
6860 %symbol-default instead of an empty symbol list, and start working on
6861 new per-type %destructor/%printer. Discussed at
6862 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
6863 * NEWS (2.3+): Add %symbol-default to example.
6864 * bison.texinfo (Freeing Discarded Symbols): Likewise.
148d66d8 6865 (Table of Symbols): Add entry for %symbol-default.
3be03b13
JD
6866 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
6867 (generic_symlist, generic_symlist_item): New nonterminals for creating
6868 a list in which each item is a symbol, semantic type, or
6869 %symbol-default.
6870 (grammar_declaration): Use generic_symlist in %destructor and %printer
6871 declarations instead of symbols.1 or an empty list.
6872 (symbol_declaration, precedence_declaration, symbols.1): Update actions
6873 for changes to symbol_list.
6874 * src/reader.c: Update for changes to symbol_list.
6875 * src/scan-code.l: Likewise.
6876 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
6877 * src/symlist.c, src/symlist.h: Extend such that a list node may
6878 represent a semantic type or a %symbol-default in addition to just an
6879 ordinary symbol. Add switched functions for setting %destructor's and
6880 %printer's.
6881 * tests/actions.at, tests/input.at: Add %symbol-default to all default
6882 %destructor/%printer declarations.
6883
3508ce36
JD
68842006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
6885
6886 Whether the default %destructor/%printer applies to a particular symbol
6887 isn't a question of whether the user *declares* that symbol (in %token,
6888 for example). It's a question of whether the user by any means
6889 *defines* the symbol at all (by simply using a char token, for
6890 example). $end is defined by Bison whereas any other token with token
6891 number 0 is defined by the user. The error token is always defined by
6892 Bison regardless of whether the user declares it with %token, but we
6893 may one day let the user define error as a nonterminal instead.
6894 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
6895 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
6896 the meaning of "user-defined".
6897 * tests/actions.at (Default %printer and %destructor for user-declared
6898 end token): Rename to...
6899 (Default %printer and %destructor for user-defined end token): ...
6900 this.
6901
6902 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
6903 computation of whether to apply the default, don't maintain a list of
6904 every Bison-defined symbol. Instead, just check for a first character
6905 of '$', which a user symbol cannot have, and check for the error token.
6906
9350499c
JD
69072006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
6908
6909 Don't apply the default %destructor or %printer to the error token,
6910 $undefined, or $accept. This change fits the general rule that the
6911 default %destructor and %printer are only for user-declared symbols,
6912 and it solves several difficulties that are described in the new test
6913 cases listed below.
6914 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
6915 * tests/actions.at (Default %printer and %destructor are not for error
6916 or $undefined, Default %printer and %destructor are not for $accept):
6917 New test cases.
6918
4d7370cb
JD
69192006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
6920
6921 Allow %start after the first rule.
6922 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
6923 when parsing the first rule.
6924 (check_and_convert_grammar): Search for it here after all grammar
6925 declarations have been parsed. Skip midrules, which have dummy LHS
6926 nonterminals.
6927 * src/symtab.c (symbol_is_dummy): New function.
6928 * src/symtab.h (symbol_is_dummy): Declare it.
6929 * tests/input.at (%start after first rule): New test.
6930
6d0ef4ec
JD
69312006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
6932
6933 Redo some of the previous commit: add back the ability to use
6934 non-aliased/undeclared string literals since it might be useful to
6935 those declaring %token-table.
6936 * src/reader.c (check_and_convert_grammar): Undo changes in previous
6937 commit: don't worry about complaints from symbols_pack.
6938 * src/symtab.c (symbol_new, symbol_class_set,
6939 symbol_check_alias_consistency): Undo changes in previous commit: count
6940 each string literal as a new symbol and token, assign it a symbol
6941 number, and don't complain about non-aliased string literals.
6942 (symbols_pack): Since symbol_make_alias still does not decrement symbol
6943 and token counts but does still set aliased tokens to the same number,
6944 symbol_pack_processor now leaves empty slots in the symbols array.
6945 Remove those slots.
6946 * tests/regression.at (Undeclared string literal): Remove test case
6947 added in previous commit since non-aliased string literals are allowed
6948 again.
6949 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
6950 remove unnecessary string literal declarations.
6951 * tests/sets.at (Firsts): Likewise.
6952
965537bc
JD
69532006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
6954
6955 Don't allow an undeclared string literal, but allow a string literal to
6956 be used before its declaration.
6957 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
6958 symbols_pack complained.
6959 * src/symtab.c (symbol_new): Don't count a string literal as a new
6960 symbol.
6961 (symbol_class_set): Don't count a string literal as a new token, and
6962 don't assign it a symbol number since symbol_make_alias does that.
6963 (symbol_make_alias): It's not necessary to decrement the symbol and
6964 token counts anymore. Don't assume that an alias declaration occurs
6965 before any uses of the identifier or string, and thus don't assert that
6966 one of them has the highest symbol number so far.
6967 (symbol_check_alias_consistency): Complain if there's a string literal
6968 that wasn't declared as an alias.
6969 (symbols_pack): Bail if symbol_check_alias_consistency failed since
6970 symbol_pack asserts that every token has been assigned a symbol number
6971 although undeclared string literals have not.
6972 * tests/regression.at (String alias declared after use, Undeclared
6d0ef4ec 6973 string literal): New test cases.
965537bc
JD
6974 (Characters Escapes, Web2c Actions): Declare string literals as
6975 aliases.
6976 * tests/sets.at (Firsts): Likewise.
6977
47aee066
JD
69782006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
6979
6980 In the grammar scanner, STRING_FINISH unclosed constructs and return
6981 them to the parser in order to improve error messages.
6982 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
6983 SC_BRACED_CODE, SC_PROLOGUE): Implement.
6984 * tests/input.at (Unclosed constructs): New test case.
6985 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
6986 seen.
6987
6988 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
6989 unused global.
6990
1f6b3679
JD
69912006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
6992
6993 Handle string aliases for character tokens correctly.
6994 * src/symtab.c (symbol_user_token_number_set): If the token has an
6995 alias, check and set its alias's user token number instead of its own,
6996 which is set to indicate the alias. Previously, every occurrence of
6997 the character token in the grammar overwrote that alias indicator with
6998 the character code.
6999 * tests/input.at (String aliases for character tokens): New test.
7000
219741d8
JD
70012006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
7002
7003 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
7004
11daa4e7
PE
70052006-08-11 Paul Eggert <eggert@cs.ucla.edu>
7006
7007 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
7008 to prevent failures when building on older platforms.
7009 Check for autopoint failure.
7010 Set XGETTEXT_OPTIONS to values that check for C format strings,
7011 so that translators are warned about them (this also helps
7012 prevent core dumps).
7013
7014 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
7015 function, since it simplifies our code a bit.
7016
7017 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
7018 rather than -W, so we don't get bogus warnings about sign comparisons.
7019 Add -Wpointer-arith, since that warning is useful (it reports code
7020 that does not conform to C89 and that some compilers reject).
7021 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
7022 since it's no longer needed.
7023
f9bfc42a
JD
70242006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
7025
7026 Clean up scanners a bit.
7027 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
7028 definitions so gcc won't warn when obstack_for_string is unused.
7029 * src/scan-code.l: config.h and system.h are already #include'd by
7030 scan-code-c.c, so get rid of them here.
7031 * src/scan-gram.l: Likewise.
7032 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
7033 definitions rather than duplicating the rest of it.
7034 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
7035
06e8700a
JD
70362006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
7037
7038 Suppress signed/unsigned comparison warnings for yycheck.
7039 * data/c.m4 (b4_safest_int_type): New macro.
7040 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
7041 a signed int type, cast it to b4_safest_int_type first.
7042 * data/yacc.c: Likewise.
7043 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
7044 also overwritten.
7045
9c437126
PE
70462006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
7047
7048 * doc/bison.texinfo: Fix some typos.
7049
284d8a13
PE
70502006-08-02 Paul Eggert <eggert@cs.ucla.edu>
7051
7052 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
7053 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
7054
7055 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
7056 the latest gnulib does this a different way.
7057 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
7058 translation was patched, so stop omitting it.
7059
ec5479ce
JD
70602006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
7061
7062 Enable declaration of default %printer/%destructor. Make the parser
7063 use these for all user-declared grammar symbols for which the user does
7064 not declare a specific %printer/%destructor. Thus, the parser uses it
7065 for token 0 if the user declares it but not if Bison generates it as
7066 $end. Discussed starting at
7067 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
7068 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
7069 and
7070 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
7071 * NEWS (2.3+): Mention.
7072 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
7073 declare a %destructor for a mid-rule's semantic value. It's just
7074 impossible to declare one specific to it.
7075 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
7076 code. Describe default %destructor form.
7077 * src/parse-gram.y (grammar_declaration): Parse default
7078 %printer/%destructor declarations.
7079 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
7080 and symbol_destructor_location_get rather than accessing the destructor
7081 and destructor_location members of struct symbol.
7082 (symbol_printers_output): Likewise but for %printer's.
7083 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
7084 again.
7085 * src/symtab.c (default_destructor, default_destructor_location,
7086 default_printer, default_printer_location): New static global
7087 variables to record the default %destructor and %printer.
7088 (symbol_destructor_get, symbol_destructor_location_get,
7089 symbol_printer_get, symbol_printer_location_get): New functions to
7090 compute the appropriate %destructor and %printer for a symbol.
7091 (default_destructor_set, default_printer_set): New functions to set the
7092 default %destructor and %printer.
7093 * src/symtab.h: Prototype all those new functions.
7094 * tests/actions.at (Default %printer and %destructor): New test to
7095 check that the right %printer and %destructor are called, that they're
7096 not called for $end, and that $$ and @$ work correctly.
7097 (Default %printer and %destructor for user-declared end token): New
7098 test to check that the default %printer and %destructor are called for
7099 a user-declared end token.
7100 * tests/input.at (Default %printer and %destructor redeclared, Unused
7101 values with default %destructor): New tests to check related grammar
7102 warnings and errors.
7103
868d2d96
JD
71042006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
7105
7106 Clean up handling of %destructor for the end token (token 0).
7107 Discussed starting at
7108 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
7109 and
7110 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
7111
7112 Make the skeletons consistent in how they pop the end token and invoke
7113 its %destructor.
7114 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
7115 state, which has token number 0, since this would invoke the
7116 %destructor for the end token.
7117 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
7118 until after shifting the end token, or else it won't be popped.
7119 * data/yacc.c (yyparse): Likewise.
7120
7121 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
7122 it's the end token. Upon termination, destroy an unshifted lookahead
7123 even when it's the end token.
7124 * data/lalr1.cc (yy::parser::parse): Likewise.
7125 * data/yacc.c (yyparse): Likewise.
7126
7127 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
7128 value warnings for the end token when the user gives the end token a
7129 %destructor.
7130
7131 * tests/actions.at (Printers and Destructors): Test all the above.
7132
62a9592d
PE
71332006-07-24 Paul Eggert <eggert@cs.ucla.edu>
7134
7135 Update to latest gnulib and gettext versions.
7136 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
7137 Add fopen-safer.
7138 (gnulib_files): Add m4/warning.m4. Don't worry about files
7139 overwritten by autopoint.
7140 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
7141 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
7142 rejects them.
7143 Don't use autoreconf; instead, invoke autopoint etc. by hand,
7144 so that we can remove the intl files at a better time.
7145 (intl_files_to_remove): Remove aclocal.m4, since it gets
7146 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
7147 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
7148 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
7149 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
7150 Remove datarootdir hack; no longer needed.
7151 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
7152 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
7153 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
7154 strdup.h.
7155 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
7156 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
7157
10d6970f
PE
71582006-07-20 Paul Eggert <eggert@cs.ucla.edu>
7159
7160 * bootstrap: Adjust to today's change to gnulib-tool by invoking
7161 it with --assume-autoconf='latest-stable'.
7162
50a33993
JD
71632006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
7164
7165 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
7166 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
7167 YYSTYPE' and `{'.
7168 * src/muscle_tab.h (muscle_grow): Replace the header comments with
7169 those from muscle_tab.c since the old ones are misleading.
7170
2ce4ed68
AD
71712006-07-13 Akim Demaille <akim@epita.fr>
7172
7173 Support %define "KEY" {VALUE}.
7174 * src/scan-code.h, src/scan-code.l (translate_action)
7175 (translate_rule_action, translate_symbol_action, translate_code):
7176 Return char *, not const char *.
7177 * src/parse-gram.y (declaration): Rename as...
7178 (prologue_declaration): this.
7179 (string_content): Remove this nonterminal, use STRING.
7180 (braceless, content, content.opt): New nonterminal.
7181 Use them.
7182 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
7183 as value.
7184 * src/scan-gram.l (getargs.h): Don't include it.
7185
db7e5eb5
PE
71862006-07-12 Paul Eggert <eggert@cs.ucla.edu>
7187
7188 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
7189 rather than a for-loop that declares a local bool variable. This
7190 should work around a compatibility problem with a Cray x1e C++
7191 compiler reported by Hung Nguyen in
7192 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
7193 The for-loop was introduced in the 2004-11-17 change but I don't
7194 know why it was needed.
7195
a5d80ba5
AD
71962006-07-12 Akim Demaille <akim@epita.fr>
7197
7198 * data/c.m4: Comment changes.
7199
23eb2a69
AD
72002006-07-10 Akim Demaille <akim@lrde.epita.fr>
7201
7202 * src/complain.c (error_message, ERROR_MESSAGE): New.
7203 To factor...
7204 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
7205 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
7206
ddc8ede1
PE
72072006-07-09 Paul Eggert <eggert@cs.ucla.edu>
7208
7209 * NEWS: Instead of %union, you can define and use your own union type
7210 YYSTYPE if your grammar contains at least one <type> tag.
7211 Your YYSTYPE need not be a macro; it can be a typedef.
7212 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
7213 (Union Decl, Decl Summary): Document this.
7214 * data/glr.c (YYSTYPE): Implement this.
7215 * data/glr.cc (YYSTYPE): Likewise.
7216 * data/lalr1.cc (YYSTYPE): Likewise.
7217 * data/yacc.c (YYSTYPE): Likewise.
7218 * src/output.c (prepare): Output tag_seen_flag.
7219 * src/parse-gram.y (declaration, grammar_declaration):
7220 Use 'union_seen' rather than 'typed' to determine whether
7221 %union has been seen, since grammars can now be typed without
7222 %union.
7223 (symbol_declaration, type.opt, symbol_def):
7224 Keep track of whether a tag has been seen.
7225 * src/reader.c (union_seen, tag_seen): New vars.
7226 (typed): remove.
7227 * src/reader.h (union_seen, tag_seen, typed): Likewise.
7228 * src/scan-code.l (untyped_var_seen): New variable.
7229 (handle_action_dollar): Adjust to above changes.
7230 (handle_action_dollar, handle_action_at):
7231 Improve overflow checking for outlandish numbers.
7232 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
7233 avoid new diagnostics generated by above changes.
7234 * tests/regression.at (YYSTYPE typedef): Add test to check
7235 for type tags without %union.
7236
7237 * src/symlist.c (symbol_list_length): Return int, not unsigned
7238 int, since callers expect int. This may need to get revisited
7239 once we have proper integer overflow checking.
7240
7241 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
7242 object is now static.
7243
7244 * src/getargs.c (flags_argmatch): Return void, not int,
7245 to pacify ./configure --enable-gcc-warnings.
7246
7247 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
7248 since last_string is already defined to FLEX_PREFIX (last_string).
7249
7b42569e
AD
72502006-07-09 Akim Demaille <akim@lrde.epita.fr>
7251
7252 Implement --warnings/-W.
7253 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
7254 replaced by...
7255 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
7256 Adjust callers.
7257 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
7258 (warnings_args, warnings_types): New.
7259 (getargs, short_options, long_options): Accept -W/--warnings.
7260 Sort the options by alphabetical order, upper case letter right
7261 before its lower case.
7262
3b452f4e
JD
72632006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
7264
7265 Change %merge result type clash warnings to errors. Discussed at
7266 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
7267 * src/reader.c (record_merge_function_type): Use complain_at.
7268 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7269 declared later): Update test case results.
7270
b8a41559
AD
72712006-07-09 Akim Demaille <akim@lrde.epita.fr>
7272
7273 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
7274 to be in alphabetical order.
7275 (trace_args): Spelling fixes.
7276
cd9e1ba2
PE
72772006-07-09 Paul Eggert <eggert@cs.ucla.edu>
7278
7279 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
7280 so they don't collide with user-defined macros.
7281 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
7282 this was never guaranteed, and now that we're using gnulib stdint,
7283 which defines int_fast16_t to long int, the problem is exposed.
7284
cb48f191
PE
72852006-07-08 Paul Eggert <eggert@cs.ucla.edu>
7286
b8445a15
PE
7287 * data/c.m4 (b4_basename): Simplify a bit, since we don't
7288 need the full POSIX semantics (and weren't implementing them
7289 anyway).
7290
cb48f191
PE
7291 Adjust to Autoconf 2.60 and today's gnulib.
7292 * bootstrap (gnulib_modules): Add stdint.
7293 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
7294 no longer copies it.
7295 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
7296 since stdint needs the former and wcwidth (which is now required
7297 by mbswidth) needs the latter.
7298 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
7299 work around a compatibility glitch between gettext 0.14.6 and
7300 Autoconf 2.60.
7301 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
7302 Do not check for uintptr_t, since new stdint module does the right
7303 thing.
7304 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
7305 Add stdint.h, stdint_.h, wcwidth.h.
7306 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
7307 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
7308 stdint.m4, wchar_t.m4, wcwidth.m4.
7309 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
7310 usual order for ../lib/*.h files.
7311 (file_name_split): Use last_component, not base_name, to adjust
7312 to gnulib changes.
7313 * src/parse-gram.h: Include <strverscmp.h> in the usual order
7314 for ../lib/*.h files.
7315 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
7316 Define unconditionally, since we now assume the stdint module.
7317 * src/scan-skel.l: Include <dirname.h>.
7318 (BASE_QPUTS): Use last_component, not base_name.
7319 * src/system.h: Include <unlocked-io.h> in the usual order
7320 for ../lib/*.h files. Include <stdint.h> unconditionally,
7321 since we now use the stdint module.
7322 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
7323 HAVE_UINTPTR_T, since we now use the stdint module.
7324 (base_name): Remove decl, since files now include <dirname.h>
7325 to get the decl.
7326
cd48d21d
AD
73272006-07-08 Akim Demaille <akim@lrde.epita.fr>
7328
7329 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
7330 New, default to 1.
7331 * data/yacc.c, data/glr.c, data/location.cc: Use them.
7332 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
7333 default.
7334 * tests/calc.at: Adjust.
7335
8ec0a172
AD
73362006-07-08 Akim Demaille <akim@lrde.epita.fr>
7337
b8445a15 7338 * data/c.m4 (b4_basename): New.
8ec0a172
AD
7339 (b4_syncline): Also output the location of its invocation (from
7340 the skeleton).
7341 (b4_user_action, b4_define_user_action, b4_user_actions)
7342 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
7343 (b4_user_stype): New.
7344 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
7345
4a678af8
JD
73462006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
7347
7348 In the grammar file, the first column is 1 not 0 on the first line as
7349 on every other line.
7350 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
7351 * tests/input.at (Torturing the Scanner): Update output.
7352
7353 * src/scan-gram.l (scanner_cursor): Declare it static.
7354
dd60572a
JD
73552006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
7356
7357 In warnings, say "previous declaration" rather than "first
7358 declaration".
7359 * src/symtab.c (redeclaration): Do that here.
7360 * src/reader.c (record_merge_function_type): In the case of a result
7361 type clash, report the previous declaration rather than the very first
7362 one in the grammar file.
7363 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7364 declared later): Add a third declaration to check this behavior.
7365 * tests/input.at (Incompatible Aliases): Update output.
7366
2073e1b6
AD
73672006-06-27 Akim Demaille <akim@epita.fr>
7368
7369 * doc/Doxyfile.in: New.
7370 * doc/Makefile.am: Use it.
7371 * src/lalr.h, src/symtab.h: Initial doxygenation.
7372
8ee5b538
JD
73732006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7374
7375 Don't miss %merge result type warnings just because the LHS types are
fab044e6
JD
7376 declared after the %merge. This continues the effort of the previous
7377 patch.
8ee5b538
JD
7378 * src/reader.c (get_merge_function): Don't set the merger type yet.
7379 (record_merge_function_type): New function for setting the merger type
7380 and checking for clashes.
7381 (grammar_current_rule_merge_set): Set the location of the %merge for
7382 the current rule.
7383 (packgram): Invoke record_merge_function_type for each rule now that
7384 all symbol type declarations have been parsed.
7385 * src/reader.h (merger_list.type_declaration_location): New member
7386 storing the location of the first %merge from which the type for this
7387 merging function was derived.
7388 * src/symlist.h (symbol_list.merger_declaration_location): New member
7389 storing the location of a rule's %merge, if any.
7390 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7391 declared later): New test to catch the error fixed by the above patch.
7392
ffa4ba3a
JD
73932006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7394
7395 Get action warnings (grammar_rule_check) right even when symbol
fab044e6
JD
7396 declarations appear after the rules. Discussed at
7397 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
7398 and
7399 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
7400 Don't mistake the type of $$ in a midrule to be that of its parent
7401 rule's $$.
ffa4ba3a
JD
7402 * src/reader.c (grammar_current_rule_end): Don't invoke
7403 grammar_rule_check yet since not all symbol declarations may have been
7404 parsed yet.
7405 (grammar_midrule_action): Likewise.
7406 Don't record whether the midrule's $$ has been used yet since actions
7407 haven't been translated yet.
7408 Record the midrule's parent rule and its RHS index within the parent
7409 rule.
7410 (grammar_current_rule_action_append): Don't translate the action yet
7411 since not all symbol declarations may have been parsed yet and, thus,
7412 warnings about types for $$, $n, @$, and @n can't be reported yet.
7413 (packgram): Translate the action and invoke grammar_rule_check now that
7414 all symbol declarations have been parsed.
7415 * src/scan-code.l (handle_action_dollar): Now that this is invoked
7416 after parsing the entire grammar file, the symbol list here in the case
7417 of a midrule is actually the midrule's empty RHS, so reference its
7418 parent rule's RHS where necessary.
7419 On the other hand, now that you can already know it's a midrule, you
7420 aren't forced to think $$ has the same type as its parent rule's $$.
7421 (handle_action_at): In the case of a midrule, reference the parent rule
7422 where necessary.
7423 * src/symlist.c (symbol_list_new): Initialize new midrule-related
7424 members.
7425 (symbol_list_length): Now that this is invoked after all rules have
7426 been parsed, a NULL symbol (rather than a NULL symbol list node)
7427 terminates a rule. symbol_list_print already does this correctly.
7428 * src/symlist.h (symbol_list.midrule_parent_rule,
7429 symbol_list.midrule_parent_rhs_index): New members so that midrules can
7430 remember their relationships with their parents.
7431 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
7432 fixed by the above patch.
7433 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
7434 implementing...
7435 (Unused values): ... this old test case and...
7436 (Unused values before symbol declarations): ... this new test case.
7437 This one is the same as `Unused values' except that all symbol
7438 declarations appear after the rules in order to catch the rest of the
7439 errors fixed by the above patch.
7440
e256e17f
JD
74412006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7442
300a1930
JD
7443 More cleanup.
7444 * src/reader.c (current_rule): Declare it static since it's no longer
7445 used outside this file.
7446 (grammar_current_rule_action_append): Remove redundant arguments from
7447 translate_rule_action invocation.
7448 * src/reader.h (current_rule): Remove this unused extern.
7449 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
7450 * src/scan-code.l (translate_rule_action): Likewise.
e256e17f 7451
381ecb06
JD
74522006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
7453
7454 Clean up yesterday's patch.
7455 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
7456 to...
7457 * src/reader.c (grammar_current_rule_action_append): ... here for
7458 consistency with grammar_current_rule_symbol_append.
7459 * tests/regression.at (Braced code in declaration in rules section):
7460 Make yyerror and yylex static as usual.
7461
4210cd0b
JD
74622006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
7463
7464 Fix bug that mistakes braced code in a declaration in the rules section
7465 to be a rule action. Mentioned at
7466 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
7467 * src/scan-gram.l: Move midrule action detection from the start of the
7468 scanning of any braced code to...
7469 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
7470 action. For readability, use $2 and @2 rather than the equivalent
7471 global variables.
7472 * tests/regression.at (Braced code in declaration in rules section):
7473 New test to catch the error fixed by the above patch.
7474
7475 Work on code readability some.
7476 * src/scan-code.l (current_rule): Get rid of this misleading and
7477 redundant declaration: it's actually extern'ed in reader.h.
7478 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
7479 translate_action): Add a rule argument and use it instead of the global
7480 current_rule.
7481 (translate_rule_action): This already receives current_rule through an
7482 argument, so pass it on to translate_action instead of assigning
7483 current_rule to current_rule.
7484 (translate_symbol_action, translate_code): Pass rule = NULL to
7485 translate_action.
7486
34f98f46
JD
74872006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
7488
7489 Rename %before-definitions to %start-header and %after-definitions to
7490 %end-header. Don't use these declarations to separate pre-prologue
7491 blocks from post-prologue blocks. Add new order-independent
7492 declarations %before-header and %after-header as alternatives to the
7493 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
7494 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
7495 * NEWS (2.3+): Update for these changes.
7496 * data/glr.c (b4_before_definitions): Update to...
7497 (b4_start_header): ... this.
7498 (b4_after_definitions): Update to...
7499 (b4_end_header): ... this.
7500 * data/glr.cc: Likewise.
7501 * data/lalr1.cc: Likewise.
7502 * data/yacc.c: Likewise.
7503 * doc/bison.texinfo (The prologue): Update names, and replace remaining
7504 prologue blocks with %*-header declarations.
7505 (Calc++ Parser): Likewise.
91661ebb 7506 (Decl Summary): Update names.
148d66d8 7507 (Table of Symbols): Update description.
34f98f46
JD
7508 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
7509 (PERCENT_END_HEADER): ... this.
7510 (PERCENT_BEFORE_DEFINITIONS): Update to...
7511 (PERCENT_START_HEADER): ... this.
7512 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
7513 (declaration): Update token names and m4 macro names.
7514 When parsing %end-header and %start-header, invoke translate_code
7515 before muscle_code_grow, and no longer set global booleans to remember
7516 whether these declarations have been seen.
7517 Parse new %after-header and %before-header.
7518 * src/reader.c (before_definitions, after_definitions): Remove.
7519 (prologue_augment): Accept a new bool argument to specify whether to
7520 augment the pre-prologue or post-prologue.
7521 * src/reader.h (before_definitions, after_definitions): Remove these
7522 extern's.
7523 (prologue_augment): Add new bool argument.
7524 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
7525 (PERCENT_END_HEADER): ... this.
7526 (PERCENT_BEFORE_DEFINITIONS): Update to...
7527 (PERCENT_START_HEADER): ... this.
7528 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
7529 * tests/actions.at (Printers and Destructors): Update names.
7530
31b2b07e
JD
75312006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
7532
7533 Add comparison operators for C++ location classes. Discussed at
7534 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
7535 * data/c++.m4 (b4_define_location_comparison): New boolean %define
7536 declaration indicating whether filename_type has an operator==. If
7537 filename_type is `std::string', it defaults to `1', `0' otherwise.
7538 * data/location.cc: Iff b4_define_location_comparison is `1', add
7539 operator== and operator!= for class position and for class location.
7540
7541 Some minor fixes.
7542 * src/scan-action.l: Remove unused file.
7543 * src/symtab.c (symbol_printer_set): Use printer_location not
7544 destructor_location.
7545 * src/symtab.h (struct symbol): Replace incorrect source comment for
7546 printer members.
7547 * tests/input.at (Incompatible Aliases): Update output with correct
7548 printer location.
7549
9bc0dd67
JD
75502006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
7551
7552 Don't put the pre-prologue in the header file. For the yacc.c code
7553 file and the glr.c header and code files, move the pre-prologue before
7554 the token definitions. Add new %before-definitions and
7555 %after-definitions to declare code that will go in both the header file
7556 and code file. Discussed at
7557 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
7558 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
7559 and
7560 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
7561 * NEWS (2.3+): Describe these changes.
7562 * data/glr.c (b4_pre_prologue): Move from within to before...
7563 (b4_shared_declarations): ... this.
7564 Add new b4_before_definitions before b4_token_enums.
7565 Add new b4_after_definitions at the end.
7566 * data/glr.cc (b4_pre_prologue): Replace with...
7567 (b4_before_definitions): ... this in the header file.
7568 (b4_after_definitions): New near the end of the header file.
7569 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
7570 code file right before including the header file.
7571 (b4_before_definitions): New in the previous position of
7572 b4_pre_prologue in the header file.
7573 (b4_after_definitions): New near the end of the header file.
7574 * data/yacc.c: Clean up some m4 quoting especially in the header file.
7575 (b4_token_enums_defines): In the code file, move to right before
7576 YYSTYPE for consistency with the header file.
7577 (b4_before_definitions): New right before b4_token_enums_defines in
7578 both the header and code file.
7579 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
7580 header and code file.
7581 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
7582 of prologues for %union dependencies.
91661ebb
JD
7583 (Decl Summary): In %defines description, mention the effect of
7584 %before-definitions and %after-definitions on the header file.
9bc0dd67
JD
7585 (Calc++ Parser): Forward declare driver in a %before-definitions rather
7586 than in the pre-prologue so that make check succeeds.
148d66d8 7587 (Table of Symbols): Add entries for %before-definitions and
9bc0dd67
JD
7588 %after-definitions.
7589 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
7590 %before-definitions.
7591 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
7592 (declaration): Parse those declarations and append to
7593 b4_before_definitions and b4_after_definitions, respectively.
7594 * src/reader.c (before_definitions, after_definitions): New bools to
7595 track whether those declarations have been seen.
7596 (prologue_augment): Add to the post-prologue if %union,
7597 %before-definitions, or %after-definitions has been seen.
7598 * src/reader.h (before_definitions, after_definitions): New extern's.
7599 * src/scan-gram.l: Scan the new declarations.
7600 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
7601 prologue block in a %before-definitions or a %after-definitions based
7602 on whether the %union is declared.
7603 * tests/regression.at (Early token definitions with --yacc, Early token
7604 definitions without --yacc): Move tests for token definitions into the
7605 post-prologue since token names are no longer defined in the
7606 pre-prologue.
7607
203b9274
AD
76082006-06-20 Akim Demaille <akim@epita.fr>
7609
7610 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
7611 (symbol_get): Use it.
7612 * src/parse-gram.y: Use it.
7613
a7ee59cf
JD
76142006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
7615
7616 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
7617 build succeeds when configured with --enable-gcc-warnings.
7618
5a2baae7
PE
76192006-06-19 Paul Eggert <eggert@cs.ucla.edu>
7620
33ad1a9c
PE
7621 * src/parse-gram.y (char_name): New function.
7622 (CHAR, STRING, string_content): For %printer, properly escape.
7623 (ID): Prefer fputs to fprintf.
7624 (id): Reindent to be consistent with other rules.
7625 Properly quote char.
7626
5a2baae7
PE
7627 The Translation Project changed its way of publishing translations
7628 to maintainers. I haven't received any responses to my request
7629 for supporting the old way, or for documenting the new way. I
7630 have modified 'bootstrap' to use screen scraping
7631 (in this case, HTML scraping). This is unreliable and inelegant,
7632 but I don't see any better way. Yuck.
7633 * bootstrap (TP_URL, WGET_COMMAND): New vars.
7634 (get_translations): New function, which uses HTML scraping to
7635 deduce locations of latest translations.
7636 Use this function to grab both bison and bison-runtime .po files.
7637 Don't bother priming the pump for the runtime-po domain any more,
7638 as it's now translated better than bison is.
7639
58d7a1a1
AD
76402006-06-19 Akim Demaille <akim@epita.fr>
7641
7642 * src/scan-gram.l: No longer "parse" things after `%union' until
7643 `{'. Rather, return a single "%union" token.
7644 No longer make symbols: return strings, and leave the conversion
7645 to symbols to the parser.
7646 (SC_PRE_CODE, token_type): Remove.
7647 * src/parse-gram.y (%union): New field `character'.
7648 Sort tokens.
7649 (CHAR): New token.
7650 (ID, ID_COLON): Now that the scanner no longer makes them
7651 identifiers, adjust all uses to invoke symbol_get.
7652 (id_colon): New, wraps the conversion from string to symbol.
7653 (%union): Accept a possible union_name.
7654 (symbol): Now can be a char.
7655 * data/c.m4 (b4_union_name): Leave a default value.
7656 * data/glr.c, data/yacc.c: Use it.
7657
b931235e
JD
76582006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
7659
7660 For associating token numbers with token names for "yacc.c", don't use
7661 #define statements unless `--yacc' is specified; always use enum
7662 yytokentype. Most important discussions start at:
7663 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
7664 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
7665 and
7666 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
7667 * NEWS (2.3+): Mention.
7668 * data/c.m4 (b4_yacc_if): New.
7669 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
7670 token #define's.
7671 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
7672 on token name definitions.
7673 * src/getargs.c (usage): Capitalize `Yacc' in English.
7674 * src/output.c (prepare): Define b4_yacc_flag.
7675 * tests/regression.at (Early token definitions): Test that tokens names
7676 are defined before the pre-prologue not just before the post-prologue.
7677 Remove this test case and copy to...
7678 (Early token definitions with --yacc): ... this to test #define's.
7679 (Early token definitions without --yacc): ... and this to test enums.
7680
9e6e7ed2
PE
76812006-06-11 Paul Eggert <eggert@cs.ucla.edu>
7682
7683 * NEWS: Reword the post-2.3 change to not be so optimistic about
7684 removing the old "look-ahead" spelling.
7685 Update previous look-ahead/lookahead change reports.
7686 * REFERENCES: look-ahead -> lookahead (since that's
7687 what he actually wrote).
7688 * doc/refcard.tex: look ahead -> lookahead,
7689 look-ahead -> lookahead
7690
742e4900
JD
76912006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
7692
7693 For consistency, use `lookahead' instead of `look-ahead' or
7694 `look_ahead'. Discussed starting at
7695 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
7696 and then at
7697 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
7698 * NEWS: For the next release, note the change to `--report'.
7699 * TODO, doc/bison.1: Update English.
7700 * doc/bison.texinfo: Update English.
7701 (Understanding Your Parser, Bison Options): Document as
7702 `--report=lookahead' rather than `--report=look-ahead'.
7703 * src/conflicts.c: Update English in comments.
7704 (lookahead_set): Rename from look_ahead_set.
7705 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
7706 (resolve_sr_conflict): Rename local look_ahead_tokens to
7707 lookahead_tokens, and update other uses.
7708 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
7709 count_rr_conflicts, conflicts_free): Update uses.
7710 * src/getargs.c (report_args): Move "lookahead" before alternate
7711 spellings.
7712 (report_types): Update uses.
7713 (usage): For `--report' usage description, state `lookahead' spelling
7714 rather than `look-ahead'.
7715 * src/getargs.h (report.report_lookahead_tokens): Rename from
7716 report_look_ahead_tokens.
7717 * src/lalr.c: Update English in comments.
7718 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
7719 (state_lookahead_tokens_count): Rename from
7720 state_look_ahead_tokens_count.
7721 Rename local n_look_ahead_tokens to n_lookahead_tokens.
7722 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
7723 Rename local n_look_ahead_tokens to n_lookahead_tokens.
7724 Update other uses.
7725 Update English in output.
7726 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
7727 * src/print.c: Update English in comments.
7728 (lookahead_set): Rename from look_ahead_set.
7729 (print_reduction): Rename argument lookahead_token from
7730 look_ahead_token.
7731 (print_core, state_default_rule, print_reductions, print_results):
7732 Update uses.
7733 * src/print_graph.c: Update English in comments.
7734 (print_core): Update uses.
7735 * src/state.c: Update English in comments.
7736 (reductions_new): Update uses.
7737 (state_rule_lookahead_tokens_print): Rename from
7738 state_rule_look_ahead_tokens_print, and update other uses.
7739 * src/state.h: Update English in comments.
7740 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
7741 (state_rule_lookahead_tokens_print): Rename from
7742 state_rule_look_ahead_tokens_print.
7743 * src/tables.c: Update English in comments.
7744 (conflict_row, action_row): Update uses.
7745 * tests/glr-regression.at
7746 (Incorrect lookahead during deterministic GLR,
7747 Incorrect lookahead during nondeterministic GLR): Rename
7748 print_look_ahead to print_lookahead.
7749 * tests/torture.at: Update English in comments.
7750 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
7751 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
7752 (Many lookahead tokens): Update uses.
7753 * data/glr.c: Update English in comments.
7754 * lalr1.cc: Likewise.
7755 * yacc.c: Likewise.
7756 * src/conflicts.h: Likewise.
7757 * src/lalr.h: Likewise.
7758 * src/main.c: Likewise.
7759 * src/output.c: Likewise.
7760 * src/parse-gram.c: Likewise.
7761 * src/tables.h: Likewise.
7762 * tests/calc.at: Likewise.
7763
3c40d0b5
JD
77642006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
7765
7766 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
7767
5d278082
PE
77682006-06-07 Paul Eggert <eggert@cs.ucla.edu>
7769
7770 * TODO: Add request from Nelson H. F. Beebe to be able to install
7771 Bison without installing the yacc script.
7772
9e668899
JD
77732006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
7774
7775 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
7776 and yytext if they're already #define'd.
7777 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
7778 * src/scan-code-c.c: ... here.
7779 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
7780 <config.h>.
7781
0c8e079f
JD
77822006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
7783
7784 Get Bison to build again when configured with --enable-gcc-warnings.
7785 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
7786 missing #include's.
7787 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
7788 loc argument as it shadows a global.
7789 * src/scan-gram.l: Remove stray comma that prevents boundary_set
7790 invocation.
7791
7792 * src/.cvsignore: Add scan-code.c.
7793
2346344a
AD
77942006-06-07 Akim Demaille <akim@epita.fr>
7795
7796 * src/scan-gram.l: Move the "add a trailing ; to actions" code
7797 to...
7798 * src/scan-code.l: here.
7799 * tests/input.at (Torturing the Scanner): Fix another location
7800 error.
7801
4862bdfd
AD
78022006-06-07 Akim Demaille <akim@epita.fr>
7803
7804 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
7805
e9071366
AD
78062006-06-06 Akim Demaille <akim@epita.fr>
7807
7808 Extract the parsing of user actions from the grammar scanner.
7809 As a consequence, the relation between the grammar scanner and
7810 parser is much simpler. We can also split "composite tokens" back
7811 into simple tokens.
7812 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
7813 * src/scan-gram.l (add_column_width, adjust_location): Move to and
7814 rename as...
7815 * src/location.h, src/location.c (add_column_width)
7816 (location_compute): these.
7817 Fix the column count: the initial column is 0.
7818 (location_print): Be robust to ending column being 0.
7819 * src/location.h (boundary_set): New.
7820 * src/main.c: Adjust to scanner_free being renamed as
7821 gram_scanner_free.
7822 * src/output.c: Include scan-code.h.
7823 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
7824 Use boundary_set.
7825 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
7826 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
7827 which is now, again, a separate token.
7828 Adjust all dependencies.
7829 Whereever actions with $ and @ are used, use translate_code.
7830 (action): Remove this nonterminal which is now useless.
7831 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
7832 (grammar_current_rule_action_append): Use translate_code.
7833 (packgram): Bound check ruleno, itemno, and rule_length.
7834 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
7835 (last_string, last_braced_code_loc, max_left_semantic_context)
7836 (scanner_initialize, scanner_free, scanner_last_string_free)
7837 (gram_out, gram_lineno, YY_DECL_): Move to...
7838 * src/scan-gram.h: this new file.
7839 (YY_DECL): Rename as...
7840 (GRAM_DECL): this.
7841 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
7842 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
7843 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
7844 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
7845 Move these declarations, and...
7846 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
7847 these to...
7848 * src/flex-scanner.h: this new file.
7849 * src/scan-gram.l (rule_length, rule_length_overflow)
7850 (increment_rule_length): Remove.
7851 (last_braced_code_loc): Rename as...
7852 (gram_last_braced_code_loc): this.
7853 Adjust to the changes of the parser.
7854 Move all the handling of $ and @ into...
7855 * src/scan-code.l: here.
7856 * src/scan-gram.l (handle_dollar, handle_at): Remove.
7857 (handle_action_dollar, handle_action_at): Move to...
7858 * src/scan-code.l: here.
7859 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
7860 scan-code.h, scan-code-c.c, scan-gram.h.
7861 (EXTRA_bison_SOURCES): Add scan-code.l.
7862 (BUILT_SOURCES): Add scan-code.c.
7863 (yacc): Be robust to white spaces.
7864
7865 * tests/conflicts.at, tests/input.at, tests/reduce.at,
7866 * tests/regression.at: Adjust the column numbers.
7867 * tests/regression.at: Adjust the error message.
7891a7c4 7868
184e42f0
JD
78692006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
7870
7871 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
7872 Use Akim's wording from
7873 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
7874
7891a7c4
JD
78752006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
7876
7877 Between Bison releases, manually append `+' to the previous Bison
7878 release number, and use that as a signal to automatically print the
7879 ChangeLog's CVS Id keyword from --version. Discussed starting at
7880 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
7881 * ChangeLog: Add Id header.
7882 * configure.ac (AC_INIT): Append `+' to `2.3'.
7883 * src/.cvsignore: Add revision.c.
7884 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
7885 (BUILT_SOURCES): Add revision.c.
7886 (revision.c): New target rule. This file defines a new global variable
7887 named revision. It initializes it with either the Id from ChangeLog
7888 or, if VERSION doesn't contain `+', with the empty string.
7889 * src/getargs.c (version): Print the value of revision.
7890 * src/revision.h: Extern revision.
7891
4ad3ed84
PE
78922006-06-05 Paul Eggert <eggert@cs.ucla.edu>
7893
7894 * NEWS: Version 2.3.
7895 * configure.ac (AC_INIT): Likewise.
7896
02103984
PE
78972006-05-30 Paul Eggert <eggert@cs.ucla.edu>
7898
7899 * data/glr.c (YYRECOVERING): Define to be a function-like macro
7900 with no arguments, not as an object-like macro. This is for
7901 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
7902 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
7903 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
7904 Document this.
7905
2c08afa5
JD
79062006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
7907
7908 * src/getargs.c (usage): Back out yesterday's modification of the
7909 --help output so that we don't have to wait for translation before
7910 releasing 2.3.
7911
6077da58
PE
79122006-05-29 Paul Eggert <eggert@cs.ucla.edu>
7913
7914 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
7915 Problem reported by Akim Demaille.
7916
2a26b6c2
JD
79172006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
7918
7919 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
7920
aefef0d6
PE
79212006-05-26 Paul Eggert <eggert@cs.ucla.edu>
7922
7923 * data/yacc.c (yy_reduce_print): Omit trailing white space in
7924 generated source code. Problem reported by Frans Englich in
7925 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
7926
fcd8e201
PE
79272006-05-22 Paul Eggert <eggert@cs.ucla.edu>
7928
7929 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
7930 shell, not within 'make', so that 'make' by an ordinary builder
7931 (using GNU make) does not worry about configuring gzip. This also
7932 works around a bug reported independently by Keith Thompson and by
7933 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
7934 stderr rather than stdout, messing up the build logs.
7935
7b5cdcbd
JD
79362006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
7937
7938 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
7939 to make sure that YYID will never be unused. This fixes a 'make
7940 maintainer-check' failure caused by the recent changes to the 'Trivial
7941 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
7942 not used.
7943 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
7944
5ad0a449
JD
79452006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
7946
7947 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
7948 state before an empty RHS is always resolved here. Only the location
7949 of that state is guaranteed to be resolved, and that's enough. This
7950 fixes the remaining bug reported by Derek M. Jones in
7951 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
7952 * tests/glr-regression.at (Uninitialized location when reporting
7953 ambiguity): Test the above case.
7954 Also, the embedded comments in this test case claim it checks the case
7955 of an empty RHS that has inherited the initial location. However, the
7956 corresponding LHS was already resolved, so yyresolveLocations didn't
7957 actually have reason to modify it. Fix this by forcing
7958 nondeterministic operation at the beginning of the parse.
7959
50cce58e
PE
79602006-05-20 Paul Eggert <eggert@cs.ucla.edu>
7961
7962 * data/c.m4 (b4_yy_symbol_print_generate):
7963 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
7964 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
7965 of the bugs reported today by Derek M Jones in
7966 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
7967 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
7968 defined to be a type name without parens or brackets.
7969 (Location Type): Similarly for YYLTYPE.
7970 * tests/regression.at (Trivial grammars): Put in a test for this
7971 bug that will be caught by 'make maintainer-check' (though not,
7972 alas, by 'make check' unless your compiler is picky).
7973
ab8d9dc5
PE
79742006-05-19 Paul Eggert <eggert@cs.ucla.edu>
7975
0d2c8934 7976 * NEWS: Version 2.2.
ab8d9dc5
PE
7977 * configure.ac (AC_INIT): Likewise.
7978
9138c575
JD
79792006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
7980
7981 * data/glr.c (yyreportTree): Make room in yystates for the state
7982 preceding the RHS. This fixes the segmentation fault reported by Derek
7983 M. Jones in
7984 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
7985 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
7986 to the user. Reported for yyreportTree by Derek M. Jones later in the
7987 same thread.
7988 * THANKS: Add Derek M. Jones.
7989 Update my email address.
7990 Fix typo in Steve Murphy's name.
7991
276f48df
PE
79922006-05-14 Paul Eggert <eggert@cs.ucla.edu>
7993
d6645148
PE
7994 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
7995 checking against YYLAST that caused the parser to miss a potential
7996 alternative in its diagnostic.
7997 Problem reported by Maria Jose Moron Fernandez in
7998 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
7999 * data/lalr1.cc (yysyntax_error_): Likewise.
8000 * data/yacc.c (yysyntax_error): Likewise.
8001 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
8002 tokens, in case we run into an older C compiler.
8003 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
8004 Use them to check for the off-by-one error fixed above.
8005
276f48df
PE
8006 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
8007 YYSIZE_T, not size_t.
8008 * tests/regression.at (Trivial grammars): New test, to catch
8009 the error fixed by the above patch.
8010
cd8b5791
AD
80112006-05-14 Akim Demaille <akim@lrde.epita.fr>
8012
8013 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
8014 scheme.
8015 Reported by Steve Murphy.
8016
34376418
AD
80172006-05-14 Akim Demaille <akim@lrde.epita.fr>
8018
8019 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
8020 * data/glr.cc: b4_location_flag is now b4_locations_flag.
8021
327afc7c
AD
80222006-05-14 Akim Demaille <akim@lrde.epita.fr>
8023
8024 Implement --trace=m4.
8025 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
8026 * src/output.c (output_skeleton): When set, pass -dV to m4.
8027
8028 Factor the handling of flags in m4.
8029 * src/output.c (prepare): Rename the muscle names debug, defines,
8030 error_verbose to debug_flag, defines_flag, error_verbose_flag.
8031 * data/c.m4: Adjust.
8032 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
8033 Use b4_define_flag_if to define other b4_FLAG_if macros.
8034 (b4_location_if): As a consequence, rename as...
8035 (b4_locations_if): this, for consistency.
8036 Adjust all the skeletons.
8037
ba9ecd19
AD
80382006-05-14 Akim Demaille <akim@lrde.epita.fr>
8039
8040 * etc/bench.pm: Shorten bench names.
8041
4e83ea15
AD
80422006-05-14 Akim Demaille <akim@lrde.epita.fr>
8043
8044 * src/output.h, src/output.c (error_verbose): Move to...
8045 * src/getargs.h, src/getargs.c: here.
8046 Sort the flags.
8047 Adjust dependencies.
8048
6e93d810
PE
80492006-05-13 Paul Eggert <eggert@cs.ucla.edu>
8050
8051 * data/c.m4 (b4_copyright): Put the special exception for Bison
8052 skeletons here, so we don't have to put it in each skeleton. All
b15296ff
PE
8053 uses changed. Suggested by Akim Demaille. Also, wrap the
8054 copyright notice, in case it is longer than 80 columns. Replace
8055 comma by newline after title.
6e93d810 8056
eaea13f5
PE
80572006-05-11 Paul Eggert <eggert@cs.ucla.edu>
8058
8059 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
8060 incompatibility, not a bug. Mention that it wasn't fixed as of
8061 flex 2.5.33.
8062
3cf084ec
AD
80632006-05-11 Akim Demaille <akim@lrde.epita.fr>
8064
8065 * examples/extexi: Enforce the precedence of concatenation over
8066 >>.
0a9f1c7d 8067 Reported by Tommy Nordgren.
3cf084ec 8068
32c96bd7
AD
80692006-05-11 Akim Demaille <akim@lrde.epita.fr>
8070
8071 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
8072 with the member "token".
f94705b2 8073 Reported by Martin Nylin.
32c96bd7 8074
eaea13f5
PE
80752006-05-08 Paul Eggert <eggert@cs.ucla.edu>
8076
8077 * data/glr.c: Switch to Bison 2.2 special-exception language in
8078 the copyright notice. Use more-regular format for titles and
8079 copyright notices.
8080 * data/glr.cc: Likewise.
8081 * data/location.cc: Likewise.
8082 * data/yacc.cc: Likewise.
8083 * doc/bison.texinfo (Conditions): Document this.
8084 * NEWS: likewise. Upgrade version to 2.2.
8085
6e2d1146
AD
80862006-04-27 Akim Demaille <akim@lrde.epita.fr>
8087
8088 * data/glr.cc: Remove dead code.
8089
47671055
PE
80902006-04-25 Paul Eggert <eggert@cs.ucla.edu>
8091
8092 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
8093 that variable and the line breaks the bootstrap. Problem reported
8094 by Juan M. Guerrero.
8095
ed2e6384
AD
80962006-04-24 Akim Demaille <akim@lrde.epita.fr>
8097
8098 * doc/bison.texinfo (Multiple start-symbols): New.
8099
3cedc2dc
AD
81002006-04-24 Akim Demaille <akim@lrde.epita.fr>
8101
8102 * etc/README, etc/bench.pl: New.
8103
b2ddc3f3
AD
81042006-04-03 Akim Demaille <akim@lrde.epita.fr>
8105
8106 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
8107 rule.
8108 Reported by Mickael Labau.
8109 * tests/input.at (Torturing the Scanner): Test it.
8110
91e3ac9a
PE
81112006-03-16 Paul Eggert <eggert@cs.ucla.edu>
8112
8113 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
8114 Problem reported by Bob Rossi.
8115
81162006-03-13 Paul Eggert <eggert@cs.ucla.edu>
8117
8118 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
8119 and didn't really work.
8120 For the index, use @ifnotinfo, not @iftex.
8121 Minor cleanups of spacing and terminology.
8122
5cf61e93
AD
81232006-03-12 Akim Demaille <akim@lrde.epita.fr>
8124
8125 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
8126 of AT_NAME_PREFIX when %name-prefix is not used.
8127
aa08666d
AD
81282006-03-12 Akim Demaille <akim@lrde.epita.fr>
8129
8130 Apply --prefix to C++ skeletons too: they change the namespace.
8131 The test suite already exercize these cases.
8132 * data/c++.m4 (b4_namespace): New.
8133 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
8134 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
8135 * data/yacc.c, data/glr.c: Remove a useless `[]'.
8136 * doc/bison.texinfo: Document it.
8137 (Option Cross Key): Use @multitable in all formats. It looks
8138 nicer, even in TeX outputs.
8139 (Rules): Use the same code whatever the output type is.
8140 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
8141 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
8142 * tests/calc.at: Use it, instead of hard coding `yy'.
91e3ac9a 8143
45567173
AD
81442006-03-10 Akim Demaille <akim@lrde.epita.fr>
8145
8146 * TODO: Remove dead items.
8147
e9d8f881 81482006-03-10 Akim Demaille <akim@lrde.epita.fr>
55ba27be
AD
8149
8150 * doc/FAQ: Remove, merged into...
8151 * doc/bison.texinfo (FAQ): this.
8152 * doc/Makefile.am (EXTRA_DIST): Adjust.
8153
c095d689
AD
81542006-03-10 Akim Demaille <akim@lrde.epita.fr>
8155
8156 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
8157 even if empty.
8158 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
8159 * doc/bison.texinfo (Calc++ Scanner): Use it.
8160
6e0f8287
PE
81612006-03-09 Paul Eggert <eggert@cs.ucla.edu>
8162
8163 Fix two nits reported by twlevo, plus one more that I discovered.
8164
8165 * src/assoc.h (assoc_to_string): Give a name to the arg, as
8166 this is the usual Bison style.
8167 * src/location.h (location_print): Likewise.
8168
8169 * src/reader.h (token_name): Likewise.
8170
d6b771c3
PE
81712006-03-08 Paul Eggert <eggert@cs.ucla.edu>
8172
8173 Fix some nits reported by twlevo.
8174 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
8175 and "POSIX". Use more-modern syntax for URLs. Mention C++
8176 and ask for Java. Don't hardwire OS version numbers. Add
8177 copyright notice.
8178 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
8179 * src/conflicts.c (solved_conflicts_obstack): Now static.
8180
1e137b71
JD
81812006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
8182
8183 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
8184 page. Say "you can use it" not "you may use it" as on the web page;
8185 we're describing capabilities not granting permission.
8186
73f2e47e
PE
81872006-03-06 Paul Eggert <eggert@cs.ucla.edu>
8188
6d05403d
PE
8189 * data/glr.c (yyresolveLocations): Rename local variables to avoid
8190 shadowing warnings. Use usual patter for iterating through RHS.
8191 * tests/glr-regression.at
8192 (Uninitialized location when reporting ambiguity):
8193 Modify yylex so that it uses its argument, rather than trying
8194 to rely on ARGSUSED (which doesn't work for gcc with warnings).
8195 const char -> char const.
8196
73f2e47e
PE
8197 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
8198 Don't use tabs inside commands; it messes up 'ps'.
8199 Problem reported by twlevo.
8200
8710fc41
JD
82012006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
8202
8203 * tests/glr-regression.at (Uninitialized location when reporting
8204 ambiguity): New test case.
8205 * data/glr.c (yyresolveLocations): New function, which uses
8206 YYLLOC_DEFAULT.
8207 (yyresolveValue): Invoke yyresolveLocations before reporting an
8208 ambiguity.
8209 * doc/bison.texinfo (Default Action for Locations): Note
8210 YYLLOC_DEFAULT's usage for ambiguity locations.
8211 (GLR Semantic Actions): Cross-reference those notes.
8212
ae952af2
JD
82132006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
8214
8215 * tests/glr-regression.at (Leaked semantic values when reporting
8216 ambiguity): Remove unnecessary union and type declarations.
8217 (Leaked lookahead after nondeterministic parse syntax error): New test
8218 case.
8219 * data/glr.c (yyparse): Check for zero stacks remaining before
8220 attempting to shift the lookahead so that you don't lose it.
8221
35ee866a
JD
82222006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
8223
8224 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
8225 * tests/glr-regression.at (Leaked semantic values when reporting
8226 ambiguity): New test case.
8227 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
8228 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
8229 now unnecessary yystackp parameter.
8230 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
8231 destructors can be called.
8232
8233 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
8234 in existing testcases.
8235
520181ab
JD
82362006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
8237
8238 Don't leak semantic values for parent RHS when a user action cuts the
8239 parser, and clean up related code a bit.
8240 * tests/glr-regression.at (Leaked merged semantic value if user action
35ee866a
JD
8241 cuts parse): Rename to...
8242 (Leaked semantic values if user action cuts parse): ... this. Add check
520181ab
JD
8243 for leaked parent RHS values.
8244 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
8245 between an unresolved state (non-empty chain of semantic options) and
8246 an incomplete one (signaled by an empty chain).
ae952af2 8247 (yyresolveStates): Document the interface. Move all manipulation of a
520181ab
JD
8248 successfully or unsuccessfully resolved yyGLRState to...
8249 (yyresolveValue): ... here so that yyresolveValue always leaves a
8250 yyGLRState with consistent data and thus is easier to understand.
8251 Remove the yyvalp and yylocp parameters since they are always just
8252 taken from the yys parameter. When reporting a discarded merged value
8253 in debugging output, note that it is incompletely merged. Document the
8254 interface.
8255 (yyresolveAction): If resolving any of the RHS states fails, destroy
8256 them all rather than leaking them. Thus, as long as user actions are
8257 written to clean up the RHS correctly, yyresolveAction always cleans up
8258 the RHS of a semantic option. Document the interface.
8259
18d9185c
PE
82602006-02-27 Paul Eggert <eggert@cs.ucla.edu>
8261
8262 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
8263 led to a segmentation fault in GNU Pascal. Problem reported
8264 by Waldek Hebisch.
8265
841a7737
JD
82662006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
8267
8268 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
8269 mid-rule action inside a nonterminal symbol in order to declare a
8270 destructor for its semantic value.
8271
fc3f467f
PE
82722006-02-16 Paul Eggert <eggert@cs.ucla.edu>
8273
8274 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
8275 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
8276 __cplusplus && ! defined _STDLIB_H && !
8277 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
8278 defined free))]: Include <stdlib.h> rather than rolling our own
8279 declarations of malloc and free, to avoid problems with
8280 incompatible declarations (using 'throw') C++'s stdlib.h. This
8281 should fix Debian bug 340012
8282 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
8283 reported by Guillaume Melquiond.
8284
a3af26dd
PE
82852006-02-13 Paul Eggert <eggert@cs.ucla.edu>
8286
4d7bc38c
PE
8287 * NEWS: Clarify symbols versus types in unused-value warnings.
8288
a3af26dd
PE
8289 * configure.ac (AC_INIT): Bump version number.
8290
4e26c69e
PE
82912006-02-13 Paul Eggert <eggert@cs.ucla.edu>
8292
8293 * NEWS: Version 2.1a.
8294 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
8295 since C99 requires this.
8296
498e897c
PE
82972006-02-11 Paul Eggert <eggert@cs.ucla.edu>
8298
8299 * m4/c-working.m4: New file.
8300 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
8301
57bb17ca
PE
83022006-02-10 Paul Eggert <eggert@cs.ucla.edu>
8303
8304 * Makefile.maint: Merge from coreutils.
8305
0be105dc
PE
83062006-02-09 Paul Eggert <eggert@cs.ucla.edu>
8307
8308 More portability fixes for problems summarized by Nelson H. F. Beebe.
8309
8310 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
8311 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
8312 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
8313 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
8314 messes up because C++ code is compiled in 32-bit mode but linked
8315 in 64-bit mode.
8316
6fc0c024
PE
83172006-02-08 Paul Eggert <eggert@cs.ucla.edu>
8318
8319 More portability fixes for problems summarized by Nelson H. F. Beebe.
8320
7870f699
PE
8321 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
8322 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
8323
6fc0c024
PE
8324 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
8325 nodist_PROGRAMS, since we don't need to actually compile the
8326 example if we're just doing a plain 'make'. This avoids bothering
8327 the installer unnecessarily about problems due to weird C++
8328 compilers.
8329
fe6c2fde
PE
83302006-02-06 Paul Eggert <eggert@cs.ucla.edu>
8331
8332 More portability fixes for problems summarized by Nelson H. F. Beebe.
8333
8334 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
8335 than #include "...", and compile with -I'.'. The old method was
8336 not portable, according to Posix and the C standard, and it does
8337 not work with Sun C 5.7, where previous #line directives affect
8338 the working directory used in later #include "..." directives.
8339
927b425b
JMG
83402006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8341
8342 Various DJGGP specific issues in /djgpp
8343
d9735e9e
PE
83442006-02-02 Paul Eggert <eggert@cs.ucla.edu>
8345
8346 More portability fixes for problems summarized by Nelson H. F. Beebe.
8347
8348 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
8349 '#include <map>' works and that you can apply ++ to iterators.
8350
5a6755af
PE
83512006-02-01 Paul Eggert <eggert@cs.ucla.edu>
8352
67a0dc4f
PE
8353 Work around portability problems summarized by Nelson H. F. Beebe in
8354 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
8355
8c86f0ef
PE
8356 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
8357 that '#include <string>' works.
8358
de35dd59
PE
8359 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
8360 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
8361 "warning: sorry: semantics of inline function static data `const
8362 unsigned char translate_table[262]' are wrong (you'll wind up with
8363 multiple copies)".
8364
67a0dc4f
PE
8365 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
8366 or, xor to not_, and_, or_, and xor_, respectively. This works
8367 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
8368 random system header somewhere that includes the equivalent of
8369 <iso646.h>.
8370
5a6755af
PE
8371 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
8372 -E" works; it apparently doesn't work with PathScale EKO Compiler
67a0dc4f 8373 Suite Version 2.0.
5a6755af 8374
3f001415
JD
83752006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
8376
8377 During deterministic GLR operation, user actions should be able to
8378 influence the parse by changing yychar. To make this easier to fix and
8379 to make glr.c easier to evolve in general, don't maintain yytoken in
8380 parallel with yychar; just compute yytoken when needed.
8381 * tests/glr-regression.at (Incorrect lookahead during deterministic
8382 GLR): Check that setting yychar in a user action has the intended
8383 effect.
8384 * data/glr.c (yyGLRStack): Remove yytokenp member.
8385 (yyclearin): Don't set *yytokenp.
8386 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
8387 yychar rather than *yytokenp to determine the current lookahead.
8388 Compute yytoken locally when needed.
8389 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
8390 point to.
8391
8392 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
8393 after `--report' documentation.
8394
e2a8c0f5
PE
83952006-01-30 Paul Eggert <eggert@cs.ucla.edu>
8396
8397 * src/parse-gram.y (grammar_declaration): Location of printer
8398 symbol is @1, not list->location. Bug reported by twlevo.
8399 * tests/input.at (Incompatible Aliases): Adjust to above change.
8400
6b702268
PE
84012006-01-29 Paul Eggert <eggert@cs.ucla.edu>
8402
27622431
PE
8403 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
8404 all the test at once. This makes the output easier to read in the
8405 normal case.
8406
6b702268
PE
8407 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
8408 got from <http://bro-ids.org/download.html>. The bug is that
8409 when two actions appeared in succession, the second one was
8410 scanned before the first one was added to the grammar rule
8411 as a midrule action. Bison then output the incorrect warning
8412 "parse.y:905.17-906.36: warning: unused value: $3".
8413 * src/parse-gram.y (BRACED_CODE, action): These are no longer
8414 associated with a value.
8415 (rhs): Don't invoke grammar_current_rule_action_append.
8416 (action): Invoke it here instead.
8417 * src/reader.c (grammar_midrule_action): Now extern.
8418 (grammar_current_rule_action_append): Don't invoke
8419 grammar_midrule_action; that is now the scanner's job.
8420 * src/reader.h (last_string, last_braced_code_loc):
8421 (grammar_midrule_action): New decls.
8422 * src/scan-gram.l (last_string): Now extern, sigh.
8423 (last_braced_code_loc): New extern variable.
8424 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
8425 rule already has an action.
8426 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
8427 * tests/input.at (AT_CHECK_UNUSED_VALUES):
8428 Add some tests to check that the above changes fixed the bug.
8429
d40ba6c2
PE
84302006-01-27 Paul Eggert <eggert@cs.ucla.edu>
8431
8432 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
8433 All used changed. Check whether the symbol has a destructor,
8434 not whether it is typed.
8435 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
8436 that the values are still reported as unused. All line numbers
8437 adjusted.
8438
401aace6
PE
84392006-01-23 Paul Eggert <eggert@cs.ucla.edu>
8440
8441 Work around a bug in bro 0.8, which underparenthesizes its
8442 definition of YYLLOC_DEFAULT.
8443 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
8444 their arguments.
8445 * data/lalr1.cc: Likewise.
8446 * data/yacc.cc: Likewise.
8447
06f01bc4
PE
84482006-01-22 Paul Eggert <eggert@cs.ucla.edu>
8449
401aace6
PE
8450 Work around a bug in Pike 7.0, and give the Pike folks a
8451 better way to override the usual int widths.
8452 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
8453 user can override the types.
8454 (short): #undef, to work around a bug in Pike 7.0.
8455 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
8456 (union yyalloc.yyss): Use yytype_int16 rather than short.
8457 All uses changed.
8458 (yysigned_char): Remove.
8459 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
8460 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
8461 * tests/regression.at (Web2c Actions): Adjust to above changes.
8462
8463 * src/reader.c (check_and_convert_grammar): New function.
8464 (reader): Close the input file even if something went wrong during
8465 parsing. Minor file descriptor leak reported by twlevo.
8466
06f01bc4
PE
8467 * src/assoc.c (assoc_to_string): Use a default: abort (); case
8468 to pacify gcc -Wswitch-default.
8469 * src/scan-gram.l (adjust_location): Use a default: break; case
8470 to pacify gcc -Wswitch-default.
8471 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
8472 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8473 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8474 Move these decls to scan-skel.l, since they don't need to be
8475 visible elsewhere.
8476 * src/scan-skel.l: Accept the above decls.
8477 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
8478 is used.
8479
02650b7f
PE
84802006-01-21 Paul Eggert <eggert@cs.ucla.edu>
8481
8482 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
8483 since we don't want to insist on a version number at the start
8484 of the changelog every time.
8485 * Makefile.maint: Sync from coreutils a bit better.
8486 (sc_trailing_blank): Renamed from sc_trailing_space.
8487 All uses changed.
8488 (sc_no_if_have_config_h, sc_require_config_h):
8489 (sc_prohibit_assert_without_use): New rules.
8490 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
8491 (sc_dd_max_sym_length): Fix leading spaces in rule.
8492 (sc_system_h_headers): Prefix with @.
8493 (sc_useless_cpp_parens, m4-check): Output line numbers.
8494 (changelog-check): Allow version only in head.
8495 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
8496 satisfy new Makefile.maint rule.
8497 * data/glr.c: Likewise.
8498 * data/glr.cc: Likewise.
8499 * data/lalr1.cc: Likewise.
8500 * data/yacc.c: Likewise.
8501 * lib/ebitsetv.c: Likewise.
8502 * lib/lbitset.c: Likewise.
8503 * lib/subpipe.c: Likewise.
8504 * lib/timevar.c: Likewise.
8505 * src/system.h: Likewise.
8506 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
8507 * djgpp/Makefile.maint: Add copyright notice.
8508 * djgpp/README.in: Likewise.
8509 * djgpp/config.bat: Likewise.
8510 * djgpp/config.site: Likewise.
8511 * djgpp/config_h.sed: Likewise.
8512 * djgpp/djunpack.bat: Likewise.
8513 * djgpp/config.sed: Fix copyright notice to match standard format.
8514 * djgpp/subpipe.h: Likewise.
8515 * lib/bitsetv-print.c: Likewise.
8516 * lib/bitsetv.c: Likewise.
8517 * lib/subpipe.h: Likewise.
8518 * lib/timevar.c: Likewise.
8519 * lib/timevar.h: Likewise.
8520 * djgpp/subpipe.c: Use standard recipe for config.h.
8521 * lib/abitset.c: Likewise.
8522 * lib/bitset.c: Likewise.
8523 * lib/bitset_stats.c: Likewise.
8524 * lib/bitsetv-print.c: Likewise.
8525 * lib/bitsetv.c: Likewise.
8526 * lib/ebitsetv.c: Likewise.
8527 * lib/get-errno.c: Likewise.
8528 * lib/lbitset.c: Likewise.
8529 * lib/subpipe.c: Likewise.
8530 * lib/timevar.c: Likewise.
8531 * lib/vbitset.c: Likewise.
8532 * tests/local.at: Likewise.
8533 * src/scan-gram.l: Don't include verify.h, since system.h does
8534 that for us.
8535 * .x-sc_require_config_h: New file.
8536 * .x-sc_unmarked_diagnostics: New file.
8537
287c78f6
PE
85382006-01-20 Paul Eggert <eggert@cs.ucla.edu>
8539
287c78f6
PE
8540 Be a bit more systematic about using 'abort'.
8541 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
8542 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
8543 Put 'default: abort ();' before some other case, to satisfy older
8544 pedantic compilers.
8545 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8546 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
8547 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
8548 * src/conflicts.c (resolve_sr_conflict): Likewise.
68cae94e
PE
8549 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
8550 (get_decision_str, get_orientation_str, get_node_alignment_str):
8551 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
8552 (get_linestyle_str, get_arrowstyle_str): Likewise.
8553 * src/conflicts.c (resolve_sr_conflict):
8554 Use a default case rather than one for the one remaining enum
8555 value, to catch invalid enum values as well.
8556 * src/lalr.c (set_goto_map, map_goto):
8557 Prefer "assert (FOO);" to "if (!FOO) abort ();".
8558 * src/nullable.c (nullable_compute, token_definitions_output):
8559 Likewise.
8560 * src/reader.c (packgram, reader): Likewise.
8561 * src/state.c (transitions_to, state_new, state_reduction_find):
8562 Likewise.
8563 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
8564 (symbol_pack): Likewise.
8565 * src/tables.c (conflict_row, pack_vector): Likewise.
287c78f6
PE
8566 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
8567 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
68cae94e
PE
8568 * src/system.h: Don't include <assert.h>.
8569 (assert): New macro.
8570
8571 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
8572 (Destructor Decl, Parser Function, Pure Calling):
8573 Describe rules for braces inside C code more carefully.
287c78f6 8574
c66dfadd
PE
85752006-01-19 Paul Eggert <eggert@cs.ucla.edu>
8576
c21493b8
PE
8577 Fix some porting glitches found by Nelson H. F. Beebe.
8578 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
8579 compilers that don't understand that abort () does not return.
8580 * src/state.c (transitions_to): Likewise.
8581 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
8582 that '#include <cstdlib>' works.
8583 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
8584 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
8585 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
8586 for the benefit of some pre-C99 compilers.
8587
b6e3facf
PE
8588 * bootstrap: Undo changes to gnulib files that autoreconf made.
8589
c66dfadd
PE
8590 Minor fixups to get 'make maintainer-check' to work.
8591 * configure.ac: Don't use -Wnested-externs, as it's incompatible
8592 with the new verify.h implementation.
8593 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
8594 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
8595 * data/yacc.c (YYUSE): Likewise.
8596 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
8597 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
8598 * src/parse-gram.y (declaration): Don't pass a string constant
8599 to a function that expects char *, since GCC might complain
8600 about the constant value.
8601 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
8602 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
8603 before #defining them.
8604 * tests/glr-regression.at
8605 (Incorrectly initialized location for empty right-hand side in GLR):
8606 In yyerror, use the msg arg.
8607 (Corrupted semantic options if user action cuts parse):
8608 (Incorrect lookahead during deterministic GLR):
8609 (Incorrect lookahead during nondeterministic GLR):
8610 Don't name a local var 'index'; it shadows string.h's 'index'.
8611
ed94ef2a
AD
86122006-01-19 Akim Demaille <akim@epita.fr>
8613
8614 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
8615 location, not just parts of it.
8616
e9ad4aec
PE
86172006-01-18 Paul Eggert <eggert@cs.ucla.edu>
8618
d6ca7905
PE
8619 * NEWS: Document the fact that multiple %unions are now allowed.
8620 * doc/bison.texinfo (Union Decl): Likewise.
51cbef6f
PE
8621 * TODO: This feature is now implemented, so remove it from
8622 the wishlist.
d6ca7905 8623
ef1b70e0
PE
8624 * Makefile.maint: Merge with coreutils Makefile.maint.
8625 (CVS_LIST): Use build-aux version if available.
8626 (VERSION_REGEXP): New macro.
8627 (syntax-check-rules): Add sc_no_if_have_config_h,
8628 sc_prohibit_assert_without_use, sc_require_config_h,
8629 sc_useless_cpp_parens.
8630 (sc_obsolete_symbols): Check for O_NDELAY.
8631 (sc_dd_max_sym_length): Track coreutils.
8632 (sc_unmarked_diagnostics): Look in all files, not just *.c.
8633 (sc_useless_cpp_parens): New rule.
8634 (news-date-check): Look for version or today's date.
8635 (changelog-check): Don't require version number near head.
8636 (copyright-check): Use current year instead of hardwiring 2005.
8637 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
8638 (announcement): Add --gpg-key-ID.
8639
8640 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
8641 with "file system".
8642
2073ce56 8643 Avoid undefined behavior that addressed just before the start of an
e9ad4aec
PE
8644 array. Problem reported by twlevo.
8645 * src/reader.c (packgram): Prepend a new sentinel before ritem.
8646 * src/lalr.c (build_relations): Rely on new sentinel.
8647 * src/gram.c (gram_free): Adjust to new sentinel.
8648
b7691f15
JD
86492006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
8650
8651 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
8652 yylookaheadNeeds. All uses updated.
8653 (yysplitStack): Rename local yynewLookaheadStatuses to
8654 yynewLookaheadNeeds.
8655 * data/glr-regression.at (Incorrect lookahead during nondeterministic
8656 GLR): In comments, change `lookahead status' to `lookahead need'.
8657
ddee1b06
PH
86582006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8659
8660 * data/glr.c (yysplitStack): A little stylistic rewrite.
8661
12f4614d
PH
86622006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8663
8664 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
8665
32c29292
JD
86662006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
8667
8668 * doc/bison.texinfo: Fix some typos.
8669 (GLR Semantic Actions): New subsection discussing special
8670 considerations because GLR semantic actions might be deferred.
8671 (Actions): Mention look-ahead usage of yylval.
8672 (Actions and Locations): Mention look-ahead usage of yylloc.
8673 (Special Features for Use in Actions): Add YYEOF entry and mention it
8674 in the yychar entry.
8675 In the yychar entry, remove mention of the local yychar case (pure
8676 parser) since this is irrelevant information when writing semantic
148d66d8 8677 actions and since it's already discussed in `Table of Symbols' where
32c29292
JD
8678 yychar is otherwise described as an external variable.
8679 In the yychar entry, don't call it the `current' look-ahead since it
8680 isn't when semantic actions are deferred.
8681 In the yychar and yyclearin entries, add note about deferred semantic
8682 actions.
8683 Add yylloc and yylval entries discussing look-ahead usage.
8684 (Look-Ahead Tokens): When discussing yychar, don't call it the
8685 `current' look-ahead, and do mention yylval and yylloc.
8686 (Error Recovery): Cross-reference `Action Features' when mentioning
8687 yyclearin.
148d66d8 8688 (Table of Symbols): In the yychar entry, don't call it the `current'
32c29292
JD
8689 look-ahead.
8690 In the yylloc and yylval entries, mention look-ahead usage.
8691
de366a2f 86922006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2781dbd1
JD
8693
8694 * tests/glr-regression.at: Update copyright year to 2006.
8695
bf70fa87
JD
86962006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8697
8698 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
8699 use during nondeterministic operation to track which stacks have
8700 actually needed the current lookahead.
8701 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
8702 Allocate, deallocate, resize, and otherwise shuffle space for
8703 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
8704 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
8705 appropriately during nondeterministic operation.
8706 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
8707 members to store the current lookahead to be used by the deferred
8708 user action.
8709 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
8710 from which the RHS is taken. Set the lookahead members of the new
8711 yySemanticOption according to the lookahead status for stack yyk.
8712 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
8713 yyaddDeferredAction.
8714 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
8715 members of yySemanticOption before invoking yyuserAction, and then set
8716 them back to their current values afterward.
8717 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
8718 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
8719 * tests/glr-regression.at: Remove `.' from the ends of recent test case
8720 titles for consistency.
8721 (Leaked merged semantic value if user action cuts parse): In order to
8722 suppress lint warnings, use arguments in merge function, and assign
8723 char value < 128 in main.
8724 (Incorrect lookahead during deterministic GLR): New test case.
8725 (Incorrect lookahead during nondeterministic GLR): New test case.
8726
05449a2c
JD
87272006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8728
de366a2f 8729 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
05449a2c
JD
8730 !yyvaluep as signal that no semantic value is available to print.
8731 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
8732 to print a semantic value.
8733
4158e0a1 87342006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
fd2493f7 8735
4158e0a1
JD
8736 * tests/glr-regression.at: For consistency with my newer test cases,
8737 don't thank myself.
8738
d659304d
JD
87392006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
8740
8741 * data/glr.c (yyresolveValue): When merging semantic options, if at
8742 least one user action succeeds but a later one cuts the parse, then
8743 destroy the semantic value before returning rather than leaking it.
8744 (yyresolveStates): If a user action cuts the parse and thus
8745 yyresolveValue fails, ignore the (unset) semantic value rather than
8746 corrupting the yyGLRState, and empty the semantic options list since
8747 the user actions should have called all necessary destructors.
8748 Simplify code with YYCHK.
8749 * tests/glr-regression.at (Corrupted semantic options if user action
8750 cuts parse): New test case.
8751 (Undesirable destructors if user action cuts parse): New test case.
8752 Before applying any of this patch, this test case never actually failed
8753 for me... but only because the corrupted semantic options usually
8754 masked this bug.
8755 (Leaked merged semantic value if user action cuts parse): New test
8756 case.
8757
6ec2c0f2
AD
87582006-01-05 Akim Demaille <akim@epita.fr>
8759
8760 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
8761
1b9c21fb
PE
87622006-01-04 Paul Eggert <eggert@cs.ucla.edu>
8763
8764 * data/c.m4 (b4_c_modern): New macro, with a new provision for
8765 _MSC_VER. Problem reported by Cenzato Marco.
8766 (b4_c_function_def): Use it.
8767 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
8768 b4_c_modern.
8769 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
8770 than rolling our own.
8771
84866159
AD
87722006-01-04 Akim Demaille <akim@epita.fr>
8773
8774 Also warn about non-used mid-rule values.
8775 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
8776 member.
8777 (symbol_list_new): Adjust.
8778 * src/reader.c (symbol_typed_p): New.
8779 (grammar_rule_check): Use it.
8780 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
8781 Check its rule.
8782 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
8783 Use it.
8784 * tests/actions.at (Exotic Dollars): Adjust.
8785
378f4bd8
AD
87862006-01-04 Akim Demaille <akim@epita.fr>
8787
8788 * src/reader.c (grammar_midrule_action): If $$ is set in a
8789 mid-rule, move the `used' bit to its lhs.
8790 * tests/input.at (Unused values): New.
8791 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
8792
e2a21b6f
PE
87932006-01-03 Paul Eggert <eggert@cs.ucla.edu>
8794
54662697
PE
8795 * doc/bison.texinfo (Bison Options): Say more accurately what
8796 --yacc does.
8797 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
8798 about declarations in the grammar when in Yacc mode, as POSIX does
8799 not require a diagnostic when the grammar uses extensions.
8800
8801 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
8802
073f9288
PE
8803 Warn about dubious constructions like "%token T T".
8804 Reported by twlevo.
8805 * src/symtab.h (struct symbol.declared): New member.
8806 * src/symtab.c (symbol_new): Initialize it to false.
8807 (symbol_class_set): New arg DECLARING, specifying whether
8808 this is a declaration that we want to warn about, if there
8809 is more than one of them. All uses changed.
8810
1221b78a
PE
8811 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
8812 Allow multiple %union directives, whose contents concatenate.
8813 * src/parse-gram.y (grammar_declaration): Likewise.
8814 Use muscle_code_grow, so that we don't need stype_line any more.
8815 All uses changed.
8816
8817 * src/muscle_tab.c (muscle_grow): Fix comment.
8818
e2a21b6f
PE
8819 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
8820 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
8821 Update copyright year to 2006.
8822
8f7e3cf9
AD
88232006-01-03 Akim Demaille <akim@epita.fr>
8824
8825 Have glr.cc pass (some of) the calc.at tests.
8826 * data/glr.cc (b4_parse_param_orig): New.
8827 (b4_parse_param): Improve its definition, and bound it more
8828 clearly in the skeleton.
8829 (b4_epilogue): Append, instead of prepending, in order to keep
8830 #line consistency.
8831 Simplify the generation of auxiliary functions: locations and
8832 purity are mandated.
8833 (b4_global_tokens_and_yystype): Honor it.
8834 * data/location.cc (c++.m4): Don't include it.
8835 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
8836 and AT_SKEL_CC_IF.
8837 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
8838 AT_LALR1_CC_IF.
8839 Be sure to initialize the first position's filename.
8840 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
8841 mandated anyway.
8842 (AT_CHECK_CALC_GLR_CC): New.
8843 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
8844
3953ed88
AD
88452006-01-02 Akim Demaille <akim@epita.fr>
8846
8847 * src/output.c (output_skeleton): Don't hard wire the inclusion of
8848 c.m4.
0a96ba81 8849 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
3953ed88
AD
8850 * data/glr.cc: Do not include stack.hh.
8851
9ecafbbf
AD
88522006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
8853
8854 * data/glr.c: Reformat whitespace with tabs.
8855 (b4_lpure_formals): Remove this unused m4 macro.
8856 * tests/cxx-type.at: Reformat whitespace with tabs.
8857 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
8858 since it's a member. Rename type to isNterm for clarity.
8859
c4d497a0
AD
88602005-12-29 Akim <akim@sulaco.local>
8861
8862 Let glr.cc catch up with symbol_value_print.
8863 * data/glr.cc (b4_yysymprint_generate): Replace by...
8864 (b4_yy_symbol_print_generate): this.
8865 (yy_symbol_print, yy_symbol_value_print): Declare them.
8866
4517da37
PE
88672005-12-28 Paul Eggert <eggert@cs.ucla.edu>
8868
8869 * src/location.h (boundary): Note that a line or column equal
8870 to INT_MAX indicates an overflow.
8871 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
8872 (rule_length_overflow, increment_rule_length, add_column_width):
8873 New functions.
8874 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
8875 (<SC_BRACED_CODE>"}"):
8876 Use increment_rule_length rather than incrementing it by hand.
8877 (adjust_location, handle_syncline): Diagnose overflow.
8878 (handle_action_dollar, handle_action_at):
8879 Fix bug with monstrosities like $-2147483648.
8880 Remove now-unnecessary checks.
8881 (scan_integer): Verify assumptions and remove now-unnecessary checks.
8882 (convert_ucn_to_byte): Verify assumptions.
8883 (handle_syncline): New arg LOC. All callers changed.
8884 Don't store through a value derived from char const * pointer.
8885
8886 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
8887 GCC warnings.
8888
e3233bf6
PE
88892005-12-27 Paul Eggert <eggert@cs.ucla.edu>
8890
8891 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
8892 Remove unnecessary forward static decls.
8893
8f3596a6
AD
88942005-12-27 Akim Demaille <akim@epita.fr>
8895
8896 * src/reader.c (grammar_current_rule_check): Also check that $$
8897 is used.
8898 Take the rule to check as argument, hence rename as...
8899 (grammar_rule_check): this.
8900 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
8901 Rename as...
8902 (grammar_rule_begin, grammar_rule_end): these, for consistency.
8903 (grammar_midrule_action, grammar_symbol_append): Now static.
8904 * tests/torture.at (input): Don't rely on the default action
8905 being always performed.
8906 * tests/calc.at: "Set" $$ even when the action is "cut" with
8907 YYERROR or other.
8908 * tests/actions.at (Exotic Dollars): Instead of using unused
8909 values, check that the warning is issued.
8910
721be13c
PE
89112005-12-22 Paul Eggert <eggert@cs.ucla.edu>
8912
8913 * NEWS: Improve wording for unused-value warnings.
8914
a0af42fc
AD
89152005-12-22 Akim Demaille <akim@epita.fr>
8916
8917 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
8918 (b4_yysymprint_generate): Rename as...
8919 (b4_yy_symbol_print_generate): this.
8920 Generate yy_symbol_print instead of yysymprint.
8921 Generate also yy_symbol_value_print, and use it.
8922
affac613
AD
89232005-12-22 Akim Demaille <akim@epita.fr>
8924
721be13c 8925 * NEWS: Warn about unused values.
affac613
AD
8926 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
8927 a `used' member.
8928 (symbol_list_n_get, symbol_list_n_used_set): New.
8929 (symbol_list_n_type_name_get): Use symbol_list_n_get.
8930 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
8931 * src/reader.c (grammar_current_rule_check): Check that values are
8932 used.
8933 * src/symtab.c (symbol_print): Accept 0.
8934 * tests/existing.at: Remove the type information.
8935 Empty the actions.
8936 Remove useless actions (beware of mid-rule actions: perl -000
8937 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
8938 * tests/actions.at (Exotic Dollars): Use unused values.
8939 * tests/calc.at: Likewise.
8940 * tests/glr-regression.at (No users destructors if stack 0 deleted):
8941 Likewise.
8942
8943 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
8944 rule_useful_p.
8945
9d9b8b70
PE
89462005-12-21 Paul Eggert <eggert@cs.ucla.edu>
8947
8bb4c753
PE
8948 Undo 2005-12-01 tentative license wording change. The wording is
8949 still being reviewed by the lawyers, and we don't want to wait for
8950 them before publishing a test release. For now, revert to the
8951 previous wording.
8952 * NEWS: Undo 2005-12-01 change.
8953 * data/glr.c: Revert to previous license wording.
8954 * data/glr.cc: Likewise.
8955 * data/lalr1.cc: Likewise.
8956 * data/location.cc: Likewise.
8957 * data/yacc.c: Likewise.
8958
9d9b8b70
PE
8959 * NEWS: Reword %destructor vs YYABORT etc.
8960 * data/glr.c: Use American spacing, for consistency.
8961 * data/glr.cc: Likewise.
8962 * data/lalr1.cc: Likewise.
8963 * data/yacc.c: Likewise.
8964 * data/yacc.c: Reformat comments slightly.
8965 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
8966 for consistency. Fix some spelling errors and reword recently-included
8967 text slightly.
8968 * tests/cxx-type.at: Cast results of malloc, for C++.
8969
2c3b392a
AD
89702005-12-21 Joel E. Denny <address@hidden>
8971
8972 * tests/cxx-type.at: Construct a tree, count the parents of shared
8973 nodes, and free each node once and only once. Previously, the memory
8974 for semantic values was leaked instead.
8975
d6cff4dc
AD
89762005-12-21 Joel E. Denny <address@hidden>
8977
8978 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
8979 (yylval, yylloc): If pure, #define to yystackp->yyval and
8980 yystackp->yyloc similar to yychar and yynerrs.
8981 (yyparse): If pure, remove local yylval and yylloc. Add local
8982 yystackp to accommodate pure definitions of yylval and yylloc.
8983 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
8984 yylvalp and yyllocp to &yylval and &yylloc.
8985 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
8986 namespace. Previously, nerrs and char were missing, but lval and lloc
8987 weren't necessary.
8988 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
8989 yylvalp and yyllocp parameters since, if pure, these are now always
8990 accessible through yystackp. If not pure, they are still accessible
8991 globally.
8992 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
8993 `if (YYID (N))' to pacify lint.
8994
a85284cf
AD
89952005-12-21 Akim Demaille <akim@epita.fr>
8996
8997 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
8998 destroy the RHS symbols of a rule.
8999 * data/yacc.c (yylen): Initialize to 0.
9000 Keep its value to the number of items to possibly shift.
9001 In particular, a regular successful parse that ends on YYFINAL by
9002 a (internal) YYACCEPT must not have yylen != 0.
9003 (yyerrorlab, yyreturn): Pop the RHS.
9004 Reorder a bit to emphasize the `shifting' bits of code.
9005 (YYPOPSTACK): Now accept a number of items to pop.
9006 * data/lalr1.cc: Likewise.
9007 * data/glr.c: Formatting changes.
9008 Use goto instead of fall through.
9009 * doc/bison.texinfo (Destructor Decl): Complete.
9010
d508c281
JMG
90112005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9012
9013 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
9014 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
9015 * djgpp/config.bat: Replace every occurence of the file name
9016 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
9017 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
9018 * djgpp/config.sed: Replace every occurence of the file name
9019 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
9020 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
9021 * djgpp/djunpack.bat: DJGPP specific file.
9022 * djgpp/fnchange.lst: DJGPP specific file.
9023 * djgpp/README.in: Add new information about how to unpack the bison
9024 source on MSDOS and other systems which have 8.3 file name restrictions
9025 using djunpack.bat and fnchange.lst.
9026
3e7a2cd9
PE
90272005-12-12 Paul Eggert <eggert@cs.ucla.edu>
9028
9029 * bootstrap (build_cvs_prefix): Remove; unused.
9030 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
9031 when getting gnulib.
9032
90332005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
9034
9035 * data/glr.c: Reorder typedef declarations for structs to match order
9036 of struct declarations.
9037 Rename yystack everywhere to yystackp except in yyparse where it's not
9038 a pointer.
9039 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
9040 consistency.
9041 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
9042 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
9043 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
9044 lint.
9045
877519f8
PE
90462005-12-09 Paul Eggert <eggert@cs.ucla.edu>
9047
0eca5a39
PE
9048 * tests/sets.at (Accept): Fix typos in regular expression used to
9049 sed out the final state number.
9050
2cec9080
PE
9051 Work around portability problem on Solaris 10: flex-generated
9052 files include <stdio.h> before <config.h>, which messes up
9053 because the latter defines __EXTENSIONS__. Address the problem
9054 by creating two new little files that include <config.h> first,
9055 then include the flex-generated files. Rewrite everyone else
9056 to include <config.h> first, as well.
9057 * lib/timevar.c: Always include "config.h".
9058 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
9059 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
9060 (EXTRA_bison_SOURCES): New macro.
9061 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
9062 * src/system.h: Don't include config.h.
9063 * src/LR0.c: Include <config.h> first.
9064 * src/assoc.c: Likewise.
9065 * src/closure.c: Likewise.
9066 * src/complain.c: Likewise.
9067 * src/conflicts.c: Likewise.
9068 * src/derives.c: Likewise.
9069 * src/files.c: Likewise.
9070 * src/getargs.c: Likewise.
9071 * src/gram.c: Likewise.
9072 * src/lalr.c: Likewise.
9073 * src/location.c: Likewise.
9074 * src/main.c: Likewise.
9075 * src/muscle_tab.c: Likewise.
9076 * src/nullable.c: Likewise.
9077 * src/output.c: Likewise.
9078 * src/parse-gram.y: Likewise.
9079 * src/print.c: Likewise.
9080 * src/print_graph.c: Likewise.
9081 * src/reader.c: Likewise.
9082 * src/reduce.c: Likewise.
9083 * src/relation.c: Likewise.
9084 * src/state.c: Likewise.
9085 * src/symlist.c: Likewise.
9086 * src/symtab.c: Likewise.
9087 * src/tables.c: Likewise.
9088 * src/uniqstr.c: Likewise.
9089 * src/vcg.c: Likewise.
9090
877519f8
PE
9091 * src/parse-gram.y: Fix minor problems uncovered by lint.
9092 (current_lhs, current_lhs_location): Now static.
9093 (current_assoc): Remove unused variable.
9094
9095 Cleanups so that Bison-generated parsers have less lint.
9096 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
9097 Prepend /*ARGSUSED*/, for lint's sake.
9098 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
9099 definition if 'lint' is defined.
9100 (YYID): New macro (or function, if lint).
9101 All uses of /*CONSTCOND*/0 replaced by YYID(0).
9102 * data/yacc.c: Likewise.
9103 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
9104 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
9105 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
9106 is C++ only.
9107 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
9108 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
9109 Use YYID(0) rather than 0, for lint.
9110 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
9111 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
9112
f5228370
PE
91132005-12-07 Paul Eggert <eggert@cs.ucla.edu>
9114
9115 * tests/glr-regression.at
9116 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
9117 Close memory leak reported by twlevo.
9118
69ce078b
PE
91192005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
9120
6ff99711
PE
9121 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
9122 all stacks.
9123 (yyparse): Iterate another stack in order to call user destructors.
69ce078b
PE
9124 * tests/glr-regression.at (No users destructors if stack 0 deleted):
9125 New test case.
9126 (Duplicated user destructor for lookahead): This test now is expected
9127 to succeed.
9128
af3412cd
PE
91292005-12-01 Paul Eggert <eggert@cs.ucla.edu>
9130
32b5b719 9131 * NEWS: Document the following change.
af3412cd
PE
9132 * data/yacc.c: Say "parser skeleton" rather than "file", since
9133 it's no longer just a file.
9134 * data/glr.c: Grant a special exception for C GLR parsers, that
9135 reads like the already-existing exception for C LALR(1) parsers.
9136 * data/glr.cc: Likewise.
9137 * data/lalr1.cc: Likewise.
9138 * data/location.cc: Likewise.
9139 * data/yacc.c: Reword the "written by" statement to clarify that
9140 it was the parser skeleton, not the entire output file.
9141 * data/glr.c: Written by Paul Hilfinger.
9142 * data/glr.cc: Written by Akim Demaille.
9143 * data/lalr1.cc: Likewise.
9144
035aa4a0
PE
91452005-11-18 Paul Eggert <eggert@cs.ucla.edu>
9146
d9963c85
PE
9147 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
9148 Fix typos in previous change that broke 'make check'.
9149 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
9150 supported in C.
9151 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
9152 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
9153 We can revert this once things settle down.
9154
035aa4a0
PE
9155 * src/conflicts.c (conflicts_print): Don't print file name twice
9156 when %expect fails because there were no conflicts.
9157 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
9158 change.
9159 * tests/conflicts.at (%expect not enough, %expect too much):
9160 (%expect with reduce conflicts): Adjust to new behavior.
9161
91622005-11-18 Akim Demaille <akim@epita.fr>
9163
9164 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
9165 errors.
9166 * NEWS: Document this.
9167 * doc/bison.texinfo (Expect Decl): Likewise.
9168
d1ff7a7c
AD
91692005-11-16 Akim Demaille <akim@epita.fr>
9170
9171 Generalize the display of semantic values and locations in traces.
9172 * data/glr.c (yy_reduce_print): Fix indices (again).
9173 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
9174 literal integers.
9175 * data/lalr1.cc (yyreduce_print): Rename as...
9176 (yy_reduce_print): this.
9177 Display values and locations.
9178 * data/yacc.c (yy_reduce_print): Likewise.
9179 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
9180 (yysymprint): Move higher to be visible from yy_reduce_print).
9181 (yyparse): Adjust.
9182 * tests/calc.at: Adjust the expected length of the traces.
9183
6de5398d
AD
91842005-11-14 Akim Demaille <akim@epita.fr>
9185
9186 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
9187 from 1 to N, while values and location start at 0.
9188 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
9189
a1373f55
AD
91902005-11-14 Akim Demaille <akim@epita.fr>
9191
9192 * data/glr.c (yy_reduce_print): Fix the $ number.
9193
613d8952
AD
91942005-11-14 Akim Demaille <akim@epita.fr>
9195
9196 "Use" parse parameters.
9197 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
9198 * data/glr.c, data/glr.cc: Use them.
9199 * data/glr.c (YYUSE): Have a C++ definition that supports
9200 non-pointer types.
9201
b2741627
AD
92022005-11-14 Akim Demaille <akim@epita.fr>
9203
9204 * data/glr.c (yyexpandGLRStack): Declare only if defined.
9205
5059b5c8
AD
92062005-11-14 Akim Demaille <akim@epita.fr>
9207
42249483
AD
9208 * data/glr.cc: New.
9209 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
5059b5c8 9210
4626a15d
AD
92112005-11-12 Akim Demaille <akim@epita.fr>
9212
9213 Let position and location be PODs.
9214 * data/location.cc (position::initialize, location::initialize): New.
9215 (position::position, location::location): Define only if
9216 b4_location_constructors is defined.
9217 * data/lalr1.cc (b4_location_constructors): Define it for backward
9218 compatibility.
9219 * doc/bison.texinfo (Initial Action Decl): Use initialize.
9220
92212005-11-12 Akim Demaille <akim@epita.fr>
98ae9643
AD
9222
9223 * data/lalr1.cc: Move the body of the ctor and dtor into the
9224 parser file (instead of the header).
9225 Wrap the implementations in a "namespace yy".
9226
92272005-11-12 Akim Demaille <akim@epita.fr>
9228
9229 Have glr.c include its header file when created.
9230 * data/glr.c (b4_shared_declarations): New.
9231 Output them verbatim in the parser if !%defines, otherwise
9232 output then in the header file, and include it instead.
9233
1989d947
AD
92342005-11-11 Akim Demaille <akim@epita.fr>
9235
9236 * data/glr.c: Comment changes.
9237
92382005-11-11 Akim Demaille <akim@epita.fr>
62b08cfc
AD
9239
9240 When yydebug, report semantic and location values for reductions.
9241 * data/glr.c (yy_reduce_print): Report the semantic values and the
9242 locations.
9243 (YY_REDUCE_PRINT): Adjust.
9244 (yyglrReduce): Use them.
9245 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
9246 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
9247 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
9248 traces.
9249
02998094
AD
92502005-11-10 Akim Demaille <akim@epita.fr>
9251
9252 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
9253 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
9254 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
9255
5210672f
PE
92562005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
9257
9258 * m4/cxx.m4, examples/Makefile.am: Don't build
9259 examples/calc++ if no C++ compiler is available. (trivial change)
9260
a8991a1d
AD
92612005-11-09 Akim Demaille <akim@epita.fr>
9262
9263 * src/scan-skel.l: Use a couple of asserts.
9264
36b5e963
AD
92652005-11-03 Akim Demaille <akim@epita.fr>
9266
9267 In some (weird) cases, the final state number is incorrect.
9268 Reported by Alexandre Duret-Lutz.
9269 * src/LR0.c (state_list_append): Remove the computation of
9270 final_state.
9271 (save_reductions): Do it here.
9272 (get_state): Alpha conversion.
9273 (generate_states): Use a for loop.
9274 * src/gram.h (item_number_is_rule_number)
9275 (item_number_is_symbol_number): New.
9276 * src/state.c: Use assert.
9277 * src/system.h: Include assert.h.
9278 * tests/sets.at (Accept): New.
9279
44e7ead1
PH
92802005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9281
9282 * data/glr.c (yyfill): Adjust comment.
36b5e963 9283 (yyresolveAction): Initialize default location properly
44e7ead1
PH
9284 for empty right-hand sides.
9285 (yydoAction): Ditto.
9286 Add comment explaining apparently dead code.
36b5e963
AD
9287 * tests/glr-regression.at
9288 (Incorrectly initialized location for empty right-hand side in GLR):
44e7ead1 9289 New test.
36b5e963 9290
e10a80ee
PE
92912005-10-30 Paul Eggert <eggert@cs.ucla.edu>
9292
9293 * bootstrap (cleanup_gnulib): New function. Use it to clean up
9294 gnulib when interrupted. This fixes some race conditions and
9295 works around some portability problems (one noted by Paul
9296 Hilfinger).
9297
067b32ee
AD
92982005-10-22 Akim <akim@epita.fr>
9299
9300 * Makefile.cfg: Adjust to config -> build-aux.
9301 Reported by twledo.
9302
4b367315
AD
93032005-10-21 Akim Demaille <akim@epita.fr>
9304
9305 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
9306 the %parse-params.
9307 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
9308 * data/yacc.c (b4_Pure_if): Rename as...
9309 (b4_yacc_pure_if): this.
9310 (YY_SYMBOL_PRINT, yyparse): Adjust.
9311 * doc/bison.texinfo: Formatting changes.
9312
24cc23d9
AD
93132005-10-21 Akim Demaille <akim@epita.fr>
9314
9315 Finish the transition config -> build-aux.
9316 * configure.ac, Makefile.am: Use build-aux.
9317 * config/prev-version, config/announce-gen, config/Makefile.am:
9318 Move to...
9319 * build-aux/prev-version, build-aux/announce-gen,
9320 * build-aux/Makefile.am: here.
9321
d4476375
AD
93222005-10-14 Akim Demaille <akim@epita.fr>
9323
9324 * examples/calc++/test: Use set -x only when VERBOSE.
9325
302c0aee
PE
93262005-10-13 Paul Eggert <eggert@cs.ucla.edu>
9327
9328 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
9329 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
9330
7625ec2c
AD
93312005-10-13 Akim Demaille <akim@epita.fr>
9332
9333 * src/scan-skel.l: Output the base name parts of the parser and
9334 header file names.
302c0aee 9335 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7625ec2c
AD
9336 additional checks.
9337 Use this to exercise C++ outputs in subdirs.
9338 Reported by Oleg Smolsky.
9339
ba0fe3c7
PE
93402005-10-12 Paul Eggert <eggert@cs.ucla.edu>
9341
9342 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
9343 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
9344 Problem reported by John P. Hartmann.
9345 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
9346 already defined it.
9347
9b8a5ce0
AD
93482005-10-12 Akim Demaille <akim@epita.fr>
9349
9350 * src/parse-gram.y (version_check): Exit 63 to please missing
9351 (stands for "version mismatch).
9352 * tests/input.at, doc/bison.texinfo: Adjust.
9353
4f6e011e
PE
93542005-10-10 Paul Eggert <eggert@cs.ucla.edu>
9355
9356 Work around portability problems with Visual Age C compiler
9357 (xlc and xlC_r) reported by John P. Hartmann.
9358 * data/location.cc (initial_column, initial_line): Remove.
9359 All uses replaced by 0 and 1.
9360 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
9361 that xlc complains about.
9362 * src/scan-skel.l (skel_wrap): Likewise.
4d7aa45e 9363 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
ba0fe3c7 9364 as __STDC__.
4d7aa45e
PE
9365 * data/yacc.c (YYMODERN_C): New macro, which also looks at
9366 __STDC_VERSION__. Use it everywhere instead of looking at
9367 __STDC__ and __cplusplus.
4f6e011e 9368
a1b3bf8c
AD
93692005-10-10 Akim Demaille <akim@epita.fr>
9370
9371 * examples/calc++/test: Be quiet unless VERBOSE.
9372
412e44aa
PE
93732005-10-05 Paul Eggert <eggert@cs.ucla.edu>
9374
2a4647a3
PE
9375 * data/c.m4 (yydestruct, yysymprint):
9376 Use YYUSE instead of casting to void.
9377 * data/glr.c (YYUSE): New macro.
9378 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
9379 Use it instead of rolling our own.
9380 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
9381 (YYCHK1):
9382 Use /*CONSTCOND*/ to suppress lint warnings.
9383 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
9384 (YY_STACK_PRINT): Use 'false' not '0'.
9385 (YYUSE): New macro.
9386 (yysymprint_, yydestruct_): Use it instead of rolling our own.
9387 * data/yacc.c (YYUSE): New macro.
9388 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
9389 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
9390 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
9391
9392
412e44aa
PE
9393 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
9394 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
9395
88c6637f
PE
93962005-10-04 Paul Eggert <eggert@cs.ucla.edu>
9397
2f4f028d
PE
9398 Undo the parts of the unlocked-I/O change that substituted
9399 putc or puts for printf. This might hurt performance a bit,
9400 but some people prefer the printf style.
9401 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
9402 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
9403 All uses replaced by YYFPRINTF and YYDPRINTF.
9404 * data/yacc.c: Likewise.
9405 * lib/bitset.c (bitset_print): Likewise.
9406 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
9407 putc and puts.
9408 * lib/lbitset.c (debug_lbitset): Likewise.
9409 * src/closure.c (print_firsts, print_fderives): Likewise.
9410 * src/gram.c (grammar_dump): Likewise.
9411 * src/lalr.c (look_ahead_tokens_print): Likewise.
9412 * src/output.c (escaped_output): Likewise.
9413 (user_actions_output): Break apart two printfs.
9414 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
9415 * src/reduce.c (reduce_print): Likewise.
9416 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
9417 * src/system.h: Include unlocked-io.h rathe than stdio.h.
9418
88c6637f
PE
9419 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
9420 Use assignments rather than casts-to-void to suppress
9421 unused-variable warnings. This pacifies 'lint'.
9422 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
9423 unused-variable warnings.
9424
fb32e373
JMG
94252005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9426
9427 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
9428
edb8f44f
PE
94292005-10-02 Paul Eggert <eggert@cs.ucla.edu>
9430
fb9c0b33
PE
9431 Use unlocked I/O for a minor performance improvement on hosts like
9432 GNU/Linux and Solaris that support unlocked I/O. The basic idea
9433 is to use the gnlib unlocked-io module, and to prefer putc and
9434 puts to printf when either will work (since the latter doesn't
9435 come in an unlocked flavor).
9436 * bootstrap (gnulib_modules): Add unlocked-io.
9437 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
9438 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
9439 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
9440 and similarly for puts and putc and printf.
9441 * data/yacc.c: Likewise.
9442 * lib/bitset.c (bitset_print): Likewise.
9443 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
9444 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
9445 to printf.
9446 * lib/lbitset.c (debug_lbitset): Likewise.
9447 * src/closure.c (print_firsts, print_fderives): Likewise.
9448 * src/gram.c (grammar_dump): Likewise.
9449 * src/lalr.c (look_ahead_tokens_print): Likewise.
9450 * src/output.c (escaped_output): Likewise.
9451 (user_actions_output): Coalesce two printfs.
2f4f028d 9452 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
fb9c0b33
PE
9453 * src/reduce.c (reduce_print): Likewise.
9454 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2f4f028d 9455 * src/system.h: Include unlocked-io.h rather than stdio.h.
fb9c0b33 9456
edb8f44f
PE
9457 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
9458 this confuses xgettext.
9459
b50d2359
AD
94602005-10-02 Akim Demaille <akim@epita.fr>
9461
9462 * bootstrap (gnulib_modules): Add strverscmp.
9463 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
9464 * m4/.cvsignore: Add strverscmp.m4.
9465 * src/parse-gram.y (%require): New token, new rule.
9466 (version_check): New.
9467 * src/scan-gram.l (%require): Adjust.
9468 * tests/input.at (AT_REQUIRE): New.
9469 Use it.
9470 * doc/bison.texinfo (Require Decl): New.
9471 (Calc++ Parser): Use %require.
9472
21667f64
AD
94732005-10-02 Akim Demaille <akim@epita.fr>
9474
9475 * data/location.cc: New.
9476
2b81e969
AD
94772005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
9478 Akim Demaille <akim@epita.fr>
9479
9480 Make sure -odir/foo.cc creates dir/location.hh etc.
9481 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
9482 (spec_file_prefix, spec_verbose_file, spec_graph_file)
9483 (spec_defines_file): Now const.
9484 (dir_prefix): New.
9485 (short_base_name): Remove.
9486 * src/files.c: Adjust.
9487 (dirname.h): Include.
9488 (base_name): Don't prototype it.
9489 (finput): Remove, duplicates gram_in.
9490 (full_base_name, short_base_name): Replace by...
9491 (all_but_ext, all_but_tab_ext): these.
9492 (compute_base_names): Rename as...
9493 (compute_file_name_parts): this.
9494 Update to compute the new variables, including dir_prefix.
9495 Adjust dependencies.
9496 * src/output.c (prepare): Output them.
9497 * src/reader.c: Adjust to use gram_in, not finput.
9498 * src/scan-skel.l (@dir_prefix@): New.
9499
ad6a9b97
JMG
95002005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9501
9502 * lib/subpipe.c: New function end_of_output_subpipe() added
9503 to allow support for non-posix systems. This is a no-op function
9504 for posix systems.
9505
9506 * lib/subpipe.h: New function end_of_output_subpipe() added
9507 to allow support for non-posix systems. This is a no-op function
9508 for posix systems.
9509
9510 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
9511 handle the lack of pipe/fork functionality on non-posix systems.
9512
9513 * djgpp/Makefile.maint: DJGPP specific file.
9514
9515 * djgpp/README.in: DJGPP specific file.
9516
9517 * djgpp/config.bat: DJGPP specific configuration file.
9518
9519 * djgpp/config.sed: DJGPP specific configuration file.
9520
9521 * djgpp/config.site: DJGPP specific configuration file.
9522
9523 * djgpp/config_h.sed: DJGPP specific configuration file.
9524
9525 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
9526
9527 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
9528
fc695704
AD
95292005-10-02 Akim Demaille <akim@epita.fr>
9530
9531 * data/location.cc: New, extract from...
9532 * data/lalr1.cc: here.
9533 (location.hh): Include it after the user prologue, in case the
9534 filename type is defined by the user.
9535 Forward declation location and position before the pre-prologue.
9536 (yyresult_): Rename as...
9537 (yyresult): this, it's a local variable, not an attribute.
9538 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
9539
95402005-10-01 Akim Demaille <akim@epita.fr>
5215c87f
AD
9541
9542 * examples/extexi: Restore the #line generation.
9543
fb9712a9
AD
95442005-09-30 Akim Demaille <akim@epita.fr>,
9545 Alexandre Duret-Lutz <adl@gnu.org>
9546
9547 Move the token type and YYSTYPE in the parser class.
9548 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
9549 (parser::token): New, from the moved free definition of tokens.
9550 (parser::semantic_value): Now a full definition instead of an
9551 indirection to YYSTYPE.
9552 (b4_post_prologue): No longer included in the header file, but
9553 in the implementation file.
9554 * doc/bison.texi (C+ Language Interface): Update.
9555 * src/parse-gram.y: Support unary %define.
9556 * tests/actions.at: Define global_tokens_and_yystype for backward
9557 compatibility until we update the tests.
9558 * tests/calc.at: Idem.
9559 (first_line, first_column, last_line, last_column): Define for lalr1.cc
9560 to simplify the code.
9561
55f0c7b1
PE
95622005-09-29 Paul Eggert <eggert@cs.ucla.edu>
9563
9564 Port to SunOS 4.1.4, which lacks strtoul and strerror.
9565 Ah, the good old days! Problem reported by Peter Klein.
9566 * bootstrap (gnulib_modules): Add strerror, strtoul.
9567 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
9568 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
9569
fb9712a9 95702005-09-29 Akim Demaille <akim@epita.fr>
d4fb5e3c
AD
9571
9572 * data/c.m4 (b4_error_verbose_if): New.
9573 * data/lalr1.cc: Use it.
9574 (YYERROR_VERBOSE_IF): Remove.
9575 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
9576 parser members, replaced by...
9577 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
9578 local variables.
9579 (yysyntax_error_): Takes the state number as argument.
9580 (yyreduce_print_): Use the argument yyrule, not the former
9581 attribute yyn_.
9582
8a6f72f3
PE
95832005-09-26 Paul Eggert <eggert@cs.ucla.edu>
9584
9585 * bootstrap (gnulib_modules): Add verify.
9586 * lib/.cvsignore: Add verify.h.
9587 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
9588 * src/system.h (verify): Remove.
9589 Include verify.h instead.
9590 * src/tables.c (tables_generate): Use new API for 'verify'.
9591
0d50976f
PE
95922005-09-21 Paul Eggert <eggert@cs.ucla.edu>
9593
ebc3737e
PE
9594 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
9595 local variables whose names begin with 'yy'.
9596 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
9597 Trivial changes from Joel E. Denny.
9598
0d50976f
PE
9599 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
9600 it itself.
9601 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
9602 don't use alloca any more.
9603
9604 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
9605 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
62c4328e 9606 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
0d50976f
PE
9607 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
9608 to match yacc.c, to test more hosts.
9609
a05b79df
PE
96102005-09-20 Paul Eggert <eggert@cs.ucla.edu>
9611
55289366
PE
9612 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
9613 doesn't affect behavior.
9614 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
9615 Solaris, AIX, MSC.
9616 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
9617 This works a bit better with glibc, if user code has already included
9618 stdlib.h.
9619 * doc/bison.texinfo (Bison Parser): Document that users can't
9620 arbitrarily use malloc and free for other purposes. Document
9621 that <alloca.h> and <malloc.h> might be included.
9622 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
9623 user must declare alloca.
9624
a05b79df
PE
9625 * HACKING (release): Forwarn the Translation Project about
9626 stable releses.
9627
3ab2ca22
AD
96282005-09-20 Akim Demaille <akim@epita.fr>
9629
9630 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
9631
a9739e7c
PE
96322005-09-19 Paul Eggert <eggert@cs.ucla.edu>
9633
a702593e
PE
9634 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
9635 (YYSTACK_ALLOC_MAXIMUM): Use it.
9636 (yysyntax_error): New function.
9637 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
9638 multiple syntax errors are reported, and alloca is being used.
9639 Instead, reallocate buffers twice as big each time, so that
9640 we waste at most half the allocated memory. Start with a small
9641 (128-byte) buffer that will suffice in most cases anyway.
9642 Use yysyntax_error to do most of the work.
9643
9644 * doc/bison.texinfo (Error Reporting, Table of Symbols):
9645 yynerrs is the number of errors reported, not the number of
9646 errors encountered.
9647
a9739e7c
PE
9648 * tests/glr-regression.at (Duplicated user destructor for lookahead):
9649 Mark it as expected to fail.
9650 Cast result of malloc; problem reported by twlevo@xs4all.nl.
9651 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
9652 Don't start user-code symbols with "yy", to avoid name space problems.
9653
f479c6c6
AD
96542005-09-19 Akim Demaille <akim@epita.fr>
9655
9656 Remove the traits, failed experiment.
9657 It never proved useful, and anyway because of the current
9658 definition, it was not possible to have several specialization of
9659 this traits, making it useless.
9660 * data/lalr1.cc (yy:traits): Remove.
9661 Inline its definitions in the parser class.
9662
e2586f82
AD
96632005-09-19 Akim Demaille <akim@epita.fr>
9664
9665 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
9666 least Mac OSX with a /usr/local install of gettext.
9667
2e8cf949
AD
96682005-09-19 Akim Demaille <akim@epita.fr>
9669
9670 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
9671 and yytoken for similarity with the other skeletons.
9672
c7fb0b90
AD
96732005-09-19 Akim Demaille <akim@epita.fr>
9674
4e26c69e 9675 * NEWS, configure.ac: update version number to 2.1a.
c7fb0b90 9676
1bd0deda
PE
96772005-09-16 Paul Eggert <eggert@cs.ucla.edu>
9678
9679 * NEWS: Version 2.1.
9680
9681 * NEWS: Remove notice of yytname change, since it was never in an
9682 official release.
9683 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
9684 diagnostic.
9685 * src/output.c (prepare): Likewise.
9686 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
9687 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
9688 is not defined. This is an awful hack, but it's enough for now.
9689 All callers changed.
9690 * tests/glr-regression-at (make_value): Args are const pointers now,
9691 to avoid GCC warning.
9692 (Duplicated user destructor for lookahead): New test. Currently
9693 skipped. It fails on my host but I'm not sure it'll always fail.
9694
96952005-09-16 Akim Demaille <akim@epita.fr>
c1432f65
AD
9696
9697 * src/symtab.h (struct symbol): Declare the printer and destructor
9698 as const, to avoid accidental calls to free.
9699 (symbol_destructor_set, symbol_printer_set): Adjust.
9700 * src/symtab.c: Adjust.
9701
1bd0deda 97022005-09-16 Akim Demaille <akim@epita.fr>
cf147260
AD
9703
9704 * data/c.m4 (b4_token_enums): New.
9705 (b4_token_defines): Rename as...
9706 (b4_token_enums_defines): this.
9707 (b4_token_defines): New, output only the #defines.
9708 * data/yacc.c, data/glr.c: Adjust.
9709 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
9710 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
9711 as default values.
9712
dbcdae2d
AD
97132005-09-16 Akim Demaille <akim@epita.fr>
9714
9715 * data/lalr1.cc (yylex_): Remove, inline its code.
9716 (yyreport_syntax_error_): Remove, replaced by...
9717 (yysyntax_error_): this which returns a string and leaves to the
9718 caller the call to the users' error function.
9719 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
9720 Move from members of the parser object...
9721 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
9722 to local variables of the parse function.
9723
70d8f291
AD
97242005-09-16 Akim Demaille <akim@epita.fr>
9725
9726 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
9727 since it's in Bison's name space.
9728
b47dbebe
PE
97292005-09-15 Paul Eggert <eggert@cs.ucla.edu>
9730
ae199bf1
PE
9731 * data/glr.c (yyresolveValue): Add default case to pacify
9732 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
9733
b47dbebe
PE
9734 * NEWS: Document when yyparse started to return 2.
9735 * doc/bison.texinfo (Parser Function): Document when yyparse
9736 returns 2.
9737
9738 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
9739 (b4_filename_type): Renamed back from b4_file_name_type. All uses
9740 changed.
9741 (class position): file_name -> filename (reverting). All uses changed.
9742
97432005-09-14 Paul Eggert <eggert@cs.ucla.edu>
9744
9745 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
9746 do anything if $@ exists. This reverts part of the 2005-07-07
9747 patch.
9748
00292f66
PE
97492005-09-11 Paul Eggert <eggert@cs.ucla.edu>
9750
9751 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
9752 contains obsolete information and isn't worth distributing as a
9753 separate file anyway.
9754 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
9755 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
9756 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
9757 (yyparse): Abort if user code uses longjmp to throw an unexpected
9758 value.
9759
a420f962
PE
97602005-09-09 Paul Eggert <eggert@cs.ucla.edu>
9761
00292f66
PE
9762 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
9763 Suggested by twlevo@xs4all.nl.
9764
127287e9
PE
9765 * data/glr.c (YYCHK1): Do not assume YYE is in range.
9766 This avoids a diagnostic from gcc -Wswitch-enum.
9767 Problem reported by twlevo@xs4all.nl.
9768
a420f962
PE
9769 * doc/bison.texinfo: Don't use "filename", as per GNU coding
9770 standards. Use "file name" or "file" or "name", depending on
9771 the context.
9772 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
9773 not to hack/foo.tab.c.
9774 (Calc++ Top Level): 2nd arg of main is not const.
48b16bbc
PE
9775 * data/glr.c: b4_filename -> b4_file_name.
9776 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
9777 All uses changed.
9778 (class position): filename -> file_name. All uses changed.
9779 * data/yacc.c: b4_filename -> b4_file_name.
9780 * lib/bitset.h: filename -> file_name in local vars.
9781 * lib/bitset_stats.c: Likewise.
9782 * src/files.c: Likewise.
9783 * src/scan-skel.l ("@output ".*\n): Likewise.
9784 * src/files.c (file_name_split): Renamed from filename_split.
9785 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
a420f962
PE
9786
97872005-09-08 Paul Eggert <eggert@cs.ucla.edu>
9788
9789 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
9790 to accommodate latest gnulib.
9791
9792 * tests/glr-regression.at (Duplicate representation of merged trees):
9793 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
9794
9795 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
9796 needed.
9797
42a6501d
PE
97982005-08-26 Paul Eggert <eggert@cs.ucla.edu>
9799
9800 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
9801 All uses changed. Invoke user destructor after an error during a
9802 split parse (trivial change from Joel E. Denny).
9803
9804 * tests/glr-regression.at
9805 (User destructor after an error during a split parse): New test case.
9806 Problem reported by Joel E. Denny in:
9807 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
9808
ef9a1faf
PE
98092005-08-25 Paul Eggert <eggert@cs.ucla.edu>
9810
5b4aaf78
PE
9811 * README-cvs: Give URLs for recommended tools.
9812 Mention Gzip version problem, and bootstrapping issues.
9813 Remove troubleshooting section, as it's somewhat obsolete.
9814
b5240ba5
PE
9815 * bootstrap (no_cache): New var, to accommodate different wget
9816 variants. Use it instead of '-C off'. Problem reported by
9817 twlevo@xs4all.nl.
9818
ef9a1faf
PE
9819 * data/glr.c (yydestroyStackItem): New function.
9820 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
9821 debugging information. Problem reported by Joel E. Denny.
9822
e6efa9da
AD
98232005-08-25 Akim Demaille <akim@epita.fr>
9824
9825 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
9826
adc90f13
PE
98272005-08-24 Paul Eggert <eggert@cs.ucla.edu>
9828
9829 * data/glr.c (yyrecoverSyntaxError, yyreturn):
9830 Don't invoke destructor on unresolved entries.
9831 * tests/glr-regression.at
9832 (User destructor for unresolved GLR semantic value): New test case.
9833 Problem reported by Joel E. Denny in:
9834 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
9835
f9315de5
PE
98362005-08-21 Paul Eggert <eggert@cs.ucla.edu>
9837
15d29c1f
PE
9838 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
9839 Add strnlen.c.
9840 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
9841 lib-prefix.m4, po.m4.
9842
dd5f2af2
PE
9843 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
9844 in yydestruct diagnostic, since it might not be an error.
9845 Problem reported by Joel Denny near end of
9846 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
6250acbd 9847 * data/lalr1.cc (yyerturn): Likewise.
dd5f2af2
PE
9848 * data/yacc.c (yyreturn): Likewise.
9849 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
9850
9851 * src/files.c: Remove obsolete FIXME comment.
9852
9853 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
9854 with the other templates, and to fix bogus run-on messages such
9855 as the one reported at the end of
9856 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
9857 All callers changed to avoid the newline.
9858 (yyprocessOneStack): Output two lines rather than one, to accommodate
9859 the above change. This changes the debug output format slightly.
9860
f9315de5
PE
9861 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
9862 reported by Joel E. Denny in
9863 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
9864 (trivial change).
9865 * tests/glr-regression.at (Duplicate representation of merged trees):
9866 New test, from Joel E. Denny in:
9867 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
9868 * THANKS: Add Joel E. Denny.
9869
9870 * configure.ac (AC_INIT): Bump to 2.0c.
9871
04098407
PE
98722005-07-24 Paul Eggert <eggert@cs.ucla.edu>
9873
9874 * NEWS: Version 2.0b.
9875
ca5d2013
PE
9876 * Makefile.am (SUBDIRS): Put examples before tests, so that
9877 "make check" doesn't finish with "All 1 tests passed".
9878
3d54b576
PE
9879 * tests/regression.at (Token definitions): Don't rely on
9880 AT_PARSER_CHECK for data that contains backslashes. It currently
9881 uses 'echo', and 'echo' isn't portable if its argument contains
9882 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
9883 that the byte '\0xff' is not printable in the C locale; it is,
9884 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
9885 not printable, so use '\0x81' to test.
9886
d53ae497
PE
9887 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
9888 version of GCC, since the macro is used with non-GCC compilers.
9889
fc01665e
PE
9890 Fix core dump reported by Pablo De Napoli in
9891 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
9892 * tests/regression.at (Invalid inputs with {}): New test.
9893 * src/parse-gram.y (token_name): Translate type before using
9894 it as an index.
9895
04098407
PE
9896 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
9897 the user's name space. All uses changed to __attribute__
9898 ((__unused__)).
9899 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
9900 Add __attribute__ ((__noreturn__)).
9901
9902 * etc/clcommit: Remove. We weren't using it, and it failed
9903 "make maintainer-distcheck".
9904 * Makefile.maint: Merge from coreutils.
9905 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
9906 (syntax-check-rules): Change list of rules as described below.
9907 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
9908 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
9909 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
9910 (sc_trailing_space): New rules.
9911 (sc_xalloc_h_in_src): Remove.
9912 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
9913 (sc_space_tab, sc_error_exit_success, sc_changelog):
9914 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
9915 (makefile-check, po-check, author_mark_check):
9916 (makefile_path_separator_check, copyright-check):
9917 Use grep -n, to make it easier to find violations.
9918 Use CVS_LIST and CVS_LIST_EXCEPT.
9919 (header_regexp, h_re): Remove.
9920 (dd_c): New macro.
9921 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
9922 (my-distcheck): Use more-modern GCC flags.
9923 (signatures, %.asc): Remove.
9924 (rel-files, announcement): Remove signatures.
9925 Restore old updating code, even though we don't use it, so
9926 that we're the same as coreutils.
9927 (alpha, beta, major): Depend on news-date-check.
9928 Make the upload commands.
9929
9930 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
9931 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
9932 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
9933 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
9934 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
9935 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
9936 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
9937 * tests/sets.at: Likewise.
9938
9939 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
9940 we comment out the Autoconf version number.
9941 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
9942 it's error-prone and "make maintainer-distcheck" rejects it.
9943
9944 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
9945 Indent calls to "error" to pacify "make maintainer-distcheck",
9946 when the calls are not intended to be translated.
9947 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
9948
9949 * src/Makefile.am (DEFS): Use +=, to pacify
9950 "make maintainer-distcheck".
9951 (bison_SOURCES): Add scan-skel.h.
9952 (sc_tight_scope): New rule, from coreutils.
9953
9954 * src/files.c (src_extension, header_extension):
9955 Now static, not extern.
9956 * src/getargs.c (short_options): Likewise.
9957 * src/muscle_tab.c (muscle_table): Likewise.
9958 * src/parse-gram.y (current_class, current_type, current_prec):
9959 Likewise.
9960 * src/reader.c (grammar_end, previous_rule_end): Likewise.
9961 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
9962 * src/main.c (main): Cast bindtextdomain and textdomain calls to
9963 void, to avoid warning when NLS is disabled.
9964 * src/output.c: Include scan-skel.h.
9965 (scan_skel): Remove decl, since scan-skel.h does this.
9966 (output_skeleton):
9967 Indent calls to "error" to pacify "make maintainer-distcheck".
9968 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
9969 * src/reader.h (gram_end, gram_lineno): New decls to pacify
9970 "make maintainer-distcheck".
9971 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
9972 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
9973 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
9974 (skel_lex_destroy, scan_skel): Move these decls to...
9975 * src/scan-skel.h: New file.
9976 * src/uniqstr.c (uniqstr_assert):
9977 Indent calls to "error" to pacify "make maintainer-distcheck".
9978
9979 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
9980 not @VAR@.
9981
9982 * tests/torture.at: Revamp to avoid misuse of atoi that
9983 "make maintainer-distcheck" complained about.
9984
9985 * examples/extexi (message): Don't print a message more than once,
9986 and omit line-number decoration that makes Emacs compile think
9987 that informative messages are worth worrying about.
9988
99892005-07-22 Paul Eggert <eggert@cs.ucla.edu>
9990
9991 * configure.ac: Update version number.
9992
9993 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
9994 accidentally.
9995 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
9996 autogenerated by the maintainer.
9997 * examples/calc++/.cvsignore: Add *.yy.
9998
9999 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
10000 * lib/bitset_stats.c (bitset_stats_init): Likewise.
10001 * lib/bitsetv.c (bitsetv_alloc): Likewise.
10002
10003 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
10004
10005 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
10006 from maintainer-distcheck about casting the argument of 'free'.
10007
10008 * NEWS: Mention recent yytname changes.
10009 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
10010
10011 * bootstrap: For translations that have not yet been upgraded to
10012 the new runtime-po domain, prime the pump by extracting the
10013 relevant strings from the obsolete translations. This code can be
10014 removed once the bison-runtime domain has been translated by each
10015 team.
10016
10017 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
10018 now that token names are already quoted.
10019
10020 Fix problem reported by Anthony Heading.
10021 * data/glr.c (YYTOKEN_TABLE): New macro.
10022 (yytname): Define if YYTOKEN_TABLE.
10023 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
10024 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
10025 (YYERROR_VERBOSE): Define the same way the other skeletons do.
10026 * src/output.c (prepare_symbols): Output token_table_flag.
10027
0ffda363
PE
100282005-07-21 Paul Eggert <eggert@cs.ucla.edu>
10029
10030 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
10031 again if the first call fails.
10032
10033 * data/glr.c (yytnamerr): New function.
10034 (yyreportSyntaxError): Use it to dequote most string literals.
10035 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
10036 with other skeletons. All uses changed.
10037 (yytnameerr_): New function.
10038 (yyreport_syntax_error): Use it to dequote most string literals.
10039 * data/yacc.c (yytnamerr): New function.
10040 (yyerrlab): Use it to decode most string literals.
10041 * doc/bison.texinfo (Decl Summary, Calling Convention):
10042 Clarify quoting convention of yytname.
10043 * src/output.c (prepare_symbols): Quote all names. This undoes
10044 the 2005-04-17 change, which is now accomplished (mostly) via
10045 changes in the parsers as described above.
10046 * tests/regression.at (Token definitions, Web2c Actions):
10047 Undo most 2005-04-17 change here, too.
10048
100492005-07-20 Paul Eggert <eggert@cs.ucla.edu>
10050
10051 Fix more problems reported by twlevo@xs4all.nl.
10052 * tests/cxx-type.at: Don't pipe output of ./types through sed to
10053 remove trailing spaces. This loses the exit status of ./types,
10054 and isn't needed since ./types shouldn't be emitting trailing
10055 spaces.
10056 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
10057 as the stack isn't valid in that case.
10058
10059 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
10060 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
10061 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
10062 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
10063 is used.
10064 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
10065 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
10066 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
10067 Likewise.
10068
10069 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
10070 overly-picky compilers that reject 'char *foo = "bar";'.
10071
10072 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
10073 to FILE * parameter, not to stderr. This fixes a typo introduced
10074 in the 2005-07-12 change.
10075
10076 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
10077 warnings from GCC 4.
10078
10079 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
10080 (yyglrShiftDefer, yysplitStack):
10081 Remove unused parameters b4_pure_formals. All uses changed.
10082 (yyglrShift): Remove unused parameters b4_user_formals.
10083 All uses changed.
10084 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
10085
6100a9aa
PE
100862005-07-18 Paul Eggert <eggert@cs.ucla.edu>
10087
258b75ca
PE
10088 Destructor cleanups and regularization among the three skeletons.
10089 * NEWS: Document the behavior changes.
10090 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
10091 stack before failing, as the cleanup code will do it for us now.
10092 * data/lalr1.cc (yyerrlab): Likewise.
10093 * data/glr.c (yyparse): Pop everything off the stack before
10094 freeing it, so that destructors get called properly.
10095 * data/lalr1.cc (yyreturn): Likewise.
10096 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
10097 This is more consistent.
10098 * doc/bison.texinfo (Destructor Decl): Mention more reasons
10099 why destructors might be called. 1.875 -> 2.1.
10100 (Destructor Decl, Decl Summary, Table of Symbols):
10101 Some English-language cleanups for %destructor.
10102 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
10103 Add output line for destructor of start symbol.
10104 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
10105 because of that same extra output line.
10106
1a059451
PE
10107 * NEWS: Document minor wording changes in diagnostics of
10108 Bison-generated parsers.
10109 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
10110 Remove unused formals. All uses changed.
10111 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
10112 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
10113 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
10114 Rename yyoverflowab to yyexhaustedlab.
10115 When memory exhaustion occurs during syntax-error reporting,
10116 report it separately rather than in a single diagnostic; this
10117 eases translation.
10118 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
10119 (Memory Exhausted): Renamed from Parser Stack Overflow.
10120 Revamp wording slightly to prefer "memory exhaustion".
10121 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
10122
97460c78
PE
10123 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
10124
30757c8c
PE
10125 Add i18n support to the GLR skeleton. Partially fix the C++
10126 skeleton; a C++ expert needs to finish this. Remove debugging
10127 msgids; there's little point to having them translated, since they
10128 can be understood only by someone who can read the
10129 (English-language) source code.
10130
10131 Generate runtime-po/bison-runtime.pot automatically, so that we
10132 don't have to worry about garbage getting in that file. We'll
10133 make sure after the next official release that old msgids don't
10134 get lost. See
10135 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
10136
10137 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
10138 Now auto-generated.
10139 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
10140 Fix typos in explanations of the runtime file.
10141 * bootstrap: Change gettext keyword from YYI18N to YY_.
10142 Use standard Makefile.in.in in runtime-po, since we'll arrange
10143 for backward-compatible bison-runtime.po files in a different way.
10144 * data/glr.c (YY_): New macro, from yacc.c.
10145 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
10146 Translate messages intended for users.
10147 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
10148 the wording in the other skeletons. We don't know that the memory
10149 is virtual.
10150 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
10151 Use same method that yacc.c uses.
10152 Don't translate debugging messages.
10153 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
10154 it doesn't work (yet), and requires C++ expertise to fix.
10155 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
10156 Move defn to a more logical place, to be consistent with other
10157 skeletons.
10158 Don't translate debugging messages.
10159 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
10160 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
10161 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
10162 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
10163
ac8c5689
PE
10164 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
10165 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
10166 void, not int.
10167 * tests/glr-regression.at (Badly Collapsed GLR States):
10168 Likewise.
10169 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
10170 yylex should return 0 at EOF rather than aborting.
10171
6100a9aa
PE
10172 Improve tests for stack overflow in GLR parser.
10173 Problem reported by twlevo@xs4all.nl.
10174 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
10175 All uses removed.
10176 (yyStackOverflow): Just longjmp, but with value 2 so that caller
10177 can handle the problem.
10178 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
10179 (yyparse): New local variable yyresult to record the result.
10180 Use result of setjmp to set it, rather than storing itinto
10181 struct.
10182 (yyDone): Remove label.
10183 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
10184 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
10185 if YYABORT is used).
10186 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
10187 yyparse status; put status > 1 into diagnostic.
10188 Check that status==2 works.
10189 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
10190 Use exit status 3 for failure to open (which shouldn't happen).
10191
15f40952
PE
101922005-07-17 Paul Eggert <eggert@cs.ucla.edu>
10193
67fd79c4
PE
10194 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
10195 1 on syntax error; just let yyparse do its thing.
10196 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
10197 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
10198 (Exploding the Stack Size with Alloca):
10199 (Exploding the Stack Size with Malloc):
10200 Expect exit status 2, not 1, since the parser is supposed to blow
10201 its stack. Problem reported by twlevo@xs4all.nl.
10202
15f40952
PE
10203 * data/glr.c (yyparse): Don't assume that the initial calls
10204 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
10205 Print a stack-overflow message and fail instead.
10206 Initialize the line-number information before creating the stack,
10207 so that the stack-overflow message can report line zero safely.
10208
f32c66b5
PE
102092005-07-14 Paul Eggert <eggert@cs.ucla.edu>
10210
a22ff96f 10211 Fix problems reported by twlevo@xs4all.nl.
e2688cd9
PE
10212 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
10213 (yyuserMerge): Provide a default case if b4_mergers is empty.
10214 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
10215 * tests/glr-regression.at
10216 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
c70fdfcd 10217 Add casts to pacify C++ compilers.
1beb0b24
PE
10218 * tests/glr-regression.at (Improper merging of GLR delayed action
10219 sets): Declare yylex before using it.
f32c66b5 10220 * tests/Makefile.am (maintainer-check-g++): Fix a stray
a22ff96f
PE
10221 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
10222 test for valgrind; valgrind is independent of g++.
10223 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
10224 for compatibility with POSIX 1003.1-2001 (if running coreutils).
10225 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
10226 Use a destructor, so that we can expand the stack. Change
10227 YYSTYPE to char * so that we can free it. Cast result of malloc.
f32c66b5 10228
d741bd1b
PE
102292005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10230
10231 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
10232 a valgrind failure. Problem reported by twlevo@xs4all.nl.
10233
0410a6e0
PE
102342005-07-13 Paul Eggert <eggert@cs.ucla.edu>
10235
10236 * PACKAGING: New file, suggested by Bruno Haible and taken from
10237 similar wording in gettext's PACKAGING file.
10238 * NEWS: Mention PACKAGING.
10239 * Makefile.am (EXTRA_DIST): Add PACKAGING.
10240
f7ab6a50
PE
102412005-07-12 Paul Eggert <eggert@cs.ucla.edu>
10242
baf785db 10243 * NEWS: Document recent i18n improvements.
f7ab6a50
PE
10244 * bootstrap: Get runtime translations into runtime-po.
10245 Create runtime-po files automatically, if possible.
10246 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
10247 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
10248 does not infringe on the user's name space.
10249 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
10250 * doc/bison.texinfo (Internationalization): Revamp the English
10251 and Texinfo syntax a bit, to try to make it clearer.
10252 (Bison Options, Option Cross Key): Mention --print-localedir.
10253 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
10254 YYENABLE_NLS. Quote a bit more.
10255 * runtime-po/.cvsignore: New file.
10256 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
10257 * runtime-po/Rules-quot: Remove; now created by bootstrap.
10258 * runtime-po/quot.sed: Likewise.
10259 * runtime-po/boldquot.sed: Likewise.
10260 * runtime-po/en@quot.header: Likewise.
10261 * runtime-po/en@boldquot.header: Likewise.
10262 * runtime-po/insert-header.sin: Likewise.
10263 * runtime-po/remove-potcdate.sin: Likewise.
10264 * runtime-po/Makevars: Likewise.
10265 * runtime-po/LINGUAS: Likewise.
10266 * runtime-po/de.po: Likewise; we will rely on the translation project
10267 to maintain this, so "bootstrap" should get it.
0410a6e0 10268 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
f7ab6a50
PE
10269 its value.
10270 * src/main.c (main): Bind the bison-runtime domain, too.
10271
102722005-07-12 Bruno Haible <bruno@clisp.org>
10273
10274 * data/yacc.c: Include <libintl.h> when NLS is enabled.
10275 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
10276 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
10277 * runtime-po: New directory.
10278 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
10279 $(DOMAIN).pot-update rule, so that old messages are never dropped.
10280 * runtime-po/Rules-quot: New file, copied from po/.
10281 * runtime-po/quot.sed: Likewise.
10282 * runtime-po/boldquot.sed: Likewise.
10283 * runtime-po/en@quot.header: Likewise.
10284 * runtime-po/en@boldquot.header: Likewise.
10285 * runtime-po/insert-header.sin: Likewise.
10286 * runtime-po/remove-potcdate.sin: Likewise.
10287 * runtime-po/Makevars: New file.
10288 * runtime-po/POTFILES.in: New file.
10289 * runtime-po/LINGUAS: New file.
10290 * runtime-po/bison-runtime.pot: New file.
10291 * runtime-po/de.po: New file.
10292 * m4/bison.m4: New file.
10293 * Makefile.am (SUBDIRS): Add runtime-po.
10294 (aclocaldir, aclocal_DATA): New variables.
10295 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
10296 Define aclocaldir.
10297 * src/getargs.c (usage): Document --print-localedir option.
10298 (PRINT_LOCALEDIR_OPTION): New enum item.
10299 (long_options): Add --print-localedir option.
10300 (getargs): Handle --print-localedir option.
10301 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
10302 (Internationalization): New section.
10303
22dda0f0
AD
103042005-07-12 Akim Demaille <akim@epita.fr>
10305
10306 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
10307 for consistency with the rest of the code.
10308 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
10309 Add separators.
10310
82b248ad
AD
103112005-07-12 Akim Demaille <akim@epita.fr>
10312
10313 * src/parse-gram.y: Use %printer instead of YYPRINT.
10314
fa0e9314
AD
103152005-07-12 Akim Demaille <akim@epita.fr>
10316
867a3e00
AD
10317 * src/symtab.h, src/symtab.c (symbol_print): New.
10318 * src/symlist.h, src/symlist.c (symbol_list_print): New.
10319 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
10320
103212005-07-12 Akim Demaille <akim@epita.fr>
10322
10323 * data/glr.c (b4_syncline): Fix (swap) the definitions of
fa0e9314
AD
10324 b4_at_dollar and b4_dollar_dollar.
10325
e054b190
PE
103262005-07-11 Paul Eggert <eggert@cs.ucla.edu>
10327
10328 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
10329 and Pennello's paper.
10330
34160ec4
PE
103312005-07-09 Paul Eggert <eggert@cs.ucla.edu>
10332
407d4a75
PE
10333 * data/yacc.c (yyparse): Undo previous patch. Instead,
10334 set yylsp[0] and yyvsp[0] only if the initial action
10335 sets yylloc and yylval, respectively.
10336
34160ec4
PE
10337 * data/yacc.c (yyparse): In the initial action, set
10338 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
10339 This avoids the use of undefined variables if the initial
10340 action does not set yylloc and/or yylval.
10341
c3d5a4a7
PE
103422005-07-07 Paul Eggert <eggert@cs.ucla.edu>
10343
b34d96c1
PE
10344 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
10345 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
10346 Remove from CVS. These files are automatically generated.
10347 * examples/extexi: Clarify that this file is now part of Bison,
10348 not GNU M4, and that it works with any POSIX-compatible Awk.
10349 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
10350 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
10351 so that we also get calc++-parser.yy. Geneate it.
10352 Use $(AWK), not gawk, since any conforming Awk will do.
10353 Put comment before action, since older 'make' can't handle comment
10354 in action.
10355 $(BUILT_SOURCES): List all built sources, not just some of them.
10356 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
10357 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
10358 $($(calc_sources_generated)): Remove unnecessary test for existence
10359 of target. (This had a shell syntax error anyway; a stray "x".)
10360 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
10361 calc++-parser.yy.
10362 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
10363
c3d5a4a7
PE
10364 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
10365 implied by the other modules.
10366
828c373b
AD
103672005-07-06 Akim Demaille <akim@epita.fr>
10368
10369 Bind examples/calc++ to the package.
10370 * examples/calc++/Makefile: Remove, replaced by...
10371 * examples/calc++/Makefile.am: ... this new file.
10372 * examples/calc++/test: Remove input.
10373 * examples/calc++/compile: Remove.
10374 * examples/Makefile.am: New.
10375 * configure.ac, Makefile.am: Adjust.
10376 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
10377
63cb01d6
PE
103782005-07-05 Paul Eggert <eggert@cs.ucla.edu>
10379
fd2df2ed
PE
10380 * data/glr.c (yyFail): Drastically simplify; since the format argument
10381 never had any % directives, we can simply pass it to yyerror.
10382 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
10383 be modified later, as that is the usual style in glr.c.
10384 Problems reported by Paul Hilfinger.
10385
63cb01d6
PE
10386 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
10387 and size overflow errors.
10388 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
10389 in case the user prolog sets feature-test macros like _GNU_SOURCE.
10390 (YYSIZEMAX): New macro.
10391 (yystpcpy): New function, taken from yacc.c.
10392 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
10393 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
10394 so that we don't have to maintain their signatures.
10395 (yyFail): Check for buffer overflow, by using vsnprintf rather
10396 than vsprintf. Allocate a bigger buffer if possible.
10397 Report an error if buffer allocation fails.
10398 (yyStackOverflow): New function.
10399 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
10400 the initialization was successful. It might fail if storage was
10401 exhausted.
10402 (yyexpandGLRStack): Add more checks for storage allocation failure.
10403 Use yyStackOverflow to report failures.
10404 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
10405 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
10406 Don't assume stack number fits in int.
10407 (yysplitStack): Check for storage allocation failure.
10408 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
10409 can print diagnostics on storage allocation failure. All callers
10410 changed.
10411 (yyresolveValue): Use yybool for boolean.
10412 (yyreportSyntaxError): Check for size-calculation overflow.
10413 This code is taken from yacc.c.
10414 (yyparse): Check for storage allocation errors when allocating
10415 the initial stack.
10416
1c59e0a1
AD
104172005-07-05 Akim Demaille <akim@epita.fr>
10418
10419 Extract calc++ from the documentation.
10420 * doc/bison.texinfo (Calc++): Add the extraction marks.
10421 * examples/extexi: New, from the aborted GNU Programming 2E.
10422 Separate the different paragraph of a file with empty lines.
10423 * examples/Makefile: Use it to extract the whole calc++ example.
10424
8a0adb01
AD
104252005-06-24 Akim Demaille <akim@epita.fr>
10426
10427 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
10428 class typedefs.
10429
12545799
AD
104302005-06-22 Akim Demaille <akim@epita.fr>
10431
10432 * doc/bison.texinfo (C++ Language Interface): First stab.
10433 (C++ Parsers): Remove.
10434
99be0235
AD
104352005-06-22 Akim Demaille <akim@epita.fr>
10436
10437 * data/lalr1.cc (yylex_): Honor %lex-param.
10438
0ffd4fd1
AD
104392005-06-22 Akim Demaille <akim@epita.fr>
10440
10441 Start a set of simple examples.
10442 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
10443 * examples/calc++/calc++-driver.hh,
10444 * examples/calc++/calc++-parser.yy,
10445 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
10446 * examples/calc++/compile, examples/calc++/test: New.
10447
0925ebb4
PE
104482005-06-09 Paul Eggert <eggert@cs.ucla.edu>
10449
10450 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
10451 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
10452 which stems from the 2005-05-27 patch.
10453
43d3b664
PH
104542005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10455
10456 * data/glr.c: Modify treatment of unused parameters to permit use
10457 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
10458
3062864d
PE
104592005-05-30 Paul Eggert <eggert@cs.ucla.edu>
10460
10461 Fix infringement on user name space reported by Janos Zoltan Szabo.
10462 * data/yacc.c (yyparse): strlen -> yystrlen.
10463
989b5b8e
AD
104642005-05-30 Akim Demaille <akim@epita.fr>
10465
10466 * data/lalr1.cc (_): New.
10467 Translate the various messages.
10468
bedf57f5
PE
104692005-05-27 Paul Eggert <eggert@cs.ucla.edu>
10470
10471 Fix infringement on user name space reported by Bruno Haible.
10472 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
10473 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
10474 the user's name space.
10475 (alloca): Include <stdlib.h> to get it, if it's not built in.
10476 (YYMALLOC, YYFREE): Define only if needed.
10477 (malloc, free): Declare, but only if needed, as this infringes on
10478 the user name space.
10479
4d1801f1
PE
104802005-05-25 Paul Eggert <eggert@cs.ucla.edu>
10481
10482 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
10483 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
10484 with %d format.
10485 * lib/ebitset.c (min, max): Undef before defining.
10486 * lib/vbitset.c (min, max): Likewise.
10487 * lib/subpipe.c (create_subpipe): Save local variables in case
10488 vfork clobbers them.
10489
104902005-05-24 Bruno Haible <bruno@clisp.org>
10491
10492 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
10493 error message syntax used by gcc-4.0.
10494
b94a9e1e
PE
104952005-05-23 Paul Eggert <eggert@cs.ucla.edu>
10496
85ac3861
PE
10497 * README: Mention m4 1.4.3. Remove obsolete advice about
10498 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
10499
b94a9e1e
PE
10500 * bootstrap: Remove workaround for problem I encountered with
10501 gettext 0.14.1; it seems to be fixed now.
10502
51c30d21
PE
105032005-05-22 Paul Eggert <eggert@cs.ucla.edu>
10504
009ce67d
PE
10505 * NEWS: Version 2.0a.
10506
f2a97c62
PE
10507 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
10508 the previous change.
10509
c8775f93
PE
10510 Various maintainer cleanups.
10511 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
10512 conftest*, for benefit of CVS commands run at the same time as
10513 "configure". Add build-aux, since "bootstrap" now creates it and
10514 its subfiles.
10515 * Makefile.cfg (move_if_change): Remove.
10516 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
10517 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
10518 (po_repo, do-po-update, po-update, wget_files, get-targets):
10519 (config.guess-url_prefix, config.sub-url_prefix):
10520 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
10521 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
10522 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
10523 Remove.
10524 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
10525 this is now the recommended name.
10526 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
10527 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
10528 ylwrap. These files now go into build-aux.
10529 * config/move-if-change: Remove.
10530 * config/prev-version.txt: Bump from 1.75 to 2.0.
10531
3ea5f0ec
PE
10532 * bootstrap: Add stdio-safer, unistd-safer modules.
10533 Remove m4/glibc2.m4 (introduced by latest gnulib, but
10534 we don't need it).
10535 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
10536 fopen-safer.c, stdio-safer.h, unistd-safer.h.
10537 * lib/subpipe.c: Include "unistd-safer.h".
10538 (create_subpipe): Make sure all the newly-created
10539 file descriptors are > 2, so that diagnostics don't
10540 get sent down them (which might cause Bison to hang, in theory).
10541 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
10542 * src/files.c (xfopen): Use fopen_safer, not fopen.
10543
51c30d21
PE
10544 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
10545 yesterday's yacc.c fix.
10546
cea1469d
PE
105472005-05-21 Paul Eggert <eggert@cs.ucla.edu>
10548
3ea5f0ec
PE
10549 * data/glr.c, data/lalr1.cc: Update copyright date.
10550
cea1469d
PE
10551 Fix a destructor bug reported by Wolfgang Spraul in
10552 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
10553 * data/yacc.c (yyabortlab): Don't call destructor, and
10554 don't set yychar to EMPTY.
10555 (yyoverflowlab): Don't call destructor.
10556 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
10557 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
10558 since we no longer output the message "discarding lookahead token
10559 end of input ()".
10560
5e6f62f2
PH
105612005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10562
10563 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
10564 fix a small glitch in debugging output.
10565 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
10566 after YY_SYMBOL_PRINT where needed.
10567
10568 (struct yyGLRState): Add some comments.
10569 (struct yySemanticOption): Add some comments.
10570 (union yyGLRStackItem): Add comment.
10571
10572 (yymergeOptionSets): Correct this to properly perform the union,
10573 avoiding infinite reported by Michael Rosien.
10574 Update comment.
10575
10576 * tests/glr-regression.at: Add test for GLR merging error reported
10577 by M. Rosien.
cea1469d 10578
0fb669f9
PE
105792005-05-13 Paul Eggert <eggert@cs.ucla.edu>
10580
10581 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
10582 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
10583 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
10584 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
10585 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
10586 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
10587 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
10588 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
10589 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
10590 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
10591 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
10592 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
10593 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
10594 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
10595 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
10596 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
10597 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
10598 src/derives.h, src/files.c, src/files.h, src/getargs.c,
10599 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
10600 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
10601 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
10602 src/output.h, src/parse-gram.c, src/parse-gram.h,
10603 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
10604 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
10605 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
10606 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
10607 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
10608 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
10609 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
10610 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
10611 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
10612 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
10613 tests/reduce.at, tests/regression.at, tests/sets.at,
10614 tests/synclines.at, tests/testsuite.at, tests/torture.at:
10615 Update FSF postal mail address.
10616
51f4735e
PE
106172005-05-11 Paul Eggert <eggert@cs.ucla.edu>
10618
10619 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
10620 Problem reported by Ralf Menzel.
10621
80ce3401
PE
106222005-05-01 Paul Eggert <eggert@cs.ucla.edu>
10623
10624 * tests/actions.at: Test that stack overflow invokes destructors.
10625 From Marcus Holland-Moritz.
10626 * data/yacc.c (yyerrlab): Move the code that destroys the stack
10627 from here....
10628 (yyreturn): to here. That way, destructors are called properly
10629 even if the stack overflows, or the user calls YYACCEPT or
10630 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
10631 (yyoverflowlab): Destroy the lookahead.
10632
106332005-04-24 Paul Eggert <eggert@cs.ucla.edu>
10634
10635 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
10636
72f000b0
PE
106372005-04-17 Paul Eggert <eggert@cs.ucla.edu>
10638
10639 * NEWS: Bison-generated C parsers no longer quote literal strings
10640 associated with tokens.
10641 * src/output.c (prepare_symbols): Don't escape strings,
10642 since users don't want to see C escapes.
10643 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
10644 in diagnostics.
c19683bb 10645 * tests/input.at (Torturing the Scanner): Likewise.
72f000b0
PE
10646 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
10647
1094323f
PE
106482005-04-16 Paul Eggert <eggert@cs.ucla.edu>
10649
10650 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
10651 the data size is known to be too small and we can't increase it.
10652 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
10653
ca407bdf
PE
106542005-04-15 Paul Eggert <eggert@cs.ucla.edu>
10655
10656 * src/parse-gram.y: Include quotearg.h.
10657 (string_as_id): Quote $1 before using it as a key, since the
10658 lexer no longer quotes it for us.
10659 (string_content): Don't strip quotes, since lexer no longer
10660 quotes it for us.
10661 * src/scan-gram.l: Include quotearg.h.
10662 ("\""): Omit quote.
10663 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
10664 a key, since the rest of the lexer doesn't quote it.
10665 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
10666 * tests/regression.at (Token definitions): Check for backslashes
10667 in token strings.
10668
10669 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
10670 (YYSIZE_T): Define to unsigned long int when using an older compiler.
10671 (yyparse): Revamp code to generate long syntax error message, to
10672 make it easier to translate, and to avoid problems with arithmetic
10673 overflow. Change "virtual memory" to "memory" in diagnostic, since
10674 we don't know whether the memory is virtual.
10675
1ce59070
PE
106762005-04-13 Paul Eggert <eggert@cs.ucla.edu>
10677
10678 * NEWS: Bison-generated C parsers now use the _ macro to
10679 translate strings.
10680 * data/yacc.c (_) [!defined _]: New macro.
10681 All English strings wrapped inside this macro.
10682 * doc/bison.texinfo (Bison Parser): Document _.
10683 * po/POTFILES.in: Include src/parse-gram.c, since it now
10684 includes translateable strings that parse-gram.y doesn't.
10685
a749a695
PE
106862005-04-12 Paul Eggert <eggert@cs.ucla.edu>
10687
10688 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
10689 reverting the 2004-10-11 change to this function.
10690 (symbol_check_alias_consistency): Don't call symbol_type_set
10691 if the type name is already correct.
10692 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
10693
8fb1053b
PE
106942005-03-25 Paul Eggert <eggert@cs.ucla.edu>
10695
10696 * tests/regression.at (Token definitions): Don't use a token named
10697 c, as that generates a "#define c ..." that runs afoul of buggy
10698 stdlib.h that uses the identifier c as a member of struct
10699 drand48_data. Problem reported by Horst Wente.
10700
ff498c4a
PE
107012005-03-21 Paul Eggert <eggert@cs.ucla.edu>
10702
10703 * bootstrap: Change translation URL from
10704 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
10705 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
10706 redirection glitches. Problem reported by twlevo@xs4all.nl.
10707
65211d70
PE
107082005-03-20 Paul Eggert <eggert@cs.ucla.edu>
10709
10710 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
10711 after operands; POSIX says this isn't portable for the c99 command.
10712
9577fb1f
PE
107132005-03-18 Paul Eggert <eggert@cs.ucla.edu>
10714
10715 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
10716 immediately if a data overrun has occurred; this may help us track
10717 down what may be a spurious failure on MacOS.
10718
78b178f7
PE
107192005-03-17 Paul Eggert <eggert@cs.ucla.edu>
10720
a2599d0f
PE
10721 Respond to problems reported by twlevo@xs4all.nl.
10722
10723 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
10724
78b178f7
PE
10725 * src/vcg.h: Comment fix.
10726 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
10727 (G_CMAX): Change to -1 instead of INT_MAX.
10728
10729 * data/yacc.c (yyparse): Omit spaces before #line.
78b178f7 10730
7296e729
PE
107312005-03-15 Paul Eggert <eggert@cs.ucla.edu>
10732
10733 * src/tables.c (state_number_to_vector_number): Put it inside an
10734 "#if 0", since it's not currently used. Problem reported by
10735 Roland McGrath.
10736
05ac60f3
PE
107372005-03-06 Paul Eggert <eggert@cs.ucla.edu>
10738
10739 * src/output.c (escaped_output): Renamed from
10740 escaped_file_name_output, since we now use it for symbol tags as
10741 well. All uses changed.
10742 (symbol_destructors_output, symbol_printers_output):
10743 Escape symbol tags too.
10744 Problem reported by Matyas Forstner in
10745 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
10746
10747 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
10748 not needed.
10749 * src/output.c (user_actions_output, token_definitions_output,
10750 symbol_destructors_output, symbol_printers_output): Likewise.
10751 * src/reader.c (prologue_augment): Likewise.
10752 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
10753
10754 * src/vcg.c (output_edge): Don't quote linestyle arg.
10755 Problem reported by twlevo@xs4all.nl.
10756
7eb453ac
PE
107572005-02-28 Paul Eggert <eggert@cs.ucla.edu>
10758
10759 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
10760 example, reported by Derek M Jones. Also, make the example even
10761 more outrageous, to better illustrate how bad the problem is.
10762
4c04c52a
PE
107632005-02-24 Paul Eggert <eggert@cs.ucla.edu>
10764
10765 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
10766 putsym. Typo reported by Sebastian Piping.
10767
a61e1620
PE
107682005-02-23 Paul Eggert <eggert@cs.ucla.edu>
10769
10770 * doc/bison.texinfo (Language and Grammar): some -> same
10771 (Epilogue): int he -> in the
10772 Typos reported by Sebastian Piping via Justin Pence.
10773
9ec93868
PE
107742005-02-07 Paul Eggert <eggert@cs.ucla.edu>
10775
10776 * tests/glr-regression.at (Improper handling of embedded actions
10777 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
10778 embedded actions and $-N in GLR parsers", work around an Autoconf bug
10779 with dollar signs in test names.
10780 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
10781 for a similar reason.
10782
73ce7e7e
PE
107832005-01-28 Paul Eggert <eggert@cs.ucla.edu>
10784
10785 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
10786 wants to redefine G_VIEW.
10787
2e72b98e
PE
107882005-01-27 Paul Eggert <eggert@cs.ucla.edu>
10789
10790 * src/vcg.c (get_view_str): Remove case for normal_view.
10791 Problem reported by twlevo@xs4all.nl.
10792
e0d634e5
PE
107932005-01-24 Paul Eggert <eggert@cs.ucla.edu>
10794
ccf830a4
PE
10795 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
10796 Problem reported by twlevo@xs4all.nl.
10797
e0d634e5
PE
10798 * doc/bison.texinfo: Change @dircategory from "GNU programming
10799 tools" to "Software development". Requested by Richard Stallman
10800 via Karl Berry.
10801
7bbc8cb0
PE
108022005-01-23 Paul Eggert <eggert@cs.ucla.edu>
10803
10804 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
10805 Problem reported by twlevo@xs4all.nl.
10806
08b770bc
PE
108072005-01-21 Paul Eggert <eggert@cs.ucla.edu>
10808
10809 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
10810 keyword; it's not needed with modern compilers, and it doesn't
10811 affect correctness with older compilers. Suggested by
10812 twlevo@xs4all.nl.
10813
95f22ad2
PE
108142005-01-17 Paul Eggert <eggert@cs.ucla.edu>
10815
10816 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
10817 gcc -Wswitch-default.
10818 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
10819 * data/yacc.c (yyparse): Likewise.
10820
d229d15c
PE
108212005-01-12 Paul Eggert <eggert@cs.ucla.edu>
10822
10823 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
10824 already. Let config.h define any nonstandard values.
10825
ecadd90f
PE
108262005-01-10 Paul Eggert <eggert@cs.ucla.edu>
10827
10828 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
10829 for the benefit of slower hosts. Problem reported by
10830 Nelson H. F. Beebe.
10831
213744b5
PE
108322005-01-07 Paul Eggert <eggert@cs.ucla.edu>
10833
10834 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
10835 being defined and not used.
10836 * data/lalr1.cc (yyparse): Likewise.
10837 Use "if (false)" rather than "if (0)".
10838
249d3236
PE
108392005-01-05 Paul Eggert <eggert@cs.ucla.edu>
10840
10841 * TODO: Mention that we should allow NUL bytes in tokens.
10842
987cc1fb
PE
108432005-01-02 Paul Eggert <eggert@cs.ucla.edu>
10844
10845 * src/scan-skel.l (<<EOF>>): Don't close standard output.
10846 Problem reported by Hans Aberg.
10847
08fe02d9
PE
108482005-01-01 Paul Eggert <eggert@cs.ucla.edu>
10849
10850 * src/getargs.c (version): Happy new year; update overall
10851 program copyright date from 2004 to 2005.
10852
10853 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
10854 Problem reported by Hans Aberg.
10855 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
10856 (Output file names.): Add a test for the case when standard output
10857 is closed.
10858
010c0266
PE
108592004-12-26 Paul Eggert <eggert@cs.ucla.edu>
10860
10861 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
10862 to fix an oversight in the Bison 2.0 manual.
10863
da12206a
PE
108642004-12-25 Paul Eggert <eggert@cs.ucla.edu>
10865
10866 * NEWS: Version 2.0. Reformat the existing news items since
10867 1.875, so that related items are grouped together.
3a4734aa 10868 * configure.ac (AC_INIT): Bump version to 2.0.
da12206a
PE
10869 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
10870
c935d934
PE
10871 * tests/torture.at (Exploding the Stack Size with Alloca): Set
10872 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
10873 otherwise, we're not testing alloca. Unfortunately there's no
10874 simple way to consult HAVE_ALLOCA here.
10875
da12206a
PE
10876 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
10877 for yymsg, too.
10878
10879 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
10880 hand. This avoids a warning about comparing int to size_t when
10881 GCC warnings are enabled.
10882
0a2c5137
PE
108832004-12-22 Paul Eggert <eggert@cs.ucla.edu>
10884
d7e14fc0
PE
10885 * NEWS: Bison-generated parsers no longer default to using the
10886 alloca function (when available) to extend the parser stack, due
10887 to widespread problems in unchecked stack-overflow detection.
10888 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
10889 responsibility to set it to a positive value. This lets the user
10890 specify a value that is not a preprocessor constant.
10891 * data/yacc.c (YYMAXDEPTH): Likewise.
10892 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
10893 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
10894 to be a compile-time constant. However, explain the constraints on it.
10895 Also, explain the constraints on YYINITDEPTH.
10896 (Table of Symbols): Explain that alloca is no longer the default.
10897 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
10898 to 1.
10899
0a2c5137
PE
10900 * doc/bison.texinfo (Location Default Action): Mention that n must
10901 be zero when k is zero. Suggested by Frank Heckenbach.
10902
e019c247
AD
109032004-12-22 Akim Demaille <akim@epita.fr>
10904
10905 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
10906 (parser::state_type, parser::semantic_type, parser::location_type):
10907 Private, not public.
10908 (parser::parse): Return ints, not bool.
10909 Returning a bool introduces a problem: 0 corresponds to false, and
10910 it seems weird to return false on success. Returning true changes
10911 the conventions for yyparse.
10912 Alternatively we could return void and send an exception.
10913 There is no clear consensus (yet?).
10914 (state_stack, semantic_stack, location_stack): Rename as...
10915 (state_stack_type, semantic_stack_type, location_stack_type): these.
10916 Private, not public.
10917 * tests/c++.at: New.
10918 * tests/testsuite.at, tests/Makefile.am: Adjust.
10919
72731bb7
AD
109202004-12-21 Akim Demaille <akim@epita.fr>
10921
10922 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
10923
9a0d8bec
AD
109242004-12-21 Akim Demaille <akim@epita.fr>
10925
10926 Don't impose std::string for filenames.
10927
10928 * data/lalr1.cc (b4_filename_type): New.
10929 (position::filename): Use it.
10930 (parser.hh): Move the inclusion of stack.hh and location.hh below
10931 the user code, so that needed headers for the filename type can be
10932 included first.
72731bb7
AD
10933 Forward declare them before the user code.
10934 * tests/Makefile.am (check-local, installcheck-local): Pass
10935 TESTSUITEFLAGS to the TESTSUITE.
9a0d8bec 10936
99880de5
AD
109372004-12-20 Akim Demaille <akim@epita.fr>
10938
10939 Use more STL like names: my_class instead of MyClass.
10940
10941 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
10942 (SemanticStack, SemanticType, StateStack, StateType)
10943 (TokenNumberType, Stack, Slice, Traits, Parser::location)
10944 (Parser::value): Rename as...
10945 (location_stack, location_type, rhs_number_type, semantic_stack)
10946 (semantic_type, state_stack, state_type, token_number_type, stack)
10947 (slice, traits, parser::yylloc, parser::yylval): these.
10948
10949 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
10950
9bec482e
PE
109512004-12-19 Paul Eggert <eggert@cs.ucla.edu>
10952
10953 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
10954 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
10955
f6fbd3da
PE
109562004-12-17 Paul Eggert <eggert@cs.ucla.edu>
10957
10958 Remove uses of 'short int' and 'unsigned short int'. This raises
10959 some arbitrary limits. It uses more memory but nowadays that's
10960 not much of an issue.
10961
10962 This change does not affect the generated parsers; that's a different
10963 task, as some users will want to conserve memory there.
10964
10965 Ideally we should use size_t to represent all object counts, and
10966 something like ptrdiff_t to represent signed differences of object
10967 counts; but that will require more code-cleanup than I have the
10968 time to do right now.
10969
10970 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
10971 Use size_t, not int or short int, to count objects.
10972 * src/closure.c (nritemset, closure): Likewise.
10973 * src/closure.h (nritemset, closure): Likewise.
10974 * src/nullable.c (nullable_compute): Likewise.
10975 * src/print.c (print_core): Likewise.
10976 * src/print_graph.c (print_core): Likewise.
10977 * src/state.c (state_compare, state_hash): Likewise.
10978 * src/state.h (struct state): Likewise.
10979 * src/tables.c (default_goto, goto_actions): Likewise.
10980
10981 * src/gram.h (rule_number, rule): Use int, not short int.
10982 * src/output.c (prepare_rules): Likewise.
10983 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
10984 errs, reductions): Likewise.
10985 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
10986 Likewise.
10987 * src/tables.c (vector_number, tally, action_number,
10988 ACTION_NUMBER_MINIMUM): Likewise.
10989 * src/output.c (muscle_insert_short_int_table): Remove.
10990
efeed023
AD
109912004-12-17 Akim Demaille <akim@epita.fr>
10992
10993 * data/lalr1.cc: Extensive Doxygenation.
10994 (error_): Rename as...
10995 (error): this, since it is visible to the user.
10996 Adjust callers.
10997 (Parser::message): Now an automatic variable from...
10998 (Parser::yyreport_syntax_error_): here.
10999 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
11000 Parser::error.
11001 * tests/input.at: Escape $.
11002
bc82c5a5
PE
110032004-12-16 Paul Eggert <eggert@cs.ucla.edu>
11004
11005 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
11006 Parenthesize rhs to avoid obscure problems with mistakes like
11007 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
11008 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
11009 b4_rhs_location): Likewise.
11010 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
11011 b4_rhs_location): Likewise.
11012
fd19f271
AD
110132004-12-16 Akim Demaille <akim@epita.fr>
11014
11015 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
11016 yacc.c: be sure to stay within yycheck_.
11017 * tests/actions.at: Re-enable C++ tests.
11018
10454ea4
AD
110192004-12-16 Akim Demaille <akim@epita.fr>
11020
11021 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
11022 real.
11023
c5b95ccf
AD
110242004-12-16 Akim Demaille <akim@epita.fr>
11025
11026 Use #define to handle the %name-prefix.
11027
11028 * data/glr.c, data/yacc.c: Comment changes.
11029 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
11030 so that one can refer to yylex in the parser file, and have it
11031 renamed, as is the case with other skeletons.
11032
617a8f12
AD
110332004-12-16 Akim Demaille <akim@epita.fr>
11034
11035 Move lalr1.cc internals into yy*.
11036
11037 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
11038 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
11039 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
11040 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
11041 (empty_, final_, terror_, errcode_, ntokens_)
11042 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
11043 (looka_, ilooka_, error_range_, nerrs_):
11044 Rename as...
11045 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
11046 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
11047 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
11048 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
11049 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
11050 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
11051 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
11052 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
11053 these.
11054
1e547e6e
PE
110552004-12-15 Paul Eggert <eggert@cs.ucla.edu>
11056
11057 Fix some problems reported by twlevo at xs4all.
11058 * src/symtab.c (symbol_new): Report an error if the input grammar
11059 contains too many symbols. This is better than calling abort() later.
11060 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
11061 (struct node, struct graph):
11062 Rename member expand to stretch. All uses changed.
11063 (struct graph): Remove member layoutalgorithm. All uses removed.
11064 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
11065 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
11066 All uses changed.
11067 (N_STRETCH): Rename from N_EXPAND. All uses changed.
11068
735d6bd4
AD
110692004-12-15 Akim Demaille <akim@epita.fr>
11070
11071 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
11072 Add more Doxygen comments.
11073 (symprint_, stack_print_, reduce_print_, destruct_, pop)
11074 (report_syntax_error_, translate_): Rename as...
11075 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
11076 (yypop_, yyreport_syntax_error_, yytranslate_): this.
11077
2e1f5829
AD
110782004-12-15 Akim Demaille <akim@epita.fr>
11079
11080 * data/lalr1.cc (lex_): Rename as...
11081 (yylex_): this.
11082 Move the trace here.
11083 Take the %name-prefix into account.
11084 Reported by Alexandre Duret-Lutz.
11085
a3cb6248
AD
110862004-12-15 Akim Demaille <akim@epita.fr>
11087
11088 Simplify the C++ parser constructor.
11089
11090 * data/lalr1.cc (debug_): Rename as...
11091 (yydebug_): so that the parser's internals are always in the yy*
11092 pseudo namespace.
11093 Adjust uses.
11094 (b4_parse_param_decl): Remove the leading comma as it is now only
11095 called as unique argument list.
11096 (Parser::Parser): Remove the constructor accepting a location and
11097 an initial debugging level.
11098 Remove from the other ctor the argument for the debugging level.
11099 (debug_level_type, debug_level, set_debug_level): New.
11100
11101 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
11102 constructor calls.
11103
07fed891
AD
111042004-12-15 Akim Demaille <akim@epita.fr>
11105
11106 Remove b4_root related material: failure experiment
a3cb6248 11107 (which goal was to allow to derive from a class).
07fed891
AD
11108
11109 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
11110 definitions and uses.
11111
e603eaa5
PE
111122004-12-14 Paul Eggert <eggert@cs.ucla.edu>
11113
11114 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
11115 not 2, since it's not portable to subtract 1 from the start of an
11116 array. The new item 0 is never set or used. All uses changed.
11117
11118 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
11119 the default definition of YYLLOC_DEFAULT. Problem reported
11120 by Frank Heckenbach.
11121
fafb007d
PE
111222004-12-12 Paul Eggert <eggert@cs.ucla.edu>
11123
11124 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
11125 the normal case and one for the error case. Just use the
11126 first one uniformly. Problem reported by Frank Heckenbach.
11127 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
11128 use exactly the same macro in both places.
11129 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
11130 so that the normal-case YYRHSLOC works for the error case too.
11131 All uses changed.
11132 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
11133 (YYLLOC_DEFAULT): Use the same macro as glr.c.
11134 * doc/bison.texinfo (Location Default Action): Don't claim that
11135 we have an array of locations. Use the same macro for both glr
11136 and lalr parsers. Mention YYRHSLOC. Mention what happens when
11137 the index is 0.
11138
48814dcd
PE
111392004-12-10 Paul Eggert <eggert@cs.ucla.edu>
11140
a4e1a53b
PE
11141 * HACKING: Update email addresses to send announcements to.
11142
48814dcd
PE
11143 * configure.ac (AC_INIT): Bump version to 1.875f.
11144
337116ba
PE
111452004-12-10 Paul Eggert <eggert@cs.ucla.edu>
11146
11147 * NEWS: Version 1.875e.
11148 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
11149
11150 * src/scan-skel.l: Include "complain.h", for "fatal".
11151
11152 * src/relation.h (relation_print, relation_digraph):
11153 Relation sizes are of type relation_node, not size_t (this is
11154 merely a doc fix, since the two types are equivalent).
11155 (relation_transpose): Relation sizes are of type relation_node,
11156 not int.
11157 * src/relation.c: Likewise.
11158 (top, infinity): Now of type relation_node, not int.
11159 (traverse, relation_transpose): Use relation_node, not int.
11160
11161 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
11162 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
11163 (yyparse): Remove unused local introduced in 2004-10-25 patch.
11164
11165 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
68b082af 11166 specifying whether the test should be skipped. Use it tp
337116ba 11167 specify that the [%defines %skeleton "lalr1.cc"] tests currently
68b082af 11168 fail on some hosts, and should be skipped.
337116ba 11169
da2a7671
PE
111702004-12-08 Paul Eggert <eggert@cs.ucla.edu>
11171
11172 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
11173 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
11174 unless otherwise specified below.
11175
11176 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
11177 to allocate kernel_base, kernel_items, kernel_size, since
11178 they needn't be initialized to 0.
11179 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
11180 * src/closure.c (new_closure): Likewise, for itemset.
11181 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
11182 * src/lalr.c (set_goto_map): Likewise, for temp_map.
11183 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
11184 (build_relations): Likewise for edge, states1, includes.
11185 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
11186 * src/reader.c (packgram): Likewise, for ritem, rules.
11187 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
11188 * src/relation.c (relation_digraph): Likewise for VERTICES.
11189 (relation_transpose): Likewise for new_R, end_R.
11190 * src/symtab.c (symbols_token_translations_init): Likewise for
11191 token_translations.
11192 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
11193 (token_actions): Likewise for yydefact, actrow, conflrow,
11194 conflict_list.
11195 (save_column): Likewise for froms[symno], tos[symno].
11196 (goto_actions): Likewise for state_count.
11197 (pack_table): Likewise for base, pos, check.
11198 (tables_generate): Likewise for width.
11199
11200 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
11201 for initial core. Just have a separate core, so we needn't worry
11202 about whether kernel_size and kernel_base are initialized.
11203
11204 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
11205 kernel_size, kernel_items): Remove unnecessary initialization.
11206 * src/conflicts.c (conflicts): Likewise.
11207 * src/derives.c (derives): Likewise.
11208 * src/muscle_tablc (muscle_insert): Likewise.
11209 * src/relation.c (relation_digraph): Likewise.
11210 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
11211 conflrow, conflict_table, conflict_list, table, check):
11212 Likewise.
11213
11214 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
11215 This is because all callers pass unsigned int.
11216 * src/closure.h (new_closure): Likewise.
11217
11218 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
11219 (build_relations): Initialize includes[i] in all cases.
11220 * src/reader.c (packgram): Always initialize rules[ruleno].prec
11221 and rules[ruleno].precsym. Initialize members in order.
11222 * src/relation.c (relation_transpose): Always initialize new_R[i]
11223 and end_R[i].
11224 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
11225
11226 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
11227 conflict_list[0] was always 0, but now it isn't initialized.
11228
11229 * src/table.c (table_grow): When conflict_table grew, the grown
11230 area wasn't cleared. Fix this.
11231
11232 * lib/.cvsignore: Add strdup.c, strdup.h.
11233 * m4/.cvsignore: Add strdup.m4.
11234
00baeeac
PE
112352004-12-07 Paul Eggert <eggert@cs.ucla.edu>
11236
11237 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
11238 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
11239 GOTO_NUMBER_MAXIMUM, since we occasionally compute
11240 ngotos + 1 without checking for overflow.
11241 (build_relations): Use END_NODE, not -1, to denote end of edges.
11242 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
11243 build_relations): Use goto_number, not int, for goto numbers.
11244 * src/tables.c (save_column, default_goto): Likewise.
11245
be3d9d42
AD
112462004-11-23 Akim Demaille <akim@epita.fr>
11247
11248 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
11249 of #defining from yystype.
11250 Don't typedef yystype, C++ does not need it.
11251 This lets it possible to forward declare it as union.
11252
78e526d5
PE
112532004-11-23 Paul Eggert <eggert@cs.ucla.edu>
11254
11255 * bootstrap (gnulib_modules): Add extensions.
11256 Problem reported by Jim Meyering.
11257
afbb696d
PE
112582004-11-22 Paul Eggert <eggert@cs.ucla.edu>
11259
11260 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
11261 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
11262 src/system.h, src/tables.c: XFREE -> free, to accommodate
11263 recent change to gnulib xalloc.h.
78e526d5 11264 Problem reported by Jim Meyering.
afbb696d 11265
c1f8f16a
AD
112662004-11-17 Akim Demaille <akim@epita.fr>
11267
11268 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
11269
db7e5eb5 112702004-11-17 Akim Demaille <akim@epita.fr>,
9a1e9989
AD
11271 Alexandre Duret-Lutz <adl@gnu.org>
11272
11273 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
11274 changes.
11275 (YYCDEBUG): Adjust.
11276 Use it instead of cdebug_.
11277 (Parser::debug_stream, Parser::set_debug_stream): New.
11278 (Parser::symprint_): Define cdebug_ for temporary backward
11279 compatibility.
11280 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
11281 debug_stream ().
11282
68e11668
AD
112832004-11-17 Akim Demaille <akim@epita.fr>
11284
11285 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
11286 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
11287 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
11288 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
11289
97cbc73e
PE
112902004-10-27 Paul Eggert <eggert@cs.ucla.edu>
11291
11292 * data/glr.c (yyloc_default): Remove; not used.
11293 Problem reported by Frank Heckenbach.
11294
e342c3be
AD
112952004-10-25 Akim Demaille <akim@epita.fr>
11296
11297 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
11298 Introduce another definition to address simple location arrays.
11299 (yyGLRStack): New member: yyerror_range.
11300 (yyrecoverSyntaxError, yyparse): Update it.
11301 (yyrecoverSyntaxError): Use it when shifting the error token to
11302 have an accurate range, equivalent to the one computed by both
11303 yacc.c and lalr1.cc.
11304 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
11305 that column numbers start at column 0, as per GNU Coding
11306 Standards, the others tests, and the doc.
11307 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
11308 Adjust to the above change (first column is 0).
11309 And adjust the location of the "<error>", now covering the whole
11310 line.
11311
93602feb 113122004-10-22 Akim Demaille <akim@epita.fr>
04098407 11313 and Paul Eggert <eggert@cs.ucla.edu>
93602feb
PE
11314
11315 Remove some arbitrary limits on goto numbers and relations.
11316 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
11317 initial values, since they're never used.
11318 (set_goto_map): ngotos is now unsigned, so test for overflow
11319 by seeing whether it wraps around to zero.
11320 * src/lalr.h (goto_number): Now size_t, not short int.
11321 (GOTO_NUMBER_MAXIMUM): Remove.
11322 * src/relation.c (relation_print, traverse, relation_transpose):
11323 Check for END_NODE rather than looking at sign.
11324 * src/relation.h (END_NODE): New macro.
11325 (relation_node): Now size_t, not short int.
11326
dba08b04
PE
113272004-10-22 Paul Eggert <eggert@cs.ucla.edu>
11328
11329 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
11330 keyword, not an identifier. Problem reported by Baron Schwartz in
11331 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
11332
df09ef2e
AD
113332004-10-11 Akim Demaille <akim@epita.fr>
11334
11335 * src/symtab.c (symbol_check_alias_consistency): Also check
11336 type names, destructors, and printers.
11337 Reported by Alexandre Duret-Lutz.
11338 Recode the handling of associativity and precedence in terms
11339 of symbol_precedence_set.
11340 Accept no redeclaration at all, not even equal to the previous
11341 value.
11342 (redeclaration): New.
11343 Use it to factor redeclaration complaints.
11344 (symbol_make_alias): Don't set the type of the alias, let
11345 symbol_check_alias_consistency do it as for other features.
11346 * src/symtab.h (symbol): Add new member prec_location, and
11347 type_location.
11348 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
11349 * tests/input.at (Incompatible Aliases): New.
11350
146bc99d
PE
113512004-10-09 Paul Eggert <eggert@cs.ucla.edu>
11352
11353 .cvsignore fixes to accommodate gnulib changes,
11354 and the practice of naming build directories "_build".
11355 * .cvsignore: Add "_*". Sort.
11356 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
11357 * m4/.cvsignore: Add "*_gl.m4".
11358
e503aa60
AD
113592004-10-06 Akim Demaille <akim@epita.fr>
11360
11361 * src/parse-gram.y (add_param): Fix the truncation of trailing
11362 spaces.
11363
b4a20338
AD
113642004-10-05 Akim Demaille <akim@epita.fr>
11365
11366 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
11367 whether the reducion was empty or not. This leaves room to
11368 improve the use of YYLLOC_DEFAULT in such a case.
11369 lalr1.cc is still experimental, so changing this is acceptable.
11370 And finally, there are probably not many users who changed the
11371 handling of locations in GLR, so changing is admissible too.
11372
11373 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
11374 empty reduction, set @$ to an empty location ending the previously
11375 stacked symbol.
11376 Adjust uses to make sure the code is triggered on empty
11377 reductions.
11378 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
11379 expected output: empty reductions have empty locations.
11380
f85a5e6f
AD
113812004-09-29 Akim Demaille <akim@epita.fr>
11382
11383 * data/lalr1.cc: Move towards a more standard C++ coding style
11384 for templates: Class < T > -> Class<T>.
11385
b203fc2c
AD
113862004-09-29 Akim Demaille <akim@epita.fr>
11387
11388 * data/lalr1.cc: Reinstall the former ctor, for sake of
11389 compatibility, but warn it will be removed.
11390 Move towards a more standard C++ coding style (i.e., type *var ->
11391 type* var).
11392
5b7e1e73
PE
113932004-09-27 Paul Eggert <eggert@cs.ucla.edu>
11394
3fee967f
PE
11395 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
11396 since it's less likely to work if NULs are involved in the future.
5b7e1e73 11397
0dcca5c2
AD
113982004-09-27 Akim Demaille <akim@epita.fr>
11399
11400 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
11401
6dde1c82
AD
114022004-09-27 Akim Demaille <akim@epita.fr>
11403
11404 * data/lalr1.cc (b4_parse_param_decl_1): New.
b203fc2c 11405 (b4_parse_param_decl): Use it to have different names between attribute
6dde1c82
AD
11406 and argument names.
11407 (b4_cc_constructor_call): Likewise.
11408
b233d555
AD
114092004-09-24 Akim Demaille <akim@epita.fr>
11410
11411 * src/parse-gram.y (add_param): Strip the leading and trailing
11412 blanks from a formal argument declaration.
11413 (YY_LOCATION_PRINT): New.
11414
619404e3
AD
114152004-09-24 Akim Demaille <akim@epita.fr>
11416
11417 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
11418 after the location.
11419
dd8d9022
AD
114202004-09-24 Akim Demaille <akim@epita.fr>
11421
11422 * doc/bison.texinfo (Table of Symbols): Sort.
11423
0092f063
AD
114242004-09-21 Akim Demaille <akim@epita.fr>
11425
11426 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
11427 the useless parentheses.
11428 Suggested by Paul Eggert.
11429
451364ed
AD
114302004-09-20 Akim Demaille <akim@epita.fr>
11431
11432 Let the initial-action act on the look-ahead, and use it for the
11433 "initial push" (corresponding to an hypothetical beginning-of-file).
11434 And let lalr1.cc honor %initial-action.
11435
11436 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
11437 example.
11438 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
11439 (Parser::Parser): Remove the ctor that used to initialize it.
11440 (Parser::parse): Like in the other skeletons, issue the "starting
11441 parse" message before any action.
11442 Honor %initial-action.
11443 Initialize the stacks with the lookahead.
11444 * data/yacc.c: Let $$ and @$ in %initial-action designate the
11445 look-ahead.
11446 Push them in the stacks.
11447 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
11448
18d192f0
AD
114492004-09-20 Akim Demaille <akim@epita.fr>
11450
11451 * doc/bison.texinfo (Initial Action Decl): New.
11452
b8458aa5
AD
114532004-09-20 Akim Demaille <akim@epita.fr>
11454
11455 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
11456 clearer criterion to define it.
11457 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
11458 When reducing on an empty RHS, use the latest stacked location as
11459 location.
11460 yylloc is not always available.
11461 * data/glr.c: Likewise.
11462 Also, honor initial-actions.
11463
3fc16193
AD
114642004-09-20 Akim Demaille <akim@epita.fr>
11465
11466 * data/yacc.c (YY_LOCATION_PRINT): New.
11467 Define when we know YYLTYPE's structure, i.e., when the default
11468 YYLLOC_DEFAULT is used.
11469 * data/c.m4 (b4_yysymprint_generate): Use it.
11470 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
11471 value of the result.
11472 (error_start_): Replace with...
11473 (error_range_): this location array.
11474 This allows to replace code relying on the implementation of
11475 locations by portable code.
11476 * data/yacc.c (yylerrsp): Replace with...
11477 (yyerror_range): this.
11478 Every time a token is popped, update yyerror_range[0], to have an
11479 accurate location for the error token.
11480 * data/glr.c (YY_LOCATION_PRINT): New.
11481 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
11482 deference a pointer.
11483 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
11484 report the location in %printers.
11485
11486 * src/scan-skel.l: Instead of abort, report error messages to ease
11487 understanding skeleton scanning failures.
11488
ecfe33e7
AD
114892004-09-16 Akim Demaille <akim@epita.fr>
11490
11491 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
11492 (iterator, const_iterator): these, to be more in the C++ spirit.
11493 Also, return reverse iterators so that when displaying the stack
11494 we display its bottom first.
11495 (Parser::stack_print_, Parser::reduce_print_): Match the messages
11496 from yacc.c.
11497 We should probably use vector here though.
11498
1576d44d
AD
114992004-09-16 Akim Demaille <akim@epita.fr>
11500
11501 Have more complete shift traces.
11502
11503 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
11504 to report Shifts instead of ad hoc YYDPRINTF invocations,
11505 including for the error token.
11506 * data/lalr1.cc (symprint_): Output the location.
11507 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
11508 output the location within the %printer.
11509 Activate GLR tests, at least to make sure they compile properly.
11510 They still don't pass though.
11511 * tests/calc.at: Adjust expect verbose output, since now "Entering
11512 state..." is on a different line than the "Shifting" message.
11513
9c66f418
AD
115142004-09-08 Akim Demaille <akim@epita.fr>
11515
11516 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
11517 Bison directive from the Bison file to the invocation of this
11518 macro, so that these directives are passed to
11519 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
11520 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
11521 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
11522 the extra Bison directives instead of the whole series.
11523 Change the grammar so that there are recoverable errors, and
11524 unrecoverable errors. Now we can have the parser give up before
11525 consuming the whole input. As a result we now can observe that
11526 the lookahead is freed when needed.
11527 Change the parser source to parse argv[1] instead of a hard coded
11528 string.
11529 Simplify yylex, and give a value and location to EOF.
11530 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
11531 passed directives already coded in the file.
11532 Add some tests to check the location of "error".
11533 For some tests, the C++ parser is correct, and not yacc.c.
11534 For other tests, they provide different, but unsatisfying, values,
11535 so keep the C++ value so that at least one parser is "correct"
11536 according to the test suite.
11537 (Actions after errors): Remove, this is subsumed by the
11538 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
11539
52d5733f
AD
115402004-09-06 Akim Demaille <akim@epita.fr>
11541
11542 * data/lalr1.cc: Adjust the indentation of the labels.
04098407 11543 (Parser::pop): New.
52d5733f
AD
11544 Use it.
11545
a0e68930
AD
115462004-09-06 Akim Demaille <akim@epita.fr>
11547
11548 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
11549 argument, an informative message.
11550 Call YY_SYMBOL_PRINT.
11551 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
11552 * data/lalr1.cc (destruct_): Likewise.
11553 In addition, no longer depend on b4_yysymprint_generate and
11554 b4_yydestruct_generate to generate these functions, do it "by
11555 hand".
11556
e757bb10
AD
115572004-09-03 Akim Demaille <akim@epita.fr>
11558
11559 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
11560 invoked, yydestruct the lookahead.
11561 * tests/calc.at (Calculator $1): Update the expected lengths of
11562 traces: there is an added line for the discarded lookahead.
11563 * doc/bison.texinfo (Destructor Decl): Some rewording.
11564 Define "discarded" symbols.
11565
0fe1f06d
AD
115662004-09-02 Akim Demaille <akim@epita.fr>
11567
11568 * data/lalr1.cc (translate_, destruct_): No reason to be static.
11569
284acc8b
AD
115702004-09-02 Akim Demaille <akim@epita.fr>
11571
11572 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
11573 (YYDSYMPRINTF): Rename as...
11574 (YY_SYMBOL_PRINT): this.
11575 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
11576 two.
11577 Use it instead of direct symprint_ calls.
11578 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
11579 one.
11580
a5eb1ed2
AD
115812004-09-02 Akim Demaille <akim@epita.fr>
11582
b7c72fe1
AD
11583 * data/lalr1.cc (b4_yysymprint_generate): New.
11584 (symprint_): New member function, defined when YYDEBUG.
11585 Use it consistently instead of token/nterm debugging output by
11586 hand.
a5eb1ed2
AD
11587 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
11588 %printer calls to use cdebug_ when using lalr1.cc.
11589
417141dd
AD
115902004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
11591
11592 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
11593 with #ifdef YYDEBUG.
11594
2fa09258
AD
115952004-08-26 Akim Demaille <akim@epita.fr>
11596
11597 * doc/bison.texinfo (Implementing Loops): Rename as...
11598 (Implementing Gotos/Loops): this.
11599
9378b508
PE
116002004-08-13 Paul Eggert <eggert@cs.ucla.edu>
11601
11602 Adjust to latest gnulib.
11603 * bootstrap (gnulib_modules): Add xalloc-die.
11604 Set LC_ALL=C so that file names sort consistently.
11605 Prefer the gnulib copies of gettext.m4, glibc21.m4,
11606 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
11607 uintmax_t.m4, ulonglong.m4.
11608 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
11609 po.m4 since we are now using _gl.m4 instead.
11610
87a8ad5c
PE
116112004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
11612
11613 * src/scan-action.l: Remove. Scanning of semantic actions is
11614 handled in scan-gram.l.
11615
dca81a78
PE
116162004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
11617
11618 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
11619
11620 * src/location.h (struct): The file member is a uniqstr.
11621 (equal_boundaries): Use UNIQSTR_EQ for comparison.
11622
c9cbf7c5
PE
116232004-07-22 Paul Eggert <eggert@cs.ucla.edu>
11624
11625 Fix bug with non-%union parsers that have printers or destructors,
11626 which led to a Bison core dump. Reported by Peter Fales in
11627 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
2fa09258 11628
c9cbf7c5
PE
11629 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
11630 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
11631 not to our own type.
11632 * src/output.c (symbol_destructors_output, symbol_printers_output):
11633 Don't assume %union.
11634 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
11635 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
11636 UNION-FLAG. All callers changed.
11637 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
11638 Use type char, not unsigned int, when declaring an array of char;
11639 this lets us remove a cast.
11640 (Printers and Destructors): Add non-%union test cases.
11641
fa7e68c3
PE
116422004-06-21 Paul Eggert <eggert@cs.ucla.edu>
11643
11644 * doc/bison.texinfo: Minor editorial changes, mostly to the new
11645 GLR writeups. E.g., avoid frenchspacing and the future tense,
11646 change "lookahead" to "look-ahead", and change "wrt" to "with
11647 respect to".
2fa09258 11648
fa7e68c3
PE
116492004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11650
11651 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
11652 New sections, split off from the GLR Parsers section. Put the new
11653 Simple GLR Parser near the start of the GLR section, for clarity.
11654 Rewrite connective text.
11655
99a9344e
PE
116562004-06-21 Frank Heckenbach <frank@g-n-u.de>
11657
11658 * doc/bison.texinfo (Simple GLR Parsers): New section.
11659
8dd162d3
PE
116602004-06-21 Paul Eggert <eggert@cs.ucla.edu>
11661
11662 * NEWS, TODO, doc/bison.texinfo:
11663 Use "look-ahead" instead of "lookahead", to be consistent.
11664 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
11665 while we're fixing "look-ahead".
11666 * src/conflicts.c (shift_set): Renamed from shiftset.
11667 (look_ahead_set): Renamed from lookaheadset.
11668 * src/print.c: Likewise.
11669 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
11670 name for "lookahead".
11671 (report_types, usage): Likewise.
11672 * src/getargs.h (report_look_ahead_tokens): Renamed from
11673 report_lookaheads.
11674 * src/lalr.c (compute_look_ahead_tokens): Renamed from
11675 compute_lookaheads.
11676 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
11677 (look_ahead_tokens_print): Renamed from lookaheads_print.
11678 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
11679 state_rule_lookaheads_print.
11680 * src/state.h: Likewise.
11681 (reductions.look_ahead_tokens): Renamed from lookaheads.
11682 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
11683 AT_DATA_LOOKAHEADS_GRAMMAR.
11684
57a90331
PE
116852004-06-03 Paul Eggert <eggert@cs.ucla.edu>
11686
11687 * README: Update location of patched M4 distribution.
11688
8ed3234a
PE
116892004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
11690
11691 Don't assume the C++ compiler takes the same arguments as the C compiler
11692 (trivial change).
11693 * configure.ac (O0CXXFLAGS): New var.
11694 * tests/atlocal.in (CXXFLAGS): Use it.
11695
07971983
PE
116962004-05-29 Paul Eggert <eggert@cs.ucla.edu>
11697
11698 Fix some "make check" problems with C++ reported by
11699 Albert Chin-A-Young for Tru64 C++ in this thread:
11700 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
11701
11702 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
11703 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11704 Output to a .cc file for C++, not to a .c file.
11705 * tests/calc.at (AT_CHECK_CALC): Likewise.
11706 * tests/regression.at (AT_CHECK_DANCER): Likewise.
11707 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
11708
29058652
PE
117092004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
11710
11711 * tests/calc.at, tests/actions.at: Workaround for SGI
11712 C++ compiler. (trivial change)
11713
62cb8a99
PE
117142004-05-27 Paul Eggert <eggert@cs.ucla.edu>
11715
fd418816
PE
11716 Spent a few hours checking out which prerequisite versions the
11717 current sources actually require. I went all the way back to
11718 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
11719 a seemingly endless set of combinations of versions more recent
11720 than that. The bottom line is that the current sources require
11721 fairly recent versions of the build tools, and it'll be some work
11722 to change this.
11723 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
11724 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
11725 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
11726 Add comments explaining why those particular versions are
11727 currently needed.
2fa09258 11728
62cb8a99
PE
11729 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
11730 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
161a71f3 11731 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
62cb8a99
PE
11732
11733 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
11734 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
11735
caa52c10
PE
117362004-05-26 Paul Eggert <eggert@cs.ucla.edu>
11737
11738 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
11739 0.11.5. Suggested by Bruno Haible.
11740 * bootstrap: Remove gettext version checking.
11741
11742 * doc/bison.texinfo (Decl Summary): Also mention that %union
11743 can depend on prerequisite types. Problem reported by Tim
11744 Van Holder.
11745
4bfd5e4e
PE
117462004-05-25 Paul Eggert <eggert@cs.ucla.edu>
11747
2cef3017
PE
11748 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
11749 * README-alpha: Don't tell people not to package this.
11750
b9c85d5c
PE
11751 * bootstrap: Don't assume $(...) works; use `...` instead.
11752 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
11753 gettext better.
11754
4bfd5e4e
PE
11755 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
11756 put into the -d output file, and mention what to do if YYSTYPE is
11757 defined as a macro.
11758
6a36ff94
PE
117592004-05-24 Paul Eggert <eggert@cs.ucla.edu>
11760
6712933e
PE
11761 Undo change made earlier today: it caused autopoint to not bring
11762 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
11763 autopoint's.
11764
11765 * bootstrap: Check that gettext version matches what's in
11766 configure.ac. Warn users to ignore robots.txt ERROR 404.
11767 * bootstrap: Undo today's earlier change (logged below).
11768 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
b9c85d5c 11769
6a36ff94
PE
11770 The gettext version checking is causing more trouble than it's
11771 curing; remove it. Problem reported by Paul Hilfinger.
11772
11773 * bootstrap: Issue a warning that one can expect a message
11774 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
11775 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
11776
209ea708
PE
117772004-05-23 Paul Eggert <eggert@cs.ucla.edu>
11778
11779 Ensure that the C++ compiler used for testing actually works on a
11780 simple test program; if not, skip the C++-related tests. Problem
11781 reported by Vin Shelton in:
161a71f3 11782 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
209ea708
PE
11783
11784 * m4/cxx.m4: New file.
11785 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
11786 * tests/atlocal.in (BISON_CXX_WORKS): Add.
11787 * tests/local.at (AT_COMPILE_CXX): Use it.
11788
41ca2549
PE
117892004-05-21 Paul Eggert <eggert@cs.ucla.edu>
11790
383e69dc
PE
11791 * data/glr.c (yylloc): Output this macro even if locations are not
11792 being generated, as the GLR parser needs it even in that case.
11793 Problem reported by Troy A. Johnson
11794 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
11795
41ca2549
PE
11796 * configure.ac (AC_INIT): Update to 1.875e.
11797
e476c87d
PE
117982004-05-21 Paul Eggert <eggert@cs.ucla.edu>
11799
11800 * NEWS: Version 1.875d.
11801 * configure.ac (AC_INIT): Likewise.
11802 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
11803
11804 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
11805 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
11806 lalr1.cc runs afoul of the first, and the last two are no longer
11807 supported by GCC 3.4.0.
11808 * README: Mention GNU m4 1.4 or later; mention m4 patches.
11809 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
11810
233a88ad
PE
118112004-05-06 Paul Eggert <eggert@cs.ucla.edu>
11812
11813 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
11814 unsigned int, for compatibility with latest gnulib hash module.
11815 * src/state.c (state_hash, state_hasher): Likewise.
11816 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
11817 * src/uniqstr.c (hash_uniqstr): Likewise.
e476c87d 11818
12ffdd28
PE
118192004-05-03 Paul Eggert <eggert@cs.ucla.edu>
11820
11821 * NEWS: Unescaped newlines are no longer allowed in char & strings.
11822
11823 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
11824 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
11825 character and string literals.
11826 (unexpected_end): New function.
11827 (unexpected_eof): Use it.
11828 (unexpected_newline): New function.
11829 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
11830 actions.
e476c87d 11831
12ffdd28
PE
11832 * NEWS: Document %expect-rr.
11833
11834 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
11835 Fix typo by replacing $1 with $option.
11836 Remove more 'intl'-related files.
9668e2be 11837 Don't DEFUN AM_INTL_SUBDIR twice.
12ffdd28
PE
11838
11839 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
11840 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
11841 strtoul.c.
11842 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
11843 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
11844 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
11845 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
11846 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
11847 * src/.cvsignore: Add *.output.
11848
11849 * src/parse-gram.y: Put copyright notice inside %{ %} so it
11850 gets copied to the output file.
e476c87d 11851
1f65350a
PE
118522004-04-28 Paul Eggert <eggert@twinsun.com>
11853
11854 Get files from the gnulib and po repositories, instead of relying
11855 on them being in our CVS. Upgrade to latest versions of gnulib
11856 and Automake.
11857
11858 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
11859 * bootstrap: Bootstrap from gnulib and po repositories.
11860 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
11861 * README-cvs: Document these changes. Remove version numbers from
11862 mentions of build tools, since they change so often. Mention Flex.
11863
11864 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
11865 (gl_USE_SYSTEM_EXTENSIONS): Add.
12ffdd28
PE
11866 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
11867 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
1f65350a 11868 does this for us.
12ffdd28
PE
11869 (AC_ISC_POSIX): Remove; we no longer support this
11870 ancient OS, as it gets in the way of latest Autoconf & gnulib.
1f65350a
PE
11871 (AC_HEADER_STDC): Remove: we now assume C89 or better.
11872 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
11873 Do not check for C89 headers, except for locale.h which is used
11874 by the Yacc library and must port to K&R hosts.
11875 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
11876 Do not check for C89 functions, except for setlocale which is
11877 used by the Yacc library.
11878 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
11879 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
11880 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
11881 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
11882 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
11883 AM_GNU_GETTEXT): Remove; now done by:
11884 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
11885 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
11886 for us.
11887
11888 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
11889 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
11890 Define to empty, as gnulib.mk will do the rest for us.
11891 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
11892 for us.
11893 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
11894 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
11895
11896 * src/files.c: Include gnulib's xstrndup.h.
11897
11898 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
11899 (REALLOC): Use xnrealloc, for likewise.
11900 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
11901 (strnlen, memrchr): Remove decls; functions no longer used.
11902 Include <stpcpy.h>.
11903
11904 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
11905 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
11906 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
11907 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
11908 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
11909 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
11910 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
11911 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
11912 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
11913 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
11914 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
11915 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
11916 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
11917 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
11918 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
11919 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
11920 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
11921 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
11922 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
11923 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
11924 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
11925 Remove, as these files are now generated automatically
11926 by bootstrap or automake.
11927
11928 * po/ChangeLog: Remove: all but one entry was a duplicate
11929 of this file, and I moved that 2000-11-02 entry here.
11930
11931 * config/.cvsignore: Add Makefile, depcomp, install-sh.
11932 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
11933 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
11934 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
11935 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
11936 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
11937 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
11938 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
11939 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
11940 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
11941 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
11942 xstrndup.h.
11943 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
11944 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
11945 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
11946 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
11947 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
11948 * src/.cvsignore: Remove *_.c.
11949
11950
11951 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
11952 support it. (The latest stable gzip doesn't.)
11953
119542004-04-27 Paul Eggert <eggert@twinsun.com>
11955
11956 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
11957 case, as stos_ is now used by destructors due to the 2004-02-09
11958 change.
11959
11960 Remove more K&R C support.
11961 * lib/libiberty.y (PARAMS): Remove. All uses removed.
11962 * lib/subpipe.c (errno): Remove decl.
11963 Include <stdlib.h> unconditionally.
11964 (EXIT_FAILURE): Remove macro.
11965 * src/complain.c (vfprintf, strerror): Remove.
11966 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
11967 unconditionally.
11968 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
11969 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
11970 (strchr, strspn, memchr): Remove decls.
11971 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
11972 unconditionally. Do not declare perror.
11973 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
11974 unconditionally.
11975
11976 * src/complain.c (_): Remove useless defn, as system.h defines this.
11977
11978 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
11979 with latest obstack.h.
11980 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
11981 to procedure types, as obstack.h now does that for us.
11982 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
11983
11984 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
11985 so that this include file can stand alone.
11986 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
11987 does this now. Include subpipe.h first after config.h, to
11988 test whether it can stand alone.
11989
11990 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
11991 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
11992 unused declaration.
11993
11994 * tests/synclines.at (%union synch line): Put a dummy member in
11995 the union, because empty unions aren't allowed in C. Caught
11996 by GCC 3.4.0.
11997
4f16766c
PE
119982004-04-13 Jim Meyering <jim@meyering.net>
11999
12000 * src/conflicts.c (conflicts_print): Correct format string typo:
12001 use `%%' to produce literal `%'. (trivial change)
12002
779e7ceb
PE
120032004-03-30 Paul Eggert <eggert@twinsun.com>
12004
12005 * src/getargs.c (version): Update copyright year to 2004.
12006
12007 * data/c.m4 (b4_int_type): Use 'short int' rather than
12008 'short', and similarly for 'long', 'unsigned', etc.
12009 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
12010 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
12011 yy_yypstack, yydumpstack): Likewise.
12012 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
12013 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
12014 Likewise.
12015 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
12016 yy_stack_print, yyparse): Likewise.
12017 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
12018 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
12019 * lib/bitset.c (bitset_print): Likewise.
12020 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
12021 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
12022 * lib/bitsetv.c (bitsetv_dump): Likewise.
12023 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
12024 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
12025 Likewise.
12026 * src/LR0.c (allocate_itemsets): Likewise.
12027 * src/gram.h (rule_number, rule): Likewise.
12028 * src/lalr.h (goto_number): Likewise.
12029 * src/nullable.c (nullable_compute): Likewise.
12030 * src/output.c (prepare_rules): Likewise.
12031 * src/relation.c (relation_print, relation_digraph): Likewise.
12032 * src/relation.h (relation_node): Likewise.
12033 * src/state.h (state_number, transitions, errs, reductions,
12034 struct state): Likewise.
12035 * src/symtab.h (symbol_number, struct symbol): Likewise.
12036 * src/tables.c (vector_number, tally, action_number,
12037 default_goto, goto_actions): Likewise.
12038 * tests/existing.at (GNU Cim Grammar): Likewise.
12039 * tests/regression.at (Web2c Actions): Likewise.
12040
12041 * src/output.c (muscle_insert_short_int_table): Renamed from
12042 muscle_insert_short_table. All uses changed.
12043
d6328241
PH
120442004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
12045
12046 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
12047 (declaration): Replace expected_conflicts with expected_sr_conflicts.
12048 Add %expect-rr rule.
4f16766c 12049
d6328241
PH
12050 * src/scan-gram.l: Recognize %expect-rr.
12051
4f16766c 12052 * src/conflicts.h (expected_sr_conflicts): Rename from
d6328241 12053 expected_conflicts.
4f16766c 12054 (expected_rr_conflicts): Declare.
d6328241
PH
12055
12056 * src/conflicts.c (expected_sr_conflicts): Rename from
12057 expected_conflicts.
12058 (expected_rr_conflicts): Define.
12059 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
12060 for GLR parsers.
12061 Use expected_sr_conflicts in place of expected_conflicts.
12062 Warn if expected_rr_conflicts used in non-GLR parser.
4f16766c 12063
d6328241 12064 * doc/bison.texinfo: Add documentation for %expect-rr.
4f16766c 12065
1452af69
PE
120662004-03-08 Paul Eggert <eggert@gnu.org>
12067
12068 Add support for hex token numbers. Suggested by Odd Arild Olsen in
161a71f3 12069 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
1452af69
PE
12070
12071 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
12072 in lalr1.cc.
12073 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
12074 * src/scan-gram.l (scan_integer): New function.
12075 ({int}): Use it.
12076 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
12077 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
12078 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
12079 Say "long int", not "long", for uniformity with GNU style.
12080
006d217d
PE
120812004-02-25 Paul Eggert <eggert@twinsun.com>
12082
12083 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
12084 compilers. This fixes a problem with Intel's C++ compiler being
12085 chatty, reported by Guido Trentalancia in
161a71f3 12086 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
006d217d 12087
c2729758
ADL
120882004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
12089
12090 Support %destructor and merge error locations in lalr1.cc.
12091
12092 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
12093 (Parser::stos_): Define unconditionally.
12094 (Parser::destruct_): New method. Generate its body with
12095 b4_yydestruct_generate.
12096 (Parser::error_start_): New attribute.
12097 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
12098 token which are discarded.
12099 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
12100 error_start_ when erroneous token are discarded.
12101 (Parser::parse) <yyerrlab1>: Compute the location of the error
12102 token so that it covers all the discarded tokens.
12103 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
12104 it can be called with `%skeleton "lalr1.cc"', and do that.
12105
dd0e0635
PE
121062004-02-02 Paul Eggert <eggert@twinsun.com>
12107
12108 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
12109 $(top_srcdir)/lib and ../lib. This fixes a bug reported
12110 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
12111 There's no need to mention top_builddir since Automake does that
12112 for us.
12113 (INCLUDES): Remove, as Automake says it's obsolescent.
12114 Contents migrated into AM_CPPFLAGS as described above.
12115 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
12116
121172004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
12118
12119 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
12120 (yyreportSyntaxError): Handle case where lookahead token is
12121 YYEMPTY.
12122
be16239b
PH
121232004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12124
12125 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
12126 resulting parsers are compilable with C++.
12127
5fa90832
PE
121282003-12-23 Paul Eggert <eggert@twinsun.com>
12129
12130 * config/depcomp, config/install-sh: Sync with Automake 1.8.
12131 * src/output.c (output_skeleton): Rename local var.
12132 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
12133 Bison tokens, as this runs afoul of the 2003-10-07 change that
12134 disallowed NUL bytes in character constants or string literals.
12135
12136 * tests/local.at: Require Autoconf 2.59's Autotest.
12137 * tests/testsuite.at: Don't include local.at, since we now assume
12138 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
12139 including it.
12140 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
12141 multiple inclusion warnings.
dd0e0635 12142
b165c324
AD
121432003-12-02 Akim Demaille <akim@epita.fr>
12144
12145 * doc/bison.texinfo (How Can I Reset the Parser): More about start
12146 conditions.
12147 From Bruno Haible.
12148
26e06a21
ADL
121492003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
12150
12151 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
12152
92ac3705
PE
121532003-10-07 Paul Eggert <eggert@twinsun.com>
12154
6a5ecb38
PE
12155 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
12156 if testsuite doesn't exist.
12157
92ac3705
PE
12158 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
12159 literals, unfortunately.
12160 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
12161 Complain about NUL bytes in character constants or string literals.
12162
91d2c560
PE
121632003-10-05 Paul Eggert <eggert@twinsun.com>
12164
12165 * NEWS: Don't document %no-default-prec, as it's still
12166 too experimental.
12167 * doc/bison.texinfo: Document %no-default-prec only if
12168 the defaultprec flag is set. Normally it's not.
12169
0cc3da3a
PE
121702003-10-04 Paul Eggert <eggert@twinsun.com>
12171
12172 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
12173 non-modifiable lvalue, instead of a modifiable one.
12174 * doc/bison.texinfo (Actions): Document that $$ can
12175 be assigned to. Do not claim that $$ and $N are
12176 array element references: user code should not rely on this.
12177
22fccf95
PE
121782003-10-01 Paul Eggert <eggert@twinsun.com>
12179
12180 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
12181 (grammar_declaration): Use it.
12182 * src/scan-gram.l: New token %no-default-prec.
12183 * tests/conflicts.at: Revamp tests to use %no-default-prec.
12184 * NEWS, doc/bison.texinfo: Document the above.
12185
fc8f2965
AD
121862003-10-01 Akim Demaille <akim@epita.fr>
12187
12188 VCG no longer supports long_straight_phase.
12189
12190 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
12191 * src/print_graph.c (print_graph): Adjust.
12192
39a06c25
PE
121932003-09-30 Frank Heckenbach <frank@g-n-u.de>
12194 and Paul Eggert <eggert@twinsun.com>
12195
12196 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
12197 Table of Symbols): Document %default-prec.
12198 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
12199 (grammar_declaration): Set default_prec on %default-prec.
12200 * src/scan-gram.l (%default-prec): New token.
12201 * src/reader.h (default_prec): New flag.
12202 * src/reader.c: Likewise.
12203 (packgram): Handle it.
12204 * tests/conflicts.at (%default-prec without %prec,
12205 %default-prec with %prec, %default-prec 1): New tests.
fc8f2965 12206
39a06c25
PE
122072003-09-30 Paul Eggert <eggert@twinsun.com>
12208
12209 * tests/testsuite.at: Include local.at, not input.at, fixing
12210 a typo in the 2003-08-25 patch.
12211
62b6aef9
AD
122122003-08-27 Akim Demaille <akim@epita.fr>
12213
12214 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
12215 GCC warnings.
12216
89e1cc61
AD
122172003-08-26 Akim Demaille <akim@epita.fr>
12218
12219 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
12220 "<\#" to avoid magic from Gnus when posting parts of this script.
12221
a08460b0
AD
122222003-08-26 Akim Demaille <akim@epita.fr>
12223
12224 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
12225 (Parser::parse): here.
12226 Adjust: nerrs and errstatus is now replaced by...
12227 (Parser::nerrs_, Parser::errstatus_): New.
12228
603f1cfd
AD
122292003-08-25 Akim Demaille <akim@epita.fr>
12230
12231 * config/announce-gen, Makefile.cfg: New.
12232 * Makefile.am: Adjust.
12233 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
12234 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
12235
cd3684cf
AD
122362003-08-25 Akim Demaille <akim@epita.fr>
12237
12238 When reducing initial empty rules, Bison parser read an initial
12239 location that is not defined. This results in garbage, and that
12240 affects Bison's own parser. Therefore we need (i) to extend Bison
12241 to support a means to initialize this location, and (ii) to use
12242 this CVS Bison to fix CVS Bison's parser.
12243
12244 * src/reader.h, reader.c (epilogue_augment): Remove, replace
12245 with...
12246 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
12247 * src/parse-gram.y: Adjust.
12248 (%initial-action): New.
12249 (%error-verbose): Since we require CVS Bison, there is no reason
12250 not to use it.
12251 * src/scan-gram.l: Adjust.
12252 * src/Makefile.am (YACC): New, to make sure we use our own parser.
12253 * data/yacc.c (yyparse): Use b4_initial_action.
12254
4e03e201
AD
122552003-08-25 Akim Demaille <akim@epita.fr>
12256
12257 * doc/bison.texinfo: Don't promote stdout for error messages.
12258
8c182d05
AD
122592003-08-25 Akim Demaille <akim@epita.fr>
12260
12261 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
12262 From Alexandre Duret-Lutz.
12263
6a60c4cf
PE
122642003-08-25 Akim Demaille <akim@epita.fr>
12265
12266 Version 1.875c.
12267
25f66e1a
AD
122682003-08-25 Akim Demaille <akim@epita.fr>
12269
12270 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
12271 Use them.
12272
5348bfbe
AD
122732003-08-25 Akim Demaille <akim@epita.fr>
12274
12275 * data/lalr1.cc (Parser::reduce_print_): New.
12276 Use it.
12277
47301314
AD
122782003-08-25 Akim Demaille <akim@epita.fr>
12279
12280 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
12281 error recovery loops. This patch is based on
161a71f3 12282 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
47301314
AD
12283 Also, augment the similarity between lalr1.cc and yacc.c.
12284 Note: the locations of error recovery rules are not correct yet.
12285
12286 * data/lalr1.cc: Comment changes to augment the similarity between
12287 lalr1.cc and yacc.c.
12288 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
12289 (yyerrlab1): Remove, but where it used to be (now the bottom part of
12290 yyerrlab), when hitting EOF, pop the whole stack here instead of
12291 merely falling thru the default error handling mechanism.
12292 (yyerrorlab): New label, with the old contents of YYERROR,
12293 plus the following change: pop the stack of rhs corresponding
12294 to the production that invoked YYERROR. That is how Yacc
12295 behaves (required by POSIX).
12296 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
12297 fail.
12298
1f7a61ff
AD
122992003-08-25 Akim Demaille <akim@epita.fr>
12300
12301 Tune local.at so that people can "autom4te -l autotest calc.at -o
12302 calc" for instance, to extract a sub test suite.
12303
12304 * tests/testsuite.at: Move the initialization, Autotest version
12305 requirement, and AT_TESTED invocation into...
12306 * tests/local.at: here.
12307 * tests/testsuite.at: Include it for compatibility with Autoconf
12308 2.57.
12309 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
12310 be ignore.
12311
327b5b56
PE
123122003-08-04 Paul Eggert <eggert@twinsun.com>
12313
12314 Rework code slightly to avoid gcc -Wtraditional warnings.
12315 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
12316 The returned value is now stored in *YY0. All callers changed.
12317 * src/output.c (merge_output): Adjust to the above change.
12318
0051e3ed
PE
123192003-07-26 Paul Eggert <eggert@twinsun.com>
12320
12321 * data/glr.c (YYASSERT): New macro.
12322 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
12323 yyresolveStates, yyprocessOneStack):
12324 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
12325 Derived from a suggestion by Frank Heckenbach.
1f7a61ff 12326
137437c6
PE
123272003-07-25 Paul Eggert <eggert@twinsun.com>
12328
5b620e06
PE
12329 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
12330 for portability to K&R C (after ansi2knr, presumably). See
161a71f3 12331 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5b620e06
PE
12332 by Frank Heckenbach, though I have omitted the structure-initialization
12333 part of his glr-knr.diff patch since I recall that the Portable
12334 C Compiler didn't require that change.
12335
137437c6
PE
12336 Let the user specify how to allocate and free memory.
12337 Derived from a suggestion by Frank Heckenbach in
161a71f3 12338 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
137437c6
PE
12339 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
12340 All uses of free, malloc, realloc changed to use these macros,
12341 and unnecessary casts removed.
12342 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
12343
ddb85ca5
PE
123442003-07-06 Matthias Mann <MatthiasMann@gmx.de>
12345
12346 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
12347 use s.empty() rather than s == "" to test for empty string; see
161a71f3 12348 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
ddb85ca5
PE
12349 (trivial change)
12350
39910e09
AD
123512003-06-25 Akim Demaille <akim@epita.fr>
12352
12353 * config/depcomp, config/install-sh: Update from masters.
12354
0ae99356
PE
123552003-06-20 Paul Eggert <eggert@twinsun.com>
12356
12357 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
12358 and return properly parenthesized result.
12359 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
12360 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
12361 Remove unnecessary parentheses from uses.
12362 * doc/bison.texinfo (Location Default Action): Describe the
12363 conventions for parentheses.
12364
cd05d13c
PE
123652003-06-19 Paul Eggert <eggert@twinsun.com>
12366
81fd08ca
PE
12367 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
12368 yyreportTree): Do not assume that size_t is the same width as int,
12369 when printing sizes. Print sizes using an unsigned format.
12370 Problem reported by Frank Heckenbach in
161a71f3 12371 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
4dcf140b 12372
cd05d13c
PE
12373 Port to Forte Developer 7 C compiler.
12374 * data/glr.c (struct YYLTYPE): If locations are not being used,
12375 declare a single dummy member, as empty structs do not conform
12376 to the C standard.
12377 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
12378 the Forte Developer 7 C compiler complains that end-of-loop
12379 code is not reached.
12380
4dcf140b
PE
123812003-06-17 Paul Eggert <eggert@twinsun.com>
12382
12383 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
12384 avoid warnings from picky compilers about redefinition of PARAMS.
12385
8dd76bee
PE
123862003-06-17 Paul Eggert <eggert@twinsun.com>
12387
12388 Version 1.875b.
12389
12390 * NEWS: Document 1.875b.
12391
12392 * lib/bbitset.h: Do not include config.h; that's the includer's job.
12393 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
12394 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
12395 Don't use 'index' in comments, as it's a builtin fn on some hosts.
12396 * lib/bitset_stats.c: Include gettext.h unconditionally, as
12397 per recent gettext manual's suggestion.
12398 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
12399 Use prototypes, not old-style definitions.
12400 * lib/lbitset.c (lbitset_unused_clear): Likewise.
12401 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
12402 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
12403 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
12404 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
12405 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
12406 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
12407 vbitset_or_and_cmp, vbitset_copy): Likewise.
12408
12409 * lib/libiberty.h: Do not include config.h; that's the includer's job.
12410 Do not include <stdlib.h>.
12411 (PARAMS): Define unconditionally for C89.
12412 (ATTRIBUTE_NORETURN): Remove.
12413 (ATTRIBUTE_UNUSED): Define unconditionally.
12414
12415 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
161a71f3 12416 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
8dd76bee
PE
12417 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
12418 * lib/vbitset.c, lib/vbitset.h: New files.
12419 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
12420 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
12421 from libbitset.
12422
12423 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
12424 `How Can I Reset @code{yyparse}', since texinfo does not allow
12425 arbitrary @ in node names.
12426
12427 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
12428 shouldn't be needed according to the gettext 0.12.1 documentation
12429 but which seem to be needed anyway: codeset.m4 glibc21.m4
f8e8262e 12430 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
8dd76bee 12431 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
f8e8262e 12432 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
cd05d13c 12433
8dd76bee
PE
12434 * lib/.cvsignore: Add stdbool.h.
12435 * m4/.cvsignore: Add nls.m4, po.m4.
12436
12437 Upgrade to CVS gnulib.
12438 * stdbool_.h: File renamed from stdbool.h.in.
12439 * configure.ac (AM_STDBOOL_H): Invoke this instead of
12440 AC_HEADER_STDBOOL.
12441 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
12442 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
12443 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
12444 (MOSTLYCLEANFILES): New var.
12445 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
12446 (stdbool.h): New rule.
12447 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
12448 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
12449 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
12450 m4/quote.m4: Upgrade to today's gnulib.
12451
12452 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
12453 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
12454 the tests right now.
12455 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
12456 yyerror are declared before use; C99 requires this.
12457
25005f6a
PH
124582003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12459
12460 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
12461 first.
12462 (yyrecoverSyntaxError): Correct the logic for setting and testing
12463 yyerrState.
12464 Correct comment on handling EOF.
12465 Allow states with only a default reduction, rather than failing
8dd76bee 12466 (I can't quite reconstruct why these were not allowed before).
25005f6a 12467
137437c6 12468 Fixes to avoid problem that $-N rules in GLR parsers can cause
25005f6a 12469 buffer overruns, corrupting state.
8dd76bee
PE
12470
12471 * src/output.c (prepare_rules): Output max_left_semantic_context
25005f6a
PH
12472 definition.
12473 * src/reader.h (max_left_semantic_context): New variable declaration.
12474 * src/scan-gram.l (max_left_semantic_context): Define.
12475 (handle_action_dollar): Update max_left_semantic_context.
12476 * data/glr.c (YYMAXLEFT): New definition.
12477 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
12478 (yyresolveAction): Ditto.
12479
12480 Fixes to problems with location handling in GLR parsers reported by
12481 Frank Heckenbach (2003/06/05).
12482
12483 * data/glr.c (YYLTYPE): Make trivial if locations not used.
12484 (YYRHSLOC): Add parentheses, and define only if locations used.
12485 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
12486 locations not used.
12487 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
12488 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8dd76bee 12489
25005f6a
PH
12490 * tests/cxx-type.at: Exercise location information; update tests
12491 to differentiate output with and without locations.
8dd76bee 12492 Remove forward declarations of yylex and yyerror---caused errors
25005f6a
PH
12493 because default YYLTYPE not yet defined.
12494 Change semantic actions to compute strings, rather than printing
12495 them directly (to test proper passing of semantics values). Change
12496 output to prefix notation and update test data and expected results.
12497 (yylex): Track locations.
12498 (stmtMerge): Return value rather than printing, and include arguments
12499 in value.
8dd76bee 12500
711f40b7
PE
125012003-06-03 Paul Eggert <eggert@twinsun.com>
12502
12503 Avoid warnings generated by GCC 2.95.4 when Bison is
12504 configured with --enable-gcc-warnings.
12505 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
12506 yy::]b4_parser_class_name[::translate_,
12507 yy::Stack::operator[] (unsigned),
12508 yy::Stack::operator[] (unsigned) const,
12509 yy::Slice::operator[] (unsigned),
12510 yy::Slice::operator[] (unsigned) const):
12511 Rename local vars to avoid warnings.
12512 * tests/glr-regression.at (Improper handling of embedded actions
12513 and $-N in GLR parsers): Remove unused local variable from yylex.
12514 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
12515 (void) as arg when not pure, since we now assume C89 when building
12516 Bison. Pacify GCC by using parameter.
12517
ac695f7d
PE
125182003-06-02 Paul Eggert <eggert@twinsun.com>
12519
12520 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
12521 yy::Location::lines, yy::Location::columns): Rename arguments
12522 to avoid shadowing; this removes a warning generated by GCC 3.3.
12523
26ec81e0
PE
125242003-06-01 Paul Eggert <eggert@twinsun.com>
12525
12526 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
12527 to g++, as GCC 3.3 complains if you do it.
12528 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
12529 everything that WARNING_CFLAGS has, except omit warnings
12530 not suitable for C++.
12531 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
12532 * tests/atlocal.in (CXXFLAGS): New var.
12533 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
12534
12535 Fix a GLR parser bug I reported in February; see
161a71f3 12536 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
26ec81e0
PE
12537 The problem was that GLR parsers did not conform to the C standard,
12538 because actions like { $1 = $2 + $3; } expanded to expressions
12539 that invoked YYFILL in separate subexpressions, and YYFILL assigned
12540 to a local variable. The C standard says that expressions
12541 like (var = f ()) + (var = f ()) have undefined behavior.
12542 Another problem was that GCC sometimes issues warnings that
12543 yyfill and its parameters are unused.
12544
12545 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
12546 as possibly unused.
12547 (yyfill): New function.
12548 (YYFILL): Use it.
12549 (yyuserAction): Change type of yynormal to bool, so that it matches
12550 the new yyfill signature. Mark it as possibly unused.
12551
12552
12553 Follow up on a bug I reported in February, where a Bison-generated
12554 parser can loop. Provide a test case and a fix for yacc.c. I
12555 don't have a fix for lalr1.cc or for glr.c, unfortunately.
12556 The original bug report is in:
161a71f3 12557 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
26ec81e0
PE
12558
12559 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
12560 macro's size was becoming unwieldy.
12561 (yyerrlab): Do not discard an empty lookahead symbol, as this
12562 might destroy garbage.
12563 (yyerrorlab): New label, with the old contents of YYERROR,
12564 plus the following change: pop the stack of rhs corresponding
12565 to the production that invoked YYERROR. That is how Yacc
12566 behaves, and POSIX requires this behavior.
12567 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
12568 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
12569 Define 'alarm' to do nothing if unistd.h is not available.
12570 Add a new rule "exp: '-' error;" to test the above change to
12571 data/yacc.c. Use 'alarm' to abort any test taking longer than
12572 10 seconds, as it's probably looping.
12573 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
12574 Also, the new yacc.c generates two fewer diagnostics for an
12575 existing test.
12576
d0829076
PE
125772003-05-24 Paul Eggert <eggert@twinsun.com>
12578
c6ae27df
PE
12579 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
12580 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
12581 This fixes a problem reported by John Bowman when the Compaq/HP
12582 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
12583 -ansi -Wall -gall).
12584 * data/yacc.c (union yyalloc): Likewise.
12585 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
26ec81e0 12586
d0829076
PE
12587 Switch from 'int' to 'bool' where that makes sense.
12588
12589 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
12590 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
12591 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
12592 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
12593 Return or accept bool, not int. All callers changed.
12594 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
12595 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
12596 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
12597 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
12598 bitset_or_and_cmp_): Likewise.
12599 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
12600 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
12601 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
12602 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
12603 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
12604 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
12605 bitset_stats_or_and_cmp): Likewise.
12606 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
12607 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
12608 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
12609 ebitset_xor_cmp): Likewise.
12610 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
12611 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
12612 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
12613 lbitset_xor_cmp): Likewise.
12614 * lib/bbitset.h: Include <stdbool.h>.
12615 (struct bitset_vtable): The following members now return bool, not
12616 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
12617 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
12618 or_and_cmp).
12619 * src/conflicts.c (count_rr_conflicts): Likewise.
12620 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
12621 All uses changed.
12622 * lib/ebitset.c (ebitset_obstack_init): Likewise.
12623 * lib/lbitset.c (lbitset_obstack_init): Likewise.
12624 * src/getargs.c (debug_flag, defines_flag, locations_flag,
12625 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
12626 graph_flag): Likewise.
12627 * src/getargs.h (debug_flag, defines_flag, locations_flag,
12628 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
12629 graph_flag): Likewise.
12630 * src/output.c (error_verbose): Likewise.
12631 * src/output.h (error_verbose): Likewise.
12632 * src/reader.c (start_flag, typed): Likewise.
12633 * src/reader.h (typed): Likewise.
12634 * src/getargs.c (LOCATIONS_OPTION): New constant.
12635 (long_options, getargs): Use it.
12636 * src/lalr.c (build_relations): Use bool, not int.
12637 * src/nullable.c (nullable_compute): Likewise.
12638 * src/print.c (print_reductions): Likewise.
12639 * src/tables.c (action_row, pack_vector): Likewise.
12640 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
12641 * src/output.c (prepare): Use it.
12642 * src/output.c (token_definitions_output,
12643 symbol_destructors_output, symbol_destructors_output): Use string,
12644 not boolean integer, to keep track of whether to output separator.
12645 * src/print_graph.c (print_core): Likewise.
12646 * src/state.c (state_rule_lookaheads_print): Likewise.
12647
12648 * config/install-sh: Sync from automake 1.7.5.
12649
6b2584b7
PE
126502003-05-14 Paul Eggert <eggert@twinsun.com>
12651
12652 * src/parse-gram.y (rules_or_grammar_declaration): Require a
12653 semicolon after a grammar declaration, in the interest of possible
12654 future changes to the Bison input language.
12655 Do not allow a stray semicolon at the start of the grammar.
12656 (rhses.1): Allow one or more semicolons after any rule, including
12657 just before "|" as required by POSIX.
12658 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
12659 grammar.
12660
caf37a36
ADL
126612003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
12662
12663 %parse-param support for lalr1.cc.
12664
12665 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
12666 b4_cc_constructor_calls, b4_cc_constructor_call,
12667 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
12668 definitions.
12669 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
12670 parse-param arguments.
12671 (yy::b4_parser_class_name): Declare instance variables to
12672 hold parse-param arguments.
12673 * tests/calc.at: s/value/semantic_value/ because value clashes
12674 with a member of yy::b4_parser_class_name. Adjust C++ code
12675 to handle %parse-param. Enable %parse-param test in C++.
12676
3ab37077
PE
126772003-05-12 Paul Eggert <eggert@twinsun.com>
12678
12679 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
12680 English a bit. Fix fclose typo. Change "const char" to "char
12681 const", and use ANSI C rather than K&R for "main". Suggest
12682 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
12683 and suggest yy_switch_to_buffer.
12684
126852003-05-05 Paul Eggert <eggert@twinsun.com>
163ab321
PE
12686
12687 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
12688 C89. This avoids a diagnostic on compilers that define __STDC__
12689 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
161a71f3 12690 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
163ab321 12691
e743727f
PE
126922003-05-03 Paul Eggert <eggert@twinsun.com>
12693
12694 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
12695 Do not overrun array bounds.
12696 This should fix a bug reported today by Olatunji Oluwabukunmi in
161a71f3 12697 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
e743727f 12698
916708d5
AD
126992003-04-29 Akim Demaille <akim@epita.fr>
12700
12701 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
12702 * src/getargs.c, src/getargs.h: here, as bool, not int.
12703 (nondeterministic_parser): New.
12704 * src/parse-gram.y, src/scan-gram.l: Support
12705 %nondeterministic-parser.
12706 * src/output.c (prepare): Use nondeterministic_parser instead
12707 of glr_parser where appropriate.
12708 * src/tables.c (conflict_row, action_row, save_row)
12709 (token_actions, token_actions, pack_vector): Ditto.
12710
a06ea4aa
AD
127112003-04-29 Akim Demaille <akim@epita.fr>
12712
12713 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
12714
211074ca
AD
127152003-04-29 Akim Demaille <akim@epita.fr>
12716
12717 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
12718 with %pure-parser and %locations to exercise the patch from Yakov
12719 Markovitch below.
12720
6175ffe3
PE
127212003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
12722
12723 * data/yacc.c: (b4_lex_param): Corrected for the case where
12724 %lex-param is provided and %pure-parser isn't.
12725
b1e95857
PE
127262003-04-27 Paul Eggert <eggert@twinsun.com>
12727
12728 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
161a71f3 12729 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
b1e95857
PE
12730 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
12731 if it is not defined.
12732 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
12733
acda9df6
PE
127342003-04-26 Paul Eggert <eggert@twinsun.com>
12735
3470c57b
PE
12736 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
12737 Declare to be of type suitable for the ninf value itself, not of
12738 type suitable for the corresponding table, since the latter might
12739 be unsigned but the ninf value might be negative. This fixes a
12740 bug reported by Alexandre Duret-Lutz in
161a71f3 12741 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
3470c57b 12742
acda9df6
PE
12743 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
12744 invokes it. We shouldn't invoke it twice because it will attempt
12745 to put error.o in the archive twice. This fixes a glitch reported
12746 by Martin Mokrejs in
161a71f3 12747 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
acda9df6 12748
b5250f26
PE
127492003-04-21 Paul Eggert <eggert@twinsun.com>
12750
12751 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
12752 to gnulib.
12753
089ac0f1
PE
127542003-04-21 Yakov Markovitch <Markovitch@iso.ru>
12755
12756 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
12757 Fix obvious typo that results in uncompilable GLR parsers
12758 when both %pure-parser and %locations are used. (trivial change)
12759
5ededac6
PE
127602003-04-17 Paul Eggert <eggert@twinsun.com>
12761
1b8f2fff
PE
12762 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
12763 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
12764 Do not insert the expected token via unput, as this runs afoul
12765 of a POSIX-compatibility bug in flex 2.5.31.
12766 All uses changed to BEGIN the parent state,
12767 since we no longer insert the expected token via unput.
12768 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
12769 that is no longer emitted after the above change.
12770
5ededac6
PE
12771 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
12772 the first one. This change is from Paul Hilfinger, and it fixes
12773 regression reported by Werner Lemberg in
161a71f3 12774 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5ededac6
PE
12775
12776 (resolve_sr_conflict): Don't invoke state_errs_set
12777 unless one or more tokens have been explicitly made errors.
12778 Otherwise, the above change causes Bison to abort.
12779
12780 * tests/existing.at (GNU pic Grammar): New test case, taken from
12781 Lemberg's email.
12782
b8be9132
AD
127832003-03-31 Akim Demaille <akim@epita.fr>
12784
12785 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
12786
d423d460
AD
127872003-03-31 Akim Demaille <akim@epita.fr>
12788
12789 * src/output.c (prepare_symbols): Avoid trailing spaces in the
12790 output.
12791
c7e441b4
AD
127922003-03-31 Akim Demaille <akim@epita.fr>
12793
12794 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
12795 From Paul Hilfinger.
12796
231897ad
AD
127972003-03-29 Akim Demaille <akim@epita.fr>
12798
12799 * m4/error.m4: Do not put under dynamic conditions some code which
12800 expansion is under static control.
12801
5b066063
AD
128022003-03-29 Akim Demaille <akim@epita.fr>
12803
12804 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
12805
22a74fec
AD
128062003-03-29 Akim Demaille <akim@epita.fr>
12807
12808 * doc/bison.texinfo (Strings are Destroyed): New.
12809
0eee27e7
PE
128102003-03-13 Paul Eggert <eggert@twinsun.com>
12811
12812 * .cvsignore: Add configure.lineno.
12813 * src/.cvsignore: Add yacc.
12814 * tests/.cvsignore: Add testsuite.log.
12815 * doc/fdl.texi: Sync with latest FSF version.
12816
f61aad93
PE
128172003-03-12 Paul Eggert <eggert@twinsun.com>
12818
537636c7
PE
12819 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
12820 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
12821 cursor, instead of leaving it undefined. This fixes a bug
12822 reported by Tim Van Holder in
161a71f3 12823 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
537636c7
PE
12824 * tests/input.at (Torturing the Scanner): Test the scanner on
12825 an empty input file, which was Tim Van Holder's test case.
12826
12827 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
12828 <sys/resource.h> can be included, include sys/time.h and
12829 sys/times.h first, if available. This works around the SunOS
12830 4.1.4 porting bug reported by Bruce Becker in
161a71f3 12831 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
537636c7
PE
12832
12833 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
12834 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
12835 AC_HEADER_SYS_WAIT.
12836
f61aad93
PE
12837 Merge changes from gnulib. This was prompted because the CVS
12838 snapshot didn't build on Solaris 7 due to strnlen problems.
12839
12840 These changes need to be merged back into gnulib:
12841 * lib/hash.c: Include <stdbool.h> unconditionally.
12842 * m4/onceonly.m4 (m4_quote): New macro.
12843 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
12844 Quote AC_FOREACH variable-expansions properly.
12845 The 2003-01-03 obstack.h change also needs merging.
12846 {end of changes requiring merging}
5b066063 12847
f61aad93
PE
12848 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
12849 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
12850 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
12851 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
12852 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
12853 New files, imported from gnulib.
12854 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
12855 above.
12856
12857 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
12858 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
12859 gnulib sources.
12860
12861 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
12862 Add.
12863 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
12864 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
12865 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
12866 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
12867 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
12868 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
12869 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
12870 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
12871 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
12872 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
12873 (jm_PREREQ_ARGMATCH): Remove.
12874 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
12875 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
12876
12877 * src/system.h: Include <stdbool.h> unconditionally.
12878
12879 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
12880 assuming at least C89 in the bitset code for some time now.
12881
d2ffe116
AD
128822003-03-03 Akim Demaille <akim@epita.fr>
12883
12884 * ro.po: New.
12885
052826fd
AD
128862003-03-02 Akim Demaille <akim@epita.fr>
12887
12888 * doc/bison.texinfo (Table of Symbols): Reactivate the
12889 documentation for %lex-param, and %parse-param.
12890
c4749565
AD
128912003-03-02 Akim Demaille <akim@epita.fr>
12892
12893 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
12894 generate verbose error messages.
12895 Use the number of tokens as an upper bound in yytname, as it
12896 cannot be a non terminal.
12897
d5286af1
AD
128982003-03-02 Akim Demaille <akim@epita.fr>
12899
12900 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
12901 message.
12902
22e304a6
AD
129032003-03-02 Akim Demaille <akim@epita.fr>
12904
22e304a6
AD
12905 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
12906 Use them to exercise yycheck overrun.
12907 Based on Andrew Suffield's grammar.
12908
67a25fed
AD
129092003-03-02 Akim Demaille <akim@epita.fr>
12910
12911 Create tests/local.at for Bison generic testing macros.
12912
12913 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
12914 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
12915 This new file.
12916 * tests/calc.at (AT_CHECK_CALC): Adjust.
12917 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
12918 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
12919 * tests/local.at: here.
12920 (AT_COMPILE_CXX): Tags the tests using it as c++.
12921 Ignore the test if CXX is not functional.
12922
9c2b381f
PE
129232003-03-01 Paul Eggert <eggert@twinsun.com>
12924
12925 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
12926 not loc->end, since loc->end might contain garbage and this leads
12927 to undefined behavior on some platforms.
12928 (id_loc, token_start): Use (IF_LINTed) initial values that do not
12929 depend on *loc, so that the reader doesn't give the the false
12930 impression that *loc is initialized.
12931 (<INITIAL>"%%"): Do not bother setting code_start, since its value
12932 does not survive the return.
12933
0433ba88
AD
129342003-03-01 Akim Demaille <akim@epita.fr>
12935
12936 * src/scan-gram.l (code_start): Always initialize it when entering
12937 into yylex, as SC_EPILOGUE is activated *before* the corresponding
12938 yylex invocation. An alternative would be making it static, but
12939 then it starts with the second %%'s beginning, instead of its end.
12940
b305ea69
PE
129412003-02-28 Paul Eggert <eggert@twinsun.com>
12942
12943 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
12944 around a UnixWare 7.1.1 porting bug reported by John Hughes in
161a71f3 12945 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
b305ea69 12946
c3d25e01
PE
129472003-02-26 Paul Eggert <eggert@twinsun.com>
12948
12949 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
12950 Remove Sequent/Pyramid discussion (nobody uses them any more).
12951 Merge VMS and MS-DOS discussion; these ports may well be dead
12952 but let's keep mentioning them for now. Put <> around email
12953 addresses. Add copyright notice.
12954
c267ffbc
PE
129552003-02-24 Paul Eggert <eggert@twinsun.com>
12956
12957 * data/glr.c (yy_reduce_print): yylineno -> yylno,
12958 to avoid collision with flex use of yylineno.
12959 Problem reported by Bruce Lilly in
161a71f3 12960 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
c267ffbc
PE
12961 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
12962 * data/yacc.c (yy_reduce_print): Likewise.
12963
12964 * config/depcomp: Sync with Automake 1.7.3.
12965
f939fc12
AD
129662003-02-21 Akim Demaille <akim@epita.fr>
12967
12968 * data/lalr1.cc: Use temporary variables instead of casts to
12969 change integer types.
12970 Suggested by Paul Eggert.
12971
95923bd6
AD
129722003-02-21 Akim Demaille <akim@epita.fr>
12973
12974 * doc/bison.texinfo: Use "location" consistently to refer to @n,
12975 to avoid confusions with lalr1.cc's notion of Position.
12976 Suggested by Paul Eggert.
12977
2cdc240e
AD
129782003-02-20 Akim Demaille <akim@epita.fr>
12979
12980 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
12981 before initial_columns.
12982 (location.hh): Use consistent variable names when defining the
12983 operator<<.
12984 Use "last" so that we subtract from Positions, not from unsigned.
12985
5d003116
AD
129862003-02-20 Akim Demaille <akim@epita.fr>
12987
12988 * data/lalr1.cc (position.hh): New subfile, including the extended
12989 and Doxygen'ed documentation of class Position.
12990 (location.hh): Use it.
12991 Document a` la Doxygen.
ba1ecc07 12992 With the help of Benoit Perrot.
5d003116 12993
d02b25f9
AD
129942003-02-20 Akim Demaille <akim@epita.fr>
12995
12996 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
12997 AT_YACC_IF.
12998 Redefine AT_YYERROR_SEES_LOC_IF using it.
12999 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
13000 not defined.
13001 Don't use the location in yy::Parser::error_ and
13002 yy::Parser::print_ when not %locations.
13003 Activate more lalr1.cc tests.
13004
0d1c3a04
AD
130052003-02-19 Akim Demaille <akim@epita.fr>
13006
13007 * data/lalr1.cc: When displaying a line number, be sure to make it
13008 an int.
13009
60a777aa
AD
130102003-02-19 Akim Demaille <akim@epita.fr>
13011
13012 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
13013 Remove, useless.
13014 (YYABORT, YYACCEPT, YYERROR): New.
13015 * tests/calc.at: Renable the lalr1.cc test.
13016
0b86fc41
AD
130172003-02-19 Akim Demaille <akim@epita.fr>
13018
13019 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
13020 error recovery, mixing with/without pops and discarding of the
13021 lookahead.
13022 Exercise YYERROR.
13023 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
13024
da99a5dc
PE
130252003-02-17 Paul Eggert <eggert@twinsun.com>
13026
13027 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
13028 * tests/testsuite.at (AT_COMPILE): Use them.
13029 This fixes the testsuite problem reported by Robert Lentz in
161a71f3 13030 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
da99a5dc 13031
93b8c255
PE
130322003-02-12 Paul Eggert <eggert@twinsun.com>
13033
13034 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
13035 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
161a71f3 13036 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
93b8c255
PE
13037 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
13038 Check for malloc failure, for consistency with yacc.c.
13039 (yytname_size): Remove, for consistency with yacc.c.
13040
13041 The bug still remains in data/lalr1.cc, as I didn't have time
13042 to fix it there.
13043
7548fed2
AD
130442003-02-06 Akim Demaille <akim@epita.fr>
13045
13046 * configure.ac (GXX): Rename as...
13047 (CXX): this, to keep the original Autoconf semantics.
13048 Require 2.57.
13049 * data/lalr1.cc: Fix b4_copyright invocations.
13050 If YYDEBUG is not defined, don't depend upon name_ being defined.
13051 (location.hh): Include string and iostream.
13052 (Position::filename): New member.
13053 (Position::Position ()): New.
13054 (operator<< (Position)): New.
13055 (operator- (Position, int)): New.
13056 (Location::first, Location::last): Rename as...
13057 (Location::begin, Location::end): these, to mock the conventional
13058 iterator names.
13059 (operator<< (Location)): New.
13060 * tests/atlocal.in (CXX): New.
13061 * tests/testsuite.at (AT_COMPILE_CXX): New.
13062 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
13063 locations in a more synthetic way.
13064 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
13065 lalr1.cc is used.
13066 Adjust the C locations to match those from Emacs: first column is
13067 column 0.
13068 Change all the expected results.
13069 Conform to the GCS: simplify the locations when applicable.
13070 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
13071 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
13072 these CPP macros with the m4 macros new defined by...
13073 (AT_CHECK_PUSHDEFS): this, i.e.:
13074 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
d02b25f9 13075 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
7548fed2
AD
13076 New macros.
13077 (AT_CHECK_POPDEFS): Undefine them.
13078 (AT_CHECK_CALC_LALR1_CC): New.
13079 Use it for the first lalr1.cc test.
13080
43a176ef
AD
130812003-02-04 Akim Demaille <akim@epita.fr>
13082
13083 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
13084 Location as is defined.
13085
fc049e9c
AD
130862003-02-04 Akim Demaille <akim@epita.fr>
13087
13088 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
13089 name_ being defined.
13090
a737b216
PE
130912003-02-03 Paul Eggert <eggert@twinsun.com>
13092
13093 * src/gram.h (start_symbol): Remove unused decl.
13094
13095 Use more-consistent naming conventions for local vars.
13096
13097 * src/derives.c (derives_compute): Change type of local var from
13098 int to rule_number.
13099 * src/gram.c (grammar_rules_partial_print): Likewise.
13100 * src/print.c (print_core): Likewise.
13101 * src/reduce.c (reduce_grammar_tables): Likewise.
13102
13103 * src/gram.c (grammar_dump): Change name of item_number *
13104 local var from r to rp.
13105 * src/nullable.c (nullable_compute): Likewise.
13106
13107 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
13108
13109 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
13110 for symbol or symbol_number var.
13111 * src/reader.c (grammar_start_symbol_set): Likewise.
13112 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
13113 Likewise.
13114 * src/state.c (transitions_to): Likewise.
13115 * src/state.h: Likewise.
13116 * src/tables.c (symbol_number_to_vector_number): Likewise.
13117
13118 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
13119 char * var.
13120
13121 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
13122 var.
13123
13124 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
13125 var.
13126
13127 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
13128 Use str, not s, for char * var. Use ch, not c, for character var.
13129 Use size for size var.
13130
13131 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
13132 char * var.
13133 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
13134 uniqstr var.
13135 * src/uniqstr.h: Likewise.
13136
13137 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
13138 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
13139 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
13140 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
13141 param to have same name as that of enum, so that we don't use
13142 "s" to stand for a non-state.
13143
68e93ad5
AD
131442003-02-02 Akim Demaille <akim@epita.fr>
13145
13146 * src/scan-skel.l: Scan more than one inert character per yylex
13147 invocation.
13148
92898986
PE
131492003-02-01 Paul Eggert <eggert@twinsun.com>
13150
13151 Version 1.875a.
13152
1d9d5d71
PE
13153 * po/LINGUAS: Add ms.
13154
0435d061
AD
131552003-01-30 Akim Demaille <akim@epita.fr>
13156
13157 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
13158
6029a57f
PH
131592003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13160
13161 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
13162 of $1.
0435d061
AD
13163
13164 Changes in response to error report by S. Eken: GLR mode does not
6029a57f 13165 handle negative $ indices or $ indices in embedded rules correctly.
161a71f3 13166 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
0435d061 13167
6029a57f
PH
13168 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
13169 (b4_rhs_location): Ditto.
0435d061 13170 (yyfill): New function to copy from stack tree into array
6029a57f 13171 incrementally.
0435d061
AD
13172 (yyuserAction): Modify to allow incremental move of semantic values
13173 to rhs array when in GLR mode.
13174 Define YYFILL to use in user-defined actions to fill semantic array
6029a57f
PH
13175 as needed.
13176 Remove dummy use of yystack, as there is now a guaranteed use.
13177 (yydoAction): Modify to allow incremental move of semantic values
13178 to rhs array when in GLR mode.
13179 (yyresolveAction): Ditto.
13180 (yyglrShiftDefer): Update comment.
0435d061 13181 (yyresolveStates): Use X == NULL for pointers, not !X.
6029a57f
PH
13182 (yyglrReduce): Ditto.
13183 (yydoAction): Ditto
0435d061 13184
6029a57f
PH
13185 * tests/glr-regr1.at: Rename to ...
13186 * tests/glr-regression.at: Add new regression test for the problems
13187 described above (adapted from S. Eken).
13188 Update copyright notice.
13189 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
13190 * tests/Makefile.am: Ditto.
13191
6cee6297
PE
131922003-01-28 Paul Eggert <eggert@twinsun.com>
13193
13194 * data/lalr1.cc: Do not use @output_header_name@ unless
13195 b4_defines_flag is set. This fixes two bugs reported by
13196 Tim Van Holder in
161a71f3
PE
13197 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
13198 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6cee6297 13199
b2a836b5
PE
132002003-01-21 Paul Eggert <eggert@twinsun.com>
13201
13202 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
13203 we don't need to worry about yyerrlab1 being reported as an
13204 "unused label" by non-GCC C compilers. The downside is that if
13205 locations are used then a couple of statements are duplicated each
13206 time YYERROR is invoked, but the upside is that the warnings
13207 should vanish.
13208 (yyerrlab1): Move code to YERROR.
13209 (yyerrlab2): Remove. Change uses back to yyerrlab1.
13210 This reverts some of the 2002-12-27 change.
13211
4196b931
PE
132122003-01-17 Paul Eggert <eggert@twinsun.com>
13213
13214 * src/output.c (symbol_printers_output): Fix typo that led
13215 to core dump. Problem reported by Antonio Rus in
161a71f3 13216 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
4196b931 13217
3ae831b4
AD
132182003-01-13 Akim Demaille <akim@epita.fr>,
13219 Quoc Peyrot <chojin@lrde.epita.fr>,
13220 Robert Anisko <anisko_r@lrde.epita.fr>
13221
13222 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
13223 when the stacks contain one element, as the loop would otherwise
13224 free the last state, and then use the top state (the one we just
13225 popped). This means that the initial elements will not be freed
13226 explicitly, as is the case in yacc.c; it is not a problem, as
13227 these elements have fake values.
13228
e3aa65c5
PE
132292003-01-11 Paul Eggert <eggert@twinsun.com>
13230
13231 * NEWS: %expect-violations are now just warnings, reverting
13232 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
13233 bootstrapping problem reported by Matthias Klose; see
161a71f3 13234 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
e3aa65c5
PE
13235 * src/conflicts.c (conflicts_print): Likewise.
13236 * tests/conflicts.at (%expect not enough, %expect too much,
13237 %expect with reduce conflicts): Likewise.
13238 * doc/bison.texinfo (Expect Decl): Document this. Also mention
13239 that the warning is enabled if the number of conflicts changes
13240 (not necessarily increases).
13241
13242 * src/getargs.c (version): Update copyright year.
13243
f0057011
AD
132442003-01-09 Akim Demaille <akim@epita.fr>
13245
13246 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
13247
1ee6d2a0
PE
132482003-01-08 Paul Eggert <eggert@twinsun.com>
13249
13250 * Makefile.maint (WGETFLAGS):
13251 New macro, containing "-C off" to disable proxy caches.
13252 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
13253 (rel-check): Use $(WGET) instead of wget.
13254
d4fd77c4
PE
132552003-01-06 Paul Eggert <eggert@twinsun.com>
13256
13257 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
13258 the GLR paper of Scott, Johnstone and Hussain.
13259
464c6927
PE
132602003-01-04 Paul Eggert <eggert@twinsun.com>
13261
d600ee67
PE
13262 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
13263 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
13264 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
13265 (EXTRA_LIBRARIES): New var, for liby.a.
13266 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
13267 (EXTRA_SCRIPTS): New var, for yacc.
13268
464c6927
PE
13269 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
13270 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
13271 Problem reported by Nelson H. F. Beebe.
13272
132732003-01-03 Paul Eggert <eggert@twinsun.com>
13274
13275 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
13276 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
13277 when compiling Bison 1.875's `bitset bset = obstack_alloc
13278 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
13279
13280 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
13281 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
13282 grow to a huge size with typical invocation.
d600ee67 13283
464c6927
PE
13284 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
13285 Use the pattern recommended by Autoconf 2.57, except also protect
13286 against double-definition.
13287 * src/system.h: Likewise.
13288 Portability issues reported by Nelson H. F. Beebe.
d600ee67 13289
464c6927
PE
13290 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
13291 All uses changed. Provide a definition in both C and C++.
13292 (yytrue, yyfalse): Define even if defined (__cplusplus).
13293
13294 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
13295 Reported by Nelson H. F. Beebe.
d600ee67 13296
464c6927
PE
13297 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
13298
0f42c7d5
PE
132992003-01-02 Paul Eggert <eggert@twinsun.com>
13300
13301 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
13302 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
13303 Bug reported by Nelson H. F. Beebe.
13304
dc546b0f
PE
133052003-01-01 Paul Eggert <eggert@twinsun.com>
13306
13307 * Version 1.875.
13308
2c09b6a7
PE
133092002-12-30 Paul Eggert <eggert@twinsun.com>
13310
13311 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
13312 Moved here from...
13313 (<INITIAL>","): Here. This causes stray "," to be treated
13314 more uniformly.
13315
dc546b0f 13316 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
2c09b6a7
PE
13317 last brace in braced code when not in Yacc mode, for compatibility
13318 with Bison 1.35. This resurrects the 2001-12-15 patch to
13319 src/reader.c.
13320
13321 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
13322 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
13323
535c0f63
PE
133242002-12-28 Paul Eggert <eggert@twinsun.com>
13325
13326 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
13327 that of SYM's type. This fixes Debian bug 168069, reported by
13328 Thomas Olsson.
d600ee67 13329
963fcc17
PE
133302002-12-28 Paul Eggert <eggert@twinsun.com>
13331
13332 Version 1.75f.
13333
13334 Switch back to the Yacc style of conflict reports, undoing some
13335 of the 2002-07-30 change.
13336 * doc/bison.texinfo (Understanding): Use Yacc style for
13337 conflict reports. Also, use new way of locating rules.
13338 * src/conflicts.c (conflict_report):
13339 Renamed from conflict_report_yacc, removing the old
13340 'conflict_report'. Translate the entire conflict report at once,
13341 so that we don't assume that "," has the same interpretation in
13342 all languages.
13343 (conflicts_output): Use Yacc-style conflict report for each state,
13344 instead of our more-complicated style.
13345 (conflicts_print): Use Yacc-style conflict report, except print
13346 the input file name when not emulating Yacc.
13347 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
13348 Conflicted Reduction, %expect not enough, %expect too much,
13349 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
13350 * tests/existing.at (GNU Cim Grammar): Likewise.
13351 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
13352
13353 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
13354 fatal): Don't invoke fflush; it's not needed and it might even be
13355 harmful for stdout, as stdout might not be open.
13356 * src/reduce.c (reduce_print): Likewise.
13357
b1efe548
PE
133582002-12-27 Paul Eggert <eggert@twinsun.com>
13359
13360 Fix a bug where error locations were not being recorded correctly.
13361 This problem was originally reported by Paul Hilfinger in
161a71f3 13362 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
b1efe548
PE
13363
13364 * data/yacc.c (yyparse): New local var yylerrsp, to record the
13365 top of the location stack's error locations.
13366 (yyerrlab): Set it. When discarding a token, push its location
13367 onto yylerrsp so that we don't lose track of the error's end.
13368 (yyerrlab1): Now is only the target of YYERROR, so that we can
13369 properly record the location of the action that failed. For GCC
13370 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
13371 GCC warning about yyerrlab1 being unused if YYERROR is unused.
13372 (yyerrlab2): New label, which yyerrlab now falls through to.
13373 Compute the error's location by applying YYLLOC_DEFAULT to
13374 the locations of all the symbols that went into the error.
13375 * doc/bison.texinfo (Location Default Action): Mention that
13376 YYLLOC_DEFAULT is also invoked for syntax errors.
13377 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
13378 Error locations include the locations of all the tokens that were
13379 discarded, not just the last token.
d600ee67 13380
983c5c2c
PE
133812002-12-26 Paul Eggert <eggert@twinsun.com>
13382
b1efe548
PE
13383 * src/files.c: Include quote.h.
13384 (compute_output_file_names): Warn if we detect conflicting
13385 outputs to the same file. This should catch the misunderstanding
13386 exemplified by Debian Bug 165349, reported by Bruce Stephens..
13387
13388 * src/conflicts.c (conflicts_print): If the user specifies
13389 "%expect N", report an error if there are any reduce/reduce
13390 conflicts. This is what the manual says should happen.
13391 This fixes Debian bug 130890, reported by Anthony DeRobertis.
13392 * tests/conflicts.at (%expect with reduce conflicts): New test.
13393
983c5c2c
PE
13394 Don't use m4_include on relative file names, as it doesn't work as
13395 desired if there happens to be a file with that name under ".".
d600ee67 13396
983c5c2c
PE
13397 * m4sugar/version.m4: Remove; it was included but it wasn't used.
13398 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
13399 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
13400 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
13401 * src/output.c (output_skeleton): Use full path names when
13402 specifying a file to include; don't rely on include path, as
13403 it's unreliable when the working file contains a file with
13404 that name.
d600ee67 13405
983c5c2c
PE
134062002-12-25 Paul Eggert <eggert@twinsun.com>
13407
13408 Remove obsolete references to bison.simple and bison.hairy.
13409 Problem mentioned by Aubin Mahe in
161a71f3 13410 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
983c5c2c
PE
13411 * data/glr.c: Comment fix.
13412 * doc/bison.1: Remove references. Also, mention "yacc".
13413
13414 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
13415 with -g option.
13416
13417 * src/parse-gram.y (declaration): Use enum "report_states" rather
13418 than its numeric value 1.
13419
13420 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
13421 opening a new one. This fixes Debian bug 165349, reported by
13422 Bruce Stephens.
13423
23f2d9dc
PE
134242002-12-24 Paul Eggert <eggert@twinsun.com>
13425
13426 Version 1.75e.
13427
13428 * Makefile.maint (cvs-update): Don't assume that the shell
13429 supports $(...), as Solaris sh doesn't.
13430
13431 * src/parse-gram.y (lloc_default): Remove test for empty
13432 nonterminals at the end, since it didn't change the result.
13433
134342002-12-24 Paul Eggert <eggert@twinsun.com>
33167b8b
PE
13435
13436 If the user does not define YYSTYPE as a macro, Bison now declares it
13437 using typedef instead of defining it as a macro. POSIX requires this.
13438 For consistency, YYLTYPE is also declared instead of defined.
13439
13440 %union directives can now have a tag before the `{', e.g., the
13441 directive `%union foo {...}' now generates the C code
13442 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
13443 The default union tag is `YYSTYPE', for compatibility with Solaris 9
13444 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
13445 instead of `yyltype'.
13446
13447 `yystype' and `yyltype' are now obsolescent macros instead of being
13448 typedefs or tags; they are no longer documented and will be
13449 withdrawn in a future release.
13450
13451 * data/glr.c (b4_location_type): Remove.
13452 (YYSTYPE): Renamed from yystype.
13453 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
13454 (struct YYLTYPE): Renamed from struct yyltype.
13455 (YYLTYPE): Renamed from yyltype.
13456 (yyltype, yystype): New (and obsolescent) macros,
13457 for backward compatibility.
13458 * data/yacc.c: Likewise.
13459
13460 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
13461 does not specify a union tag. This is for compatibility with
13462 Solaris 9 yacc.
13463
13464 * src/parse-gram.y (add_param): 2nd arg is now char * not char
13465 const *, since it is now modified by stripping surrounding { }.
13466 (current_braced_code): Remove.
13467 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
13468 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
13469 trailing " {...}". Now of type <chars>.
13470 (grammar_declaration): Adjust to bundled tokens.
13471 (code_content): Remove; stripping is now done by add_param.
13472 (print_token_value): Print contents of bundled tokens.
13473 (token_name): New function.
13474
13475 * src/reader.h (braced_code, current_braced_code): Remove.
13476 (token_name): New decl.
13477
13478 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
13479 token_type, not braced_code code_kind. All uses changed.
13480 (SC_PRE_CODE): New state, for scanning after a keyword that
13481 has (or usually has) an immediately-following braced code.
13482 (token_type): New local var, to keep track of which token type
13483 to return when scanning braced code.
13484 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
dc546b0f 13485 <INITIAL>"%parse-param", <INITIAL>"%printer",
33167b8b
PE
13486 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
13487 instead of returning a token type immediately.
13488 (<INITIAL>"{"): Set token type.
13489 (<SC_BRACED_CODE>"}"): Use it.
13490 (handle_action_dollar, handle_action_at): Now returns bool
13491 indicating success. Fail if ! current_rule; this prevents a core dump.
13492 (handle_symbol_code_dollar, handle_symbol_code_at):
13493 Remove; merge body into caller.
13494 (handle_dollar, handle_at): Complain in invalid contexts.
13495
13496 * NEWS, doc/bison.texinfo: Document the above.
13497 * NEWS: Fix years and program names in copyright notice.
13498
879ca4f8
PE
134992002-12-17 Paul Eggert <eggert@twinsun.com>
13500
13501 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
13502 Reporting, Table of Symbols): Omit mentions of %lex-param and
13503 %parse-param from the documentation for now.
13504
1c5fe69d
PE
135052002-12-15 Paul Eggert <eggert@twinsun.com>
13506
13507 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
13508 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
13509 lookahead symbol, and which sets yychar in parser actions) and it
7ea9026a
PE
13510 disagreed with the Bison documentation. Bug
13511 reported by Andrew Walrond.
d600ee67 13512
1c5fe69d
PE
13513 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
13514 as the caller now does that.
13515 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
13516 (YYEMPTY): Parenthesize right hand side, since others use it.
13517 (yyparse): Don't assume that our generated code is the only code
13518 that sets yychar.
13519
d1de5372
PE
135202002-12-13 Paul Eggert <eggert@twinsun.com>
13521
13522 Version 1.75d.
13523
13524 POSIX requires a "yacc" command.
13525 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
13526 (MOSTLYCLEANFILES): Add yacc.
13527 (yacc): New rule.
1c5fe69d 13528 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
d1de5372
PE
13529 as an alias for bison y.
13530
13531 * po/LINGUAS: Add da.
d600ee67 13532
d1de5372
PE
13533 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
13534 problem with latest <getopt.h>.
13535 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
13536
13537 * doc/fdl.texi: Upgrade to 1.2.
13538 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
13539 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
13540 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
13541 gnulib.
13542 * config/install-sh: Sync with autotools.
13543
13544 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
161a71f3 13545 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
d1de5372
PE
13546 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
13547 locations are requested.
13548 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
13549 locations are requested.
13550
d0f3fe23
PE
135512002-12-12 Paul Eggert <eggert@twinsun.com>
13552
13553 Remove unportable casts and storage allocation tricks.
13554 While we're at it, remove almost all casts, since they
13555 usually aren't needed and are a sign of trouble.
13556
13557 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
13558
13559 * src/derives.c (derives_compute): Do not subtract NTOKENS from
13560 the pointer DSET returned by malloc; this isn't portable.
13561 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
13562 Similarly for DERIVES.
13563 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
13564 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
13565 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
13566
13567 * src/derives.c (derives_compute): Do not bother invoking
13568 int_of_rule_number, since rule numbers are integers.
13569
13570 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
13571 rather than XMALLOC (char, N).
13572
13573 * src/files.c (filename_split): Rewrite to avoid cast.
13574
13575 * src/gram.h (symbol_number_as_item_number,
13576 item_number_as_symbol_number, rule_number_as_item_number,
13577 item_number_as_rule_number):
13578 Now inline functions rather than macros, to avoid casts.
13579 * src/state.h (state_number_as_int): Likewise.
13580 * src/tables.c (state_number_to_vector_number,
13581 symbol_number_to_vector_number): Likewise.
13582
13583 * src/gram.h (int_of_rule_number): Remove; no longer used.
13584
13585 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
13586 since the resulting storage is always stored into.
13587
13588 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
13589 where it's needed.
13590
13591 * src/muscle_tab.c (muscle_m4_output):
13592 Now inline. Return bool, not int.
13593 * src/state.c (state_compare): Likewise.
13594 * src/symtab.c (symbol_check_defined,
13595 symbol_check_alias_consistency, symbol_pack, symbol_translation,
13596 hash_compare_symbol, hash_symbol):
13597 Likewise.
13598 * src/uniqstr.c (uniqstr_print): Likewise.
13599 * src/muscle_tab.c (muscle_m4_output_processor):
13600 New function, to avoid casts.
13601 * src/state.c (state_comparator, stage_hasher): Likewise.
13602 * src/symtab.c (symbol_check_defined_processor,
13603 symbol_check_alias_consistency_processor, symbol_pack_processor,
13604 symbol_translation_processor, hash_symbol_comparator,
13605 hash_symbol_hasher): Likewise.
13606 * src/uniqstr.c (uniqstr_print_processor): Likewise.
13607 * src/muscle_tab.c (muscles_m4_output):
13608 Use new functions instead of casting old functions unportably.
13609 * src/state.c (state_hash_new): Likewise.
13610 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
13611 symbols_token_translations_init):
13612 Likewise.
13613 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
13614
13615 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
13616 var instead of casting to long, to avoid casts.
13617 (prepare_states): Use MALLOC rather than alloca, so that we don't
13618 have to worry about alloca.
13619 * src/state.c (state_hash_lookup): Likewise.
13620
13621 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
13622 local var instead of casting to unsigned char, to avoid casts.
13623
13624 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
13625 STATE_ALLOC): Remove.
13626 (transitions_new, errs_new, reductions_new, state_new): Use malloc
13627 rather than calloc, and use offsetof to avoid allocating slightly
13628 too much storage.
13629 (state_new): Initialize all members.
13630
13631 * src/state.c (state_hash): Use unsigned accumulator, not signed.
13632
13633 * src/symtab.c (symbol_free): Remove; unused.
13634 (symbol_get): Remove cast in lhs of assignment.
13635 (symbols_do): Now static. Accept generic arguments, not
13636 hashing-related ones.
13637
13638 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
13639 (symbol_processor): Remove.
13640 (symbols_do): Remove decl; now static.
13641
13642 * src/system.h (alloca): Remove; decl no longer needed.
13643 (<stddef.h>): Include, for offsetof.
13644 (<inttypes.>, <stdint.h>): Include if available.
13645 (uintptr_t): New type, if system lacks it.
13646 (CALLOC, MALLOC, REALLOC): New macros.
13647 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
13648 new macros.
13649
13650 * src/tables.c (table_size): Now int, to pacify GCC.
13651 (table_grow, table_ninf_remap): Use signed table size.
13652 (save_row): Don't bother initializing locals when not needed.
13653 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
13654 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
13655
13656 * src/vcg.h: Correct misspellings.
13657
13658 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
13659
13660
13661 * src/getargs.c (getargs): Don't assume EOF == -1.
13662
26b4a969
PE
136632002-12-09 Paul Eggert <eggert@twinsun.com>
13664
13665 Change identifier spellings to avoid collisions with names
13666 that are reserved by POSIX.
13667
13668 Don't use names ending in _t, since POSIX reserves them.
13669 For consistency, remove _e and _s endings -- they're weren't
13670 needed to remove ambiguity. All uses changed.
13671 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
13672 turn was just renamed from struniq_t.
13673 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
13674 which in turn was just renamed from struniq_processor_t.
13675 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
13676 in turn was renamed from hash_compare_struniq_t.
13677 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
13678 (state_list): Renamed from state_list_t.
13679 * src/assoc.h (assoc): Renamed from assoc_t.
13680 * src/conflicts.c (enum conflict_resolution): Renamed from
13681 enum conflict_resolution_e.
13682 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
13683 (rule_list): Renamed from rule_list_t.
13684 * src/getargs.h (enum trace): Renamed from enum trace_e.
13685 (enum report): Renamed from enum report_e.
13686 * src/gram.h (item_number): Renamed from item_number_t.
13687 (rule_number): Renamed from rule_number_t.
13688 (struct rule_s): Remove the "rule_s" part; not used.
13689 (rule): Renamed from rule_t.
13690 (rule_filter): Renamed from rule_filter_t.
13691 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
13692 (goto_list): Renamed from goto_list_t.
13693 * src/lalr.h (goto_number): Renamed from goto_number_t.
13694 * src/location.h (location): Renamed from location_t.
13695 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
13696 and moved here from:
13697 * src/muscle_tab.h (muscle_entry_t): here.
13698 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
13699 (rule_list): Renamed from rule_list_t.
13700 * src/print_graph.c (static_graph): Renamed from graph.
13701 * src/reader.h (braced_code): Renamed from braced_code_t.
13702 Remove brace_code_e tag.
13703 * src/relation.h (relation_node): Renamed from relation_node_t.
13704 (relation_nodes): Renamed from relation_nodes_t.
13705 (relation): Renamed from relation_t.
13706 * src/state.h (state_number): Renamed from state_number_t.
13707 (struct state): Renamed from struct state_s.
13708 (state): Renamed from state_t.
13709 (transitions): Renamed from transitions_t. Unused (and
13710 misspelled) transtion_s tag removed.
13711 (errs): Renamed from errs_t. Unused errs_s tag removed.
13712 (reductions): Renamed from reductions_t. Unused tag
13713 reductions_s removed.
13714 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
13715 (struct symbol_list): Renamed from struct symbol_list_s.
13716 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
13717 (struct symbol): Renamed from struct symbol_s.
13718 (symbol): Renamed from symbol_t.
13719 * src/tables.c (vector_number): Renamed from vector_number_t.
13720 (action_number): Renamed from action_t.
13721 * src/tables.h (base_number): Renamed from base_t.
13722 * src/vcg.h (enum color): Renamed from enum color_e.
13723 (enum textmode): Renamed from enum textmode_e.
13724 (enum shape): Renamed from enum shape_e.
13725 (struct colorentry): Renamed from struct colorentry_s.
13726 (struct classname): Renamed from struct classname_s.
13727 (struct infoname): Renamed from struct infoname_s.
13728 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
13729 (enum decision): Renamed from enum decision_e.
13730 (enum orientation): Renamed from enum orientation_e.
13731 (enum alignment): Renamed from enum alignment_e.
13732 (enum arrow_mode): Renamed from enum arrow_mode_e.
13733 (enum crossing_type): Renamed from enum crossing_type_e.
13734 (enum view): Renamed from enum view_e.
13735 (struct node): Renamed from struct node_s.
13736 (node): Renamed from node_t.
13737 (enum linestyle): Renamed from enum linestyle_e.
13738 (enum arrowstyle): Renamed from enum arrowstyle_e.
13739 (struct edge): Renamed from struct edge.
13740 (edge): Renamed from edge_t.
13741 (struct graph): Renamed from struct graph_s.
13742 (graph): Renamed from graph_t.
13743 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
13744 Rename value_t -> value.
13745 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
13746 value_t_as_yystype -> value_as_yystype.
13747
13748 Don't include <errno.h> in the mainstream code, since it
13749 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
13750 * lib/get-errno.c, lib/get-errno.h: New files.
13751 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
13752 get-errno.c.
13753 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
13754 * src/output.c (output_skeleton): Likewise.
13755 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
13756 instead of errno.
13757 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
13758 Likewise.
13759 (handle_action_dollar, handle_action_at): Likewise.
13760 * src/system.h: Do not include <errno.h>.
13761 (TAB_EXT): Renamed from EXT_TAB.
13762 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
13763
13764 Avoid str[a-z]*, since <string.h> reserves that name space.
13765 Change all instances of "struniq" in names to "uniqstr", and
13766 likewise for "STRUNIQ" and "UNIQSTR".
13767 * src/uniqstr.c: Renamed from src/struniq.c.
13768 * src/uniqstr.h: Renamed from src/struniq.h.
13769 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
13770 * src/files.c (strsuffix): Remove; unused.
13771 (concat2): Renamed from stringappend. Now static.
13772 * src/files.h (strsuffix, stringappend): Remove; unused.
13773 * src/parse-gram.y (<chars>): Renamed from <string>.
13774 (<uniqstr>): Renamed from <struniq>.
13775 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
13776 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
13777 (struct graph_s.expand): Renamed from struct graph_s.stretch.
13778 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
13779 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
13780 (N_EXPAND): Renamed from N_STRETCH.
13781
13782 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
13783 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
13784 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
13785 Remove; unused.
13786 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
13787 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
13788 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
13789 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
13790 (BASE_MAXIMUM): Renamed from BASE_MAX.
13791 (BASE_MINIMUM): Renamed from BASE_MIN.
13792 (ACTION_MAX): Remove; unused.
13793 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
13794 Unnecessary casts removed from above defines.
13795
13796
13797 Fix misspelling in names.
13798 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
13799 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
13800 G_NODE_ALIGNEMENT.
13801
13802
13803 * lib/timevar.c (timevar_report): Renamed from time_report,
13804 for consistency with other names.
13805 * lib/timevar.h (timevar_report): New decl.
13806 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
13807
13808
13809 Sort include-file uses.
13810
13811 Reorder all include files under src to be in the order "system.h".
13812 then the ../lib include files in angle brackets (alphabetized),
13813 then the . include files in double-quotes (alphabetized). Fix
13814 dependency breakages encountered in this process, as follows:
13815 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
13816 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
13817 * src/state.h: Include "symtab.h".
13818
996b1c7e
PE
138192002-12-08 Paul Eggert <eggert@twinsun.com>
13820
13821 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
13822 since this causes problems when __file__ contains character
13823 sequences like "@" that are treated specially by src/scan-skel.l.
13824 Instead, just use the file's basename. This fixes the bug
13825 reported by Martin Mokrejs in
161a71f3 13826 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
996b1c7e 13827
e19c4e5d
PE
138282002-12-06 Paul Eggert <eggert@twinsun.com>
13829
13830 Add support for rules that do not have trailing semicolons, as
13831 POSIX requires. Improve the quality of locations in Bison
13832 diagnostics.
26b4a969 13833
e19c4e5d
PE
13834 * src/location.c: Include <quotearg.h>.
13835 (empty_location): Now const.
13836 (location_print): New function. Follow the recommendation of the
13837 GNU Coding Standards for locations that span file boundaries.
13838 * src/location.h: Do not include <quotearg.h>; no longer needed.
13839 (boundary): New type.
13840 (location_t): Use it. This allows locations to span file boundaries.
13841 All member uses changed: file -> start.file or end.file (as needed),
13842 first_line -> start.line, first_column -> start.column,
13843 last_line -> end.line, last_column -> end.column.
13844 (equal_boundaries): New function.
13845 (LOCATION_RESET, LOCATION_STEP): Remove.
13846 (LOCATION_PRINT): Remove. All callers changed to use location_print.
13847 (empty_location): Now const.
13848 (location_print): New decl.
13849 * src/parse-gram.y (lloc_default): New function, which handles
13850 empty locations more accurately.
13851 (YYLLOC_DEFAULT): Use it.
13852 (%token COLON): Remove.
13853 (%token ID_COLON): New token.
26b4a969 13854 (rules): Use it.
e19c4e5d
PE
13855 (declarations, rules): Remove trailing semicolon.
13856 (declaration, rules_or_grammar_declaration):
13857 Allow empty (";") declaration.
13858 (symbol_def): Remove empty actions; no longer needed.
13859 (rules_or_grammar_declaration): Remove trailing semicolon.
13860 (semi_colon.opt): Remove.
13861 * src/reader.h: Include location.h.
13862 (scanner_cursor): New decl.
13863 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
13864 rolling our own.
13865 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
13866 of *loc.
13867 (STEP): Remove. No longer needed, now that adjust_location does
13868 the work. All uses removed.
13869 (scanner_cursor): New var.
13870 (adjust_location): Renamed from extend_location. It now sets
13871 *loc and adjusts the scanner cursor. All uses changed.
13872 Don't bother testing for CR.
13873 (handle_syncline): Remove location arg; now updates scanner cursor.
13874 All callers changed.
13875 (unexpected_end_of_file): Now accepts start boundary of token or
13876 comment, not location. All callers changed. Update scanner cursor,
13877 not the location.
13878 (SC_AFTER_IDENTIFIER): New state.
13879 (context_state): Renamed from c_context. All uses changed.
13880 (id_loc, code_start, token_start): New local vars.
13881 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
13882 processing of Yacc white space and equivalents here.
13883 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
13884 instead of returning ID immediately, since we need to search for
13885 a subsequent colon.
13886 (<INITIAL>"'", "\""): Save token_start.
13887 (<INITIAL>"%{", "{", "%%"): Save code_start.
13888 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
13889 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
13890 BEGIN context_state at end, not INITIAL.
13891 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
13892 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
13893 Return correct token start.
13894 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
13895 the start of a character, string or multiline comment is found.
13896 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
13897 Reduction): Adjust reported locations to match the more-precise
13898 results now expected.
13899 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
13900 * tests/reduce.at (Useless Rules, Reduced Automaton,
13901 Underivable Rules): Likewise.
13902 * tests/regression.at (Invalid inputs): No longer `expecting ";"
13903 or "|"' now that so many other tokens are allowed by the new grammar.
13904
13905 * src/complain.h (current_file): Remove duplicate decl;
13906 current_file is now owned by files.h.
13907 * src/complain.c, src/scan-gram.l: Include files.h.
13908
139092002-12-06 Paul Eggert <eggert@twinsun.com>
26b4a969 13910
e19c4e5d
PE
13911 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
13912 promotes to int; it might be unsigned int.
13913 * data/yacc.c (yy_reduce_print): Likewise.
13914
13915 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
13916 be #defined in the prologue, not in the Bison declarations.
13917 This fixes Debian Bug 102878, reported by Shaul Karl.
26b4a969 13918
b64755e3
PE
139192002-12-02 Paul Eggert <eggert@twinsun.com>
13920
13921 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
13922 * lib/strtoul.c: New file, from gnulib.
13923 This fixes a porting bug reported by Peter Klein in
161a71f3 13924 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
b64755e3 13925
6e746484
PE
139262002-11-30 Paul Eggert <eggert@twinsun.com>
13927
b64755e3
PE
13928 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
13929 and put only a forward declaration in the prologue. This is for
13930 consistency with the other scanner helper functions.
13931
6ba55592
PE
13932 Type clashes now generate warnings, not errors, since it
13933 appears that POSIX may allow some grammars with type clashes.
13934 * src/reader.c (grammar_current_rule_check): Warn about
13935 type clashes instead of complaining.
13936 * tests/input.at (Type Clashes): Expect warnings, not complaints.
13937
6e746484
PE
13938 Add Yacc library, since POSIX requires it.
13939 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
13940 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
13941 * lib/main.c, lib/yyerror.c: New files.
13942
13943 gram_error can be static; it need not be extern.
13944 * src/reader.h (gram_error): Remove decl.
13945 * src/parse-gram.y (gram_error): Now static. Add static decl.
13946 (print_token_value): Omit parameter names from forward decl,
13947 for consistency.
13948
88510f9c
PE
139492002-11-29 Paul Eggert <eggert@twinsun.com>
13950
6e746484
PE
13951 * doc/bison.texinfo: Emphasize that yylex and yyerror must
13952 be declared before being used. E.g., one should typically
13953 declare them in the prologue. Use GNU coding style in examples.
13954 Put "const" consistently after the type it modifies. Mention
13955 that C99 supports "inline". Mention that yyerror traditionally
13956 returns "int".
13957
88510f9c
PE
13958 %parse-param and %lex-param now take just one argument, the
13959 declaration; the argument name is deduced from the declaration.
13960
13961 * doc/bison.texinfo (Parser Function, Pure Calling, Error
13962 Reporting, Table of Symbols): Document this.
13963 * src/parse-gram.y (add_param): New function.
13964 (COMMA): Remove.
13965 (declaration): Implement new rule for %parse-param and %lex-param.
13966 * src/scan-gram.l: "," now elicits a warning, rather than being
13967 a token; this is more compatible with byacc.
13968 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
13969
bb92250c
PE
139702002-11-27 Paul Eggert <eggert@twinsun.com>
13971
13972 Rename identifiers to avoid real and potential collisions.
13973
13974 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
13975 to avoid collision with lex macro described by Bruce Lilly in
161a71f3 13976 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
bb92250c
PE
13977 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
13978 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
13979 * src/parse-gram.y (print_token_value): Renamed from yyprint.
13980 All uses changed.
13981 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
13982 The name "yycontrol" violates the name space rules, and this stuff
13983 wasn't being used anyway.
13984 (input): Remove action; this stuff wasn't being used.
13985 (gram_error): Rename local variable yylloc -> loc.
13986 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
13987 (YY_DECL): Don't use "yy" at start of local variables.
13988 All uses changed, e.g., yylloc -> loc.
13989 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
13990 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
13991 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
13992 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
13993
13994 * src/parse-gram.y (gram_error): loc is now const *.
13995 * src/reader.h (gram_error): Likewise.
13996
3af4feb2
PE
139972002-11-24 Paul Eggert <eggert@twinsun.com>
13998
13999 Version 1.75c.
14000
14001 * tests/actions.at (Actions after errors): Use an output format
14002 more similar to that of the Printers and Destructors test.
14003 Test the position of the ';' token too.
14004 (Printers and Destructors): Likewise.
14005 (Printers and Destructors: %glr-parser): Remove for now, to avoid
14006 unnecessarily alarming people when the test fails.
14007
14008 * data/yacc.c (yyerrlab1): Move this label down, so that the
14009 parser does not discard the lookahead token if the user code
14010 invokes YYERROR. This change is required for POSIX conformance.
14011
14012 * lib/error.c: Sync with gnulib.
14013
140142002-11-22 Paul Eggert <eggert@twinsun.com>
14015
14016 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
14017 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
14018 * lib/xmalloc.c: Likewise.
26b4a969 14019
58004308
PE
140202002-11-20 Paul Eggert <eggert@twinsun.com>
14021
14022 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
14023
140242002-11-20 Paul Eggert <eggert@twinsun.com>
26b4a969 14025
58004308
PE
14026 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
14027 should use `if (! x) abort ();' rather than `assert (x);', and
14028 anyway it's one less thing to worry about configuring.
14029
14030 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
14031 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
14032 and replace all instances of assert with abort.
14033 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
14034 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
14035
14036 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
14037 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
14038 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
14039 hash_find_entry, hash_rehash, hash_insert): Likewise.
14040 * src/conflicts.c (resolve_sr_conflict): Likewise.
14041 * src/lalr.c (set_goto_map, map_goto): Likewise.
14042 * src/nullable.c (nullable_compute): Likewise.
14043 * src/output.c (prepare_rules, token_definitions_output): Likewise.
14044 * src/reader.c (packgram, reader): Likewise.
14045 * src/state.c (state_new, state_free, state_transitions_set,
14046 state_reduction_find): Likewise.
14047 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
14048 symbol_pack): Likewise.
14049 * src/tables.c (conflict_row, pack_vector): Likewise.
14050 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
14051 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
14052 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
14053 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
14054
14055 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
14056 (ARGMATCH_CONSTRAINT): New macro.
14057 (ARGMATCH_ASSERT): Use it.
14058
14059 * src/system.h (verify): New macro.
14060 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
14061 rather than assert.
14062 * src/tables.c (tables_generate): Likewise.
14063
14064 * src/struniq.c (struniq_assert): Now returns void, and aborts
14065 if the assertion is false.
14066 (struniq_assert_p): Remove.
14067 * src/struniq.h: Likewise.
14068
76ae8198
PE
140692002-11-18 Paul Eggert <eggert@twinsun.com>
14070
14071 * data/glr.c (yygetLRActions): Replace `yyindex' with
14072 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
14073 This fixes the regression with Sun ONE Studio 7 cc that I reported in
161a71f3 14074 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
76ae8198 14075
d3c4e709
AD
140762002-11-18 Akim Demaille <akim@epita.fr>
14077
14078 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
14079 space.
14080 From Tim Van Holder.
14081
8d8a7238
PE
140822002-11-17 Paul Eggert <eggert@twinsun.com>
14083
14084 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
14085 to "SyntaxError" for consistency with my 2002-11-15 change.
14086
14087 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
14088 not define to {}, since this breaks the common use of `YYDPRINTF
14089 ((...));' if a single statement is desired (e.g. before `else').
14090 Work around GCC warnings by surrounding corresponding calls with
14091 {} if needed.
14092 (yyhasResolvedValue): Remove unused function.
14093 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
14094 loop body.
14095 (yyreportSyntaxError): Renamed from yyreportParseError.
14096 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
14097 All uses changed.
14098 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
14099 extern when possible. Remove unused initializations.
14100
b0937b22
AD
141012002-11-16 Akim Demaille <akim@epita.fr>
14102
14103 Augment the similarity between GLR and LALR traces.
14104
14105 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
14106 (YY_REDUCE_PRINT): New.
14107 (yyparse): Use them.
14108 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
14109 YYDPRINT here.
14110 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
14111 state reached after the reduction/recovery, since...
14112 (yyparse, yyprocessOneStack): Report the state we are entering in.
14113
c5e3e510
AD
141142002-11-16 Akim Demaille <akim@epita.fr>
14115
14116 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
14117 Add support for --trace=skeleton.
14118 * src/scan-skel.l: %option debug.
14119 Scan strings of non-@ or \n instead of character by character.
14120 (scan_skel): Handle trace_skeleton.
14121 (QPUTS): New.
14122 (@output_parser_name@, @output_header_name@): ``Restore'' their
14123 support (used to be M4 macros).
14124 * data/yacc.c: Quote larger chunks, a la glr.c.
14125 * data/lalr1.cc: Likewise.
14126 The header guards are no longer available, so use some other
14127 string than `YYLSP_NEEDED'.
14128
4c6cc1db
AD
141292002-11-16 Akim Demaille <akim@epita.fr>
14130
14131 Make the ``Printers and Destructors'' test more verbose, taking
14132 `yacc.c''s behavior as (possibly wrong) reference.
14133
14134 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
14135 instead of fprint on stdout.
14136 Set and report the last_line of the symbols.
14137 Consistently display values and locations.
14138
6d9e8019
PE
141392002-11-16 Paul Eggert <eggert@twinsun.com>
14140
14141 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
14142
6e649e65
PE
141432002-11-15 Paul Eggert <eggert@twinsun.com>
14144
b25d88f6
PE
14145 * tests/actions.at (Actions after errors): New test case.
14146
6e649e65
PE
14147 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
14148 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
14149 tests/action.at, tests/calc.at, tests/conflicts.at,
14150 tests/cxx-type.at, tests/regression.at:
14151 "parse error" -> "syntax error" for POSIX compatibility.
14152 "parsing stack overflow..." -> "parser stack overflow" so
14153 that code matches Bison documentation.
14154
0f39aab9
AD
141552002-11-15 Akim Demaille <akim@epita.fr>
14156
14157 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
14158 take two BRACED_CODE, not two string_content.
14159 Free the scanner's obstack when we are done.
14160 (code_content): New.
14161 * tests/calc.at: Adjust.
14162 * doc/bison.texinfo: Adjust.
14163 Also, make sure to include the `,' for these declarations.
14164
761c1926
AD
141652002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
14166
14167 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
14168 definition; avoids potential autoreconf problems.
14169
b0f98b10
AD
141702002-11-15 Akim Demaille <akim@epita.fr>
14171
14172 Always check the value returned by yyparse.
14173
14174 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
14175 returned by yyparse.
14176 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
14177 Adjust calls.
14178 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
14179 returned by yyparse.
14180
970785f1
PH
141812002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14182
14183 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
14184 on input.at test.
14185
8fcc7db1
PE
141862002-11-14 Paul Eggert <eggert@twinsun.com>
14187
7ec1b48e
PE
14188 * src/output.c (output_skeleton): Call xfopen instead of
14189 duplicating xfopen's body.
14190
cfff7583 14191 Fix bugs reported by Nelson H. F. Beebe in
161a71f3 14192 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
cfff7583 14193
8fcc7db1
PE
14194 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
14195 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
14196 Group compiler. Instead, use "$CC -E bar.c". Include the .h
14197 file twice in the grammar, as an extra check.
14198
14199 * tests/input.at (Torturing the Scanner): Surround the
14200 backslash-newline tests with "#if 0", to make it less likely that
14201 we'll run into compiler bugs. Bring back solitary \ inside
14202 comment, but add a closing comment to work around HP C bug. Don't
e3aa65c5 14203 test backslash-newline in C character constant.
8fcc7db1 14204
4e8d992c
AD
142052002-11-14 Akim Demaille <akim@epita.fr>
14206
14207 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
14208 status of the compiler.
f32b346d 14209 Calling `exit 1' is no longer needed.
4e8d992c
AD
14210 Reported by Nelson H. F. Beebe.
14211
9501dc6e
AD
142122002-11-14 Akim Demaille <akim@epita.fr>
14213
14214 * tests/atlocal.in (CPPFLAGS): We have config.h.
14215 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
14216 New.
14217 * tests/actions.at, tests/calc.at, tests/conflicts.at,
14218 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
14219 * tests/regression.at, tests/torture.at: Use them for all the
14220 grammars that are to be compiled.
14221 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
14222 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
14223 * doc/bison.texinfo (GLR Parsers): Document `inline'.
14224
18b519c0
AD
142252002-11-14 Akim Demaille <akim@epita.fr>
14226
14227 * doc/bison.texinfo: Various formatting changes (alignments in
14228 samples, additional @group/@end group, GCS in samples.
14229 Use @deffn instead of simple @table to define the directives,
14230 macros, variables etc.
14231
9a86cdb9
PE
142322002-11-13 Paul Eggert <eggert@twinsun.com>
14233
daa33def 14234 Fix some bugs reported by Albert Chin-A-Young in
161a71f3 14235 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
18b519c0 14236
daa33def 14237 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8fcc7db1 14238 -o c"; the HP C compiler chatters during compilation.
daa33def
PE
14239 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
14240 * tests/headers.at (export YYLTYPE): Likewise.
14241
14242 * tests/input.at (Torturing the Scanner): Remove lines containing
8fcc7db1 14243 solitary backslashes, as they tickle a bug in the HP C compiler.
daa33def 14244
9a86cdb9
PE
14245 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
14246 comments, since they're not portable. Use GNU coding style.
14247
9c1e26bd
AD
142482002-11-13 Akim Demaille <akim@epita.fr>
14249
14250 * data/yacc.c: Leave bigger chunks of quoted text.
14251 (YYDSYMPRINTF): New.
14252 Use it to report symbol activities.
14253 * data/glr.c (YYDSYMPRINTF): New.
14254 Use it.
14255
87f721cc
PE
142562002-11-12 Paul Eggert <eggert@twinsun.com>
14257
14258 Version 1.75b.
14259
14260 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
14261 (yyglrReduce): Return yyok, not 0.
14262 This should avoid the enumerated-type warnings reported
464c6927 14263 by Nelson H. F. Beebe in
161a71f3 14264 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
87f721cc
PE
14265
14266 * lib/bbitset.h (BITSET_INLINE): Remove.
14267 * lib/bitset.h [! BITSET_INLINE]: Remove.
14268 (bitset_set, bitset_reset, bitset_test): Rename local vars
14269 to avoid shadowing warnings by GCC.
14270
14271 * data/glr.c (inline): Remove #define. It's the user's
14272 responsibility to #define it away, just like 'const'.
464c6927 14273 This fixes one of the bugs reported by Nelson H. F. Beebe in
161a71f3 14274 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
18b519c0 14275
87f721cc
PE
14276 * Makefile.maint (po-check): Scan .l and .y files instead of the
14277 .c and the .h files that they generate. This fixes the bug
14278 reported by Tim Van Holder in:
161a71f3 14279 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
87f721cc
PE
14280 Look for N_ as well as for _. Try to avoid matching #define for
14281 N_ and _.
14282 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
14283 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
14284 * src/scan-gram.l: Revamp regular expressions so that " and '
14285 do not confuse xgettext.
14286
14287 * src/struniq.h (struniq_new): Do not declare the return type
14288 to be 'const'; this violates the C standard.
14289 * src/struniq.c (struniq_new): Likewise.
14290
be14ade5
AD
142912002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
14292
14293 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
14294 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
14295 linker.
14296
05291fbc
AD
142972002-11-12 Akim Demaille <akim@epita.fr>
14298
14299 * Makefile.maint: Sync with Autoconf:
14300 (local_updates): New.
14301
1f5fd52e
AD
143022002-11-12 Akim Demaille <akim@epita.fr>
14303
14304 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
14305
283f1e64
AD
143062002-11-12 Akim Demaille <akim@epita.fr>
14307
14308 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
14309 locations.
14310
886b69d1
AD
143112002-11-12 Akim Demaille <akim@epita.fr>
14312
14313 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
14314 not yyvalue.
14315
3df37415
AD
143162002-11-12 Akim Demaille <akim@epita.fr>
14317
14318 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
14319 Use it to test the GLR parser.
14320
7bd6c77e
AD
143212002-11-12 Akim Demaille <akim@epita.fr>
14322
14323 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
14324 defines it.
14325 * data/glr.c (yystos): New.
14326 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
14327 (YYDSYMPRINT): New.
14328 (yyval): Don't define it, it is handled via M4.
14329 (yyrecoverParseError): Free verbosely the discarded symbols.
14330 * data/yacc.c (yysymprint): Remove, rather...
14331 (b4_yysymprint_generate): invoke.
14332 * data/c.m4 (b4_yysymprint_generate): New.
14333 Accept pointers as arguments, as opposed to the version from
14334 yacc.c.
14335 (b4_yydestruct_generate): Likewise.
14336 * tests/cations.at (Printers and Destructors): Use Bison directives
14337 instead of CPP macros.
14338 Don't rely on internal details.
14339
b0400cc6
AD
143402002-11-12 Akim Demaille <akim@epita.fr>
14341
14342 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
14343 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
14344 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
14345 it against YYEMPTY and so forth), work on yytoken (i.e., set
14346 it to YYEMPTY etc.).
14347 (yydestruct): Replace with a b4_yydestruct_generate invocation.
14348 (b4_symbol_actions): Remove.
14349 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
14350 for 0, end-of-input.
14351
72f889cc
AD
143522002-11-12 Akim Demaille <akim@epita.fr>
14353
14354 * doc/bison.texinfo (Destructor Decl): New.
14355
b1ae9233
AD
143562002-11-12 Akim Demaille <akim@epita.fr>
14357
14358 * src/tables.c (tables_generate): Use free for pointers that
14359 cannot be NULL, not XFREE.
14360 (pack_vector): Use assert, not fatal, for bound violations.
14361 * src/state.c (state_new): Likewise.
14362 * src/reader.c (reader): Likewise.
14363 * src/lalr.c (set_goto_map): Likewise.
72f889cc 14364 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
b1ae9233
AD
14365 the file name.
14366
7ec2d4cd
AD
143672002-11-12 Akim Demaille <akim@epita.fr>
14368
14369 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
14370 Restore.
14371 * src/scan-gram.l (last_string): Is global to the file, not to
14372 yylex.
14373 * src/parse-gram.y (input): Don't append the epilogue here,
14374 (epilogue.opt): do it here, and free the scanner's obstack.
14375 * src/reader.c (epilogue_set): Rename as...
14376 (epilogue_augment): this.
14377 * data/c.m4 (b4_epilogue): Defaults to empty.
14378
573a6cd3
AD
143792002-11-12 Akim Demaille <akim@epita.fr>
14380
14381 * src/getargs.c (long_options): Remove duplicates.
14382 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
14383 Remove.
14384 * doc/bison.rnh: Remove.
14385 * doc/bison.texinfo (VMS Invocation): Remove.
14386
95612cfa
AD
143872002-11-12 Akim Demaille <akim@epita.fr>
14388
14389 * src/struniq.h, src/struniq.c (struniq_t): Is const.
14390 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
14391
14392 Use struniq for symbols.
14393
14394 * src/symtab.h (symbol_t): The tag member is a struniq.
14395 (symbol_type_set): Adjust.
14396 * src/symtab.c (symbol_new): Takes a struniq.
14397 (symbol_free): Don't free the tag member.
14398 (hash_compare_symbol_t, hash_symbol_t): Rename as...
14399 (hash_compare_symbol, hash_symbol): these.
14400 Use the fact that tags as struniqs.
14401 (symbol_get): Use struniq_new.
14402 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
14403 Returns a strniq.
14404 * src/reader.h (merger_list, grammar_currentmerge_set): The name
14405 and type members are struniqs.
14406 * src/reader.c (get_merge_function)
14407 (grammar_current_rule_merge_set): Adjust.
14408 (TYPE, current_type): Are struniq.
14409
14410 Use struniq for file names.
14411
14412 * src/files.h, src/files.c (infile): Split into...
14413 (grammar_file, current_file): these.
14414 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
14415 * src/reduce.c (reduce_print): Likewise.
14416 * src/getargs.c (getargs): Likewise.
14417 * src/complain.h, src/complain.c: Likewise.
14418 * src/main.c (main): Call struniqs_new early enough to use it for
14419 file names.
14420 Don't free the input file name.
14421
3e6656f9
AD
144222002-11-12 Akim Demaille <akim@epita.fr>
14423
14424 * src/symtab.c (symbol_free): Remove dead deactivated code:
14425 type_name are properly removed.
14426 Don't use XFREE to free items that cannot be NULL.
14427 * src/struniq.h, src/struniq.c: New.
14428 * src/main.c (main): Initialize/free struniqs.
14429 * src/parse-gram.y (%union): Add astruniq member.
14430 (yyprint): Adjust.
14431 * src/scan-gram.l (<{tag}>): Return a struniq.
14432 Free the obstack bit that used to store it.
14433 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
14434
7672019c
PE
144352002-11-11 Paul Eggert <eggert@twinsun.com>
14436
14437 Revamp to fix many (but not all) of the C- and M4-related quoting
14438 problems. Among other things, this fixes the Bison bug reported
14439 by Jan Hubicka when processing the Bash grammar; see:
161a71f3 14440 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7672019c
PE
14441
14442 Use new @ escapes consistently. Represent brackets with @{ and @}
14443 rather than @<:@ and @:>@, since this works a bit better with dumb
14444 editors like vi. Represent @ with @@, since @ is now consistently
14445 an escape. Use @oline@ and @ofile@ rather than __oline__ and
14446 __ofile__, to avoid unexpected expansions. Similarly, use @output
14447 rather than #output.
14448
14449 * data/c.m4 (b4_copyright): Omit file name from comment, since
14450 the file name could contain "*/".
14451 (b4_synclines_flag): Don't quote the 2nd argument; it should already
14452 be quoted. All uses changed.
14453
14454 * data/glr.c: Use new @ escapes consistently.
14455 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
14456 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
14457 Remove, since they couldn't handle arbitrary characters in file
14458 names.
14459 * data/lalr1.cc: Likewise.
14460 * data/yacc.c: Likewise.
14461
14462 * src/files.c (output_infix): Remove; all uses removed.
14463 * src/files.h: Likewise.
14464
14465 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
14466 mishandled funny characters in file names, and anyway it isn't
14467 needed any more.
14468 * data/yacc.c: Likewise.
14469 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
14470
14471 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
14472 * data/yacc.c: Likewise.
14473
14474 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
14475 strings now.
14476 (muscle_init): Quote filename as a C string.
14477 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
14478 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
14479 * src/output.c (escaped_file_name_output): New function.
14480 (prepare_symbols): Quote tokens for M4.
14481 (prepare): Don't insert output_infix, output_prefix,
14482 output_parser_name, output_header_name; this is now down by scan-skel.
14483 Insert skeleton as a C string.
14484
14485 * src/output.c (user_actions_output, symbol_destructors_output,
14486 symbol_printers_output): Quote filenames for C and M4.
14487 * src/reader.c (prologue_augment, epilogue_set): Likewise.
14488
14489 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
14490 escapes other than \\ and \'; this simplifies the code.
14491 (<SC_STRING>): Likewise, for \\ and \".
14492 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
14493 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
14494 Use new escapes @{ and @} for [ and ].
14495
14496 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
14497 them with auto vars.
14498 Switch to new escape scheme, where @ is the escape character uniformly.
14499 Abort if a stray escape character is found. Avoid unbounded input
14500 buffer when parsing non-escaped text.
14501
14502 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
14503 __oline__, #output, $@, and @{ do not have unintended meanings.
14504
acea4f3b
PE
145052002-11-09 Paul Eggert <eggert@twinsun.com>
14506
14507 Fix the test failure due to GCC warnings described in
161a71f3 14508 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
acea4f3b
PE
14509 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
14510 evaluate to 0 if it's impossible for NINF to be in the respective
14511 table.
14512 (yygetLRActions, yyrecoverParseError): Use them.
14513
14514 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
14515 counted in the token inserted at end of file. Now takes
14516 location_t *, not location_t, so that the location can be
14517 adjusted. All uses changed.
14518
14519 * tests/regression.at (Invalid inputs): Adjust wording in
14520 diagnostic to match the new behavior.
14521
14522 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
14523 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
14524 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
14525 abort ();'. This reduces the runtime of the "Many lookaheads"
14526 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
14527 GCC 3.2.
14528
20ef1ad5
PE
145292002-11-07 Paul Eggert <eggert@twinsun.com>
14530
14531 * src/parse-gram.y (CHARACTER): Remove unused token.
14532 All uses removed.
14533
14534 * src/scan-gram.l: Remove stack option. We no longer use the
14535 stack, since the stack was never deeper than 1; instead, use the
14536 new auto var c_context to record the stacked value.
14537
14538 Remove nounput option. At an unexpected end of file, we now unput
14539 the minimal input necessary to end cleanly; this simplifies the
14540 code.
14541
14542 Avoid unbounded token sizes where this is easy.
14543
14544 (unexpected_end_of_file): New function.
14545 Use it to systematize the error message on unexpected EOF.
14546 (last-string): Now auto, not static.
14547 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
14548 (scanner_last_string_free): Remove; not used.
14549 (percent_percent_count): Move decl to just before use.
14550 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
14551 not the (never otherwised-used) CHARACTER.
14552
93724f13
AD
145532002-11-07 Akim Demaille <akim@epita.fr>
14554
14555 Let yyerror always receive the msg as last argument, so that
14556 yyerror can be variadic.
14557
14558 * data/yacc.c (b4_yyerror_args): New.
14559 Use it when calling yyerror.
14560 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
14561 Use it when calling yyerror.
14562 * doc/bison.texinfo (Error Reporting): Adjust.
14563 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
14564 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
14565
6e40b4eb
AD
145662002-11-06 Akim Demaille <akim@epita.fr>
14567
14568 #line should have quoted strings.
14569 Ideally, this should be done by m4_quotearg.
14570
14571 * src/scan-skel.l: Include quotearg.h.
14572 Quote __ofile__.
14573 * src/output.c (symbol_printers_output)
14574 (symbol_destructors_output): Quote the file name.
14575
2dfbfc12
AD
145762002-11-06 Akim Demaille <akim@epita.fr>
14577
14578 * tests/regression.at (Invalid inputs): Adjust to the recent
14579 messages.
14580
437c2d80
AD
145812002-11-06 Akim Demaille <akim@epita.fr>
14582
14583 Restore --no-lines.
14584 Reported by Jim Kent.
14585
14586 * data/c.m4 (b4_syncline): New.
14587 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
14588 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
14589 * src/output.c (user_actions_output): Likewise.
14590 (prepare): Define 'b4_synclines_flag'.
2dfbfc12 14591 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
437c2d80 14592
900c5db5
AD
145932002-11-06 Akim Demaille <akim@epita.fr>
14594
14595 * src/main.c (main): Free `infile'.
14596 * src/scan-gram.l (handle_syncline): New.
14597 Recognize `#line'.
14598 * src/output.c (user_actions_output, symbol_destructors_output)
14599 (symbol_printers_output): Use the location's file name, not
14600 infile.
14601 * src/reader.c (prologue_augment, epilogue_set): Likewise.
14602
e183b123 146032002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
51b4a04c 14604
e183b123 14605 * src/tables.c (matching_state): Don't allow states to match if
51b4a04c 14606 either has GLR conflict entries.
e183b123 14607
193eb6b7
PE
146082002-11-05 Paul Eggert <eggert@twinsun.com>
14609
e183b123
PE
14610 * src/scan-gram.l: Use more accurate diagnostics, e.g.
14611 "integer out of range" rather than "invalid value".
14612 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
14613 accordingly.
14614
193eb6b7
PE
14615 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
14616 Also, remove one static variable in the scanner.
14617
14618 * src/scan-gram.l (braces_level): Now auto, not static.
14619 Initialize to zero if the compiler is being picky.
14620 (INITIAL): Clear braces_level instead of incrementing it.
14621 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
14622 as POSIX 1003.1-2001 requires.
14623 * src/system.h (IF_LINT): New macro, taken from coreutils.
14624 * configure.ac: Define "lint" if --enable-gcc-warnings.
14625
29c01725
AD
146262002-11-05 Akim Demaille <akim@epita.fr>
14627
14628 * src/scan-gram.l: When it starts with `%', complain about the
14629 whole directive, not just that `invalid character: %'.
14630
8aeac3ca
AD
146312002-11-04 Akim Demaille <akim@epita.fr>
14632
14633 * Makefile.maint: Update from Autoconf.
14634 (update, cvs-update, po-update, do-po-update): New.
14635
793a58bb
AD
146362002-11-04 Akim Demaille <akim@epita.fr>
14637
14638 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
14639 and yyerror.
14640 Have yyerror `use' its arguments.
14641 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
14642 returns true when location & yacc & pure & parse-param.
14643 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
14644
c4d720cd
AD
146452002-11-04 Akim Demaille <akim@epita.fr>
14646
14647 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
14648 clashes.
14649 * src/scan-gram.l: Use [\'] instead of ['] to pacify
14650 font-lock-mode.
14651 Use complain_at.
14652 Use quote, not quote_n since LOCATION_PRINT no longer uses the
14653 slot 0.
14654
613a0dc5
PE
146552002-11-03 Paul Eggert <eggert@twinsun.com>
14656
14657 * src/reader.c (get_merge_function, grammar_current_rule_check):
14658 Use consistent diagnostics for reporting type name clashes.
14659 Quote the types with <>, for consistency with Yacc.
14660 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
14661
2a8d363a
AD
146622002-11-03 Akim Demaille <akim@epita.fr>
14663
14664 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
14665 New.
14666 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
14667 (b4_parse_param): Remove.
14668 Use b4_identification.
14669 Propagate b4_pure_args where needed to pass them to yyerror.
14670 * data/glr.m4 (b4_parse_param): Remove.
14671 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
14672 (b4_lpure_formals): New.
14673 Use b4_identification.
14674 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
14675 b4_user_formals and b4_user_args.
14676 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
14677 (yyreportAmbiguity): When using a pure parser, also need
14678 the location, and the parse-params.
14679 Adjust callers.
14680 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
14681 When using a pure parser, also need the parse-params.
14682 Adjust callers.
14683 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
14684 (%pure-parser + %parse-param) LALR and GLR parsers.
14685 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
14686 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
14687 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
14688 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
14689 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
14690 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
14691 * doc/bison.texinfo: Untabify the whole file.
14692 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
14693 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
14694 (Error Reporting): Adjust to these new directives.
14695 Document %error-verbose, deprecate YYERROR_VERBOSE.
14696
9e32add8
AD
146972002-11-03 Akim Demaille <akim@epita.fr>
14698
14699 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
14700 AT_CHECK_CALC_GLR invocations to use % directives, instead of
14701 command line options.
14702 * tests/cxx-type.at: Formatting changes.
14703
b02d90a5
PE
147042002-11-03 Paul Eggert <eggert@twinsun.com>
14705
14706 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
14707 to count columns correctly, and to check for invalid inputs.
9e32add8 14708
b02d90a5
PE
14709 Use mbsnwidth to count columns correctly. Account for tabs, too.
14710 Include mbswidth.h.
14711 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
14712 (extend_location): New function.
14713 (YY_LINES): Remove.
14714
14715 Handle CRLF in C code rather than in Lex code.
14716 (YY_INPUT): New macro.
14717 (no_cr_read): New function.
14718
14719 Scan UCNs, even though we don't fully handle them yet.
14720 (convert_ucn_to_byte): New function.
14721
14722 Handle backslash-newline correctly in C code.
14723 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
14724 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
14725 all uses changed.
14726 (tag, splice): New EREs. Do not allow NUL or newline in tags.
14727 Use {splice} wherever C allows backslash-newline.
14728 YY_STEP after space, newline, vertical-tab.
14729 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
9e32add8 14730
b02d90a5
PE
14731 (letter, id): Don't assume ASCII; e.g., spell out a-z.
14732
14733 ({int}, handle_action_dollar, handle_action_at): Check for integer
14734 overflow.
9e32add8 14735
b02d90a5
PE
14736 (YY_STEP): Omit trailing semicolon, so that it's more like C.
14737
14738 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
14739 as well as \000. Check for UCHAR_MAX, not 255.
14740 Allow \x with an arbitrary positive number of digits, as in C.
14741 Check for overflow here.
14742 Allow \? and UCNs, for compatibility with C.
14743
14744 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
14745 with quote slot used by complain_at.
14746
14747 * tests/input.at: Add tests for backslash-newline, m4 quotes
14748 in symbols, long literals, and funny escapes in strings.
14749
14750 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
14751 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
14752 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
14753 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
14754 * m4/mbswidth.m4: New file, from GNU coreutils.
14755
14756 * doc/bison.texinfo (Grammar Outline): Document // comments.
14757 (Symbols): Document that trigraphs have no special meaning in Bison,
14758 nor is backslash-newline allowed.
14759 (Actions): Document that trigraphs have no special meaning.
14760
14761 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
14762 no longer used.
14763
147642002-11-02 Paul Eggert <eggert@twinsun.com>
14765
14766 * src/reader.c: Don't include quote.h; not needed.
14767 (get_merge_function): Reword warning to be consistent with
14768 type clash diagnostic in grammar_current_rule_check.
14769
14770 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
14771 bug in trigraph handling.
14772
14773 * src/output.c (prepare_symbols): When printing token names,
14774 escape "[" as "@<:@" and likewise for "]".
14775
14776 * src/system.h (errno): Remove declaration, as we are now
14777 assuming C89 or better, and C89 guarantees errno.
14778
762b212b
PE
147792002-10-30 Paul Eggert <eggert@twinsun.com>
14780
14781 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
14782 Check for close failures.
14783 * src/files.h (xfclose): Return void, not int, since it always
14784 returned zero.
14785 * src/files.c (xfclose): Likewise. Report I/O error if ferror
14786 indicates one.
14787 * src/output.c (output_skeleton): Use xfclose rather than fclose
14788 and ferror. xfclose now checks ferror.
14789
14790 * data/glr.c (YYLEFTMOST_STATE): Remove.
14791 (yyreportTree): Use a stack-based leftmost state. This avoids
14792 our continuing battles with bogus warnings about initializers.
14793
56100c60
AD
147942002-10-30 Akim Demaille <akim@epita.fr>
14795
14796 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
14797 #if.
14798
51b4a04c
PH
147992002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14800
14801 * tests/glr-regr1.at: New test for reported regressions.
14802 * tests/testsuite.at: Add glr-regr1.at test.
14803 * tests/Makefile.am: Add glr-regr1.at test.
e183b123 14804
bf1ebda2
PE
148052002-10-24 Paul Eggert <eggert@twinsun.com>
14806
5c16c6b1
PE
14807 Version 1.75a.
14808
bf1ebda2
PE
14809 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
14810 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
14811 we use malloc. Don't assume 'A' through 'Z' are contiguous.
14812 Don't assume strdup exists; POSIX says its an XSI extension.
14813 Check for buffer overflow on input.
14814
b526ee61
AD
148152002-10-24 Akim Demaille <akim@epita.fr>
14816
14817 * src/output.c (output_skeleton): Don't disable M4sugar comments
14818 too soon: it results in comments being expanded.
14819 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
14820 first output.
14821
f1886bb2
AD
148222002-10-24 Akim Demaille <akim@epita.fr>
14823
14824 * data/yacc.c (m4_int_type): New.
14825 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
14826 char' as only yacc.c wants K&R portability.
14827 * data/glr.c (yysigned_char): Remove.
14828 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
14829 Reported by Quoc Peyrot.
14830
c5576256
PE
148312002-10-23 Paul Eggert <eggert@twinsun.com>
14832
14833 * src/main.c (main): With --trace=time, report times even if a
14834 non-fatal error occurs. Formerly, the times were reported in some
14835 such cases but not in others.
14836 * src/reader.c (reader): Just return if a complaint has been issued,
14837 instead of exiting, so that 'main' can report times.
14838
27b0ffea
AD
148392002-10-22 Akim Demaille <akim@epita.fr>
14840
14841 * src/system.h: Include sys/types.
14842 Reported by Bert Deknuydt.
14843
223a7883
PE
148442002-10-23 Paul Eggert <eggert@twinsun.com>
14845
14846 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
14847 Suggested by Art Haas.
14848
148492002-10-22 Paul Eggert <eggert@twinsun.com>
14850
14851 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
14852 decl; not needed any more.
14853 * src/main.c (main): Use return to exit, undoing yesterday's change.
14854 The last OS that we could find where this wouldn't work is
14855 SunOS 3.5, and that's too old to worry about now.
14856
14857 * data/glr.c (struct yyltype): Define members even when not
14858 doing locations. This is more consistent with yacc.c, and it
14859 works around the following bug reports:
161a71f3
PE
14860 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
14861 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
27b0ffea 14862
223a7883
PE
14863 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
14864 @acronym consistently. Standardize on "Yacc" instead of "YACC",
14865 "Algol" instead of "ALGOL". Give a bit more history about BNF.
14866
8b76775a
AD
148672002-10-22 Akim Demaille <akim@epita.fr>
14868
14869 * data/README: New.
14870
6db10d14
PE
148712002-10-21 Paul Eggert <eggert@twinsun.com>
14872
14873 Be consistent about 'bool'; the old code used an enum in one
14874 module and an int in another, and this violates the C standard.
14875 * m4/stdbool.m4: New file, from coreutils 4.5.3.
14876 * configure.ac (AC_HEADER_STDBOOL): Add.
14877 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
14878 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
14879 * src/symtab.c (hash_compare_symbol_t): Likewise.
14880 * src/system.h (bool, false, true): Use a definition consistent
14881 with ../lib/hash.c. All uses changed.
14882
14883 * src/complain.c (warning_issued): Renamed from warn_message_count,
14884 so that we needn't worry about integer overflow (!).
14885 Now of type bool. All uses changed.
14886 (complaint_issued): Renamed from complain_message_count; likewise.
14887
14888 * src/main.c (main): Use exit to exit with failure.
27b0ffea 14889
6db10d14
PE
14890 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
14891 rather than 1 and 0.
14892 * src/main.c (main): Likewise.
14893 * src/getargs.c (getargs): Likewise.
14894 * src/reader.c (reader): Likewise.
14895
14896 * src/getarg.c (getargs): Remove duplicate code for
14897 "Try `bison --help'".
14898
14899 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
14900 What was that "2" for?
14901
14902 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
14903 * src/getargs.c (usage): Likewise.
14904
14905 * src/getargs.c (getargs): When there are too few operands, report
14906 the last one. When there are too many, report the first extra
14907 one. This is how diffutils does it.
14908
92a060fd
PE
149092002-10-20 Paul Eggert <eggert@twinsun.com>
14910
14911 Remove K&R vestiges.
14912 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
14913 * src/complain.c (VA_START): Remove. Assume prototypes.
14914 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
14915 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
14916 fatal): Assume prototypes.
14917 * src/complain.h: Assume prototypes.
14918 * src/system.h (PARAMS): Remove.
14919 Include <limits.h> unconditionally, since it's guaranteeed even
14920 for a freestanding C89 compiler.
14921 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
14922 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8b76775a 14923
e7cb57c0
AD
149242002-10-20 Akim Demaille <akim@epita.fr>
14925
14926 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
14927 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
14928 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
14929 (yyresolveStates, yyresolveAction, yyresolveStack)
14930 (yyprocessOneStack): Use them.
14931 (yy_reduce_print): New.
14932 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
14933
0245f82d
AD
149342002-10-20 Akim Demaille <akim@epita.fr>
14935
14936 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
14937 arguments and output `void'.
14938 (b4_c_function): Rename as...
14939 (b4_c_function_def): this.
14940 (b4_c_function_decl, b4_c_ansi_function_def)
14941 (b4_c_ansi_function_decl): New.
14942 Change the interpretation of the arguments: before `int, foo', now
14943 `int foo, foo'.
14944 * data/yacc.c (yyparse): Prototype and define thanks to these.
14945 Adjust b4_c_function_def uses.
14946 * data/glr.c (yyparse): Likewise, but ANSI only.
14947
39912f52
AD
149482002-10-20 Akim Demaille <akim@epita.fr>
14949
14950 * src/output.c (prepare): Move the definition of `tokens_number',
14951 `nterms_number', `undef_token_number', `user_token_number_max'
14952 to...
14953 (prepare_tokens): Here.
14954 (prepare_tokens): Rename as...
14955 (prepare_symbols): this.
14956 (prepare): Move the definition of `rules_number' to...
14957 (prepare_rules): here.
14958 (prepare): Move the definition of `last', `final_state_number',
14959 `states_number' to...
14960 (prepare_states): here.
14961 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
14962
20c1e2ad
AD
149632002-10-20 Akim Demaille <akim@epita.fr>
14964
14965 * src/tables.h, src/tables.c, src/output.c: Comment changes.
14966
21964f43
AD
149672002-10-20 Akim Demaille <akim@epita.fr>
14968
14969 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
14970 * data/c.m4: here.
14971
66d30cd4
AD
149722002-10-20 Akim Demaille <akim@epita.fr>
14973
14974 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
14975 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
14976 `pair'.
14977 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
14978 `name' to...
14979 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
14980 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
14981 These.
14982
95f2c9fe
PE
149832002-10-19 Paul Eggert <eggert@twinsun.com>
14984
14985 Do not create a temporary file, as that involves security and
14986 cleanup headaches. Instead, use a pair of pipes.
14987 Derived from a suggestion by Florian Krohm.
14988 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
14989 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
14990 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
14991 (BISON_PREREQ_SUBPIPE): Add.
14992 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
14993 Add subpipe.h, subpipe.c.
14994 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
14995 * po/POTFILES.in: Add lib/subpipe.c.
14996 * src/output.c: Include "subpipe.h".
14997 (m4_invoke): Remove decl.
14998 (scan_skel): New decl.
14999 (output_skeleton): Use pipe rather than temporary file for m4 input.
15000 Check that m4sugar.m4 is readable, to avoid deadlock.
15001 Check for pipe I/O error.
15002 * src/scan-skel.l (readpipe): Remove decl.
15003 (scan_skel): New function, to be used in place of m4_invoke.
15004 Read from stream rather than file.
66d30cd4 15005
95f2c9fe
PE
15006 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
15007 float, as this generates a warning on Solaris 8 + GCC 3.2 with
15008 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
15009 this generates a more-accurate value anyway.
15010
15011 * lib/timevar.c (timervar_accumulate): Rename locals to
15012 avoid confusion with similarly-named more-global.
15013 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
15014
15015 * src/output.c (prepare): Use xstrdup to convert char const *
15016 to char *, to avoid GCC warning.
15017
c19988b7
AD
150182002-10-19 Akim Demaille <akim@epita.fr>
15019
15020 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
15021 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
15022 Use them to have `calc.y' ready for %pure-parser.
15023 * data/yacc.c (YYLEX): Pass a yylex return type to
15024 b4_c_function_call.
15025
ae7453f2
AD
150262002-10-19 Akim Demaille <akim@epita.fr>
15027
15028 Prototype support of %lex-param and %parse-param.
15029
15030 * src/parse-gram.y: Add the definition of the %lex-param and
15031 %parse-param tokens, plus their rules.
15032 Drop the `_' version of %glr-parser.
15033 Add the "," token.
15034 * src/scan-gram.l (INITIAL): Scan them.
15035 * src/muscle_tab.c: Comment changes.
15036 (muscle_insert, muscle_find): Rename `pair' as `probe'.
15037 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
15038 (muscle_entry_s): The `value' member is no longer const.
15039 Adjust all dependencies.
15040 * src/muscle_tab.c (muscle_init): Adjust: use
15041 MUSCLE_INSERT_STRING.
15042 Initialize the obstack earlier.
15043 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
15044 (muscle_pair_list_grow): New.
15045 * data/c.m4 (b4_c_function_call, b4_c_args): New.
15046 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
15047 * tests/calc.at: Use %locations, not --locations.
15048 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
15049
0e575721
AD
150502002-10-19 Akim Demaille <akim@epita.fr>
15051
15052 * src/getargs.c (usage): Take status as argument and exit
15053 accordingly.
15054 Report the traditional `Try ... --help' message when status != 0.
15055 (usage, version): Don't take a FILE * as arg, it is pointless.
15056 (getargs): When there is an incorrect number of arguments, make it
15057 an error, and report it GNUlically thanks to `usage ()'.
15058
724ce7f5
PE
150592002-10-18 Paul Eggert <eggert@twinsun.com>
15060
3a781eb2
PE
15061 * data/glr.c (yyreportParseError): Don't assume that sprintf
15062 yields the length of the printed string, as this is not true
15063 on SunOS 4.1.4. Reported by Peter Klein.
15064
724ce7f5
PE
15065 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
15066 * tests/conflicts.at (%nonassoc and eof): Likewise.
15067 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
15068
473d0a75
AD
150692002-10-17 Akim Demaille <akim@epita.fr>
15070
15071 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
15072 * src/getargs.c (trace_types, trace_args): Adjust.
15073 * src/reader.c (grammar_current_rule_prec_set)
15074 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
15075 Standardize error messages.
15076 And s/@prec/%prec/!
15077 (reader): Use trace_flag to enable scanner/parser debugging,
15078 instead of an adhoc scheme.
15079 * src/scan-gram.l: Remove trailing debugging code.
15080
e76d2469
PE
150812002-10-16 Paul Eggert <eggert@twinsun.com>
15082
93e2236a
PE
15083 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
15084 MUSCLE_TAB_H.
15085
e76d2469
PE
15086 * NEWS: Officially drop support for building Bison with K&R C,
15087 since it didn't work anyway and it's not worth worrying about.
15088 * Makefile.maint (wget_files): Remove ansi2knr.c.
15089 (ansi2knr.c-url_prefix): Remove.
15090 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
15091 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
15092 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
15093
5bd1c419
PE
150942002-10-15 Paul Eggert <eggert@twinsun.com>
15095
15096 Stop using the "enum_" trick for K&R-style function definitions;
15097 it confused me, and I was the author! Instead, assume that people
15098 who want to use K&R C compilers (when using these modules in GCC,
15099 perhaps?) will run ansi2knr.
15100
15101 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
15102 All uses of "enum_" changed to "enum ".
15103 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
15104 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
e76d2469 15105
5bd1c419
PE
15106 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
15107 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
15108 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
15109 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
15110 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
15111 abitset_not, abitset_ones, abitset_or, abitset_or_and,
15112 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
15113 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
15114 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
15115 Use function prototypes; this removes the need for declaring
15116 static functions simply to provide their prototypes.
15117 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
15118 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
15119 bitset_count_, bitset_create, bitset_dump, bitset_first,
15120 bitset_free, bitset_init, bitset_last, bitset_next,
15121 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
15122 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
15123 bitset_print, bitset_release_memory, bitset_toggle_,
15124 bitset_type_choose, bitset_type_get, bitset_type_name_get,
15125 debug_bitset): Likewise.
15126 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
15127 * lib/bitset_stats.c (bitset_log_histogram_print,
15128 bitset_percent_histogram_print, bitset_stats_and,
15129 bitset_stats_and_cmp, bitset_stats_and_or,
15130 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
15131 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
15132 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
15133 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
15134 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
15135 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
15136 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
15137 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
15138 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
15139 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
15140 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
15141 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
15142 bitset_stats_zero): Likewise.
15143 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
15144 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
15145 bitsetv_dump, debug_bitsetv): Likewise.
15146 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
15147 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
15148 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
15149 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
15150 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
15151 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
15152 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
15153 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
15154 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
15155 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
15156 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
15157 Likewise.
15158 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
15159 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
15160 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
15161 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
15162 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
15163 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
15164 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
15165 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
15166 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
15167 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
15168 lbitset_xor_cmp, lbitset_zero): Likewise.
e76d2469 15169
ae26e1f0
AD
151702002-10-14 Akim Demaille <akim@epita.fr>
15171
15172 Version 1.75.
15173
d43baf71
AD
151742002-10-14 Akim Demaille <akim@epita.fr>
15175
15176 * tests/Makefile.am (maintainer-check-posix): New.
15177
7ebc83e3
AD
151782002-10-14 Akim Demaille <akim@epita.fr>
15179
15180 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
15181 member.
15182
05846dae
AD
151832002-10-14 Akim Demaille <akim@epita.fr>
15184
15185 * src/tables.c (table_ninf_remap): base -> tab.
15186 Reported by Matt Rosing.
15187
1318e37d
PE
151882002-10-14 Paul Eggert <eggert@twinsun.com>
15189
447fbb17
PE
15190 * tests/action.at, tests/calc.at, tests/conflicts.at,
15191 tests/cxx-type.at, tests/headers.at, tests/input.at,
15192 tests/regression.at, tests/synclines.at, tests/torture.at:
15193 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
15194 so that the tests still work even if POSIXLY_CORRECT is set.
15195 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
05846dae 15196
1318e37d
PE
15197 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
15198 for portability to K&R hosts. Fix typo: signed char is guaranteed
15199 only to 127, not to 128.
15200 * data/glr.c (yysigned_char): New type.
15201 * data/yacc.c (yysigned_char): Likewise.
15202 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
15203
cc0f0794
PE
152042002-10-13 Paul Eggert <eggert@twinsun.com>
15205
5038f418
PE
15206 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
15207 true due to limited range of data type" warning from GCC.
15208
cc0f0794
PE
15209 * data/c.m4 (b4_token_defines): Protect against double-inclusion
15210 by wrapping enum yytokentype's definition inside #ifndef
15211 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
15212
6fed0802
AD
152132002-10-13 Akim Demaille <akim@epita.fr>
15214
15215 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
15216 Un yy- yyrhs to avoid the name clash with the global YYRHS.
15217
32f0598d
AD
152182002-10-13 Akim Demaille <akim@epita.fr>
15219
15220 * Makefile.maint: Update from Autoconf 2.54.
15221 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
15222
7ea9a33f
AD
152232002-10-13 Akim Demaille <akim@epita.fr>
15224
15225 * src/print.c (print_state): Separate the list of solved conflicts
15226 from the other items.
15227 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
15228
ea99527d
AD
152292002-10-13 Akim Demaille <akim@epita.fr>
15230
15231 Let nondeterministic skeletons be usable with deterministic
15232 tables.
15233
15234 With the patch, GAWK compiled by GCC without -O2 passes its test
15235 suite using a GLR parser driven by LALR tables. It fails with -O2
15236 because `struct stat' gives two different answers on my machine:
15237 88 (definition of an auto var) and later 96 (memset on this var).
15238 Hence the stack is badly corrumpted. The headers inclusion is to
15239 blame: if I move the awk.h inclusion before GLR's system header
15240 inclusion, the two struct stat have the same size.
15241
15242 * src/tables.c (pack_table): Always create conflict_table.
15243 (token_actions): Always create conflict_list.
15244 * data/glr.c (YYFLAG): Remove, unused.
15245
f377f69f
AD
152462002-10-13 Akim Demaille <akim@epita.fr>
15247
15248 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
15249 (O0FLAGS): New.
15250 (VALGRIND, GXX): New.
15251 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
15252 * tests/bison.in: Run $PREBISON a pre-command.
15253 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
15254 (maintainer-check-g++): New.
15255 * Makefile.am (maintainer-check): New.
15256
2a1fe6ed
AD
152572002-10-13 Akim Demaille <akim@epita.fr>
15258
15259 * data/glr.c: Formatting changes.
15260 Tweak some trace messages to match yacc.c's.
15261
f50adbbd
AD
152622002-10-13 Akim Demaille <akim@epita.fr>
15263
15264 GLR parsers sometimes raise parse errors instead of performing the
15265 default reduction.
15266 Reported by Charles-Henry de Boysson.
15267
15268 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
ba0fe3c7 15269 check the length of the traces when %glr.
f50adbbd
AD
15270 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
15271 GLR's traces.
15272 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
15273 Test GLR parsers.
15274 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
15275 (yyltype): Remove the yy prefix from the member names.
15276 (yytable): Complete its comment.
15277 (yygetLRActions): Map error action number from YYTABLE from
15278 YYTABLE_NINF to 0.
15279 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
15280 (which was a bug: it should have been YYTABEL_NINF, and yet it was
15281 not satisfying as we could compare an YYACTION computed from
15282 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
15283 only value for error actions.
15284 (yyreportParseError): In verbose parse error messages, don't issue
15285 `error' in the list of expected tokens.
15286 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
15287 next action to perform to match glr.c's decoding.
15288 (yytable): Complete its comment.
15289
bcbad5b9
PE
152902002-10-13 Paul Eggert <eggert@twinsun.com>
15291
15292 Fix problem reported by Henrik Grubbstroem in
161a71f3 15293 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
bcbad5b9
PE
15294 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
15295 because the Bison parser reads the second action before reducing
15296 the first one.
15297 * src/scan-gram.l (rule_length): New static var.
15298 Use it to keep track of the rule length in the scanner, since
15299 we can't expect the parser to be in lock-step sync with the scanner.
15300 (handle_action_dollar, handle_action_at): Use this var.
15301 * tests/actions.at (Exotic Dollars): Test for the problem.
05846dae 15302
14904b89
PE
153032002-10-12 Paul Eggert <eggert@twinsun.com>
15304
1fe611e5
PE
15305 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
15306 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
15307 Include <sys/time.h> when checking for clock_t and struct tms.
15308 Use same include order as source.
15309 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
161a71f3 15310 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
05846dae 15311
1fe611e5
PE
15312 * lib/timevar.c: Update copyright date and clarify comments.
15313 (get_time) [IN_GCC]: Keep the GCC version for reference.
05846dae 15314
1fe611e5
PE
15315 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
15316 GCC version as of today, then merge Bison's changes.
15317 Change "GCC" to "Bison" in copyright notice. timevar.def's
15318 author is Akim, so change that too.
15319
98194095
PE
15320 * src/reader.c (grammar_current_rule_check):
15321 Don't worry about the default action if $$ is untyped.
15322 Prevents bogus warnings reported by Jim Gifford in
161a71f3 15323 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
98194095 15324
14904b89
PE
15325 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
15326 * data/glr.c, data/lalr1.cc, data/yacc.c:
15327 Output token definitions before the first part of user declarations.
15328 Fixes compatibility problem reported by Jim Gifford for kbd in
161a71f3 15329 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14904b89 15330
ff6dca18
PE
153312002-10-11 Paul Eggert <eggert@twinsun.com>
15332
15333 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
15334 (yyparse): here. This undoes some of the 2002-07-25 change.
15335 Compatibility problem reported by Ralf S. Engelschall with
15336 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
15337
eb714592
AD
153382002-10-11 Akim Demaille <akim@epita.fr>
15339
15340 * tests/regression.at Characters Escapes): New.
15341 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
15342 characters.
15343 Reported by Jan Nieuwenhuizen.
15344
b7195100
AD
153452002-10-11 Akim Demaille <akim@epita.fr>
15346
15347 * po/id.po: New.
15348
f28a0f2d
PE
153492002-10-10 Paul Eggert <eggert@twinsun.com>
15350
15351 Portability fixes for bitsets; this also avoids several GCC
15352 warnings.
15353
15354 * lib/abitset.c: Include <stddef.h>, for offsetof.
15355 * lib/lbitset.c: Likewise.
15356
15357 * lib/abitset.c (abitset_bytes): Return a size that is aligned
15358 properly for vectors of objects. Do not assume that adding a
15359 header size to a multiple of a word size yields a value that is
15360 properly aligned for the whole union.
15361 * lib/bitsetv.c (bitsetv_alloc): Likewise.
15362
15363 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
15364 unique names for structures.
15365 * lib/ebitset.c (ebitset_bytes): Likewise.
15366 * lib/lbitset.c (lbitset_bytes): Likewise.
15367
15368 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
15369 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
15370 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
15371 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
15372 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
15373 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
15374 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
15375 to improve the type-checking that GCC can do.
15376 * lib/bitset.c (bitset_op4_cmp): Likewise.
15377 * lib/bitset_stats.c (bitset_stats_count,
15378 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
15379 bitset_stats_copy, bitset_stats_disjoint_p,
15380 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
15381 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
15382 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
15383 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
15384 bitset_stats_and_or_cmp, bitset_stats_andn_or,
15385 bitset_stats_andn_or_cmp, bitset_stats_or_and,
15386 bitset_stats_or_and_cmp): Likewise.
15387 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
15388 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
15389 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
15390 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
15391
15392 * lib/abitset.h: Include bitset.h, not bbitset.h.
15393 * lib/ebitset.h: Likewise.
15394 * lib/lbitset.h: Likewise.
15395
15396 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
15397 All instances of parameters of type enum bitset_opts are now of
15398 type enum_bitset_opts, to conform to the C Standard, and similarly
15399 for enum_bitset_type.
15400 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
15401 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
15402
15403 Do not use "struct bitset_struct" to mean different things in
15404 different modules. Not only is this confusing, it violates
15405 the C Standard, which requires that structure types in different
15406 modules must be compatible if one is to be passed to the other.
15407 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
15408 All instances of "struct bitset_struct *" replaced with "bitset".
15409 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
15410 (union bitset_union, struct abitset_struct, struct ebitset_struct,
15411 struct lbitset_struct, struct bitset_stats_struct): New types.
15412 All uses of struct bitset_struct changed to union bitset_union,
15413 etc.
ba0fe3c7 15414 * lib/abitset.c (struct abitset_struct, abitset,
f28a0f2d
PE
15415 struct bitset_struct): Remove.
15416 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
15417 struct bitset_struct): Remove.
15418 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
15419 bitset_struct): Remove.
15420 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
15421 Likewise.
15422
15423 Do not call a function of type T using a call that assumes the
15424 function is of a different type U. Standard C requires that a
15425 function must be called with a type that is compatible with its
15426 definition.
15427 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
15428 New decls.
15429 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
15430 New functions.
15431 * lib/ebitset.c (PFV): Remove.
15432 * lib/lbitset.c (PFV): Likewise.
15433 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
15434 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
15435 decls.
15436 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
15437 (ebitset_vtable): Use them.
15438 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
15439 lbitset_xor): New functions.
15440 (lbitset_vtable): Use them.
15441
15442 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
15443 Declare.
15444
15445 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
15446 GCC warning.
15447 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
15448 Use offsetof, for simplicity.
15449
6fbe4984
PE
154502002-10-06 Paul Eggert <eggert@twinsun.com>
15451
15452 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
15453 the same width as int. This reapplies a hunk of the 2002-08-12 patch
161a71f3 15454 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
6fbe4984
PE
15455 which was inadvertently undone by the 2002-09-30 patch.
15456 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
15457 the same width as int.
15458
420f93c8
PE
154592002-10-04 Paul Eggert <eggert@twinsun.com>
15460
15461 Version 1.50.
15462
15463 * configure.ac (AC_INIT), NEWS: Increment version number.
15464
15465 * doc/bison.texinfo: Minor spelling, grammar, and white space
15466 fixes.
15467 (Symbols): Mention that any negative value returned from yylex
15468 signifies end-of-input. Warn about negative chars. Mention
15469 the portable Standard C character set.
15470
15471 The GNU coding standard says CFLAGS and YFLAGS are reserved
15472 for the installer to set.
15473 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
15474 * src/Makefile.am (AM_CFLAGS): Likewise.
15475 (AM_YFLAGS): Renamed from YFLAGS.
15476
15477 Fix some MAX and MIN problems.
15478 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
15479 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
15480 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
15481 * src/reader.c (reader): Use it.
15482
15483 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
15484 POSIX 1003.1-2001 has removed fgrep.
15485
154862002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
15487
15488 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
15489 interpreted as signed.
15490 * lib/ebitset.c (ebitset_list): Fix bug.
15491
ff68026d
PE
154922002-10-01 Paul Eggert <eggert@twinsun.com>
15493
15494 More fixes for 64-bit hosts and large bitsets.
15495
15496 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
15497 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
15498 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
15499 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
15500 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
15501 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
15502 bitset_count_): Likewise.
15503 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
15504 bitset_first, bitset_last): Likewise.
15505 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
15506 bitset_stats_list_reverse, bitset_stats_size,
15507 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
15508 Likewise.
15509 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
15510 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
15511 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
15512 bitsetv_reflexive_transitive_closure): Likewise.
15513 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
15514 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
15515 Likewise.
15516 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
15517 Likewise.
420f93c8 15518
ff68026d
PE
15519 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
15520 Use size_t, not unsigned int, to count bytes.
15521 * lib/abitset.h (abitset_bytes): Likewise.
15522 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
15523 Likewise.
15524 * lib/bitset.h (bitset_bytes): Likewise.
15525 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
15526 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
15527 * lib/bitsetv.c (bitsetv_alloc): Likewise.
15528 * lib/ebitset.c (ebitset_bytes): Likewise.
15529 * lib/ebitset.h (ebitset_bytes): Likewise.
15530 * lib/lbitset.c (lbitset_bytes): Likewise.
15531 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 15532
ff68026d
PE
15533 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
15534 abitset_subset_p, abitset_disjoint_p, abitset_and,
15535 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
15536 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
15537 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
15538 abitset_or_and, abitset_or_and_cmp):
15539 Use bitset_windex instead of unsigned int.
15540 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
15541 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
15542 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
15543 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
15544 Likewise.
15545 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 15546
ff68026d
PE
15547 * lib/bitset.c (bitset_print):
15548 Use proper printf formats for widths of integer types.
15549 * lib/bitset_stats.c (bitset_percent_histogram_print,
15550 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
15551 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
15552 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
15553 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 15554
ff68026d
PE
15555 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
15556 BITSET_SIZE_MAX): New macros.
15557 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
15558 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
15559 to BITSET_WINDEX_MAX.
15560
15561 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
15562 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
15563 since we now return the bitset_bindex type (not int).
15564
15565 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
15566 when computing sizes.
15567 * lib/ebitset.c (ebitset_elts_grow): Likewise.
15568
15569 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
15570 and avoid cast to unsigned.
15571
6aa452a6
AD
155722002-09-30 Akim Demaille <akim@epita.fr>
15573
15574 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
15575 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
15576 Updates from Michael Hayes.
15577
927f7817
AD
155782002-09-30 Art Haas <ahaas@neosoft.com>
15579
15580 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
15581 invocations.
15582 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
15583 defined.
15584
9738f41e
AD
155852002-09-27 Akim Demaille <akim@epita.fr>
15586
15587 Version 1.49c.
15588
a5c75d7f
AD
155892002-09-27 Akim Demaille <akim@epita.fr>
15590
15591 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
15592 (Because of AC_LIBSOURCE).
15593
8280e179
AD
155942002-09-27 Akim Demaille <akim@epita.fr>
15595
15596 Playing with Autoscan.
15597
15598 * configure.ac: Remove the old LIBOBJ tweaks.
15599 (AC_REPLACE_FUNCS): Add strrchr and strtol.
15600 * lib/strrchr.c: New.
15601 * lib/strtol.c: New, from the Coreutils 4.5.1.
15602
ae64af35
AD
156032002-09-27 Akim Demaille <akim@epita.fr>
15604
15605 Playing with Autoscan.
15606
15607 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
15608 * lib/Makefile.am (libbison_a_SOURCES): No longer include
15609 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
15610 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
15611 Coreutils 4.5.1.
15612
d1a1114f
AD
156132002-09-24 Akim Demaille <akim@epita.fr>
15614
15615 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
15616 (Frequently Asked Questions, Parser Stack Overflow): New.
15617
b906441c
AD
156182002-09-13 Akim Demaille <akim@epita.fr>
15619
15620 Playing with autoscan.
15621
15622 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
15623 * src/files.c (skeleton_find): Remove, unused.
15624 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
15625 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
15626
bd701811
AD
156272002-09-13 Akim Demaille <akim@epita.fr>
15628
15629 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
15630 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
15631
e0a13e7b
AD
156322002-09-13 Akim Demaille <akim@epita.fr>
15633
15634 * configure.ac: Require 2.54.
15635 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
15636 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
15637 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
15638 Remove, provided by Autoconf macros.
15639
c97011bf
AD
156402002-09-12 Akim Demaille <akim@epita.fr>
15641
15642 * m4/prereq.m4: Update, from Coreutils 4.5.1.
15643
d862b1be
AD
156442002-09-12 Akim Demaille <akim@epita.fr>
15645
15646 * m4/prereq.m4: Update, from Fileutils 4.1.5.
15647 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
15648 Reported by Martin Mokrejs.
15649
3d38c03a
AD
156502002-09-10 Akim Demaille <akim@epita.fr>
15651
15652 * src/parse-gram.y: Associate a human readable string to each
15653 token type.
15654 * tests/regression.at (Invalid inputs): Adjust.
15655
b6347355
AD
156562002-09-10 Gary V. Vaughan <gary@gnu.org>
15657
15658 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
15659 with an Autoconf-2.5x style configure.ac.
15660
09ba4ab2
PE
156612002-09-06 Paul Eggert <eggert@twinsun.com>
15662
15663 * doc/bison.texinfo (Conditions): Make explicit that the GPL
15664 exception applies only to yacc.c. This is a modification of a
15665 patch originally suggested by Akim Demaille.
15666
21846f69
AD
156672002-09-06 Akim Demaille <akim@epita.fr>
15668
09ba4ab2
PE
15669 * data/c.m4 (b4_copyright): Move the GPL exception comment from
15670 here to...
15671 * data/yacc.c: here.
15672
21846f69
AD
15673 * data/lalr1.cc (struct yyltype): Don't define it, since we use
15674 LocationType.
15675 (b4_ltype): Default to yy::Location from location.hh.
15676
c0ad8bf3
AD
156772002-09-04 Jim Meyering <jim@meyering.net>
15678
15679 * data/yacc.c: Guard the declaration of yytoknum also with
15680 `#ifdef YYPRINT', so it is declared only when used.
15681
3a93251e
AD
156822002-09-04 Akim Demaille <akim@epita.fr>
15683
15684 * configure.in: Rename as...
15685 * configure.ac: this.
15686 Bump to 1.49c.
15687
427c0dda
AD
156882002-09-04 Akim Demaille <akim@epita.fr>
15689
15690 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
15691 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
15692 translate maintainer only messages.
15693
6a254321
PE
156942002-08-12 Paul Eggert <eggert@twinsun.com>
15695
645e30d1
PE
15696 Version 1.49b.
15697
6a254321
PE
15698 * Makefile.am (SUBDIRS): Remove intl.
15699 (DISTCLEANFILES): Remove.
15700 * NEWS: Mention that GNU M4 is now required. Clarify what is
15701 meant by "larger grammars". Mention the pt_BR translation.
15702 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
15703 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
15704 Bump version from 0.11.2 to 0.11.5.
15705 (BISON_PREREQ_STAGE): Remove.
15706 (AM_GNU_GETTEXT): Use external gettext.
15707 (AC_OUTPUT): Remove intl/Makefile.
15708
15709 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
15710
15711 * data/glr.c: Include string.h, for strlen.
15712 (yyreportParseError): Use size_t for yysize.
15713 (yy_yypstack): No longer nested inside yypstates, as nested
15714 functions are not portable. Do not assume size_t is the
15715 same width as int.
15716 (yypstates): Do not assume that ptrdiff_t is the same width
15717 as int, and similarly for yyposn and YYINDEX.
15718
15719 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
15720
15721 * lib/Makefile.am (INCLUDES): Do not include from the intl
15722 directory, which has been removed.
15723 * src/Makefile.am (INCLUDES): Likewise.
15724
15725 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
15726 (bitsets_sources, additional_bitsets_sources, timevars_sources):
15727 New vars.
15728
15729 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
15730 * tests/Makefile.am (EXTRA_DIST): Likewise.
15731
15732 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
15733 Do not assume that bitset_windex is the same width as unsigned.
15734
15735 * lib/abitset.c (abitset_unused_clear): Do not assume that
15736 bitset_word is the same width as int.
15737 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
15738 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
15739 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
15740 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
15741 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
15742
15743 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
15744 portability to one's complement hosts!).
15745 * lib/ebitset.c (ebitset_op1): Likewise.
15746 * lib/lbitset.c (lbitset_op1): Likewise.
15747
15748 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
15749 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
15750 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
15751 Sync with fileutils.
15752 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
15753 lib/gettext.h: Sync with diffutils.
15754
15755 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
15756 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
15757
15758 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
15759 PROTOTYPES to check for prototypes, and "defined __STDC__" to
15760 check for void *.
15761
15762 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
15763 size_t; the old version tried to do this but casted improperly.
15764 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
15765 (bitset_test): Now returns int, not unsigned long.
15766
15767 * lib/bitset_stats.c: Include "gettext.h".
15768 (_): New macro.
15769 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
15770 name locals "index", as it generates unnecessary warnings on some
15771 hosts that have an "index" function.
15772
15773 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
15774 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
15775 they need translation.
15776 * src/LR0.c (state_list_append, new_itemsets, get_state,
15777 append_states, generate_states): Likewise.
15778 * src/assoc.c (assoc_to_string): Likewise.
15779 * src/closure.c (print_closure, set_firsts, closure): Likewise.
15780 * src/gram.c (grammar_dump): Likewise.
15781 * src/injections.c (injections_compute): Likewise.
15782 * src/lalr.c (lookaheads_print): Likewise.
15783 * src/relation.c (relation_transpose): Likewise.
15784 * src/scan-gram.l: Likewise.
15785 * src/tables.c (table_grow, pack_vector): Likewise.
15786
15787 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
15788 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
15789 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
15790 * m4/mbstate_t.m4: Sync with fileutils.
15791 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
15792
15793 * po/LINGUAS: Add pt_BR.
15794 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
15795 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
15796 lib/timevar.c.
15797 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
15798 manual recommends.
15799 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
15800
15801 * src/complain.c (strerror_r): Remove decl; not needed.
15802 (strerror): Use same pattern as ../lib/error.c.
15803
15804 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
15805
15806 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
15807
15808 * src/main.c (main): Cast result of bindtextdomain and textdomain
15809 to void, to avoid a GCC warning when --disable-nls is in effect.
15810
15811 * src/scan-gram.l: Use strings rather than escapes when possible,
15812 to minimize the number of warnings from xgettext.
15813 (handle_action_dollar, handle_action_at): Don't use isdigit,
15814 as it mishandles negative chars and it may not work as expected
15815 outside the C locale.
15816
15817 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
15818 this is a GCC extension and is not portable to other compilers.
15819
15820 * src/system.h (alloca): Use same pattern as ../lib/error.c.
15821 Do not include <ctype.h>; no longer needed.
15822 Do not include <malloc.h>; no longer needed (and generates
15823 warnings on OpenBSD 3.0).
15824
15825 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
15826 it's not portable.
15827
15828 * tests/regression.at: Do not use 'cc -c input.c -o input';
15829 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
15830
15831 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
15832 exit status as failure, not just exit status 1. Sun C exits
15833 with status 2 sometimes.
15834
15835 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
15836 Use it for the two large tests.
15837
c8f002c7
AD
158382002-08-02 Akim Demaille <akim@epita.fr>
15839
15840 * src/conflicts.c (conflicts_output): Don't output rules never
15841 reduced here, since anyway that computation doesn't work.
15842 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
15843 (rule_useless_p, rule_never_reduced_p): New.
15844 (grammar_rules_partial_print): Use a filter instead of a range.
15845 Display the title only if needed.
15846 (grammar_rules_print): Adjust.
15847 (grammar_rules_never_reduced_report): New.
15848 * src/tables.c (action_row): Move the computation of rules never
15849 reduced to...
15850 (token_actions): here.
15851 * src/main.c (main): Make the parser before making the report, so
15852 that rules never reduced are computed.
15853 Call grammar_rules_never_reduced_report.
15854 * src/print.c (print_results): Report rules never reduced.
15855 * tests/conflicts.at, tests/reduce.at: Adjust.
15856
cd08e51e
AD
158572002-08-01 Akim Demaille <akim@epita.fr>
15858
15859 Instead of attaching lookaheads and duplicating the rules being
15860 reduced by a state, attach the lookaheads to the reductions.
15861
15862 * src/state.h (state_t): Remove the `lookaheads',
15863 `lookaheads_rule' member.
15864 (reductions_t): Add a `lookaheads' member.
15865 Use a regular array for the `rules'.
15866 * src/state.c (reductions_new): Initialize the lookaheads member
15867 to 0.
15868 (state_rule_lookaheads_print): Adjust.
15869 * src/state.h, src/state.c (state_reductions_find): New.
15870 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
15871 (count_rr_conflicts): Adjust.
15872 * src/lalr.c (LArule): Remove.
15873 (add_lookback_edge): Adjust.
15874 (state_lookaheads_count): New.
15875 (states_lookaheads_initialize): Merge into...
15876 (initialize_LA): this.
15877 (lalr_free): Adjust.
15878 * src/main.c (main): Don't free nullable and derives too early: it
15879 is used by --verbose.
15880 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
15881
bb0027a9
AD
158822002-08-01 Akim Demaille <akim@epita.fr>
15883
15884 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
15885 `rule_number_t**'.
15886 (set_derives, free_derives): Rename as...
15887 (derives_compute, derives_free): this.
15888 Adjust all dependencies.
15889 * src/nullable.c (set_nullable, free_nullable): Rename as...
15890 (nullable_compute, nullable_free): these.
15891 (rule_list_t): Store rule_t *, not rule_number_t.
15892 * src/state.c (state_rule_lookaheads_print): Directly compare rule
15893 pointers, instead of their numbers.
15894 * src/main.c (main): Call nullable_free, and derives_free earlier,
15895 as they were lo longer used.
15896
3325ddc4
AD
158972002-08-01 Akim Demaille <akim@epita.fr>
15898
15899 * lib/timevar.c (get_time): Include children time.
15900 * src/lalr.h (LA, LArule): Don't export them: used with the
15901 state_t.
15902 * src/lalr.c (LA, LArule): Static.
15903 * src/lalr.h, src/lalr.c (lalr_free): New.
15904 * src/main.c (main): Call it.
15905 * src/tables.c (pack_vector): Check whether loc is >= to the
15906 table_size, not >.
15907 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
15908 (tables_generate): do it, since that's also it which allocates
15909 them.
15910 Don't free LA and LArule, main does.
15911
c6f1a33c
AD
159122002-07-31 Akim Demaille <akim@epita.fr>
15913
15914 Separate parser tables computation and output.
15915
15916 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
15917 (conflict_list, conflict_list_cnt, table, check, table_ninf)
15918 (yydefgoto, yydefact, high): Move to...
15919 * src/tables.h, src/tables.c: here.
15920 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
15921 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
15922 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
15923 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
15924 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
15925 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
15926 (action_row, save_row, token_actions, save_column, default_goto)
15927 (goto_actions, sort_actions, matching_state, pack_vector)
15928 (table_ninf_remap, pack_table, prepare_actions): Move to...
15929 * src/tables.c: here.
15930 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
15931 * src/output.c (token_actions, output_base, output_conflicts)
15932 (output_check): Merge into...
15933 (prepare_actions): this.
15934 (actions_output): Rename as...
15935 (user_actions_output): this.
15936 * src/main.c (main): Call tables_generate and tables_free.
15937
1509d42f
AD
159382002-07-31 Akim Demaille <akim@epita.fr>
15939
15940 Steal GCC's --time-report support.
15941
15942 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
15943 stolen/adjusted from GCC.
15944 * m4/stage.m4: Remove time related checks.
15945 * m4/timevar.m4: New.
15946 * configure.in: Adjust.
15947 * src/system.h: Adjust to using timevar.h.
15948 * src/getargs.h, src/getargs.c: Support trace_time for
15949 --trace=time.
15950 * src/main.c (stage): Remove.
15951 (main): Replace `stage' invocations with timevar calls.
15952 * src/output.c: Insert pertinent timevar calls.
15953
273a74fa
AD
159542002-07-31 Akim Demaille <akim@epita.fr>
15955
15956 Let --trace have arguments.
15957
15958 * src/getargs.h (enum trace_e): New.
15959 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
15960 (long_options, short_options): --trace/-T takes an optional
15961 argument.
15962 Change all the uses of trace_flag to reflect the new flags.
15963 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
15964
15965 Strengthen `stage' portability.
15966
15967 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
15968 * configure.in: Use it.
15969 Don't check for malloc.h and sys/times.h.
15970 * src/system.h: Include them when appropriate.
15971 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
15972 times and struct tms are available.
15973
217598da
AD
159742002-07-30 Akim Demaille <akim@epita.fr>
15975
15976 In verbose parse error message, don't report `error' as an
15977 expected token.
15978 * tests/actions.at (Printers and Destructors): Adjust.
15979 * tests/calc.at (Calculator $1): Adjust.
15980 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
15981 error message, do not report the parser accepts the error token in
15982 that state.
15983
52489d44
AD
159842002-07-30 Akim Demaille <akim@epita.fr>
15985
15986 Normalize conflict related messages.
15987
15988 * src/complain.h, src/complain.c (warn, complain): New.
15989 * src/conflicts.c (conflicts_print): Use them.
15990 (conflict_report_yacc): New, extracted from...
15991 (conflicts_print): here.
15992 * tests/conflicts.at, tests/existing.at: Adjust.
15993
e8832397
AD
159942002-07-30 Akim Demaille <akim@epita.fr>
15995
15996 Report rules which are never reduced by the parser: those hidden
15997 by conflicts.
15998
15999 * src/LR0.c (save_reductions): Don't make the final state too
16000 different: save its reduction (accept) instead of having a state
16001 without any action (no shift or goto, no reduce).
16002 Note: the final state is now a ``regular'' state, i.e., the
16003 parsers now contain `reduce 0' as default reduction.
16004 Nevertheless, since they decide to `accept' when yystate =
16005 final_state, they still will not reduce rule 0.
16006 * src/print.c (print_actions, print_reduction): Adjust.
16007 * src/output.c (action_row): Track reduced rules.
16008 (token_actions): Report rules never reduced.
16009 * tests/conflicts.at, tests/regression.at: Adjust.
16010
caf23d24
AD
160112002-07-30 Akim Demaille <akim@epita.fr>
16012
16013 `stage' was accidently included in a previous patch.
16014 Initiate its autoconfiscation.
16015
16016 * configure.in: Look for malloc.h and sys/times.h.
16017 * src/main.c (stage): Adjust.
16018 Report only when trace_flag.
16019
640748ee
AD
160202002-07-29 Akim Demaille <akim@epita.fr>
16021
16022 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
16023 state_number_t.
16024 (errs_t): symbol_t*, not symbol_number_t.
16025 (reductions_t): rule_t*, not rule_number_t.
16026 (FOR_EACH_SHIFT): New.
16027 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
16028 * src/print.c, src/print_graph.c: Adjust.
16029
88bce5a2
AD
160302002-07-29 Akim Demaille <akim@epita.fr>
16031
16032 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
16033
16034 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
16035 (endtoken, accept): these.
16036 * src/reader.c (reader): Set endtoken's default tag to "$end".
16037 Set undeftoken's tag to "$undefined" instead of "$undefined.".
16038 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
16039 Adjust.
16040
1bfb97db
AD
160412002-07-29 Akim Demaille <akim@epita.fr>
16042
16043 * src/reduce.c (reduce_grammar): When the language is empty,
16044 complain about the start symbol, not the axiom.
16045 Use its location.
16046 * tests/reduce.at (Empty Language): New.
16047
fc5734fe
AD
160482002-07-26 Akim Demaille <akim@epita.fr>
16049
16050 * src/reader.h, src/reader.c (gram_error): ... can't get
16051 yycontrol without making too strong assumptions on the parser
16052 itself.
16053 * src/output.c (prepare_tokens): Use the real 0th value of
16054 token_translations instead of `0'.
16055 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
16056 visible here.
16057 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
16058 for the time being: %locations ought to provide it to yyerror.
16059
3650b4b8
AD
160602002-07-25 Akim Demaille <akim@epita.fr>
16061
16062 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
16063 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
16064 * tests/regression.at (Web2c Actions): Adjust.
16065
4b3d3a8e
AD
160662002-07-25 Akim Demaille <akim@epita.fr>
16067
16068 Stop storing rules from 1 to nrules + 1.
16069
16070 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
16071 * src/nullable.c, src/output.c, src/print.c, src/reader.c
16072 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
16073 Iterate from 0 to nrules.
16074 Use rule_number_as_item_number and item_number_as_rule_number.
16075 Adjust to `derive' now containing possibly 0.
16076 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
16077 Handle the `- 1' part in rule numbers from/to item numbers.
16078 * src/conflicts.c (log_resolution): Fix the message which reversed
16079 shift and reduce.
16080 * src/output.c (action_row): Initialize default_rule to -1.
16081 (token_actions): Adjust.
16082 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
16083 expected output.
16084 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
16085
4a2a22f4
AD
160862002-07-25 Akim Demaille <akim@epita.fr>
16087
16088 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
16089 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
16090 (b4_c_knr_arg_decl): New.
16091 * data/yacc.c: Use it to define yysymprint, yydestruct, and
16092 yyreport_parse_error.
16093
b8df3223
AD
160942002-07-25 Akim Demaille <akim@epita.fr>
16095
16096 * data/yacc.c (yyreport_parse_error): New, extracted from...
16097 (yyparse): here.
16098 (yydestruct, yysymprint): Move above yyparse.
16099 Be K&R compliant.
16100
a762e609
AD
161012002-07-25 Akim Demaille <akim@epita.fr>
16102
16103 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
16104 replace...
16105 (b4_sint_type, b4_uint_type): these.
16106 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
16107 * tests/regression.at (Web2c Actions): Adjust.
16108
12b0043a
AD
161092002-07-25 Akim Demaille <akim@epita.fr>
16110
16111 * src/gram.h (TIEM_NUMBER_MAX): New.
16112 (item_number_of_rule_number, rule_number_of_item_number): Rename
16113 as...
16114 (rule_number_as_item_number, item_number_as_rule_number): these.
16115 Adjust dependencies.
16116 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
16117 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
16118 (symbol_number_to_vector_number): New.
16119 (order): Of vector_number_t* type.
16120 (base_t, BASE_MAX, BASE_MIN): New.
16121 (froms, tos, width, pos, check): Of base_t type.
16122 (action_number_t, ACTION_MIN, ACTION_MAX): New.
16123 (actrow): Of action_number_t type.
16124 (conflrow): Of unsigned int type.
16125 (table_ninf, base_ninf): New.
16126 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
16127 (muscle_insert_int_table, muscle_insert_base_table)
16128 (muscle_insert_rule_number_table): New.
16129 (prepare_tokens): Output `toknum' as int_table.
16130 (action_row): Returns a rule_number_t.
16131 Use ACTION_MIN, not SHRT_MIN.
16132 (token_actions): yydefact is rule_number_t*.
16133 (table_ninf_remap): New.
16134 (pack_table): Use it for `base' and `table'.
16135 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
16136 replaced with...
16137 (YYPACT_NINF, YYTABLE_NINF): these.
16138 (yypact, yytable): Compute their types instead of hard-coded
16139 `short'.
16140 * tests/regression.at (Web2c Actions): Adjust.
16141
5dde258a
AD
161422002-07-19 Akim Demaille <akim@epita.fr>
16143
16144 * src/scan-gram.l (id): Can start with an underscore.
16145
a945ec39
AD
161462002-07-16 Akim Demaille <akim@epita.fr>
16147
16148 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
16149 Adjust all former `associativity' dependencies.
16150 * src/symtab.c (symbol_new): Default associativity is `undef', not
16151 `right'.
16152 (symbol_check_alias_consistence): Adjust.
16153
fae437e8
AD
161542002-07-09 Akim Demaille <akim@epita.fr>
16155
16156 * doc/bison.texinfo: Properly set the ``header'' part.
16157 Use @dircategory ``GNU programming tools'' as per Texinfo's
16158 documentation.
16159 Use @copying.
16160
1a715ef2
AD
161612002-07-09 Akim Demaille <akim@epita.fr>
16162
16163 * lib/quotearg.h: Protect against multiple inclusions.
16164 * src/location.h (location_t): Add a `file' member.
16165 (LOCATION_RESET, LOCATION_PRINT): Adjust.
16166 * src/complain.c (warn_at, complain_at, fatal_at): Drop
16167 `error_one_per_line' support.
16168
a5d50994
AD
161692002-07-09 Akim Demaille <akim@epita.fr>
16170
16171 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
16172 * src/reader.c (lineno): Remove.
16173 Adjust all dependencies.
16174 (get_merge_function): Take a location and use complain_at.
16175 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
16176 * tests/regression.at (Invalid inputs, Mixing %token styles):
16177 Adjust.
16178
b275314e
AD
161792002-07-09 Akim Demaille <akim@epita.fr>
16180
16181 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
16182 recovery rule, and forbid extensions when --yacc.
16183 (gram_error): Use complain_at.
16184 * src/reader.c (reader): Exit if there were parse errors.
16185
865b9df1
AD
161862002-07-09 Akim Demaille <akim@epita.fr>
16187
16188 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
16189 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
16190 Reported by R Blake <blakers@mac.com>.
16191
c76e14da
AD
161922002-07-09 Akim Demaille <akim@epita.fr>
16193
16194 * data/yacc.c: Output the copyright notive in the header.
16195
7db2ed2d
AD
161962002-07-03 Akim Demaille <akim@epita.fr>
16197
16198 * src/output.c (froms, tos): Are state_number_t.
16199 (save_column): sp, sp1, and sp2 are state_number_t.
16200 (prepare): Rename `final' as `final_state_number', `nnts' as
16201 `nterms_number', `nrules' as `rules_number', `nstates' as
16202 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
16203 unused.
16204 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
16205 * data/lalr1.cc (nsym_): Remove, unused.
16206
e68e0410
AD
162072002-07-03 Akim Demaille <akim@epita.fr>
16208
16209 * src/lalr.h, src/lalr.c (goto_number_t): New.
16210 * src/lalr.c (goto_list_t): New.
16211 Propagate them.
16212 * src/nullable.c (rule_list_t): New.
16213 Propagate.
16214 * src/types.h: Remove.
16215
e1a4f3a4
AD
162162002-07-03 Akim Demaille <akim@epita.fr>
16217
16218 * src/closure.c (print_fderives): Use rule_rhs_print.
16219 * src/derives.c (print_derives): Use rule_rhs_print.
16220 (rule_list_t): New, replaces `shorts'.
16221 (set_derives): Add comments.
16222 * tests/sets.at (Nullable, Firsts): Adjust.
16223
536545f3
AD
162242002-07-03 Akim Demaille <akim@epita.fr>
16225
16226 * src/output.c (prepare_actions): Free `tally' and `width'.
16227 (prepare_actions): Allocate and free `order'.
16228 * src/symtab.c (symbols_free): Free `symbols'.
16229 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
16230 * src/output.c (m4_invoke): Move to...
16231 * src/scan-skel.l: here.
16232 (<<EOF>>): Close yyout, and free its name.
16233
8b752b00
AD
162342002-07-03 Akim Demaille <akim@epita.fr>
16235
16236 Fix some memory leaks, and fix a bug: state 0 was examined twice.
16237
16238 * src/LR0.c (new_state): Merge into...
16239 (state_list_append): this.
16240 (new_states): Merge into...
16241 (generate_states): here.
16242 (set_states): Don't ensure a proper `errs' state member here, do it...
16243 * src/conflicts.c (conflicts_solve): here.
16244 * src/state.h, src/state.c: Comment changes.
16245 (state_t): Rename member `shifts' as `transitions'.
16246 Adjust all dependencies.
16247 (errs_new): For consistency, also take the values as argument.
16248 (errs_dup): Remove.
16249 (state_errs_set): New.
16250 (state_reductions_set, state_transitions_set): Assert that no
16251 previous value was assigned.
16252 (state_free): New.
16253 (states_free): Use it.
16254 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
16255 temporary storage: use `errs' and `nerrs' as elsewhere.
16256 (set_conflicts): Allocate and free this `errs'.
16257
613f5e1a
AD
162582002-07-02 Akim Demaille <akim@epita.fr>
16259
16260 * lib/libiberty.h: New.
16261 * lib: Update the bitset implementation from upstream.
16262 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
16263 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
16264 * src/main.c: Adjust bitset stats calls.
16265
26e0cadc
PE
162662002-07-01 Paul Eggert <eggert@twinsun.com>
16267
16268 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
16269 char, so that negative chars don't collide with $.
16270
1154cced
AD
162712002-06-30 Akim Demaille <akim@epita.fr>
16272
16273 Have the GLR tests be `warning' checked, and fix the warnings.
16274
16275 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
16276 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
16277 (yyremoveDeletes): `yyi' and `yyj' are size_t.
16278 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
16279 (yyaddDeferredAction): static.
16280 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
16281 (yyreportParseError): yyprefix is const.
16282 yytokenp is used only when verbose.
16283 (yy__GNUC__): Replace with __GNUC__.
16284 (yypdumpstack): yyi is size_t.
16285 (yypreference): Un-yy local variables and arguments, to avoid
16286 clashes with `yyr1'. Anyway, we are not in the user name space.
16287 (yytname_size): be an int, as is compared with ints.
16288 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
16289 Use them.
16290 * tests/cxx-gram.at: Use quotation to protect $1.
16291 Use AT_COMPILE to enable warnings hunts.
16292 Prototype yylex and yyerror.
16293 `Use' argc.
16294 Include `string.h', not `strings.h'.
16295 Produce and prototype stmtMerge only when used.
16296 yylex takes a location.
16297
97650f4e
AD
162982002-06-30 Akim Demaille <akim@epita.fr>
16299
16300 We spend a lot of time in quotearg, in particular when --verbose.
16301
16302 * src/symtab.c (symbol_get): Store a quoted version of the key.
16303 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
16304 Adjust all callers.
16305
d2576365
AD
163062002-06-30 Akim Demaille <akim@epita.fr>
16307
16308 * src/state.h (reductions_t): Rename member `nreds' as num.
16309 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
16310 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
16311
ccaf65bc
AD
163122002-06-30 Akim Demaille <akim@epita.fr>
16313
16314 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
16315 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
16316 (shifts_to): Rename as...
16317 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
16318 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
16319 (TRANSITION_IS_DISABLED, transitions_to): these.
16320
87675353
AD
163212002-06-30 Akim Demaille <akim@epita.fr>
16322
16323 * src/print.c (print_shifts, print_gotos): Merge into...
16324 (print_transitions): this.
16325 (print_transitions, print_errs, print_reductions): Align the
16326 lookaheads columns.
16327 (print_core, print_transitions, print_errs, print_state,
16328 print_grammar): Output empty lines separator before, not after.
16329 (state_default_rule_compute): Rename as...
16330 (state_default_rule): this.
16331 * tests/conflicts.at (Defaulted Conflicted Reduction),
16332 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
16333 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
16334
ce4ccb4b
AD
163352002-06-30 Akim Demaille <akim@epita.fr>
16336
16337 Display items as we display rules.
16338
16339 * src/gram.h, src/gram.c (rule_lhs_print): New.
16340 * src/gram.c (grammar_rules_partial_print): Use it.
16341 * src/print.c (print_core): Likewise.
16342 * tests/conflicts.at (Defaulted Conflicted Reduction),
16343 (Unresolved SR Conflicts): Adjust.
16344 (Unresolved SR Conflicts): Adjust and rename as...
16345 (Resolved SR Conflicts): this, as was meant.
16346 * tests/regression.at (Web2c Report): Adjust.
16347
bc933ef1
AD
163482002-06-30 Akim Demaille <akim@epita.fr>
16349
16350 * src/print.c (state_default_rule_compute): New, extracted from...
16351 (print_reductions): here.
16352 Pessimize, but clarify the code.
16353 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
16354
53d4308d
AD
163552002-06-30 Akim Demaille <akim@epita.fr>
16356
16357 * src/output.c (action_row): Let default_rule be always a rule
16358 number.
16359
574fb2d5
AD
163602002-06-30 Akim Demaille <akim@epita.fr>
16361
16362 * src/closure.c (print_firsts, print_fderives, closure):
16363 Use BITSET_EXECUTE.
16364 * src/lalr.c (lookaheads_print): Likewise.
16365 * src/state.c (state_rule_lookaheads_print): Likewise.
16366 * src/print_graph.c (print_core): Likewise.
16367 * src/print.c (print_reductions): Likewise.
16368 * src/output.c (action_row): Likewise.
16369 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
16370
05811fd7
AD
163712002-06-30 Akim Demaille <akim@epita.fr>
16372
16373 * src/print_graph.c: Use report_flag.
16374
0e4d5753
AD
163752002-06-30 Akim Demaille <akim@epita.fr>
16376
16377 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
16378 to...
16379 * src/relation.h, src/relation.c (traverse, relation_digraph)
16380 (relation_print, relation_transpose): New.
16381
24c7d800
AD
163822002-06-30 Akim Demaille <akim@epita.fr>
16383
16384 * src/state.h, src/state.c (shifts_to): New.
16385 * src/lalr.c (build_relations): Use it.
16386
9222837b
AD
163872002-06-30 Akim Demaille <akim@epita.fr>
16388
16389 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
16390 (item_number_of_rule_number, rule_number_of_item_number): New.
16391 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
16392 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
16393 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
16394 Propagate their use.
16395 Much remains to be done, in particular wrt `shorts' from types.h.
16396
260008e5
AD
163972002-06-30 Akim Demaille <akim@epita.fr>
16398
16399 * src/symtab.c (symbol_new): Initialize the `printer' member.
16400
8a731ca8
AD
164012002-06-30 Akim Demaille <akim@epita.fr>
16402
16403 * src/LR0.c (save_reductions): Remove, replaced by...
16404 * src/state.h, src/state.c (state_reductions_set): New.
16405 (reductions, errs): Rename as...
16406 (reductions_t, errs_t): these.
16407 Adjust all dependencies.
16408
32e1e0a4
AD
164092002-06-30 Akim Demaille <akim@epita.fr>
16410
16411 * src/LR0.c (state_list_t, state_list_append): New.
16412 (first_state, last_state): Now symbol_list_t.
16413 (this_state): Remove.
16414 (new_itemsets, append_states, save_reductions): Take a state_t as
16415 argument.
16416 (set_states, generate_states): Adjust.
16417 (save_shifts): Remove, replaced by...
16418 * src/state.h, src/state.c (state_shifts_set): New.
16419 (shifts): Rename as...
16420 (shifts_t): this.
16421 Adjust all dependencies.
16422 * src/state.h (state_t): Remove the `next' member.
16423
e5fb6710
AD
164242002-06-30 Akim Demaille <akim@epita.fr>
16425
16426 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
16427 escaped in slot 0.
16428
c7ca99d4
AD
164292002-06-30 Akim Demaille <akim@epita.fr>
16430
16431 Use hash.h for the state hash table.
16432
16433 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
16434 (allocate_storage): Use state_hash_new.
16435 (free_storage): Use state_hash_free.
16436 (new_state, get_state): Adjust.
16437 * src/lalr.h, src/lalr.c (states): Move to...
16438 * src/states.h (state_t): Remove the `link' member, no longer
16439 used.
16440 * src/states.h, src/states.c: here.
16441 (state_hash_new, state_hash_free, state_hash_lookup)
16442 (state_hash_insert, states_free): New.
16443 * src/states.c (state_table, state_compare, state_hash): New.
16444 * src/output.c (output_actions): Do not free states now, since we
16445 still need to know the final_state number in `prepare', called
16446 afterwards. Do it...
16447 * src/main.c (main): here: call states_free after `output'.
16448
df0e7316
AD
164492002-06-30 Akim Demaille <akim@epita.fr>
16450
16451 * src/state.h, src/state.c (state_new): New, extracted from...
16452 * src/LR0.c (new_state): here.
16453 * src/state.h (STATE_ALLOC): Move to...
16454 * src/state.c: here.
16455 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
16456 * src/state.h, src/state.c: here.
16457
39f41916
AD
164582002-06-30 Akim Demaille <akim@epita.fr>
16459
16460 * src/reader.c (gensym): Rename as...
16461 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
16462 (getsym): Rename as...
16463 (symbol_get): this.
16464
d57650a5
AD
164652002-06-30 Akim Demaille <akim@epita.fr>
16466
16467 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
16468 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
16469 * src/output.c, src/print.c, src/print_graph.c: Propagate.
16470 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
16471
5a08f1ce
AD
164722002-06-30 Akim Demaille <akim@epita.fr>
16473
16474 Make the test suite pass with warnings checked.
16475
16476 * tests/actions.at (Printers and Destructors): Improve.
16477 Avoid unsigned vs. signed issues.
16478 * tests/calc.at: Don't exercise the scanner here, do it...
16479 * tests/input.at (Torturing the Scanner): here.
16480
720623af
PH
164812002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16482
88e7e941 16483 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
16484 reorganize first lines parallel to yacc.c.
16485
fb8135fa
AD
164862002-06-28 Akim Demaille <akim@epita.fr>
16487
16488 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
16489 (b4_token_enum, b4_token_defines): New, factored from...
16490 * data/lalr1.cc, data/yacc.c, glr.c: here.
16491
41442480
AD
164922002-06-28 Akim Demaille <akim@epita.fr>
16493
16494 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
16495 unused variables.
16496 * src/output.c (merger_output): static.
16497
e0e5bf84
AD
164982002-06-28 Akim Demaille <akim@epita.fr>
16499
ba0fe3c7 16500 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
e0e5bf84
AD
16501 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
16502 pacify GCC.
16503 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 16504
676385e2
PH
165052002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16506
16507 Accumulated changelog for new GLR parsing features.
16508
6a254321 16509 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
16510 conflicts_total_count.
16511 * src/conflicts.h: Ditto.
16512 * src/output.c (token_actions): Use the new name.
16513 (output_conflicts): Change conflp => conflict_list_heads, and
16514 confl => conflict_list for better readability.
16515 * data/glr.c: Use the new names.
16516 * NEWS: Add self to GLR announcement.
e0e5bf84 16517
676385e2
PH
16518 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
16519
16520 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
16521 Akim Demaille.
16522
16523 * data/bison.glr: Change name to glr.c
16524 * data/glr.c: Renamed from bison.glr.
16525 * data/Makefile.am: Add glr.c
e0e5bf84
AD
16526
16527 * src/getargs.c:
16528
676385e2 16529 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
ba0fe3c7 16530 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 16531
676385e2
PH
16532 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16533
16534 * data/bison.glr: Be sure to restore the
16535 current #line when returning to the skeleton contents after having
16536 exposed the input file's #line.
16537
16538 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16539
16540 * data/bison.glr: Bring up to date with changes to bison.simple.
16541
16542 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16543
16544 * data/bison.glr: Correct definitions that use b4_prefix.
16545 Various reformatting.
16546 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
16547 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
16548 yytokenp argument; now part of stack.
16549 (yychar): Define to behave as documented.
16550 (yyclearin): Ditto.
e0e5bf84 16551
676385e2
PH
16552 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16553
16554 * src/reader.h: Add declaration for free_merger_functions.
16555
16556 * src/reader.c (merge_functions): New variable.
16557 (get_merge_function): New function.
16558 (free_merger_functions): New function.
16559 (readgram): Check for %prec that is not followed by a symbol.
16560 Handle %dprec and %merge declarations.
16561 (packgram): Initialize dprec and merger fields in rules array.
16562
16563 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
16564 conflict_list_cnt, conflict_list_free): New variables.
16565 (table_grow): Also grow conflict_table.
e0e5bf84 16566 (prepare_rules): Output dprec and merger tables.
676385e2 16567 (conflict_row): New function.
e0e5bf84 16568 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
16569 default reduction in conflicted states for GLR parser so that there
16570 are spaces for the conflict lists.
16571 (save_row): Also save conflict information.
16572 (token_actions): Allocate conflict list.
16573 (merger_output): New function.
16574 (pack_vector): Pack conflict table, too.
16575 (output_conflicts): New function to output yyconflp and yyconfl.
16576 (output_check): Allocate conflict_tos.
16577 (output_actions): Output conflict tables, also.
16578 (output_skeleton): Output b4_mergers definition.
16579 (prepare): Output b4_max_rhs_length definition.
16580 Use 'bison.glr' as default skeleton for GLR parsers.
16581
16582 * src/gram.c (glr_parser): New flag.
16583 (grammar_free): Call free_merger_functions.
16584
16585 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
16586 all pairs of conflicting reductions, rather than just all tokens
16587 causing conflicts. Needed to size conflict tables.
e0e5bf84 16588 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
16589 interface.
16590 (conflicts_print): Ditto.
16591 (count_total_conflicts): New function.
16592
16593 * src/reader.h (merger_list): New type.
16594 (merge_functions): New variable.
16595
16596 * src/lex.h (tok_dprec, tok_merge): New token types.
16597
16598 * src/gram.h (rule_s): Add dprec and merger fields.
16599 (glr_parser): New flag.
16600
16601 * src/conflicts.h (count_total_conflicts): New function.
16602
16603 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
16604
16605 * doc/bison.texinfo (Generalized LR Parsing): New section.
16606 (GLR Parsers): New section.
16607 (Language and Grammar): Mention GLR parsing.
16608 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
16609 Correct typo ("tge" -> "the").
16610
16611 * data/bison.glr: New skeleton for GLR parsing.
16612
16613 * tests/cxx-gram.at: New tests for GLR parsing.
16614
16615 * tests/testsuite.at: Include cxx-gram.at.
16616
16617 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 16618
676385e2
PH
16619 * src/parse-gram.y:
16620
16621 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
16622
16623 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 16624
b5480d74 166252002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
16626
16627 * src/options.h, src/options.c: Remove.
16628 * src/getargs.c (short_options, long_options): New.
16629
60491a94
AD
166302002-06-27 Akim Demaille <akim@epita.fr>
16631
16632 * data/bison.simple, data/bison.c++: Rename as...
16633 * data/yacc.c, data/lalr1.cc: these.
16634 * doc/bison.texinfo (Environment Variables): Remove.
16635
9be0c25b
AD
166362002-06-25 Raja R Harinath <harinath@cs.umn.edu>
16637
16638 * src/getargs.c (report_argmatch): Initialize strtok().
16639
1ae72863
AD
166402002-06-20 Akim Demaille <akim@epita.fr>
16641
16642 * data/bison.simple (b4_symbol_actions): New, replaces...
16643 (b4_symbol_destructor, b4_symbol_printer): these.
16644 (yysymprint): Be sure to call YYPRINT only for tokens, and using
16645 user token numbers.
16646
87542d29
AD
166472002-06-20 Akim Demaille <akim@epita.fr>
16648
16649 * data/bison.simple (yydestructor): Rename as...
16650 (yydestruct): this.
16651
1a31ed21
AD
166522002-06-20 Akim Demaille <akim@epita.fr>
16653
16654 * src/symtab.h, src/symtab.c (symbol_type_set)
16655 (symbol_destructor_set, symbol_precedence_set): The location is
16656 the last argument.
16657 Adjust all callers.
16658
e776192e
AD
166592002-06-20 Akim Demaille <akim@epita.fr>
16660
16661 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
16662 internals.
16663 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
16664 Takes a location.
16665 * src/symtab.h, src/symtab.c (symbol_class_set)
16666 (symbol_user_token_number_set): Likewise.
16667 Adjust all callers.
16668 Promote complain_at.
16669 * tests/input.at (Type Clashes): Adjust.
16670
5c1180b3
AD
166712002-06-20 Akim Demaille <akim@epita.fr>
16672
16673 * data/bison.simple (YYLEX): Fix the declaration when
16674 %pure-parser.
16675
e3170060
AD
166762002-06-20 Akim Demaille <akim@epita.fr>
16677
16678 * data/bison.simple (yysymprint): Don't print the token number,
16679 just its name.
16680 * tests/actions.at (Destructors): Rename as...
16681 (Printers and Destructors): this.
16682 Also exercise %printer.
16683
253862fd
AD
166842002-06-20 Akim Demaille <akim@epita.fr>
16685
16686 * data/bison.simple (YYDSYMPRINT): New.
16687 Use it to remove many of the #if YYDEBUG/if (yydebug).
16688
366eea36
AD
166892002-06-20 Akim Demaille <akim@epita.fr>
16690
16691 * src/symtab.h, src/symtab.c (symbol_t): printer and
16692 printer_location are new members.
16693 (symbol_printer_set): New.
16694 * src/parse-gram.y (PERCENT_PRINTER): New token.
16695 Handle its associated rule.
16696 * src/scan-gram.l: Adjust.
16697 (handle_destructor_at, handle_destructor_dollar): Rename as...
16698 (handle_symbol_code_at, handle_symbol_code_dollar): these.
16699 * src/output.c (symbol_printers_output): New.
16700 (output_skeleton): Call it.
16701 * data/bison.simple (yysymprint): New. Cannot be named yyprint
16702 since there are already many grammar files with a user `yyprint'.
16703 Replace the calls to YYPRINT to calls to yysymprint.
16704 * tests/calc.at: Adjust.
16705 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
16706 taking advantage of parser very internal details (stack size!).
16707
4f25ebb0
AD
167082002-06-20 Akim Demaille <akim@epita.fr>
16709
16710 * src/scan-gram.l: Complete the scanner with the missing patterns
16711 to pacify Flex.
16712 Use `quote' and `symbol_tag_get' where appropriate.
16713
93b68a0e
AD
167142002-06-19 Akim Demaille <akim@epita.fr>
16715
16716 * tests/actions.at (Destructors): Augment to test locations.
16717 * data/bison.simple (yydestructor): Pass it the current location
16718 if locations are enabled.
16719 Prototype only when __STDC__ or C++.
16720 Change the argument names to move into the yy name space: there is
16721 user code here.
16722
58612f1d
AD
167232002-06-19 Akim Demaille <akim@epita.fr>
16724
74310291
AD
16725 * data/bison.simple (b4_pure_if): New.
16726 Use it instead of #ifdef YYPURE.
16727
167282002-06-19 Akim Demaille <akim@epita.fr>
16729
16730 * data/bison.simple (b4_location_if): New.
58612f1d
AD
16731 Use it instead of #ifdef YYLSP_NEEDED.
16732
f25bfb75
AD
167332002-06-19 Akim Demaille <akim@epita.fr>
16734
16735 Prepare @$ in %destructor, but currently don't bind it in the
16736 skeleton, as %location use is not cleaned up yet.
16737
16738 * src/scan-gram.l (handle_dollar, handle_destructor_at)
16739 (handle_action_at): New.
16740 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
16741 a braced_code_t and a location as additional arguments.
16742 (handle_destructor_dollar): Instead of requiring `b4_eval', just
16743 unquote one when outputting `b4_dollar_dollar'.
16744 Adjust callers.
16745 * data/bison.simple (b4_eval): Remove.
16746 (b4_symbol_destructor): Adjust.
16747 * tests/input.at (Invalid @n): Adjust.
16748
c732d2c6
AD
167492002-06-19 Zack Weinberg <zack@codesourcery.com>
16750
16751 * doc/bison.texinfo: Document ability to have multiple
16752 prologue sections.
16753
8c165d89
AD
167542002-06-18 Akim Demaille <akim@epita.fr>
16755
16756 * src/files.c (compute_base_names): When computing the output file
16757 names from the input file name, strip the directory part.
16758
ca98bf57
AD
167592002-06-18 Akim Demaille <akim@epita.fr>
16760
16761 * data/bison.simple.new: Comment changes.
16762 Reported by Andreas Schwab.
16763
0bfb02ff
AD
167642002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
16765
16766 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
16767 there are no `label `yyoverflowlab' defined but not used' warnings
16768 when yyoverflow is defined.
16769
24c0aad7
AD
167702002-06-18 Akim Demaille <akim@epita.fr>
16771
16772 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
16773 new member.
16774 (symbol_destructor_set): Adjust.
16775 * src/output.c (symbol_destructors_output): Output the destructor
16776 locations.
16777 Output the symbol name.
16778 * data/bison.simple (b4_symbol_destructor): Adjust.
16779
5719c109
AD
167802002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
16781 and Akim Demaille <akim@epita.fr>
16782
16783 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
16784 what's left on the stack when the error recovery hits EOF.
16785 * tests/actions.at (Destructors): Complete to exercise this case.
16786
9280d3ef
AD
167872002-06-17 Akim Demaille <akim@epita.fr>
16788
16789 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
16790 arguments is really empty, not only equal to `[]'.
16791 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
16792 member.
16793 (symbol_destructor_set): New.
16794 * src/output.c (symbol_destructors_output): New.
16795 * src/reader.h (brace_code_t, current_braced_code): New.
16796 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
16797 (handle_dollar): Rename as...
16798 (handle_action_dollar): this.
16799 (handle_destructor_dollar): New.
16800 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
16801 (grammar_declaration): Use it.
16802 * data/bison.simple (yystos): Is always defined.
16803 (yydestructor): New.
16804 * tests/actions.at (Destructors): New.
16805 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
16806
dafdc66f
AD
168072002-06-17 Akim Demaille <akim@epita.fr>
16808
16809 * src/symlist.h, src/symlist.c (symbol_list_length): New.
16810 * src/scan-gram.l (handle_dollar, handle_at): Compute the
16811 rule_length only when needed.
16812 * src/output.c (actions_output, token_definitions_output): Output
16813 the full M4 block.
16814 * src/symtab.c: Don't access directly to the symbol tag, use
16815 symbol_tag_get.
16816 * src/parse-gram.y: Use symbol_list_free.
16817
56c47203
AD
168182002-06-17 Akim Demaille <akim@epita.fr>
16819
16820 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
16821 (symbol_list_prepend, get_type_name): Move to...
16822 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
16823 (symbol_list_prepend, symbol_list_n_type_name_get): here.
16824 Adjust all callers.
16825 (symbol_list_free): New.
16826 * src/scan-gram.l (handle_dollar): Takes a location.
16827 * tests/input.at (Invalid $n): Adjust.
16828
1e0bab92
AD
168292002-06-17 Akim Demaille <akim@epita.fr>
16830
16831 * src/reader.h, src/reader.c (symbol_list_new): Export it.
16832 (symbol_list_prepend): New.
16833 * src/parse-gram.y (%union): `list' is a new member.
16834 (symbols.1): New, replaces...
16835 (terms_to_prec.1, nterms_to_type.1): these.
16836 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
16837 Take a location as additional argument.
16838 Adjust all callers.
16839
04e60654
AD
168402002-06-15 Akim Demaille <akim@epita.fr>
16841
16842 * src/parse-gram.y: Move %token in the declaration section so that
16843 we don't depend upon CVS Bison.
16844
10e5b8bd
AD
168452002-06-15 Akim Demaille <akim@epita.fr>
16846
16847 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
16848 * src/print.c (print_core): Use it.
16849
9801d40c
AD
168502002-06-15 Akim Demaille <akim@epita.fr>
16851
16852 * src/conflicts.c (log_resolution): Accept the rule involved in
16853 the sr conflicts instead of the lookahead number that points to
16854 that rule.
16855 (flush_reduce): Accept the current lookahead vector as argument,
16856 instead of the index in LA.
16857 (resolve_sr_conflict): Accept the current number of lookahead
16858 bitset to consider for the STATE, instead of the index in LA.
16859 (set_conflicts): Adjust.
16860 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
16861
c0263492
AD
168622002-06-15 Akim Demaille <akim@epita.fr>
16863
16864 * src/state.h (state_t): Replace the `lookaheadsp' member, a
16865 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
16866 Adjust all dependencies.
16867 * src/lalr.c (initialize_lookaheads): Split into...
16868 (states_lookaheads_count, states_lookaheads_initialize): these.
16869 (lalr): Adjust.
16870
9757c359
AD
168712002-06-15 Akim Demaille <akim@epita.fr>
16872
16873 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
16874 out of...
16875 (grammar_rules_print): here.
16876 * src/reduce.c (reduce_output): Use it.
16877 * tests/reduce.at (Useless Rules, Reduced Automaton)
16878 (Underivable Rules): Adjust.
16879
6b98e4b5
AD
168802002-06-15 Akim Demaille <akim@epita.fr>
16881
16882 Copy BYacc's nice way to report the grammar.
16883
16884 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
16885 New.
16886 Don't print the rules' location, it is confusing and useless.
16887 (rule_print): Use grammar_rhs_print.
16888 * src/print.c (print_grammar): Use grammar_rules_print.
16889
6b98e4b5
AD
168902002-06-15 Akim Demaille <akim@epita.fr>
16891
16892 Complete and rationalize `useless thing' warnings.
16893
16894 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
16895 (symbol_tag_print): New.
16896 Use them everywhere in place of accessing directly the tag member.
16897 * src/gram.h, src/gram.c (rule_print): New.
16898 Use it where a rule used to be printed `by hand'.
16899 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
16900 (reduce_grammar_tables): Report the useless rules.
16901 (reduce_print): Useless things are a warning, not an error.
16902 Report it as such.
16903 * tests/reduce.at (Useless Nonterminals, Useless Rules):
16904 (Reduced Automaton, Underivable Rules): Adjust.
16905 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
16906 * tests/conflicts.at (Unresolved SR Conflicts)
16907 (Solved SR Conflicts): Adjust.
16908
ee000ba4
AD
169092002-06-15 Akim Demaille <akim@epita.fr>
16910
16911 Let symbols have a location.
16912
16913 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
16914 (getsym): Adjust.
16915 Adjust all callers.
16916 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
16917 Use location_t, not int.
16918 * src/symtab.c (symbol_check_defined): Take advantage of the
16919 location.
16920 * tests/regression.at (Invalid inputs): Adjust.
16921
8efe435c
AD
169222002-06-15 Akim Demaille <akim@epita.fr>
16923
16924 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
16925 (input): Don't try to initialize yylloc here, do it in the
16926 scanner.
16927 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
16928 * src/gram.h (rule_t): Change line and action_line into location
16929 and action_location, of location_t type.
16930 Adjust all dependencies.
16931 * src/location.h, src/location.c (empty_location): New.
16932 * src/reader.h, src/reader.c (grammar_start_symbol_set)
16933 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
16934 (grammar_current_rule_symbol_append)
16935 (grammar_current_rule_action_append): Expect a location as argument.
16936 * src/reader.c (grammar_midrule_action): Adjust to attach an
16937 action's location as dummy symbol location.
16938 * src/symtab.h, src/symtab.c (startsymbol_location): New.
16939 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
16940 the line numbers.
16941
1921f1d7
AD
169422002-06-14 Akim Demaille <akim@epita.fr>
16943
16944 Grammar declarations may be found in the grammar section.
16945
16946 * src/parse-gram.y (rules_or_grammar_declaration): New.
16947 (declarations): Each declaration may end with a semicolon, not
16948 just...
16949 (grammar_declaration): `"%union"'.
16950 (grammar): Branch to rules_or_grammar_declaration.
16951
4515534c
AD
169522002-06-14 Akim Demaille <akim@epita.fr>
16953
16954 * src/main.c (main): Invoke scanner_free.
16955
f958596b
AD
169562002-06-14 Akim Demaille <akim@epita.fr>
16957
16958 * src/output.c (m4_invoke): Extracted from...
16959 (output_skeleton): here.
16960 Free tempfile.
16961
2c569025
AD
169622002-06-14 Akim Demaille <akim@epita.fr>
16963
16964 * src/parse-gram.y (directives, directive, gram)
16965 (grammar_directives, precedence_directives, precedence_directive):
16966 Rename as...
16967 (declarations, declaration, grammar, grammar_declaration)
16968 (precedence_declaration, precedence_declarator): these.
16969 (symbol_declaration): New.
16970
592e8d4d
AD
169712002-06-14 Akim Demaille <akim@epita.fr>
16972
16973 * src/files.c (action_obstack): Remove, unused.
16974 (output_obstack): Remove it, and all its dependencies, as it is no
16975 longer needed.
16976 * src/reader.c (epilogue_set): Build the epilogue in the
16977 muscle_obstack.
16978 * src/output.h, src/output.c (muscle_obstack): Move to...
16979 * src/muscle_tab.h, src/muscle_tab.h: here.
16980 (muscle_init): Initialize muscle_obstack.
16981 (muscle_free): New.
16982 * src/main.c (main): Call it.
16983
0c15323d
AD
169842002-06-14 Akim Demaille <akim@epita.fr>
16985
16986 * src/location.h: New, extracted from...
16987 * src/reader.h: here.
16988 * src/Makefile.am (noinst_HEADERS): Merge into
16989 (bison_SOURCES): this.
16990 Add location.h.
16991 * src/parse-gram.y: Use location_t instead of Bison's.
16992 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
16993 Use location_t instead of ints.
16994
e96c9728
AD
169952002-06-14 Akim Demaille <akim@epita.fr>
16996
16997 * data/bison.simple, data/bison.c++: Be sure to restore the
16998 current #line when returning to the skeleton contents after having
16999 exposed the input file's #line.
17000
75d1fe16
AD
170012002-06-12 Akim Demaille <akim@epita.fr>
17002
17003 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
17004 eager.
17005 * tests/actions.at (Exotic Dollars): New.
17006
6c35d22c
AD
170072002-06-12 Akim Demaille <akim@epita.fr>
17008
17009 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
17010 ['"/] too eagerly.
17011 * tests/input.at (Torturing the Scanner): New.
17012
1d6412ad
AD
170132002-06-11 Akim Demaille <akim@epita.fr>
17014
17015 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
17016 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
17017 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
17018 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
17019 * src/reader.c (reader): Use it.
17020
4cdb01db
AD
170212002-06-11 Akim Demaille <akim@epita.fr>
17022
17023 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
17024 Adjust all callers.
17025 (scanner_last_string_free): New.
17026
44995b2e
AD
170272002-06-11 Akim Demaille <akim@epita.fr>
17028
17029 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
17030 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
17031 (last_string, YY_OBS_FREE): New.
17032 Use them when returning an ID.
17033
e9955c83
AD
170342002-06-11 Akim Demaille <akim@epita.fr>
17035
17036 Have Bison grammars parsed by a Bison grammar.
17037
17038 * src/reader.c, src/reader.h (prologue_augment): New.
17039 * src/reader.c (copy_definition): Remove.
17040
17041 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
17042 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
17043 (grammar_current_rule_prec_set, grammar_current_rule_check)
17044 (grammar_current_rule_symbol_append)
17045 (grammar_current_rule_action_append): Export.
17046 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
17047 (symbol_list_action_append): Remove.
17048 Hook the routines from reader.
17049 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
17050 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
17051
17052 * src/reader.c (read_declarations): Remove, unused.
17053
17054 * src/parse-gram.y: Handle the epilogue.
17055 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
17056 (grammar_start_symbol_set): this.
17057 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
17058 * src/reader.c (readgram): Remove, unused.
17059 (reader): Adjust to insert eoftoken and axiom where appropriate.
17060
17061 * src/reader.c (copy_dollar): Replace with...
17062 * src/scan-gram.h (handle_dollar): this.
17063 * src/parse-gram.y: Remove `%thong'.
17064
17065 * src/reader.c (copy_at): Replace with...
17066 * src/scan-gram.h (handle_at): this.
17067
17068 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
17069 New.
17070
17071 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
17072 time being.
17073
17074 * src/reader.h, src/reader.c (grammar_rule_end): New.
17075
17076 * src/parse.y (current_type, current_class): New.
17077 Implement `%nterm', `%token' support.
17078 Merge `%term' into `%token'.
17079 (string_as_id): New.
17080 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
17081 type name.
17082
17083 * src/parse-gram.y: Be sure to handle properly the beginning of
17084 rules.
17085
17086 * src/parse-gram.y: Handle %type.
17087 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
17088
17089 * src/parse-gram.y: More directives support.
17090 * src/options.c: No longer handle source directives.
17091
17092 * src/parse-gram.y: Fix %output.
17093
17094 * src/parse-gram.y: Handle %union.
17095 Use the prologue locations.
17096 * src/reader.c (parse_union_decl): Remove.
17097
17098 * src/reader.h, src/reader.c (epilogue_set): New.
17099 * src/parse-gram.y: Use it.
17100
17101 * data/bison.simple, data/bison.c++: b4_stype is now either not
17102 defined, then default to int, or to the contents of %union,
17103 without `union' itself.
17104 Adjust.
17105 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
17106
17107 * src/output.c (actions_output): Don't output braces, as they are
17108 already handled by the scanner.
17109
17110 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
17111 characters to themselves.
17112
17113 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
17114 that the epilogue has a proper #line.
17115
17116 * src/parse-gram.y: Handle precedence/associativity.
17117
17118 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
17119 a terminal.
17120 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
17121 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
17122 at all to define terminals that cannot be emitted.
17123
17124 * src/scan-gram.l: Escape M4 characters.
17125
17126 * src/scan-gram.l: Working properly with escapes in user
17127 strings/characters.
17128
17129 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
17130 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
17131 grammar.
17132 Use more modest sizes, as for the time being the parser does not
17133 release memory, and therefore the process swallows a huge amount
17134 of memory.
17135
17136 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
17137 stricter %token grammar.
17138
17139 * src/symtab.h (associativity): Add `undef_assoc'.
17140 (symbol_precedence_set): Do nothing when passed an undef_assoc.
17141 * src/symtab.c (symbol_check_alias_consistence): Adjust.
17142
17143 * tests/regression.at (Invalid %directive): Remove, as it is now
17144 meaningless.
17145 (Invalid inputs): Adjust to the new error messages.
17146 (Token definitions): The new grammar doesn't allow too many
17147 eccentricities.
17148
17149 * src/lex.h, src/lex.c: Remove.
17150 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
17151 (copy_character, copy_string2, copy_string, copy_identifier)
17152 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
17153 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
17154 (parse_action): Remove.
17155 * po/POTFILES.in: Adjust.
17156
2e047461
AD
171572002-06-11 Akim Demaille <akim@epita.fr>
17158
cd05d13c 17159 * src/reader.c (parse_action): Don't store directly into the
2e047461
AD
17160 rule's action member: return the action as a string.
17161 Don't require `rule_length' as an argument: compute it.
17162 (grammar_current_rule_symbol_append)
17163 (grammar_current_rule_action_append): New, eved out from
17164 (readgram): here.
17165 Remove `action_flag', `rulelength', unused now.
17166
9af3fbce
AD
171672002-06-11 Akim Demaille <akim@epita.fr>
17168
17169 * src/reader.c (grammar_current_rule_prec_set).
17170 (grammar_current_rule_check): New, eved out from...
17171 (readgram): here.
17172 Remove `xaction', `first_rhs': useless.
17173 * tests/input.at (Type clashes): New.
17174 * tests/existing.at (GNU Cim Grammar): Adjust.
17175
1485e106
AD
171762002-06-11 Akim Demaille <akim@epita.fr>
17177
17178 * src/reader.c (grammar_midrule_action): New, Eved out from
17179 (readgram): here.
17180
da4160c3
AD
171812002-06-11 Akim Demaille <akim@epita.fr>
17182
17183 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
17184 New.
17185 (readgram): Use them as replacement of inlined code, crule and
17186 crule1.
17187
f6d0f937
AD
171882002-06-11 Akim Demaille <akim@epita.fr>
17189
17190 * src/reader.c (grammar_end, grammar_symbol_append): New.
17191 (readgram): Use them.
17192 Make the use of `p' as local as possible.
17193
69078d4b
AD
171942002-06-10 Akim Demaille <akim@epita.fr>
17195
17196 GCJ's parser requires the tokens to be defined before the prologue.
17197
17198 * data/bison.simple: Output the token definition before the user's
17199 prologue.
17200 * tests/regression.at (Braces parsing, Duplicate string)
17201 (Mixing %token styles): Check the output from bison.
17202 (Early token definitions): New.
17203
5e424082
AD
172042002-06-10 Akim Demaille <akim@epita.fr>
17205
17206 * src/symtab.c (symbol_user_token_number_set): Don't complain when
17207 assigning twice the same user number to a token, so that we can
17208 use it in...
17209 * src/lex.c (lex): here.
17210 Also use `symbol_class_set' instead of hand written code.
17211 * src/reader.c (parse_assoc_decl): Likewise.
17212
44536b35
AD
172132002-06-10 Akim Demaille <akim@epita.fr>
17214
17215 * src/symtab.c, src/symtab.c (symbol_class_set)
17216 (symbol_user_token_number_set): New.
17217 * src/reader.c (parse_token_decl): Use them.
17218 Use a switch instead of ifs.
17219 Use a single argument.
17220
8b9f2372
AD
172212002-06-10 Akim Demaille <akim@epita.fr>
17222
17223 Remove `%thong' support as it is undocumented, unused, duplicates
17224 `%token's job, and creates useless e-mail traffic with people who
17225 want to know what it is, why it is undocumented, unused, and
17226 duplicates `%token's job.
17227
17228 * src/reader.c (parse_thong_decl): Remove.
17229 * src/options.c (option_table): Remove "thong".
17230 * src/lex.h (tok_thong): Remove.
17231
3ae2b51f
AD
172322002-06-10 Akim Demaille <akim@epita.fr>
17233
17234 * src/symtab.c, src/symtab.c (symbol_type_set)
17235 (symbol_precedence_set): New.
17236 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
17237 (value_components_used): Remove, unused.
17238
2f1afb73
AD
172392002-06-09 Akim Demaille <akim@epita.fr>
17240
17241 Move symbols handling code out of the reader.
17242
17243 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
17244 (axiom): Move to...
17245 * src/symtab.h, src/symtab.c: here.
17246
17247 * src/gram.c (start_symbol): Remove: use startsymbol->number.
17248 * src/reader.c (startval): Rename as...
17249 * src/symtab.h, src/symtab.c (startsymbol): this.
17250 * src/reader.c: Adjust.
17251
17252 * src/reader.c (symbol_check_defined, symbol_make_alias)
17253 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
17254 (token_translations_init)
17255 Move to...
17256 * src/symtab.c: here.
17257 * src/reader.c (packsymbols): Move to...
17258 * src/symtab.h, src/symtab.c (symbols_pack): here.
17259 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
17260 argument.
17261
e9bca3ad
AD
172622002-06-03 Akim Demaille <akim@epita.fr>
17263
17264 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
17265 then statements.
17266
86eff183
AD
172672002-06-03 Akim Demaille <akim@epita.fr>
17268
17269 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
17270 structs with non literals.
17271 * src/scan-skel.l: never-interactive.
17272 * src/conflicts.c (enum conflict_resolution_e): No trailing
17273 comma.
17274 * src/getargs.c (usage): Split long literal strings.
17275 Reported by Hans Aberg.
17276
717be197
AD
172772002-05-28 Akim Demaille <akim@epita.fr>
17278
17279 * data/bison.c++: Use C++ ostreams.
17280 (cdebug_): New member.
17281
670ddffd
AD
172822002-05-28 Akim Demaille <akim@epita.fr>
17283
17284 * src/output.c (output_skeleton): Be sure to allocate enough room
17285 for `/' _and_ for `\0' in full_skeleton.
17286
769b430f
AD
172872002-05-28 Akim Demaille <akim@epita.fr>
17288
17289 * data/bison.c++: Catch up with bison.simple:
17290 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17291 and Paul Eggert <eggert@twinsun.com>: `error' handing.
17292 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
17293 and popping traces.
17294
7067cb36
PH
172952002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17296
17297 * src/output.c (output_skeleton): Put an explicit path in front of
17298 the skeleton file name, rather than relying on the -I directory,
17299 to partially alleviate effects of having a skeleton file lying around
17300 in the current directory.
769b430f 17301
4a713ec2
PH
173022002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17303
769b430f 17304 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
17305 obstack_printf should be obstack_fgrow1.
17306
b408954b
AD
173072002-05-26 Akim Demaille <akim@epita.fr>
17308
17309 * src/state.h (state_t): `solved_conflicts' is a new member.
17310 * src/LR0.c (new_state): Set it to 0.
17311 * src/conflicts.h, src/conflicts.c (print_conflicts)
17312 (free_conflicts, solve_conflicts): Rename as...
17313 (conflicts_print, conflicts_free, conflicts_solve): these.
17314 Adjust callers.
17315 * src/conflicts.c (enum conflict_resolution_e)
17316 (solved_conflicts_obstack): New, used by...
17317 (log_resolution): this.
17318 Adjust to attach the conflict resolution to each state.
17319 Complete the description with the precedence/associativity
17320 information.
17321 (resolve_sr_conflict): Adjust.
17322 * src/print.c (print_state): Output its solved_conflicts.
17323 * tests/conflicts.at (Unresolved SR Conflicts)
17324 (Solved SR Conflicts): Exercise --report=all.
17325
a49aecd5
AD
173262002-05-26 Akim Demaille <akim@epita.fr>
17327
17328 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
17329 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
17330 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
17331 (token_number_t, item_number_as_token_number)
17332 (token_number_as_item_number, muscle_insert_token_number_table):
17333 Rename as...
17334 (symbol_number_t, item_number_as_symbol_number)
17335 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
17336 these, since it is more appropriate.
17337
5504898e
AD
173382002-05-26 Akim Demaille <akim@epita.fr>
17339
17340 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
17341 `Error:' lines.
17342 * data/bison.simple (yystos) [YYDEBUG]: New.
17343 (yyparse) [YYDEBUG]: Display the symbols which are popped during
17344 error recovery.
17345 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
17346
ec3bc396
AD
173472002-05-25 Akim Demaille <akim@epita.fr>
17348
17349 * doc/bison.texinfo (Debugging): Split into...
17350 (Tracing): this new section, its former contents, and...
17351 (Understanding): this new section.
17352 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
17353 by...
17354 (report_flag): this.
17355 Adjust all dependencies.
17356 (report_args, report_types, report_argmatch): New.
17357 (usage, getargs): Report/support -r, --report.
17358 * src/options.h
17359 (struct option_table_struct): Rename as..,
17360 (struct option_table_s): this.
17361 Rename the `set_flag' member to `flag' to match with getopt_long's
17362 struct.
17363 * src/options.c (option_table): Split verbose into an entry for
17364 %verbose, and another for --verbose.
17365 Support --report/-r, so remove -r from the obsolete --raw.
17366 * src/print.c: Attach full item sets and lookaheads reports to
17367 report_flag instead of trace_flag.
17368 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
17369
78df8250
PE
173702002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17371 and Paul Eggert <eggert@twinsun.com>
769b430f 17372
78df8250
PE
17373 * data/bison.simple (yyparse): Correct error handling to conform to
17374 POSIX and yacc. Specifically, after syntax error is discovered,
17375 do not reduce further before shifting the error token.
17376 Clean up the code a bit by removing the labels yyerrdefault,
17377 yyerrhandle, yyerrpop.
17378 * NEWS: Document the above.
17379
c0c9ea05
PH
173802002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17381
17382 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
17383 type; it isn't always big enough, since it doesn't necessarily
17384 include non-terminals.
769b430f 17385 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
17386 the latter can be removed.
17387 (yy_token_number_type): Remove, only one use.
17388 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
17389 don't use TokenNumberType as element type.
769b430f 17390
c0c9ea05
PH
17391 * tests/regression.at: Modify expected output to agree with change
17392 to yyr1 and yytranslate.
769b430f 17393
6390a83f
FK
173942002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
17395
17396 * src/reader.c (parse_action): Use copy_character instead of
17397 obstack_1grow.
17398
db7c8e9a
AD
173992002-05-13 Akim Demaille <akim@epita.fr>
17400
17401 * tests/regression.at (Token definitions): Prototype yylex and
17402 yyerror.
17403
fcc61800
PH
174042002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17405
158c687b 17406 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
17407 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
17408 32-bit arithmetic.
17409 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
17410
5683e9b2
AD
174112002-05-07 Akim Demaille <akim@epita.fr>
17412
17413 * tests/synclines.at: Be sure to prototype yylex and yyerror to
17414 avoid GCC warnings.
17415
0c2d3f4c
AD
174162002-05-07 Akim Demaille <akim@epita.fr>
17417
17418 Kill GCC warnings.
17419
17420 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
17421 over the RHS of each rule.
17422 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
17423 * src/state.h (state_t): Member `nitems' is unsigned short.
17424 * src/LR0.c (get_state): Adjust.
17425 * src/reader.c (packgram): Likewise.
17426 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
17427 `Type'.
17428 (muscle_insert_int_table): Remove, unused.
17429 (prepare_rules): Remove `max'.
17430
1565b720
AD
174312002-05-06 Akim Demaille <akim@epita.fr>
17432
17433 * src/closure.c (print_firsts): Display of the symbol tags.
17434 (bitmatrix_print): Move to...
17435 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
17436 here.
17437 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
17438
cfaee611
AD
174392002-05-06 Akim Demaille <akim@epita.fr>
17440
17441 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
17442 hash_do_for_each.
17443
458be8e0
AD
174442002-05-06 Akim Demaille <akim@epita.fr>
17445
17446 * src/LR0.c (new_state, get_state): Instead of using the global
17447 `kernel_size' and `kernel_base', have two new arguments:
17448 `core_size' and `core'.
17449 Adjust callers.
17450
a900a624
AD
174512002-05-06 Akim Demaille <akim@epita.fr>
17452
17453 * src/reader.c (packgram): No longer end `ritem' with a 0
17454 sentinel: it is not used.
17455
d4e7d3a1
AD
174562002-05-05 Akim Demaille <akim@epita.fr>
17457
17458 New experimental feature: display the lookaheads in the report and
17459 graph.
17460
17461 * src/print (print_core): When --trace-flag, display the rules
17462 lookaheads.
17463 * src/print_graph.c (print_core): Likewise.
17464 Swap the arguments.
17465 Adjust caller.
17466
39ceb25b
AD
174672002-05-05 Akim Demaille <akim@epita.fr>
17468
17469 * tests/torture.at (Many lookaheads): New test.
17470
5372019f
AD
174712002-05-05 Akim Demaille <akim@epita.fr>
17472
17473 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
17474 (GENERATE_MUSCLE_INSERT_TABLE): this.
17475 (output_int_table, output_unsigned_int_table, output_short_table)
17476 (output_token_number_table, output_item_number_table): Replace with...
17477 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
17478 (muscle_insert_short_table, muscle_insert_token_number_table)
17479 (muscle_insert_item_number_table): these.
17480 Adjust all callers.
17481 (prepare_tokens): Don't free `translations', since...
17482 * src/reader.h, src/reader.c (grammar_free): do it.
17483 Move to...
17484 * src/gram.h, src/gram.c (grammar_free): here.
17485 * data/bison.simple, data/bison.c++: b4_token_number_max is now
17486 b4_translate_max.
17487
5df5f6d5
AD
174882002-05-05 Akim Demaille <akim@epita.fr>
17489
17490 * src/output.c (output_unsigned_int_table): New.
17491 (prepare_rules): `i' is unsigned.
17492 `prhs', `rline', `r2' are unsigned int.
17493 Rename muscle `rhs_number_max' as `rhs_max'.
17494 Output muscles `prhs_max', `rline_max', and `r2_max'.
17495 Free rline and r1.
17496 * data/bison.simple, data/bison.c++: Adjust to use these muscles
17497 to compute types instead of constant types.
17498 * tests/regression.at (Web2c Actions): Adjust.
17499
b87f8b21
AD
175002002-05-04 Akim Demaille <akim@epita.fr>
17501
17502 * src/symtab.h (SALIAS, SUNDEF): Rename as...
17503 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
17504 Adjust dependencies.
17505 * src/output.c (token_definitions_output): Be sure not to output a
17506 `#define 'a'' when fed with `%token 'a' "a"'.
17507 * tests/regression.at (Token definitions): New.
17508
8bb936e4
PE
175092002-05-03 Paul Eggert <eggert@twinsun.com>
17510
17511 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
17512 for K&R C.
17513
175142002-05-03 gettextize <bug-gnu-gettext@gnu.org>
17515
17516 * Makefile.am (SUBDIRS): Remove intl.
17517 (EXTRA_DIST): Add config/config.rpath.
17518
53c71a12
AD
175192002-05-03 Akim Demaille <akim@epita.fr>
17520
17521 * data/bison.simple (m4_if): Don't output empty enums.
17522 And actually, output valid enum definitions :(.
17523
289dd0cf
AD
175242002-05-03 Akim Demaille <akim@epita.fr>
17525
17526 * configure.bat: Remove, completely obsolete.
17527 * Makefile.am (EXTRA_DIST): Adjust.
17528 Don't distribute config.rpath...
17529 * config/Makefile.am (EXTRA_DIST): Do it.
17530
db85e524
AD
175312002-05-03 Akim Demaille <akim@epita.fr>
17532
17533 * configure.in (GETTEXT_VERSION): New.
17534 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
17535
83ccf991
AD
175362002-05-03 Akim Demaille <akim@epita.fr>
17537
17538 * data/bison.simple (b4_token_enum): New.
17539 (b4_token_defines): Use it to output tokens both as #define and
17540 enums.
17541 Suggested by Paul Eggert.
17542 * src/output.c (token_definitions_output): Don't output spurious
17543 white spaces.
17544
1f418995
AD
175452002-05-03 Akim Demaille <akim@epita.fr>
17546
17547 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
17548
45119f04
RA
175492002-05-02 Robert Anisko <robert@lrde.epita.fr>
17550
17551 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
17552 Update the stack class, give a try to deque as the default container.
17553
b2d52318
AD
175542002-05-02 Akim Demaille <akim@epita.fr>
17555
17556 * data/bison.simple (yyparse): Do not implement @$ = @1.
17557 (YYLLOC_DEFAULT): Adjust to do it.
17558 * doc/bison.texinfo (Location Default Action): Fix.
17559
3a8b4109
AD
175602002-05-02 Akim Demaille <akim@epita.fr>
17561
17562 * src/reader.c (parse_braces): Merge into...
17563 (parse_action): this.
17564
84614e13
AD
175652002-05-02 Akim Demaille <akim@epita.fr>
17566
17567 * configure.in (ALL_LINGUAS): Remove.
17568 * po/LINGUAS, hr.po: New.
17569
fdbcd8e2
AD
175702002-05-02 Akim Demaille <akim@epita.fr>
17571
17572 Remove the so called hairy (semantic) parsers.
17573
17574 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
17575 * src/gram.h, src/gram.c (semantic_parser): Remove.
17576 (rule_t): Remove the guard and guard_line members.
17577 * src/lex.h (token_t): remove tok_guard.
17578 * src/options.c (option_table): Remove %guard and %semantic_parser
17579 support.
17580 * src/output.c, src/output.h (guards_output): Remove.
17581 (prepare): Adjust.
17582 (token_definitions_output): Don't output the `T'
17583 tokens (???).
17584 (output_skeleton): Don't output the guards.
17585 * src/files.c, src/files.c (attrsfile): Remove.
17586 * src/reader.c (symbol_list): Remove the guard and guard_line
17587 members.
17588 Adjust dependencies.
17589 (parse_guard): Remove.
17590 * data/bison.hairy: Remove.
17591 * doc/bison.texinfo (Environment Variables): Remove occurrences of
17592 BISON_HAIRY.
17593
82b6cb3f
AD
175942002-05-02 Akim Demaille <akim@epita.fr>
17595
17596 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
17597 (parse_guard): Rename the formal argument `stack_offset' as
17598 `rule_length', which is more readable.
17599 Adjust callers.
17600 (copy_at, copy_dollar): Instead of outputting the hard coded
17601 values of $$, $n and so forth, output invocation to b4_lhs_value,
17602 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
17603 Note: this patch partially drops `semantic-parser' support: it
17604 always does `rule_length - n', where semantic parsers ought to
17605 always use `-n'.
82b6cb3f
AD
17606 * data/bison.simple, data/bison.c++ (b4_lhs_value)
17607 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
17608
6cbfbcc5
AD
176092002-05-02 Akim Demaille <akim@epita.fr>
17610
17611 * configure.in (AC_INIT): Bump to 1.49b.
17612 (AM_INIT_AUTOMAKE): Short invocation.
17613
b8548114
AD
176142002-05-02 Akim Demaille <akim@epita.fr>
17615
17616 Version 1.49a.
17617
c20cd1fa
AD
176182002-05-01 Akim Demaille <akim@epita.fr>
17619
17620 * src/skeleton.h: Remove.
17621
8a9566d4
AD
176222002-05-01 Akim Demaille <akim@epita.fr>
17623
17624 * src/skeleton.h: Fix the #endif.
17625 Reported by Magnus Fromreide.
17626
8c6d399a
PE
176272002-04-26 Paul Eggert <eggert@twinsun.com>
17628
17629 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
17630 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 17631 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 17632
2b7ed18a
RA
176332002-04-25 Robert Anisko <robert@lrde.epita.fr>
17634
17635 * src/scan-skel.l: Postprocess quadrigraphs.
17636
17637 * src/reader.c (copy_character): New function, used to output
17638 single characters while replacing `[' and `]' with quadrigraphs, to
17639 avoid troubles with M4 quotes.
17640 (copy_comment): Output characters with copy_character.
17641 (read_additionnal_code): Likewise.
17642 (copy_string2): Likewise.
17643 (copy_definition): Likewise.
17644
17645 * tests/calc.at: Exercise M4 quoting.
17646
34a89c50
AD
176472002-04-25 Akim Demaille <akim@epita.fr>
17648
17649 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
17650 between `!' and the command.
17651 Reported by Paul Eggert.
17652
0dd1580a
RA
176532002-04-24 Robert Anisko <robert@lrde.epita.fr>
17654
17655 * tests/calc.at: Exercise prologue splitting.
17656
17657 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
17658 `b4_post_prologue' instead of `b4_prologue'.
17659
17660 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
17661 muscles.
17662 (output): Free pre_prologue_obstack and post_prologue_obstack.
17663 * src/files.h, src/files.c (attrs_obstack): Remove.
17664 (pre_prologue_obstack, post_prologue_obstack): New.
17665 * src/reader.c (copy_definition): Add a parameter to specify the
17666 obstack to fill, instead of using attrs_obstack unconditionally.
17667 (read_declarations): Pass pre_prologue_obstack to copy_definition if
17668 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
17669
83c1796f
PE
176702002-04-23 Paul Eggert <eggert@twinsun.com>
17671
17672 * data/bison.simple: Remove unnecessary commentary and white
17673 space differences from 1_29-branch.
17674 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
17675
17676 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
17677 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
17678 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
17679 constructors or destructors.
17680
17681 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
17682
1207eeac
AD
176832002-04-23 Akim Demaille <akim@epita.fr>
17684
17685 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
17686 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
17687 location with columns.
17688 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
17689 All reported by Paul Eggert.
17690
78ab8f67
AD
176912002-04-22 Akim Demaille <akim@epita.fr>
17692
17693 * src/reduce.c (dump_grammar): Move to...
17694 * src/gram.h, src/gram.c (grammar_dump): here.
17695 Be sure to separate long item numbers.
17696 Don't read the members of a rule's prec if its nil.
17697
133c20e2
AD
176982002-04-22 Akim Demaille <akim@epita.fr>
17699
17700 * src/output.c (table_size, table_grow): New.
17701 (MAXTABLE): Remove, replace uses with table_size.
17702 (pack_vector): Instead of dying when the table is too big, grow it.
17703
9515e8a7
AD
177042002-04-22 Akim Demaille <akim@epita.fr>
17705
17706 * data/bison.simple (yyr1): Its type is that of a token number.
17707 * data/bison.c++ (r1_): Likewise.
17708 * tests/regression.at (Web2c Actions): Adjust.
17709
23c5a174
AD
177102002-04-22 Akim Demaille <akim@epita.fr>
17711
17712 * src/reader.c (token_translations_init): 256 is now the default
17713 value for the error token, i.e., it will be assigned another
17714 number if the user assigned 256 to one of her tokens.
17715 (reader): Don't force 256 to error.
17716 * doc/bison.texinfo (Symbols): Adjust.
17717 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
17718 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
17719 etc. instead of 10, 20, 30 (which was used to `jump' over error
17720 (256) and undefined (2)).
17721
5fbb0954
AD
177222002-04-22 Akim Demaille <akim@epita.fr>
17723
17724 Propagate more token_number_t.
17725
17726 * src/gram.h (token_number_as_item_number)
17727 (item_number_as_token_number): New.
17728 * src/output.c (GENERATE_OUTPUT_TABLE): New.
17729 Use it to create output_item_number_table and
17730 output_token_number_table.
17731 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
17732 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
17733 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
17734 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
17735
4f940944
AD
177362002-04-22 Akim Demaille <akim@epita.fr>
17737
17738 * src/output.h, src/output.c (get_lines_number): Remove.
17739
3ded9a63
AD
177402002-04-19 Akim Demaille <akim@epita.fr>
17741
17742 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
17743 as Lex/Flex'.
17744 (Debugging): More details about enabling the debugging features.
17745 (Table of Symbols): Describe $$, $n, @$, and @n.
17746 Suggested by Tim Josling.
17747
e0c471a9
AD
177482002-04-19 Akim Demaille <akim@epita.fr>
17749
17750 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
17751
fecc10cd
AD
177522002-04-10 Akim Demaille <akim@epita.fr>
17753
17754 * src/system.h: Rely on HAVE_LIMITS_H.
17755 Suggested by Paul Eggert.
17756
51dec47b
AD
177572002-04-09 Akim Demaille <akim@epita.fr>
17758
17759 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
17760 full stderr, and strip it according to the bison options, instead
17761 of composing the error message from different bits.
17762 This makes it easier to check for several error messages.
17763 Adjust all the invocations.
17764 Add an invocation exercising the error token.
17765 Add an invocation demonstrating a stupid error message.
17766 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
17767 Adjust the tests.
17768 Error message are for stderr, not stdout.
17769
007a50a4
AD
177702002-04-09 Akim Demaille <akim@epita.fr>
17771
17772 * src/gram.h, src/gram.c (error_token_number): Remove, use
17773 errtoken->number.
17774 * src/reader.c (reader): Don't specify the user token number (2)
17775 for $undefined, as it uselessly prevents using it.
17776 * src/gram.h (token_number_t): Move to...
17777 * src/symtab.h: here.
17778 (state_t.number): Is a token_number_t.
17779 * src/print.c, src/reader.c: Use undeftoken->number instead of
17780 hard coded 2.
17781 (Even though this 2 is not the same as above: the number of the
17782 undeftoken remains being 2, it is its user token number which
17783 might not be 2).
17784 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
17785 `user_token_number_max'.
17786 Output `undef_token_number'.
17787 * data/bison.simple, data/bison.c++: Use them.
17788 Be sure to map invalid yylex return values to
17789 `undef_token_number'. This saves us from gratuitous SEGV.
17790
17791 * tests/conflicts.at (Solved SR Conflicts)
17792 (Unresolved SR Conflicts): Adjust.
17793 * tests/regression.at (Web2c Actions): Adjust.
17794
06446ccf
AD
177952002-04-08 Akim Demaille <akim@epita.fr>
17796
17797 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
17798 Adding #line.
17799 Remove the duplicate `typedefs'.
17800 (RhsNumberType): Fix the declaration and various other typos.
17801 Use __ofile__.
17802 * data/bison.simple: Use __ofile__.
17803 * src/scan-skel.l: Handle __ofile__.
17804
62a3e4f0
AD
178052002-04-08 Akim Demaille <akim@epita.fr>
17806
17807 * src/gram.h (item_number_t): New, the type of item numbers in
17808 RITEM. Note that it must be able to code symbol numbers as
17809 positive number, and the negation of rule numbers as negative
17810 numbers.
17811 Adjust all dependencies (pretty many).
17812 * src/reduce.c (rule): Remove this `short *' pointer: use
17813 item_number_t.
17814 * src/system.h (MINSHORT, MAXSHORT): Remove.
17815 Include `limits.h'.
17816 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
17817 (shortcpy): Remove.
17818 (MAXTABLE): Move to...
17819 * src/output.c (MAXTABLE): here.
17820 (prepare_rules): Use output_int_table to output rhs.
17821 * data/bison.simple, data/bison.c++: Adjust.
17822 * tests/torture.at (Big triangle): Move the limit from 254 to
17823 500.
17824 * tests/regression.at (Web2c Actions): Ajust.
17825
17826 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
17827 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
17828 passes, but produces negative #line number, once fixed, GCC is
17829 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
17830 C), it passes.
17831 * src/state.h (state_h): Code input lines on ints, not shorts.
17832
bb88b0fc
AD
178332002-04-08 Akim Demaille <akim@epita.fr>
17834
17835 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
17836 and then the grammar.
17837
9a636f47
AD
178382002-04-08 Akim Demaille <akim@epita.fr>
17839
17840 * src/system.h: No longer using strndup.
17841
680e8701
AD
178422002-04-07 Akim Demaille <akim@epita.fr>
17843
17844 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
17845 * src/output.c (output_table_data): Return the longest number.
17846 (prepare_tokens): Output `token_number_max').
17847 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
17848 New.
17849 Use them to define yy_token_number_type/TokenNumberType.
17850 Use this type for yytranslate.
17851 * tests/torture.at (Big triangle): Push the limit from 124 to
17852 253.
17853 * tests/regression.at (Web2c Actions): Adjust.
17854
817e9f41
AD
178552002-04-07 Akim Demaille <akim@epita.fr>
17856
17857 * tests/torture.at (Big triangle): New.
17858 (GNU AWK Grammar, GNU Cim Grammar): Move to...
17859 * tests/existing.at: here.
17860
5123689b
AD
178612002-04-07 Akim Demaille <akim@epita.fr>
17862
17863 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
17864 nritems.
17865 Adjust dependencies.
17866
f3849179
AD
178672002-04-07 Akim Demaille <akim@epita.fr>
17868
17869 * src/reader.c: Normalize increments to prefix form.
17870
bd02036a
AD
178712002-04-07 Akim Demaille <akim@epita.fr>
17872
17873 * src/reader.c, symtab.c: Remove debugging code.
17874
db8837cb
AD
178752002-04-07 Akim Demaille <akim@epita.fr>
17876
17877 Rename all the `bucket's as `symbol_t'.
17878
17879 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
17880 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
17881 * src/symtab.c, src/symtab.h (bucket): Rename as...
17882 (symbol_t): this.
17883 (symbol_list_new, bucket_check_defined, bucket_make_alias)
17884 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
17885 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
17886 (buckets_new, buckets_free, buckets_do): Rename as...
17887 (symbol_list_new, symbol_check_defined, symbol_make_alias)
17888 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
17889 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
17890 (symbols_new, symbols_free, symbols_do): these.
17891
72a23c97
AD
178922002-04-07 Akim Demaille <akim@epita.fr>
17893
17894 Use lib/hash for the symbol table.
17895
17896 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
17897 EOF.
17898 * src/lex.c (lex): Set the `number' member of new terminals.
17899 * src/reader.c (bucket_check_defined, bucket_make_alias)
17900 (bucket_check_alias_consistence, bucket_translation): New.
17901 (reader, grammar_free, readgram, token_translations_init)
17902 (packsymbols): Adjust.
17903 (reader): Number the predefined tokens.
17904 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
17905 for predefined tokens.
17906 * src/symtab.h (bucket): Remove all the hash table related
17907 members.
17908 * src/symtab.c (symtab): Replace by...
17909 (bucket_table): this.
17910 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
17911 (buckets_new, buckets_do): New.
17912
280a38c3
AD
179132002-04-07 Akim Demaille <akim@epita.fr>
17914
17915 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
17916 (start_symbol, max_user_token_number, semantic_parser)
17917 (error_token_number): Initialize.
17918 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
17919 Initialize.
17920 (reader): Don't.
17921 (errtoken, eoftoken, undeftoken, axiom): Extern.
17922
03b31c0c
AD
179232002-04-07 Akim Demaille <akim@epita.fr>
17924
17925 * src/gram.h (rule_s): prec and precsym are now pointers
17926 to the bucket giving the priority/associativity.
17927 Member `associativity' removed: useless.
17928 * src/reduce.c, src/conflicts.c: Adjust.
17929
8b3df748
AD
179302002-04-07 Akim Demaille <akim@epita.fr>
17931
17932 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
17933 Properly escape the symbols' TAG when outputting them.
17934
e601aa1d
AD
179352002-04-07 Akim Demaille <akim@epita.fr>
17936
17937 * src/lalr.h (LA): Is a bitsetv, not bitset*.
17938
b0299a2e
AD
179392002-04-07 Akim Demaille <akim@epita.fr>
17940
17941 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
17942 (LArule): this, which is an array to rule_t*.
17943 * src/print.c, src/conflicts.c: Adjust.
17944
d7e1f00c
AD
179452002-04-07 Akim Demaille <akim@epita.fr>
17946
17947 * src/gram.h (rule_t): Rename `number' as `user_number'.
17948 `number' is a new member.
17949 Adjust dependencies.
17950 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
17951
cc9305dd
AD
179522002-04-07 Akim Demaille <akim@epita.fr>
17953
17954 As a result of the previous patch, it is no longer needed
17955 to reorder ritem itself.
17956
17957 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
17958
b0940840
AD
179592002-04-07 Akim Demaille <akim@epita.fr>
17960
17961 Be sure never to walk through RITEMS, but use only data related to
17962 the rules themselves. RITEMS should be banished.
17963
17964 * src/output.c (output_token_translations): Rename as...
17965 (prepare_tokens): this.
17966 In addition to `translate', prepare the muscles `tname' and
17967 `toknum', which were handled by...
17968 (output_rule_data): this.
17969 Remove, and move the remainder of its outputs into...
17970 (prepare_rules): this new routines, which also merges content from
17971 (output_gram): this.
17972 (prepare_rules): Be sure never to walk through RITEMS.
17973 (output_stos): Rename as...
17974 (prepare_stos): this.
17975 (output): Always invoke prepare_states, after all, just don't use it
17976 in the output if you don't need it.
17977
643a5994
AD
179782002-04-07 Akim Demaille <akim@epita.fr>
17979
17980 * src/LR0.c (new_state): Display `nstates' as the name of the
17981 newly created state.
17982 Adjust to initialize first_state and last_state if needed.
17983 Be sure to distinguish the initial from the final state.
17984 (new_states): Create the itemset of the initial state, and use
17985 new_state.
17986 * src/closure.c (closure): Now that the initial state has its
17987 items properly set, there is no need for a special case when
17988 creating `ruleset'.
17989
17990 As a result, now the rule 0, reducing to $axiom, is visible in the
17991 outputs. Adjust the test suite.
17992
17993 * tests/conflicts.at (Solved SR Conflicts)
17994 (Unresolved SR Conflicts): Adjust.
17995 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
17996 * tests/conflicts.at (S/R in initial): New.
17997
b4c4ccc2
AD
179982002-04-07 Akim Demaille <akim@epita.fr>
17999
18000 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
18001 the RHS of the rules.
18002 * src/output.c (output_gram): Likewise.
18003
bba97eb2
AD
180042002-04-07 Akim Demaille <akim@epita.fr>
18005
18006 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
18007 bucket.
18008 Adjust all dependencies.
18009 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
18010 `number' of the buckets too.
18011 * src/gram.h: Include `symtab.h'.
18012 (associativity): Move to...
18013 * src/symtab.h: here.
18014 No longer include `gram.h'.
18015
c3b407f4
AD
180162002-04-07 Akim Demaille <akim@epita.fr>
18017
18018 * src/gram.h, src/gram.c (rules_rhs_length): New.
18019 (ritem_longest_rhs): Use it.
18020 * src/gram.h (rule_t): `number' is a new member.
18021 * src/reader.c (packgram): Set it.
18022 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
18023 the end of `rules', and count them out of `nrules'.
18024 (reduce_output, dump_grammar): Adjust.
18025 * src/print.c (print_grammar): It is no longer needed to check for
18026 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
18027 * tests/reduce.at (Reduced Automaton): New test.
18028
11652ab3
AD
180292002-04-07 Akim Demaille <akim@epita.fr>
18030
18031 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
18032 lacking `+ 1' to nrules, Bison reported as useless a token if it
18033 was used solely to set the precedence of the last rule...
18034
26b23c1a
AD
180352002-04-07 Akim Demaille <akim@epita.fr>
18036
18037 * data/bison.c++, data/bison.simple: Don't output the current file
18038 name in #line, to avoid useless diffs between two identical
18039 outputs under different names.
18040
18bcecb0
AD
180412002-04-07 Akim Demaille <akim@epita.fr>
18042
18043 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
18044 Normalize loops to using `< nrules + 1', not `<= nrules'.
18045
fa770c86
AD
180462002-04-07 Akim Demaille <akim@epita.fr>
18047
18048 * TODO: Update.
18049
d9b739c3
AD
180502002-04-07 Akim Demaille <akim@epita.fr>
18051
18052 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
18053 bucket.value as bucket.number.
18054
99013900
AD
180552002-04-07 Akim Demaille <akim@epita.fr>
18056
18057 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
18058 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
18059 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
18060 RHS, instead of being an index in RITEMS.
18061
e966383b
PE
180622002-04-04 Paul Eggert <eggert@twinsun.com>
18063
18064 * doc/bison.texinfo: Update copyright date.
18065 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
18066 (Symbols): Warn about running Bison in one character set,
18067 but compiling and/or running in an incompatible one.
18068 Warn about character code 256, too.
18069
180702002-04-03 Paul Eggert <eggert@twinsun.com>
18071
18072 * src/bison.data (YYSTACK_ALLOC): Depend on whether
18073 YYERROR_VERBOSE is nonzero, not whether it is defined.
18074
18075 Merge changes from bison-1_29-branch.
c307773e 18076
8d6c48b9
PE
180772002-03-20 Paul Eggert <eggert@twinsun.com>
18078
18079 Merge fixes from Debian bison_1.34-1.diff.
18080
18081 * configure.in (AC_PREREQ): 2.53.
18082
e53c6322
AD
180832002-03-20 Akim Demaille <akim@epita.fr>
18084
18085 * src/conflicts.c (log_resolution): Argument `resolution' is const.
18086
9ffbeca7
PE
180872002-03-19 Paul Eggert <eggert@twinsun.com>
18088
21db0b2a
PE
18089 * src/bison.simple (YYCOPY): New macro.
18090 (YYSTACK_RELOCATE): Use it.
18091 Remove Type arg; no longer needed. All callers changed.
18092 (yymemcpy): Remove; no longer needed.
18093
9ffbeca7
PE
18094 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
18095 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
18096
642cb8f8
AD
180972002-03-19 Akim Demaille <akim@epita.fr>
18098
18099 Test and fix the #line outputs.
18100
18101 * tests/atlocal.at (GCC): New.
18102 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
0ffd4fd1 18103 (Prologue synch line, %union synch line, Postprologue synch line)
642cb8f8
AD
18104 (Action synch line, Epilogue synch line): New tests.
18105 * src/reader.c (parse_union_decl): Define the muscle stype_line.
18106 * data/bison.simple, data/bison.c++: Use it.
18107
3c31a486
AD
181082002-03-19 Akim Demaille <akim@epita.fr>
18109
18110 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
18111 (Solved SR Conflicts, %expect not enough, %expect right)
18112 (%expect too much): Move to...
18113 * tests/conflicts.at: this new file.
18114
0d8bed56
AD
181152002-03-19 Akim Demaille <akim@epita.fr>
18116
18117 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
18118 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
18119 that we can move to enums for instance.
18120 * src/output.c (token_definitions_output): Output a list of
18121 `token-name, token-number' instead of the #define.
18122 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
18123
9208d17f
AD
181242002-03-14 Akim Demaille <akim@epita.fr>
18125
18126 Use Gettext 0.11.1.
18127
af27eacb
RA
181282002-03-09 Robert Anisko <robert@lrde.epita.fr>
18129
18130 * data/bison.c++: Make the user able to add members to the generated
18131 parser by subclassing.
18132
9101a310
RA
181332002-03-05 Robert Anisko <robert@lrde.epita.fr>
18134
18135 * src/reader.c (read_additionnal_code): `c' should be an integer, not
18136 a character.
18137 Reported by Nicolas Tisserand and Nicolas Burrus.
18138
fff9bf0b
RA
181392002-03-04 Robert Anisko <robert@lrde.epita.fr>
18140
18141 * src/reader.c: Warn about lacking semi-colons, do not complain.
18142
64dba31e
RA
181432002-03-04 Robert Anisko <robert@lrde.epita.fr>
18144
18145 * data/bison.c++: Remove a debug line.
18146
374f5a14
RA
181472002-03-04 Robert Anisko <robert@lrde.epita.fr>
18148
18149 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
18150 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
18151 provide a default implementation.
18152
bfcf1f3a
AD
181532002-03-04 Akim Demaille <akim@epita.fr>
18154
18155 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
18156 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
18157 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
18158 * tests/semantic.at (Parsing Guards): Similarly.
18159 * src/reader.at (readgram): Complain if the last rule is not ended
18160 with a semi-colon.
18161
65ccf9fc
AD
181622002-03-04 Akim Demaille <akim@epita.fr>
18163
18164 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
18165 * src/closure.c: here.
18166 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
18167 RTC.
18168 * src/warshall.h, src/warshall.c: Remove.
18169 * tests/sets.at (Broken Closure): Adjust.
18170
d0039cbc
AD
181712002-03-04 Akim Demaille <akim@epita.fr>
18172
18173 * src/output.c (output_skeleton): tempdir is const.
18174 bytes_read is unused.
18175
345cea78
AD
181762002-03-04 Akim Demaille <akim@epita.fr>
18177
18178 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
18179 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
18180 Update.
18181 From Michael Hayes.
18182
564801f7
AD
181832002-03-04 Akim Demaille <akim@epita.fr>
18184
18185 * src/closure.c (closure): `r' is unused.
18186
e5352bc7
AD
181872002-03-04 Akim Demaille <akim@epita.fr>
18188
18189 * tests/sets.at (Broken Closure): Add the ending `;'.
18190 * src/reader.at (readgram): Complain if a rule is not ended with a
18191 semi-colon.
18192
914feea9
AD
181932002-03-04 Akim Demaille <akim@epita.fr>
18194
18195 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
18196 (count_sr_conflicts): Use bitset_count.
18197 * src/reduce.c (inaccessable_symbols): Ditto.
18198 (bits_size): Remove.
18199 * src/warshall.h, src/warshall.c: Convert to bitsetv.
18200
f0250de6
AD
182012002-03-04 Akim Demaille <akim@epita.fr>
18202
18203 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
18204 * src/reduce.c: Remove the `bitset_zero's following the
18205 `bitset_create's, as now it is performed by the latter.
18206
ef017502
AD
182072002-03-04 Akim Demaille <akim@epita.fr>
18208
18209 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
18210 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
18211 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
18212 latest sources from Michael.
18213
76514394
AD
182142002-03-04 Akim Demaille <akim@epita.fr>
18215
18216 * src/output.c (output): Don't free the grammar.
18217 * src/reader.c (grammar_free): New.
18218 * src/main.c (main): Call it and don't free symtab here.
18219
55024580
AD
182202002-03-04 Akim Demaille <akim@epita.fr>
18221
18222 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
18223 before returning.
18224 Reported by Benoit Perrot.
18225
f9abaa2c
AD
182262002-03-04 Akim Demaille <akim@epita.fr>
18227
18228 Use bitset operations when possible, not loops over bits.
18229
18230 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
18231 bitset_or.
18232 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
18233 * src/reduce.c (useless_nonterminals): Formatting changes.
18234 * src/warshall.c (TC): Use bitset_or.
18235
0e721e75
AD
182362002-03-04 Akim Demaille <akim@epita.fr>
18237
18238 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
18239 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
18240 Ditto.
18241
0fb1ffb1
AD
182422002-03-04 Akim Demaille <akim@epita.fr>
18243
18244 * src/lalr.c (F): Now a bitset*.
18245 Adjust all dependencies.
18246
b86796bf
AD
182472002-03-04 Akim Demaille <akim@epita.fr>
18248
18249 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
18250 Adjust all dependencies.
18251
602bbf31
AD
182522002-03-04 Akim Demaille <akim@epita.fr>
18253
18254 * src/L0.c, src/LR0.h (nstates): Be size_t.
18255 Adjust comparisons (signed vs unsigned).
18256 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
18257 bitset*.
18258 Adjust all dependencies.
18259
d8a0245c
AD
182602002-03-04 Akim Demaille <akim@epita.fr>
18261
18262 * src/closure.c (firsts): Now, also a bitset.
18263 Adjust all dependencies.
18264 (varsetsize): Remove, now unused.
18265 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
18266
34ba9743
AD
182672002-03-04 Akim Demaille <akim@epita.fr>
18268
18269 * src/print.c: Convert to use bitset.h, not hand coded iterations
18270 over ints.
18271
ed86e78c
AD
182722002-03-04 Akim Demaille <akim@epita.fr>
18273
18274 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
18275
dfdb1797
AD
182762002-03-04 Akim Demaille <akim@epita.fr>
18277
18278 * src/closure.c (ruleset): Be a bitset.
18279 (rulesetsize): Remove.
18280
7086e707
AD
182812002-03-04 Akim Demaille <akim@epita.fr>
18282
18283 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
18284 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
18285 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
18286 * src/closure.c (fderives): Be an array of bitsets.
18287
98254360
RA
182882002-02-28 Robert Anisko <robert@lrde.epita.fr>
18289
18290 * data/bison.c++: Merge the two generated headers. Insert a copyright
18291 notice in each output file.
18292
a75c057f
AD
182932002-02-28 Akim Demaille <akim@epita.fr>
18294
18295 * data/bison.c++: Copy the prologue of bison.simple to fetch
18296 useful M4 definitions, such as b4_header_guard.
18297
06b00abc
AD
182982002-02-25 Akim Demaille <akim@epita.fr>
18299
18300 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
18301 translator friendly scheme for the bgr
18302 copyright notice.
06b00abc 18303
70e7d534
AD
183042002-02-25 Akim Demaille <akim@epita.fr>
18305
18306 * src/output.c (header_output): Remove, now handled completely via
18307 M4.
18308
abe017f6
AD
183092002-02-25 Akim Demaille <akim@epita.fr>
18310
18311 * m4/m4.m4: New, from CVS Autoconf.
18312 * configure.in: Invoke it.
18313 * src/output.c (output_skeleton): Use its result instead of the
18314 hard coded name.
18315
381fb12e
AD
183162002-02-25 Akim Demaille <akim@epita.fr>
18317
18318 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
18319 Fileutils 4.1.5.
18320 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
18321 * src/output.c (output_skeleton): Use mkstemp to create a real
18322 temporary file.
18323 Move the filling of `skeleton' and its muscle to...
18324 (prepare): here.
18325 (output): Move the definition of the prologue muscle to...
18326 (prepare): here.
18327 * src/system.h (DEFAULT_TMPDIR): New.
18328
6f38107f
PE
183292002-02-14 Paul Eggert <eggert@twinsun.com>
18330
18331 Remove the support for C++ namespace cleanliness; it was
18332 causing more problems than it was curing, since it didn't work
18333 properly on some nonstandard C++ compilers. This can wait
18334 for a proper C++ parser.
18335
18336 * NEWS: Document this.
18337 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
18338 of C++, as it's treated like C now.
18339 * src/bison.simple (YYSTD): Remove.
18340 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
18341 Treat C++ just like Standard C instead of trying to support
18342 namespace cleanliness.
18343
80cce3da
AD
183442002-02-14 Akim Demaille <akim@epita.fr>
18345
18346 * tests/regression.at (else): Adjust to Andreas' change.
18347
842e8679
AD
183482002-02-14 Akim Demaille <akim@epita.fr>
18349
18350 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
18351
4bda3f10
AD
183522002-02-13 Andreas Schwab <schwab@suse.de>
18353
18354 * src/output.c (output_rule_data): Don't output NULL, it might
18355 not be defined yet.
18356
4162fa07 183572002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 18358
4162fa07
RA
18359 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
18360 (Copyright notice): Update.
b418ecd8 18361
bd16a5dc
AD
183622002-02-11 Akim Demaille <akim@epita.fr>
18363
18364 * tests/regression.at (%nonassoc and eof): Don't include
18365 nonportable headers.
18366
8d69a1a3
RA
183672002-02-08 Robert Anisko <robert@lrde.epita.fr>
18368
18369 * data/bison.c++: Correct error recovery. Make the user able to
18370 initialize the starting location.
18371
9b2d0677
AD
183722002-02-07 Akim Demaille <akim@epita.fr>
18373
18374 * tests/input.at: New.
18375
69e2658b
RA
183762002-02-07 Robert Anisko <robert@lrde.epita.fr>
18377
18378 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 18379 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
18380 directives around tables only needed for debugging.
18381
4aacc3a7
RA
183822002-02-07 Robert Anisko <robert@lrde.epita.fr>
18383
18384 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
18385 C++ parsers.
18386 (yy::b4_name::parse): Use print_.
18387
762a801e
RA
183882002-02-07 Robert Anisko <robert@lrde.epita.fr>
18389
18390 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
18391
4bb2bc3f
RA
183922002-02-07 Robert Anisko <robert@lrde.epita.fr>
18393
18394 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
18395 C++ parsers.
18396 (yy::b4_name::parse): Build verbose error messages, and use error_.
18397
6b45a3ca
RA
183982002-02-06 Robert Anisko <robert@lrde.epita.fr>
18399
18400 * data/bison.c++: Fix m4 quoting in comments.
18401
50997c6e
RA
184022002-02-06 Robert Anisko <robert@lrde.epita.fr>
18403
18404 * data/bison.c++: Adjust the parser code. Fix some muscles that were
18405 not expanded by m4.
18406
3f3eed27
AD
184072002-02-05 Akim Demaille <akim@epita.fr>
18408
18409 * data/bison.c++: Adjust to the M4 back end.
18410 More is certainly needed.
18411
be2a1a68
AD
184122002-02-05 Akim Demaille <akim@epita.fr>
18413
18414 Give a try to M4 as a back end.
18415
18416 * lib/readpipe.c: New, from wdiff.
18417 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
18418 BISON_HAIRY.
18419 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
18420 specific values. Now it is m4 that performs the lookup.
18421 * src/parse-skel.y: Remove.
18422 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
18423 * src/output.c (actions_output, guards_output)
18424 (token_definitions_output): No longer keeps track of the output
18425 line number, hence remove the second argument.
18426 (guards_output): Check against the guard member of a rule, not the
18427 action member.
18428 Adjust callers.
18429 (output_skeleton): Don't look for the skeleton location, let m4 do
18430 that.
18431 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
18432 file will be used.
18433 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
18434 (prepare): Given that for the time being changesyntax is not
18435 usable in M4, rename the muscles using `-' to `_'.
18436 Define `defines_flag', `output_parser_name' and `output_header_name'.
18437 * src/output.h (actions_output, guards_output)
18438 (token_definitions_output): Adjust prototypes.
18439 * src/scan-skel.l: Instead of scanning the skeletons, it now
18440 processes the output of m4: `__oline__' and `#output'.
18441 * data/bison.simple: Adjust to be used by M4(sugar).
18442 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
18443 to date.
18444 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
18445 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
18446 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
18447 shamelessly stolen from CVS Autoconf.
18448
beda758b
AD
184492002-02-05 Akim Demaille <akim@epita.fr>
18450
18451 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
18452 * configure.in: Check for the declarations of free and malloc.
18453 * src/muscle_tab.c: Adjust.
18454
5ece6d43
AD
184552002-02-05 Akim Demaille <akim@epita.fr>
18456
18457 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
18458 which have no values.
18459
5bb18f9a
AD
184602002-02-05 Akim Demaille <akim@epita.fr>
18461
18462 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
18463 * data/: here.
18464
894dd62e
PE
184652002-01-29 Paul Eggert <eggert@twinsun.com>
18466
18467 * src/bison.simple (YYSIZE_T): Do not define merely because
18468 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
18469 On some platforms, <alloca.h> does not declare YYSTD (size_t).
18470
82841af7
AD
184712002-01-27 Akim Demaille <akim@epita.fr>
18472
18473 Fix `%nonassoc and eof'.
18474
18475 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
18476 which were not properly copied! Replace
18477 memcpy (res->errs, src->errs, src->nerrs);
18478 with
18479 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
18480 !!!
18481 * tests/regression.at (%nonassoc and eof): Adjust to newest
18482 Autotest: `.' is not in the PATH.
18483
318b76e9
AD
184842002-01-27 Akim Demaille <akim@epita.fr>
18485
18486 * tests/sets.at (AT_EXTRACT_SETS): New.
18487 (Nullable): Use it.
18488 (Firsts): New.
18489
30d2f3d5
AD
184902002-01-26 Akim Demaille <akim@epita.fr>
18491
18492 * tests/actions.at, tests/calc.at, tests/headers.at,
18493 * tests/torture.at: Adjust to the newest Autotest which no longer
18494 forces `.' in the PATH.
18495
30f8c395
AD
184962002-01-25 Akim Demaille <akim@epita.fr>
18497
18498 * tests/regression.at (%nonassoc and eof): New.
18499 Suggested by Robert Anisko.
18500
29ae55f1
AD
185012002-01-24 Akim Demaille <akim@epita.fr>
18502
18503 Bison dumps core when trying to complain about broken input files.
18504 Reported by Cris van Pelt.
18505
18506 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
18507 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
18508 into...
18509 (Invalid inputs): Strengthen: exercise parse_percent_token.
18510
2b548aa6
RA
185112002-01-24 Robert Anisko <robert.anisko@epita.fr>
18512
18513 * src/Makefile.am: Add bison.c++.
18514 * src/bison.c++: New skeleton.
18515
bb0146c2
AD
185162002-01-21 Paolo Bonzini <bonzini@gnu.org>
18517
18518 * po/it.po: New.
18519
bec30531
AD
185202002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
18521
18522 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
18523
fc6edc45
MA
185242002-01-20 Marc Autret <marc@gnu.org>
18525
18526 * src/files.c (compute_output_file_names): Fix
18527
5e5d5415
MA
185282002-01-20 Marc Autret <marc@gnu.org>
18529
18530 * tests/output.at: New test.
18531 * src/files.c (compute_base_names): Don't map extensions when
18532 the YACC flag is set, use defaults.
18533 Reported by Evgeny Stambulchik.
18534
44ea3fbd
MA
185352002-01-20 Marc Autret <marc@gnu.org>
18536
ba0fe3c7
PE
18537 * src/system.h: Need to define __attribute__ away for non-GCC
18538 compilers as well (i.e., the vendor C compiler).
44ea3fbd
MA
18539 Suggested by Albert Chin-A-Young.
18540
338963d1
TVH
185412002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
18542
18543 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
18544 canonical definition.
18545 * src/system.h: Use the canonical definition for PARAMS (avoids
18546 a conflict with the macro from lib/hash.h).
18547
c57b2479
AD
185482002-01-11 Akim Demaille <akim@epita.fr>
18549
18550 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 18551 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 18552
b85810ae
AD
185532002-01-09 Akim Demaille <akim@epita.fr>
18554
18555 * src/files.c, src/files.h (output_infix): New.
18556 (tab_extension): Remove.
18557 (compute_base_names): Compute the former, drop the latter.
18558 * src/output.c (prepare): Insert the muscles `output-infix', and
18559 `output-suffix'.
18560 * src/parse-skel.y (string, string.1): New.
18561 (section.header): Use it.
18562 (section.yacc): Remove.
18563 (prefix): Remove too.
18564 * src/scan-skel.l: Adjust.
18565 * src/bison.simple, src/bison.hairy: Adjust.
18566
cae60122
AD
185672002-01-09 Akim Demaille <akim@epita.fr>
18568
18569 * configure.in (WERROR_CFLAGS): Compute it.
18570 * src/Makefile.am (CFLAGS): Pass it.
18571 * tests/atlocal.in (CFLAGS): Idem.
18572 * src/files.c: Fix a few warnings.
18573 (get_extension_index): Remove, unused.
18574
ae404801
AD
185752002-01-08 Akim Demaille <akim@epita.fr>
18576
18577 * src/getargs.c (AS_FILE_NAME): New.
18578 (getargs): Use it to convert DOSish file names.
18579 * src/files.c (base_name): Rename as full_base_name to avoid
18580 clashes with `base_name ()'.
18581 (filename_split): New.
18582 (compute_base_names): N-th rewrite, using filename_split.
18583
22312b71
AD
185842002-01-08 Akim Demaille <akim@epita.fr>
18585
18586 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
18587 New, stolen from the Fileutils 4.1.
18588 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
18589 * configure.in: Check for the presence of memrchr, and of its
18590 prototype.
18591
a67cef01
TVH
185922002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
18593
18594 * lib/hash.h (__P): Added definition for this macro.
18595 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
18596 BUILT_SOURCES, to ensure they are generated first.
18597 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
18598 %error-verbose to allow bootstrapping with bison 1.30x.
18599
2b25d624
AD
186002002-01-06 Akim Demaille <akim@epita.fr>
18601
18602 * src/reader.c (parse_braces): Don't fetch the next char, the
18603 convention is to fetch on entry.
18604 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
18605 'switch' without a following semicolon.
18606 * tests/regression.at (braces parsing): New.
18607
3460813b
AD
186082002-01-06 Akim Demaille <akim@epita.fr>
18609
18610 Bison is dead wrong in its RR conflict reports.
18611
18612 * tests/torture.at (GNU Cim Grammar): New.
18613 * src/conflicts.c (count_rr_conflicts): Fix.
18614
73784c64
AD
186152002-01-06 Akim Demaille <akim@epita.fr>
18616
18617 Creating package.m4 from configure.ac causes too many problems.
18618
18619 * tests/Makefile.am (package.m4): Create it by hand,
18620 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
18621
25d81090
AD
186222002-01-06 Akim Demaille <akim@epita.fr>
18623
18624 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
18625 skeleton.h.
18626
a9b8959e
PE
186272002-01-04 Paul Eggert <eggert@twinsun.com>
18628
18629 * doc/bison.texinfo (Debugging):
18630 Remove YYSTDERR; it's no longer defined or used.
18631 Also, s/cstdio.h/cstdio/.
18632
25d81090
AD
186332002-01-03 Akim Demaille <akim@epita.fr>
18634
18635 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
18636
1109455c
AD
186372002-01-03 Akim Demaille <akim@epita.fr>
18638
18639 * src/parse-skel.y (process_skeleton): Don't bind the parser's
18640 tracing code to --trace, wait for a better --trace option, with
18641 args.
18642
7ea5e977
AD
186432002-01-03 Akim Demaille <akim@epita.fr>
18644
18645 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
18646 The ISO C++ standard is extremely clear about it: stderr is
18647 considered a macro, not a regular symbol (see table 94 `Header
18648 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
18649 Therefore std:: does not apply to it. It still does with fprintf.
18650 Also, s/cstdio.h/cstdio/.
18651
fab5b110
AD
186522002-01-03 Akim Demaille <akim@epita.fr>
18653
18654 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
18655 for non system headers.
18656
aed7fd9b
AD
186572002-01-02 Akim Demaille <akim@epita.fr>
18658
18659 Equip the skeleton chain with location tracking, runtime trace,
18660 pure parser and scanner.
18661
18662 * src/parse-skel.y: Request a pure parser, locations, and prefix
18663 renaming.
18664 (%union): Having several members with the same type does not help
18665 type mismatches, simplify.
18666 (YYPRINT, yyprint): New.
18667 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
18668 (skel_error): this.
18669 Handle locations.
18670 * src/scan-skel.l: Adjust to these changes.
18671 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
18672 (LOCATION_PRINT, skel_control_t): New.
18673
24fad99e
AD
186742001-12-30 Akim Demaille <akim@epita.fr>
18675
18676 * src/parse-skel.y: Get rid of the shift/reduce conflict:
18677 replace `gb' with BLANKS.
18678 * src/scan-skel.l: Adjust.
18679
a4b36db4
AD
186802001-12-30 Akim Demaille <akim@epita.fr>
18681
18682 * src/system.h: We don't need nor want bcopy.
18683 Throw away MS-DOS crap: we don't need getpid.
18684 * configure.in: We don't need strndup. It was even causing
18685 problems: because Flex includes the headers *before* us,
18686 _GNU_SOURCE is not defined by config.h, and therefore strndup was
18687 not visible.
18688 * lib/xstrndup.c: New.
18689 * src/scan-skel.l: Use it.
18690 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
18691 * src/parse-skel.y: Use %directives instead of #defines.
18692
1239777d
AD
186932001-12-30 Akim Demaille <akim@epita.fr>
18694
18695 * src/skeleton.h: New.
18696 * src/output.c (output_parser, output_master_parser): Remove, dead
18697 code.
18698 * src/output.h (get_lines_number, actions_output, guards_output)
18699 (token_definitions_output): Prototype them.
18700 * src/parse-skel.y: Add the license notice.
18701 Include output.h and skeleton.h.
18702 (process_skeleton): Returns void, and takes a single parameter.
18703 * src/scan-skel.l: Add the license notice.
18704 Include skeleton.h.
18705 Don't use %option yylineno: it seems that then Flex imagines
18706 REJECT has been used, and therefore it won't reallocate its
18707 buffers (which makes no other sense to me than a bug). It results
18708 in warnings for `unused: yy_flex_realloc'.
18709
9b3add5b
RA
187102001-12-30 Robert Anisko <robert.anisko@epita.fr>
18711
18712 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
18713 (MUSCLE_INSERT_PREFIX): ...to there.
18714 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
18715 (MUSCLE_INSERT_PREFIX): Move from here...
18716
18717 * src/bison.hairy: Add a section directive. Put braces around muscle
18718 names. This parser skeleton is still broken, but Bison should not
18719 choke on a bad muscle 'syntax'.
18720 * src/bison.simple: Add a section directive. Put braces around muscle
18721 names.
18722
18723 * src/files.h (strsuffix, stringappend): Add declarations.
18724 (tab_extension): Add declaration.
18725 (short_base_name): Add declaration.
18726
18727 * src/files.c (strsuffix, stringappend): No longer static. These
18728 functions are used in the skeleton parser.
18729 (tab_extension): New.
18730 (compute_base_names): Use the computations done in this function
fab5b110 18731 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
18732 names.
18733 (short_base_name): No longer static.
18734
18735 * src/output.c (output_skeleton): New.
18736 (output): Disable call to output_master_parser, and give a try to
18737 a new skeleton handling system.
18738 (guards_output, actions_output): No longer static.
18739 (token_definitions_output, get_lines_number): No longer static.
18740
18741 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
18742
fab5b110 18743 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
18744 parse-skel.y.
18745
18746 * src/parse-skel.y: New file.
18747 * src/scan-skel.l: New file.
18748
b5b61c61
AD
187492001-12-29 Akim Demaille <akim@epita.fr>
18750
18751 %name-prefix is broken.
18752
18753 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
18754 Adjust all dependencies.
18755 * tests/headers.at (export YYLTYPE): Strengthen this test: use
18756 %name-prefix.
18757
18758 Renaming yylval but not yylloc is not consistent. Now we do.
18759
18760 * src/bison.simple: Prefix yylloc if used.
18761 * doc/bison.texinfo (Decl Summary): Document that.
18762
8c9a50be
AD
187632001-12-29 Akim Demaille <akim@epita.fr>
18764
18765 * doc/bison.texinfo: Promote `%long-directive' over
18766 `%long_directive'.
18767 Remove all references to fixed-output-files, yacc is enough.
18768
d99361e6
AD
187692001-12-29 Akim Demaille <akim@epita.fr>
18770
18771 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
18772 user prologue. These are defaults.
18773 * tests/actions.at (Mid-rule actions): Make sure the user can
18774 define YYDEBUG and YYERROR_VERBOSE.
18775
b9cecb91
AD
187762001-12-29 Akim Demaille <akim@epita.fr>
18777
18778 * src/output.c (header_output): Don't forget to export YYLTYPE and
18779 yylloc.
18780 * tests/headers.at (export YYLTYPE): New, make sure it does.
18781 * tests/regression.at (%union and --defines, Invalid CPP headers):
18782 Move to...
18783 * tests/headers.at: here.
18784
aea13e97
AD
187852001-12-29 Akim Demaille <akim@epita.fr>
18786
18787 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
18788
931394cb
AD
187892001-12-29 Akim Demaille <akim@epita.fr>
18790
18791 * tests/actions.at (Mid-rule actions): Output on a single line
18792 instead of several.
18793
704a47c4
AD
187942001-12-29 Akim Demaille <akim@epita.fr>
18795
18796 * doc/bison.texinfo: Formatting changes.
18797
091e20bb
AD
187982001-12-29 Akim Demaille <akim@epita.fr>
18799
18800 Don't store the token defs in a muscle, just be ready to output it
18801 on command. Now possible via `symbols'. Fixes a memory leak.
18802
18803 * src/output.c (token_definitions_output): New.
18804 (output_parser, header_output): Use it.
18805 * src/reader.c (symbols_save): Remove.
18806
cce71710
AD
188072001-12-29 Akim Demaille <akim@epita.fr>
18808
18809 * src/bison.simple: Do not provide a default for YYSTYPE and
18810 YYLTYPE before the user's prologue. Otherwise it's hardly... a
18811 default.
18812
82c035a8
AD
188132001-12-29 Akim Demaille <akim@epita.fr>
18814
18815 Mid-rule actions are simply... ignored!
18816
18817 * src/reader.c (readgram): Be sure to attach mid-rule actions to
18818 the empty-rule associated to the dummy symbol, not to the host
18819 rule.
18820 * tests/actions.at (Mid-rule actions): New.
18821
8419d367
AD
188222001-12-29 Akim Demaille <akim@epita.fr>
18823
18824 Memory leak.
18825
18826 * src/reader.c (reader): Free grammar.
18827
375d5806
AD
188282001-12-29 Akim Demaille <akim@epita.fr>
18829
18830 Memory leak.
18831
18832 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
18833 since it allocates it for each state, although only one is needed.
18834 (allocate_storage): Do it here.
18835
f51cb8ff
AD
188362001-12-29 Akim Demaille <akim@epita.fr>
18837
18838 * src/options.h, src/options.c (create_long_option_table): Rename
18839 as...
18840 (long_option_table_new): this, with a clearer prototype.
18841 (percent_table): Remove, unused,
18842 * src/getargs.c (getargs): Adjust.
18843
29e88316
AD
188442001-12-29 Akim Demaille <akim@epita.fr>
18845
18846 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
18847 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
18848 as states.
18849
b9f71f19
AD
188502001-12-29 Akim Demaille <akim@epita.fr>
18851
18852 * src/lalr.c (build_relations): Rename `states' as `states1'.
18853 Sorry, I don't understand exactly what it is, no better name...
18854
1a2b5d37
AD
188552001-12-29 Akim Demaille <akim@epita.fr>
18856
18857 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
18858 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
18859 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
18860 as rules.
18861
1cca533e
AD
188622001-12-29 Akim Demaille <akim@epita.fr>
18863
18864 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
18865 ago.
18866
c03ae966
AD
188672001-12-29 Akim Demaille <akim@epita.fr>
18868
18869 * src/reader.c, src/reader.h (user_toknums): Remove.
18870 Adjust all users to use symbols[i]->user_token_number.
18871
5a670b1e
AD
188722001-12-29 Akim Demaille <akim@epita.fr>
18873
18874 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
18875 Adjust all users to use symbols[i]->prec or ->assoc.
18876
ad949da9
AD
188772001-12-29 Akim Demaille <akim@epita.fr>
18878
18879 * src/reader.c, src/reader.h (tags): Remove.
18880 Adjust all users to use symbols[i]->tag.
18881
0e78e603
AD
188822001-12-29 Akim Demaille <akim@epita.fr>
18883
18884 * src/gram.h, src/gram.c (symbols): New, similar to state_table
18885 and rule_table.
18886 * src/reader.c (packsymbols): Fill this table.
18887 Drop sprec.
18888 * src/conflicts.c (resolve_sr_conflict): Adjust.
18889 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
18890 single table.
18891 Use symbols[i]->tag instead of tags[i].
18892
213e640e
AD
188932001-12-29 Akim Demaille <akim@epita.fr>
18894
18895 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
18896 In addition, put a comment in there, to replace...
18897 * tests/regression.at (%union and C comments): Remove.
18898
e7b8bef1
AD
188992001-12-29 Akim Demaille <akim@epita.fr>
18900
18901 * tests/regression.at (Web2c Actions): Blindly move the actual
18902 output as expected output. The contents *seem* right to me, but I
18903 can't pretend reading perfectly parser tables... Nonetheless, all
18904 the other tests pass correctly, the table look OK, even though the
18905 presence of `$axiom' is to be noted: AFAICS it is useless (but
18906 harmless).
18907
b68e7744
AD
189082001-12-29 Akim Demaille <akim@epita.fr>
18909
18910 * src/reader.c (readgram): Don't add the rule 0 if there were no
18911 rules read. In other words, add it _after_ having performed
18912 grammar sanity checks.
18913 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
18914
78d5bae9
AD
189152001-12-29 Akim Demaille <akim@epita.fr>
18916
18917 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
18918 visible, and some states have now a different number.
18919
ff442794
AD
189202001-12-29 Akim Demaille <akim@epita.fr>
18921
18922 * src/reader.c (readgram): Bind the initial rule's lineno to that
18923 of the first rule.
18924 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
18925 (Solved SR Conflicts): Adjust rule 0's line number.
18926
610ab194
AD
189272001-12-29 Akim Demaille <akim@epita.fr>
18928
18929 Fix the `GAWK Grammar' failure.
18930
18931 * src/LR0.c (final_state): Initialize to -1 so that we do compute
18932 the reductions of the first state which was mistakenly confused
18933 with the final state because precisely final_state was initialized
18934 to 0.
18935 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
18936 now noticed by Bison.
18937 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
18938 have a reduction on $default.
18939
29d29c8f
AD
189402001-12-29 Akim Demaille <akim@epita.fr>
18941
18942 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
18943 rule line numbers.
18944 * src/closure.c (print_closure): Likewise.
18945 * src/derives.c (print_derives): Likewise.
18946 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
18947 now.
18948
7c6b64d0
AD
189492001-12-29 Akim Demaille <akim@epita.fr>
18950
18951 * src/lalr.c (lookaheads_print): New.
18952 (lalr): Call it when --trace-flag.
18953 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
18954 are dumped.
18955
3d4daee3
AD
189562001-12-29 Akim Demaille <akim@epita.fr>
18957
18958 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
18959 when walking through ritem, even via rule->rhs.
18960 * src/reduce.c (dump_grammar, useful_production, reduce_output)
18961 (useful_production, useless_nonterminals): Likewise.
18962 (reduce_grammar_tables): Likewise, plus update nritems.
18963 * src/nullable.c (set_nullable): Likewise.
18964 * src/lalr.c (build_relations): Likewise.
18965 * tests/sets.at (Nullable): Adjust.
18966 Fortunately, now, the $axiom is no longer nullable.
18967
9e7f6bbd
AD
189682001-12-29 Akim Demaille <akim@epita.fr>
18969
18970 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
18971 the 0-sentinel.
18972 * src/gram.c (ritem_longest_rhs): Likewise.
18973 * src/reduce.c (nonterminals_reduce): Likewise.
18974 * src/print_graph.c (print_graph): Likewise.
18975 * src/output.c (output_rule_data): Likewise.
18976 * src/nullable.c (set_nullable): Likewise.
18977
255ef638
AD
189782001-12-29 Akim Demaille <akim@epita.fr>
18979
18980 * src/output.c: Comment changes.
18981
0d8a7363
AD
189822001-12-27 Paul Eggert <eggert@twinsun.com>
18983
18984 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
18985 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
18986 Sparc, as they were causing more porting problems than the
18987 (minor) performance improvement was worth.
18988
18989 Also, catch up with 1.31's YYSTD.
18990
3db472b9
AD
189912001-12-27 Akim Demaille <akim@epita.fr>
18992
18993 * src/output.c (output_gram): Rely on nritems, not the
18994 0-sentinel. See below.
18995 Use -1 as separator, not 0.
18996 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
18997 Rely on -1 as separator in yyrhs, instead of 0.
18998 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
18999 twice `Now at end of input', therefore there are two lines less to
19000 expect.
19001
b365aa05
AD
190022001-12-27 Akim Demaille <akim@epita.fr>
19003
19004 * tests/regression.at (Unresolved SR Conflicts):
19005 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
19006 below.
19007
30171f79
AD
190082001-12-27 Akim Demaille <akim@epita.fr>
19009
19010 * src/LR0.c (new_state): Recognize the final state by the fact it
19011 is reached by eoftoken.
19012 (insert_start_shifting_state, insert_eof_shifting_state)
19013 (insert_accepting_state, augment_automaton): Remove, since now
19014 these states are automatically computed from the initial state.
19015 (generate_states): Adjust.
19016 * src/print.c: When reporting a rule number to the user, substract
19017 1, so that the axiom rule is rule 0, and the first user rule is 1.
19018 * src/reduce.c: Likewise.
19019 * src/print_graph.c (print_core): For the time being, just as for
19020 the report, depend upon --trace-flags to dump the full set of
19021 items.
19022 * src/reader.c (readgram): Once the grammar read, insert the rule
19023 0: `$axiom: START-SYMBOL $'.
19024 * tests/set.at: Adjust: rule 0 is now displayed, and since the
19025 number of the states has changed (the final state is no longer
19026 necessarily the last), catch up.
19027
75142d45
AD
190282001-12-27 Akim Demaille <akim@epita.fr>
19029
19030 Try to make the use of the eoftoken valid. Given that its value
19031 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
19032 is used instead of > 0 where appropriate, (ii), depend upon nritems
19033 instead of the 0-sentinel.
19034
19035 * src/gram.h, src/gram.c (nritems): New.
19036 Expected to be duplication of nitems, but for the time being...
19037 * src/reader.c (packgram): Assert nritems and nitems are equal.
19038 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
19039 * src/closure.c (print_closure, print_fderives): Likewise.
19040 * src/gram.c (ritem_print): Likewise.
19041 * src/print.c (print_core, print_grammar): Likewise.
19042 * src/print_graph.c: Likewise.
19043
b7c49edf
AD
190442001-12-27 Akim Demaille <akim@epita.fr>
19045
19046 * src/main.c (main): If there are complains after grammar
19047 reductions, then output the report anyway if requested, then die.
19048 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
19049 * src/reader.c (eoftoken): New.
19050 (parse_token_decl): If the token being defined has value `0', it
19051 is the eoftoken.
19052 (packsymbols): No longer hack `tags' to insert `$' by hand.
19053 Be sure to preserve the value of the eoftoken.
19054 (reader): Make sure eoftoken is defined.
19055 Initialize nsyms to 0: now eoftoken is created just like the others.
19056 * src/print.c (print_grammar): Don't special case the eof token.
19057 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
19058 lie anyway, albeit pleasant.
19059 * tests/calc.at: Exercise error messages with eoftoken.
19060 Change the grammar so that empty input is invalid.
19061 Adjust expectations.
19062 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
19063
ec2da99f
AD
190642001-12-27 Akim Demaille <akim@epita.fr>
19065
19066 * configure.in: Check the protos of strchr ans strspn.
19067 Replace strchr if needed.
19068 * src/system.h: Provide the protos of strchr, strspn and memchr if
19069 missing.
19070 * lib/strchr.c: New.
19071 * src/reader.c (symbols_save): Use strchr.
19072
8adfa272
AD
190732001-12-27 Akim Demaille <akim@epita.fr>
19074
19075 * src/print.c, src/print_graph.c (escape): New.
19076 Use it to quote the TAGS outputs.
19077 * src/print_graph.c (print_state): Now errors are in red, and
19078 reductions in green.
19079 Prefer high to wide: output the state number on a line of its own.
19080
80dac38c
AD
190812001-12-27 Akim Demaille <akim@epita.fr>
19082
19083 * src/state.h, src/state.c (reductions_new): New.
19084 * src/LR0.c (set_state_table): Let all the states have a
19085 `reductions', even if reduced to 0.
19086 (save_reductions): Adjust.
19087 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
19088 * src/print.c (print_reductions, print_actions): Adjust.
19089 * src/output.c (action_row): Adjust.
19090
2cec70b9
AD
190912001-12-27 Akim Demaille <akim@epita.fr>
19092
19093 * src/state.h, src/state.c (errs_new, errs_dup): New.
19094 * src/LR0.c (set_state_table): Let all the states have an errs,
19095 even if reduced to 0.
19096 * src/print.c (print_errs, print_reductions): Adjust.
19097 * src/output.c (output_actions, action_row): Adjust.
19098 * src/conflicts.c (resolve_sr_conflict): Adjust.
19099
13ca549a
AD
191002001-12-27 Akim Demaille <akim@epita.fr>
19101
19102 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
19103
5092aba5
AD
191042001-12-27 Akim Demaille <akim@epita.fr>
19105
19106 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
19107 * src/print.c: here.
19108 (lookaheadset, shiftset): New, used as additional storage by
19109 print_reductions.
19110 (print_results): Adjust.
19111 (print_shifts, print_gotos, print_errs): New, extracted from...
19112 (print_actions): here.
19113 * src/print_graph.c (print_actions): Remove dead code.
19114
11e2beca
AD
191152001-12-27 Akim Demaille <akim@epita.fr>
19116
19117 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
19118 `$n' and `@n'.
19119
dac3c910
AD
191202001-12-27 Akim Demaille <akim@epita.fr>
19121
19122 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
19123 (build_relations): Adjust.
19124
d0b0fefa
AD
191252001-12-27 Akim Demaille <akim@epita.fr>
19126
19127 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
19128 duplication.
19129
adc8c848
AD
191302001-12-27 Akim Demaille <akim@epita.fr>
19131
19132 * src/reader.c (packgram): Catch nitems overflows.
19133
14d293ac
AD
191342001-12-27 Akim Demaille <akim@epita.fr>
19135
19136 * src/files.c, src/files.h (guard_obstack): Remove.
19137 * src/output.c (output): Adjust.
19138 * src/reader.c (parse_braces): New, factoring...
19139 (copy_action, copy_guard): these two which are renamed as...
19140 (parse_action, parse_guard): these.
19141 As a voluntary consequence, using braces around guards is now
19142 mandatory.
19143
f499b062
AD
191442001-12-27 Akim Demaille <akim@epita.fr>
19145
19146 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
19147 * src/reader.c (symbol_list): `guard' and `guard_line' are new
19148 members.
19149 (symbol_list_new): Adjust.
19150 (copy_action): action_line is the first line, not the last.
19151 (copy_guard): Just as for actions, store the `action' only, not
19152 the switch/case/break flesh.
19153 Don't parse the user action that might follow the guard, let...
19154 (readgram): do it, i.e., now, there can be an action after a
19155 guard.
19156 In other words the guard is just explicitly optional.
19157 (packgram): Adjust.
19158 * src/output.c (guards_output): New.
19159 (output_parser): Call it when needed.
19160 (output): Also free the guard and attrs obstacks.
19161 * src/files.c, src/files.h (obstack_save): Remove.
19162 (output_files): Remove.
19163 As a result, if one needs the former `.act' file, using an
19164 appropriate skeleton which requires actions and guards is now
19165 required.
19166 * src/main.c (main): Adjust.
19167 * tests/semantic.at: New.
19168 * tests/regression.at: Use `input.y' as input file name.
19169 Avoid 8+3 problems by requiring input.c when the test needs the
19170 parser.
19171
d945f5cd
AD
191722001-12-27 Akim Demaille <akim@epita.fr>
19173
19174 * src/reader.c (symbol_list_new): Be sure to initialize all the
19175 fields.
19176
d200e455
AD
191772001-12-27 Akim Demaille <akim@epita.fr>
19178
19179 All the hacks using a final pseudo state are now useless.
19180
19181 * src/LR0.c (set_state_table): state_table holds exactly nstates.
19182 * src/lalr.c (nLA): New.
19183 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
19184 instead of lookaheadsp from the pseudo state (nstate + 1).
19185
f9507c28
AD
191862001-12-27 Akim Demaille <akim@epita.fr>
19187
19188 * src/output.c (action_row, token_actions): Use a state_t instead
19189 of a integer, and nlookaheads instead of the following state's
19190 lookaheadsp.
19191
065fbd27
AD
191922001-12-27 Akim Demaille <akim@epita.fr>
19193
19194 * src/conflicts.c (log_resolution, flush_shift)
19195 (resolve_sr_conflict, set_conflicts, solve_conflicts)
19196 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
19197 (conflicts_print, print_reductions): Use a state_t instead of an
19198 integer when referring to a state.
19199 As much as possible, depend upon nlookaheads, instead of the
19200 `lookaheadsp' member of the following state (since lookaheads of
19201 successive states are successive, the difference between state n + 1
19202 and n served as the number of lookaheads for state n).
19203 * src/lalr.c (add_lookback_edge): Likewise.
19204 * src/print.c (print_core, print_actions, print_state)
19205 (print_results): Likewise.
19206 * src/print_graph.c (print_core, print_actions, print_state)
19207 (print_graph): Likewise.
19208 * src/conflicts.h: Adjust.
19209
1b177bd7
AD
192102001-12-27 Akim Demaille <akim@epita.fr>
19211
19212 * src/bison.hairy: Formatting/comment changes.
19213 ANSIfy.
19214 Remove `register' indications.
19215 Add plenty of `static'.
19216
7742ddeb
AD
192172001-12-27 Akim Demaille <akim@epita.fr>
19218
19219 * src/output.c (prepare): Drop the muscle `ntbase' which
19220 duplicates ntokens.
19221 * src/bison.simple: Formatting/comment changes.
19222 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
19223 is an undocumented synonym.
19224
1fa14068
AD
192252001-12-22 Akim Demaille <akim@epita.fr>
19226
19227 * src/output.c (output_table_data): Change the prototype to use
19228 `int' for array ranges: some invocations do pass an int, not a
19229 short.
19230 Reported by Wayne Green.
19231
b9752825
AD
192322001-12-22 Akim Demaille <akim@epita.fr>
19233
19234 Some actions of web2c.y are improperly triggered.
19235 Reported by Mike Castle.
19236
19237 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
19238 * tests/regression.at (Web2c): Rename as...
19239 (Web2c Report): this.
19240 (Web2c Actions): New.
19241
776209d6
AD
192422001-12-22 Akim Demaille <akim@epita.fr>
19243
19244 Reductions in web2c.y are improperly reported.
19245 Reported by Mike Castle.
19246
19247 * src/conflicts.c (print_reductions): Fix.
19248 * tests/regression.at (Web2c): New.
19249
275fc3ad
AD
192502001-12-18 Akim Demaille <akim@epita.fr>
19251
19252 Some host fail on `assert (!"foo")', which expands to
19253 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
19254 Reported by Nelson Beebee.
19255
19256 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
19257 `#define it_succeeded 0' and `assert (it_succeeded)'.
19258
897668ee
MA
192592001-12-17 Marc Autret <autret_m@epita.fr>
19260
19261 * src/bison.simple: Don't hard code the skeleton line and filename.
19262 * src/output.c (output_parser): Rename 'line' as 'output_line'.
19263 New line counter 'skeleton_line' (skeleton-line muscle).
19264
ab3399e0
PE
192652001-12-17 Paul Eggert <eggert@twinsun.com>
19266
19267 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
19268 YYDEBUG must be defined to a nonzero value.
19269
19270 * src/bison.simple (yytname): Do not assume that the user defines
19271 YYDEBUG to a properly parenthesized expression.
19272
3877f72b
AD
192732001-12-17 Akim Demaille <akim@epita.fr>
19274
19275 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
19276 nlookaheads is a new member.
19277 Adjust all users.
19278 * src/lalr.h (nlookaheads): Remove this orphan declaration.
19279 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
19280 state.
776209d6 19281
331dbc1b
AD
192822001-12-17 Akim Demaille <akim@epita.fr>
19283
19284 * src/files.h, src/files.c (open_files, close_files): Remove.
19285 * src/main.c (main): Don't open/close files, nor invoke lex_free,
19286 let...
19287 * src/reader.c (reader): Do it.
776209d6 19288
be750e4c
AD
192892001-12-17 Akim Demaille <akim@epita.fr>
19290
19291 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 19292
709ae8c6
AD
192932001-12-17 Akim Demaille <akim@epita.fr>
19294
19295 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
19296 (flush_reduce): New.
19297 (resolve_sr_conflict): Adjust.
776209d6 19298
f87685c3
AD
192992001-12-17 Akim Demaille <akim@epita.fr>
19300
19301 * src/output.c (output_obstack): Be static and rename as...
19302 (format_obstack): this, to avoid any confusion with files.c's
19303 output_obstack.
19304 * src/reader.h (muscle_obstack): Move to...
19305 * src/output.h: here, since it's defined in output.c.
19306
837491d8
AD
193072001-12-17 Akim Demaille <akim@epita.fr>
19308
19309 * src/output.c (action_row, save_column, default_goto)
19310 (sort_actions, matching_state, pack_vector): Better variable
19311 locality.
19312
796d61fb
AD
193132001-12-17 Akim Demaille <akim@epita.fr>
19314
19315 * src/output.c: Various formatting changes.
776209d6 19316
64d15509
AD
193172001-12-17 Akim Demaille <akim@epita.fr>
19318
19319 * src/files.c (output_files): Free the output_obstack.
19320 * src/main.c (main): Call print and print_graph conditionally.
19321 * src/print.c (print): Work unconditionally.
19322 * src/print_graph.c (print_graph): Work unconditionally.
19323 * src/conflicts.c (log_resolution): Output only if verbose_flag.
19324
fbc8ecb7
MA
193252001-12-16 Marc Autret <autret_m@epita.fr>
19326
19327 * src/output.c (actions_output): Fix. When we use %no-lines,
19328 there is one less line per action.
19329
f0440388
MA
193302001-12-16 Marc Autret <autret_m@epita.fr>
19331
19332 * src/bison.simple: Remove a useless #line directive.
19333 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
19334 * src/output.c (get_lines_number): New.
776209d6 19335 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
19336 output muscles.
19337 Fix line numbering.
19338 (actions_output): Computes the number of lines taken by actions.
19339 (output_master_parser): Insert new skeleton which is the name of
19340 the output parser file name.
19341
a79986b8
MA
193422001-12-15 Marc Autret <autret_m@epita.fr>
19343
19344 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
19345
4ec8e00f
MA
193462001-12-15 Marc Autret <autret_m@epita.fr>
19347
19348 * src/output.c (output_gram): Keep track of the hairy one.
19349
1a4648ff
AD
193502001-12-15 Akim Demaille <akim@epita.fr>
19351
19352 Make `make distcheck' work.
19353
19354 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
19355 system.h which uses libgettext.h.
19356
9c2c67e6
AD
193572001-12-15 Akim Demaille <akim@epita.fr>
19358
19359 * src/nullable.c (set_nullable): Useless rules must be skipped,
19360 otherwise, since we range over their symbols, we might look at a
19361 nonterminal which no longer ``exists'', i.e., it is not counted in
19362 `nvars', hence we overflow our arrays.
19363
93ede233
AD
193642001-12-15 Akim Demaille <akim@epita.fr>
19365
19366 The header can also be produced directly, without any obstack!
19367 Yahoo!
19368
19369 * src/files.c, src/files.h (defines_obstack): Remove.
19370 (compute_header_macro): Global.
19371 (defines_obstack_save): Remove.
19372 * src/reader.c (parse_union_decl): No longer output to
19373 defines_obstack: its content can be found in the `stype' muscle
19374 anyway.
19375 (output_token_translations): Merge into...
19376 (symbols_output): this.
19377 Rename as...
19378 (symbols_save): this.
19379 (reader): Adjust.
19380 * src/output.c (header_output): New.
19381 (output): Call it.
19382
2666f928
AD
193832001-12-15 Akim Demaille <akim@epita.fr>
19384
19385 * src/reader.c (parse_union_decl): Instead of handling two obstack
19386 simultaneously, use one to define the `stype' muscle, and use the
19387 value of the latter to fill defines_obstack.
19388 (copy_comment): Remove.
19389 (copy_comment2): Work for a single obstack.
19390 Rename as...
19391 (copy_comment): this.
19392
428046f8
AD
193932001-12-15 Akim Demaille <akim@epita.fr>
19394
19395 * src/lex.c, src/lex.h (xgetc): No longer static.
19396 * src/reader.c (parse_union_decl): Revamp.
19397
ea52d706
AD
193982001-12-15 Akim Demaille <akim@epita.fr>
19399
19400 Still making progress in separating Bison into (i) input, (ii)
19401 process, (iii) output: now we can directly output the parser file
19402 without using table_obstack at all.
19403
19404 * src/files.c, src/files.h (table_obstack): Bye bye.
19405 (parser_file_name): New.
19406 * src/files.c (compute_output_file_names): Compute it.
19407 * src/output.c (actions_output, output_parser)
19408 (output_master_parser): To a file instead of an obstack.
19409
3f96f4dc
AD
194102001-12-15 Akim Demaille <akim@epita.fr>
19411
19412 Attach actions to rules, instead of pre-outputting them to
19413 actions_obstack.
19414
19415 * src/gram.h (rule_t): action and action_line are new members.
19416 * src/reader.c (symbol_list): Likewise.
19417 (copy_action): Save the actions within the rule.
19418 (packgram): Save them in rule_table.
19419 * src/output.c (actions_output): New.
19420 (output_parser): Use it on `%%actions'.
19421 (output_rule_data): Don't free rule_table.
19422 (output): Do it.
19423 (prepare): Don't save the `action' muscle.
19424 * src/bison.simple: s/%%action/%%actions/.
19425
51576fb3
AD
194262001-12-15 Akim Demaille <akim@epita.fr>
19427
19428 * src/reader.c (copy_action): When --yacc, don't append a `;'
19429 to the user action: let it fail if lacking.
dee049eb 19430 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 19431
2648a72d
AD
194322001-12-14 Akim Demaille <akim@epita.fr>
19433
19434 * src/lex.c (literalchar): Simply return the char you decoded, non
19435 longer mess around with obstacks and int pointers.
19436 Adjust all callers.
19437
92790e5b
AD
194382001-12-14 Akim Demaille <akim@epita.fr>
19439
19440 * src/lex.c (literalchar): Don't escape the special characters,
19441 just decode them, and keep them as char (before, eol was output as
19442 the 2 char string `\n' etc.).
19443 * src/output.c (output_rule_data): Use quotearg to output the
19444 token strings.
19445
927c1557
PE
194462001-12-13 Paul Eggert <eggert@twinsun.com>
19447
19448 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
19449 Do not infringe on the global user namespace when using C++.
19450 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
19451 All uses of `fprintf' and `stderr' changed.
19452
19453 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
19454
ed8e1f68
AD
194552001-12-13 Akim Demaille <akim@epita.fr>
19456
19457 The computation of nullable is broken: it doesn't handle empty
19458 RHS's properly.
19459
19460 * tests/torture.at (GNU AWK Grammar): New.
19461 * tests/sets.at (Nullable): New.
19462 * src/nullable.c (set_nullable): Instead of blindly looping over
19463 `ritems', loop over the rules, and then over their rhs's.
19464
19465 Work around Autotest bugs.
19466
19467 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
19468 frame, because Autotest understand lines starting with a `+' as
19469 traces from the shell. Then, they are not processed properly.
19470 Admittedly an Autotest bug, but we don't have time to wait for
19471 Autotest to catch up.
19472 * tests/regression.at (Broken Closure): Adjust to the new table
19473 frames.
19474 Move to...
19475 * tests/sets.at: here.
19476
cb581495
AD
194772001-12-13 Akim Demaille <akim@epita.fr>
19478
19479 * src/closure.c (closure): Use nrules instead of playing tricks
19480 with BITS_PER_WORD.
19481
2e729273
AD
194822001-12-13 Akim Demaille <akim@epita.fr>
19483
19484 * src/print.c (print_actions): Output the handling of `$' as the
19485 traces do: shifting the token EOF. Before EOF was treated as a
19486 nonterminal.
19487 * tests/regression.at: Adjust some tests.
19488 * src/print_graph.c (print_core): Complete the set of items via
19489 closure. The next-to-final and final states are still unsatisfying,
19490 but that's to be addressed elsewhere.
19491 No longer output the rule numbers, but do output the state number.
19492 A single loop for the shifts + gotos is enough, but picked a
19493 distinct color for each.
19494 (print_graph): Initialize and finalize closure.
19495
107f7dfb
AD
194962001-12-13 Akim Demaille <akim@epita.fr>
19497
19498 * src/reader.c (readgram): Remove dead code, an strip useless
19499 braces.
19500 (get_type): Remove, unused.
19501
9b53a24f
AD
195022001-12-12 Akim Demaille <akim@epita.fr>
19503
19504 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
19505 on that of lib/error.c.
19506
dbfb6dcd
AD
195072001-12-12 Akim Demaille <akim@epita.fr>
19508
19509 Some hosts don't like `/' in includes.
19510
19511 * src/system.h: Include libgettext.h without qualifying the path.
19512 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
19513 $(top_srcdir).
19514
c25fb648
MA
195152001-12-11 Marc Autret <autret_m@epita.fr>
19516
19517 * src/output.c (output_parser): Remove useless muscle.
19518
710ddc4f
MA
195192001-12-11 Marc Autret <autret_m@epita.fr>
19520
19521 * src/bison.simple: Remove #line just before %%epilogue. It
19522 is now handled in ...
19523 * src/reader.c (read_additionnal_code): Add the output of a
19524 #line for the epilogue.
19525
e83d80b8
MA
195262001-12-10 Marc Autret <autret_m@epita.fr>
19527
927c1557 19528 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
19529 replace precedent remove.
19530 * src/bison.simple: Remove #line before %%prologue because
19531 %%input-line is wrong at this time.
19532
971d5158
MA
195332001-12-10 Marc Autret <autret_m@epita.fr>
19534
19535 * src/reader.c (symbols_output): Clean up.
927c1557 19536 * src/output.c (output_gram, output): Clean up.
971d5158 19537
5edafffd
AD
195382001-12-10 Akim Demaille <akim@epita.fr>
19539
19540 * src/lalr.c (initialize_lookaheads): New. Extracted from...
19541 * src/LR0.c (set_state_table): here.
19542 * src/lalr.c (lalr): Call it.
19543
0279f8e9
AD
195442001-12-10 Akim Demaille <akim@epita.fr>
19545
19546 * src/state.h (shifts): Remove the `number' member: shifts are
19547 attached to state, hence no longer need to be labelled with a
19548 state number.
19549
190c4f5f
AD
195502001-12-10 Akim Demaille <akim@epita.fr>
19551
19552 Now that states have a complete set of members, the linked list of
19553 shifts is useless: just fill directly the state's shifts member.
19554
19555 * src/state.h (shifts): Remove the `next' member.
19556 * src/LR0.c (first_state, last_state): Remove.
19557 Adjust the callers.
19558 (augment_automaton): Don't look for the shifts that must be added
19559 a shift on EOF: it is those of the state we looked for! But now,
19560 since shifts are attached, it is no longer needed to looking
19561 merely by its id: its number.
19562
2a73b93d
AD
195632001-12-10 Akim Demaille <akim@epita.fr>
19564
19565 * src/LR0.c (augment_automaton): Better variable locality.
19566 Remove an impossible branch: if there is a state corresponding to
19567 the start symbol being shifted, then there is shift for the start
19568 symbol from the initial state.
19569
74392f6a
AD
195702001-12-10 Akim Demaille <akim@epita.fr>
19571
19572 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
19573 only when appropriate: when insert_start_shifting_state' is not
19574 invoked.
19575 * tests/regression.at (Rule Line Numbers): Adjust.
19576
37c82725
AD
195772001-12-10 Akim Demaille <akim@epita.fr>
19578
19579 * src/LR0.c (augment_automaton): Now that all states have shifts,
19580 merge the two cases addition shifts to the initial state.
19581
6a164e0c
AD
195822001-12-10 Akim Demaille <akim@epita.fr>
19583
19584 * src/lalr.c (set_state_table): Move to...
19585 * src/LR0.c: here.
19586 * src/lalr.c (lalr): Don't call it...
19587 * src/LR0.c (generate_states): do it.
19588 * src/LR0.h (first_state): Remove, only the table is used.
19589
7215de24
AD
195902001-12-10 Akim Demaille <akim@epita.fr>
19591
19592 * src/LR0.h (first_shift, first_reduction): Remove.
19593 * src/lalr.c: Don't use first_shift: find shifts through the
19594 states.
19595
80e25d4d
AD
195962001-12-10 Akim Demaille <akim@epita.fr>
19597
19598 * src/LR0.c: Attach shifts to states as soon as they are
19599 computed.
19600 * src/lalr.c (set_state_table): Instead of assigning shifts to
19601 state, just assert that the mapping was properly done.
19602
0ab3728b
AD
196032001-12-10 Akim Demaille <akim@epita.fr>
19604
19605 * src/LR0.c (insert_start_shift): Rename as...
19606 (insert_start_shifting_state): this.
19607 (insert_eof_shifting_state, insert_accepting_state): New.
19608 (augment_automaton): Adjust.
19609 Better locality of the variables.
19610 When looking if the start_symbol is shifted from the initial
19611 state, using `while (... symbol != start_symbol ...)' sounds
19612 better than `while (... symbol < start_symbol ...)': If fail
19613 to see how the order between symbols could be relevant!
19614
78af9bbc
AD
196152001-12-10 Akim Demaille <akim@epita.fr>
19616
19617 * src/getargs.h: Don't declare `spec_name_prefix' and
19618 `spec_file_prefix', declared by src/files.h.
19619 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
19620 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
19621 * src/output.c (prepare): Adjust.
19622 * src/reader.c (symbols_output): Likewise.
19623 * src/vmsgetargs.c: Vaguely adjust, but who cares?
19624
bdef2a41
AD
196252001-12-10 Akim Demaille <akim@epita.fr>
19626
19627 * src/muscle_tab.c (muscle_init): NULL is a better default than
19628 `"0"'.
19629
3735969c
AD
196302001-12-10 Akim Demaille <akim@epita.fr>
19631
19632 * src/reader.c (reader): Calling symbols_output once is enough.
19633
49701457
AD
196342001-12-10 Akim Demaille <akim@epita.fr>
19635
19636 Now that states have a complete set of members, the linked list of
19637 reductions is useless: just fill directly the state's reductions
19638 member.
19639
19640 * src/state.h (struct reductions): Remove member `number' and
19641 `next'.
19642 * src/LR0.c (first_reduction, last_reduction): Remove.
19643 (save_reductions): Don't link the new reductions, store them in
19644 this_state.
19645 * src/lalr.c (set_state_table): No need to attach reductions to
19646 states, it's already done.
19647 * src/output.c (output_actions): No longer free the shifts, then
19648 the reductions, then the states: free all the states and their
19649 members.
19650
0edad749
AD
196512001-12-10 Akim Demaille <akim@epita.fr>
19652
19653 * src/options.c (OPTN, DRTV, BOTH): New.
19654 (option_table): Use them.
19655
0edad749
AD
19656 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
19657 the job of system.h.
19658 * src/options.c: Don't include stdio.h and xalloc.h for the same
19659 reasons.
19660
5449dd0f
AD
196612001-12-10 Akim Demaille <akim@epita.fr>
19662
19663 * src/output.c (output, prepare): Make sure the values of the
19664 muscles `action' and `prologue' are 0-terminated.
19665
a870c567
AD
196662001-12-10 Akim Demaille <akim@epita.fr>
19667
19668 Clean up GCC warnings.
19669
19670 * src/reader.c (copy_action): `buf' is not used.
19671 (parse_skel_decl): Be static.
19672 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
19673 * src/options.h (create_long_option_table): Have a real prototype.
19674 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
19675 (hash_delete_at): Return const void *.
19676 Adjust casts to preserve the const.
19677
80df8768
AD
196782001-12-10 Akim Demaille <akim@epita.fr>
19679
19680 * configure.in: Require 2.52g.
19681 M4 is not needed, but AUTOM4TE is.
19682 * m4/m4.m4: Remove.
19683 * tests/Makefile.am: Adjust.
19684
f693ad14
AD
196852001-12-10 Akim Demaille <akim@epita.fr>
19686
19687 One structure for states is enough, even though theoretically
19688 there are LR(0) states and LALR(1) states.
19689
19690 * src/lalr.h (state_t): Remove.
19691 (state_table): Be state_t **, not state_t *.
19692 * src/state.h (core, CORE_ALLOC): Rename as...
19693 (state_t, STATE_ALLOC): this.
19694 Add the LALR(1) members: shifts, reductions, errs.
19695 * src/LR0.c (state_table): Rename as...
19696 (state_hash): this, to avoid name clashes with the global
19697 `state_table'.
19698 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
19699 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
19700
74ffbcb6
AD
197012001-12-10 Akim Demaille <akim@epita.fr>
19702
19703 Bison dumps core on bash.y.
19704 Reported by Pascal Bart.
19705
19706 * src/warshall.c (bitmatrix_print): New.
19707 (TC): Use it.
ba0fe3c7 19708 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
74ffbcb6
AD
19709 j must be the outer loop.
19710 * tests/regression.at (Broken Closure): New.
19711
07708e19
AD
197122001-12-05 Akim Demaille <akim@epita.fr>
19713
19714 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
19715 its argument.
ba1ecc07 19716 Reported by Peter Hamorsky.
07708e19 19717
92b16366
AD
197182001-12-05 Akim Demaille <akim@epita.fr>
19719
19720 * src/conflicts.c (err_table): Remove.
19721 (resolve_sr_conflict): Adjust.
19722 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
19723 Rename as...
19724 (state_t.reductions, state_t.shifts): this.
19725
076ab033
AD
197262001-12-05 Akim Demaille <akim@epita.fr>
19727
19728 * src/reduce.c (reduce_grammar_tables): No longer disable the
19729 removal of useless rules via CPP but via `if (0)', so that the
19730 compiler still check the code is valid.
19731 For instance, it should have noticed `rline' no longer exists: use
19732 the `line' member of rule_t.
19733 * src/gram.c (dummy, rline): Remove, unused.
19734
3843c413
AD
197352001-12-05 Akim Demaille <akim@epita.fr>
19736
19737 * src/output.c (pack_vector): Use assert, not berror.
19738 * src/main.c (berror): Remove, unused.
19739
43168960
AD
197402001-12-05 Akim Demaille <akim@epita.fr>
19741
19742 New experimental feature: if --verbose --trace output all the
19743 items of a state, not only its kernel.
19744
19745 * src/print.c (print_core): If `trace_flag', then invoke closure
19746 before outputting the items of the state (print_core is no longer
19747 a correct name them).
19748 (print_results): Invoke new_closure/free_closure if needed.
19749
b2872512
AD
197502001-12-05 Akim Demaille <akim@epita.fr>
19751
19752 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
19753 * src/closure.c, src/closure.h (itemsetsize): Rename as...
19754 (nitemset): for consistency with the rest of the project.
19755
23cbcc6c
AD
197562001-12-05 Akim Demaille <akim@epita.fr>
19757
19758 * src/closure.c (print_closure): Improve.
19759 (closure): Use it for printing input and output.
19760
03ec521c
AD
197612001-12-05 Akim Demaille <akim@epita.fr>
19762
19763 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
19764 indexed by nonterminals.
19765
3a7456dd
AD
197662001-12-05 Akim Demaille <akim@epita.fr>
19767
19768 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
19769 what it was!).
19770 * src/warshall.h: Remove accidental duplication of the content.
19771
1cbcf2e7
AD
197722001-12-05 Akim Demaille <akim@epita.fr>
19773
19774 * src/closure.c (set_fderives): De-obfuscate.
19775
84182270
AD
197762001-12-05 Akim Demaille <akim@epita.fr>
19777
19778 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
19779
3f6f053c
AD
197802001-12-05 Akim Demaille <akim@epita.fr>
19781
19782 * src/closure.c (set_firsts): De-obfuscate.
19783
7a5350ba
AD
197842001-12-05 Akim Demaille <akim@epita.fr>
19785
19786 * src/output.c (action_row): De-obfuscate
19787 using the good o' techniques: arrays not pointers, variable
19788 locality, BITISSET, RESETBIT etc.
19789
d954473d
AD
197902001-12-05 Akim Demaille <akim@epita.fr>
19791
19792 Pessimize the code to simplify it: from now on, all the states
19793 have a valid SHIFTS, which NSHIFTS is possibly 0.
19794
19795 * src/LR0.c (shifts_new): Be global and move to..
19796 * src/state.c, src/state.h: here.
19797 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
19798 * src/print_graph: Adjust.
19799
9839bbe5
AD
198002001-12-05 Akim Demaille <akim@epita.fr>
19801
19802 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
19803 * src/conflicts.c: Use it.
19804 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
19805 incorrectly ``simplified''.
19806
9f136c07
AD
198072001-12-05 Akim Demaille <akim@epita.fr>
19808
19809 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
19810 using the good o' techniques: arrays not pointers, variable
19811 locality, BITISSET, RESETBIT etc.
19812
b608206e
AD
198132001-12-05 Akim Demaille <akim@epita.fr>
19814
19815 * src/state.h (SHIFT_SYMBOL): New.
19816 * src/conflicts.c: Use it to deobfuscate.
19817
52afa962
AD
198182001-12-05 Akim Demaille <akim@epita.fr>
19819
19820 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
19821 (print_reductions): De-obfuscate using the good o' techniques:
19822 arrays not pointers, variable locality, BITISSET.
19823
e74dc321
AD
198242001-12-05 Akim Demaille <akim@epita.fr>
19825
19826 * src/conflicts.c (print_reductions): Arrays, not pointers.
19827 Use BITISSET.
19828
768fca83
AD
198292001-12-05 Akim Demaille <akim@epita.fr>
19830
19831 * src/conflicts.c (print_reductions): Pessimize, but clarify.
19832
a17e599f
AD
198332001-12-05 Akim Demaille <akim@epita.fr>
19834
19835 * src/conflicts.c (print_reductions): Improve variable locality.
19836
a04bc341
AD
198372001-12-05 Akim Demaille <akim@epita.fr>
19838
19839 * src/conflicts.c (print_reductions): Pessimize, but clarify.
19840
c8ea038e
AD
198412001-12-05 Akim Demaille <akim@epita.fr>
19842
19843 * src/conflicts.c (print_reductions): Improve variable locality.
19844
aa2aab3c
AD
198452001-12-05 Akim Demaille <akim@epita.fr>
19846
19847 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
19848 * src/lalr.c: Use them.
19849
b178c8cc
AD
198502001-12-05 Akim Demaille <akim@epita.fr>
19851
19852 * src/LR0.c (augment_automaton): Formatting changes.
19853 Better variable locality.
19854
f67d13aa
AD
198552001-12-05 Akim Demaille <akim@epita.fr>
19856
19857 * src/lalr.c (matrix_print): New.
19858 (transpose): Use it.
19859 Use arrays instead of pointers.
19860
c2713865
AD
198612001-12-05 Akim Demaille <akim@epita.fr>
19862
19863 * src/lalr.c (maxrhs): Move to...
19864 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
19865 * src/lalr.c (build_relations): Adjust.
19866
9887c18a
AD
198672001-12-05 Akim Demaille <akim@epita.fr>
19868
19869 * src/lalr.c (transpose): Free the memory allocated to the
19870 argument, as it is replaced by the results by the unique caller.
19871 (build_relations): Merely invoke transpose: it handles the memory
19872 deallocation.
19873 Improve variable locality.
19874 Avoid variables used as mere abbreviations.
19875 (compute_lookaheads): Use arrays instead of pointers.
19876
4d4f699c
AD
198772001-12-05 Akim Demaille <akim@epita.fr>
19878
19879 * src/lalr.c (initialize_F): Improve variable locality.
19880 Avoid variables used as mere abbreviations.
19881
80a69750
AD
198822001-12-05 Akim Demaille <akim@epita.fr>
19883
19884 * src/derives.c (print_derives): Display the ruleno.
19885 * src/lalr.c (initialize_F, transpose): Better variable locality
19886 to improve readability.
19887 Avoid variables used as mere abbreviations.
19888
fe961097
AD
198892001-12-05 Akim Demaille <akim@epita.fr>
19890
19891 * src/lalr.c (traverse): Use arrays instead of pointers.
19892
e3e4e814
AD
198932001-12-05 Akim Demaille <akim@epita.fr>
19894
19895 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
19896 the handling of squeue.
19897 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
19898
630e182b
AD
198992001-12-05 Akim Demaille <akim@epita.fr>
19900
19901 Because useless nonterminals are now kept alive (instead of being
19902 `destroyed'), we now sometimes examine them, and store information
19903 related to them. Hence we need to know their number, and adjust
19904 memory allocations.
19905
19906 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
19907 static.
19908 * src/LR0.c (allocate_itemsets): The memory allocated to
19909 `symbol_count' was used for two different purpose: once to count
19910 the number of occurrences of each symbol, and later reassigned to
19911 `shift_symbol', containing the symbol that can be shifted from a
19912 given state.
19913 Deobfuscate, i.e., allocate, use and free `symbol_count' here
19914 only, and...
19915 (new_itemsets): Allocate `shift_symbol' here.
19916 (allocate_itemsets): symbol_count includes useless nonterminals.
19917 Make room for them.
19918 (free_storage): Use `free', not `XFREE', for pointers that cannot
19919 be null.
19920
81b51460
AD
199212001-12-05 Akim Demaille <akim@epita.fr>
19922
19923 * src/nullable.c (set_nullable): Deobfuscate the handling of
19924 ritem.
19925 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
19926
3067fbef
AD
199272001-12-05 Akim Demaille <akim@epita.fr>
19928
19929 * src/gram.c, src/gram.h (ritem_print): New.
19930 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
19931 (This useless function was defined only to work around VMS linkers
19932 that can't handle compilation units with variables only).
19933 * src/reduce.c (dump_grammar): Use it to trace the construction of
19934 ritem.
19935
c2bea5f9
PE
199362001-12-04 Paul Eggert <eggert@twinsun.com>
19937
7d27c823
PE
19938 * src/bison.simple (union yyalloc): Change member names
19939 to be the same as the stack names.
19940 (yyparse): yyptr is now union yyalloc *, not char *.
19941 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
19942 and may generate better code on some machines.
c2bea5f9
PE
19943 (yystpcpy): Use prototype if __STDC__ is defined, not just
19944 if __cplusplus is defined.
35687a9d 19945
2c8a9dfa
AD
199462001-11-30 Akim Demaille <akim@epita.fr>
19947
19948 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
19949 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
19950 Gettext doesn't compile cleanly, and dies with -Werror.
19951 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
19952 Include WARNING_CFLAGS here.
19953 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
19954 before being defined.
19955
f4e421e6
AD
199562001-11-27 Paul Eggert <eggert@twinsun.com>
19957
19958 * lib/quotearg.h (quotearg_n, quotearg_n_style):
19959 First arg is int, not unsigned.
19960 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
19961 (SIZE_MAX, UINT_MAX): New macros.
19962 (quotearg_n_options): Abort if N is negative.
19963 Avoid overflow check on hosts where size_t is 64 bits and int
19964 is 32 bits, as overflow is impossible there.
19965 Fix off-by-one typo that caused unnecessary reallocation.
19966
7093d0f5
AD
199672001-11-29 Paul Eggert <eggert@twinsun.com>
19968
19969 Name space cleanup in generated parser.
19970
19971 * doc/bison.texinfo (Bison Parser): Discuss system headers
19972 and their effect on the user name space.
19973
19974 * src/bison.simple:
19975 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
19976 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
19977 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
19978
19979 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
19980 on user names when possible.
19981
19982 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
19983 Simplify test for whather <alloca.h> exists.
19984
19985 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
19986
19987 (<stdio.h>): Include if YYDEBUG.
19988
19989 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
19990 ! defined (yyoverflow) && ! defined (yymemcpy).
19991
19992 (yymemcpy, yyparse): Rename local variables as needed so that
19993 they all begin with 'yy'.
19994
19995 (yystrlen, yystpcpy): New functions.
19996
19997 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
19998 All uses changed.
19999
20000 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
20001 instead of relying on string.h functions. Use YYSTACK_ALLOC
20002 and YYSTACK_FREE instead of malloc and free.
20003
fd51e5ff
AD
200042001-11-30 Akim Demaille <akim@epita.fr>
20005
20006 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
20007 before their first uses.
20008 (YYBISON, YYPURE): Move to the top of the output.
20009
7d13ff5f
AD
200102001-11-30 Akim Demaille <akim@epita.fr>
20011
20012 * tests/reduce.at (Useless Nonterminals): Fix.
20013
892a3995
AD
200142001-11-30 Akim Demaille <akim@epita.fr>
20015
20016 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
20017 if body instead of `;' to pacify GCC's warnings.
20018
68f1e3ed
AD
200192001-11-30 Akim Demaille <akim@epita.fr>
20020
20021 Instead of mapping the LHS of unused rules to -1, keep the LHS
20022 valid, but flag the rules as invalid.
20023
20024 * src/gram.h (rule_t): `useful' is a new member.
20025 * src/print.c (print_grammar): Adjust.
20026 * src/derives.c (set_derives): Likewise.
20027 * src/reader.c (packgram, reduce_output): Likewise.
20028 * src/reduce.c (reduce_grammar_tables): Likewise.
20029 * tests/reduce.at (Underivable Rules, Useless Rules): New.
20030
d2d1b42b
AD
200312001-11-30 Akim Demaille <akim@epita.fr>
20032
20033 * src/reduce.c (reduce_output): Formatting changes.
20034 * src/print.c (print_results, print_grammar): Likewise.
20035 * tests/regression.at (Rule Line Numbers)
20036 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
20037
760b53a8
AD
200382001-11-30 Akim Demaille <akim@epita.fr>
20039
20040 * src/reduce.c (nonterminals_reduce): Instead of throwing away
20041 useless nonterminals, move them at the end of the symbol arrays.
20042 (reduce_output): Adjust.
20043 * tests/reduce.at (Useless Nonterminals): Adjust.
20044
00238958
AD
200452001-11-30 Akim Demaille <akim@epita.fr>
20046
20047 * src/reduce.c: Various comment/formatting changes.
20048 (nonterminals_reduce): New, extracted from...
20049 (reduce_grammar_tables): here.
20050 (reduce_grammar): Call nonterminals_reduce.
20051
396452de
PE
200522001-11-29 Paul Eggert <eggert@twinsun.com>
20053
20054 * src/bison.simple (YYSTACK_REALLOC): Remove.
20055 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
20056 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
20057 New macros.
20058 (union yyalloc): New type.
20059 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
20060 an arbitrary restriction on hosts where size_t is wider than int.
20061
20062 (yyparse): Don't dump core if alloca or malloc fails; instead, report
20063 a parser stack overflow. Allocate just one block of memory for all
20064 three stacks, instead of allocating three blocks; this typically is
20065 faster and reduces fragmentation.
20066
20067 Do not limit the number of items in the stack to a value that fits
20068 in 'int', as this is an arbitrary limit on hosts with 64-bit
20069 size_t and 32-bit int.
20070
147e184c
MA
200712001-11-29 Marc Autret <autret_m@epita.fr>
20072
20073 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
20074 of defining YYERROR_VERBOSE.
20075 [AT_DATA]: $4 is now out of C declarations in the prologue.
20076
426cf563
MA
200772001-11-28 Marc Autret <autret_m@epita.fr>
20078
20079 * src/reader.c (parse_dquoted_param): New.
20080 (parse_skel_decl): Use it.
20081 * src/lex.h: Add its prototype.
20082 * src/lex.c (literalchar): Become not static.
20083
c7925b99
MA
200842001-11-28 Marc Autret <autret_m@epita.fr>
20085
20086 * src/output.h: And put its extern declaration here.
20087 * src/output.c (error_verbose): Define here.
20088 (prepare): Echo name modification.
20089 * src/getargs.h: Clean its extern declaration.
20090 * src/getargs.c (error_verbose_flag): Remove.
20091 (getargs): Remove case 'e'.
20092 * src/options.c (option_table): 'error-verbose' is now seen as simple
20093 percent option.
20094 Include output.h.
20095
20096 * src/reader.c (read_declarations): Remove case tok_include.
20097 (parse_include_decl): Remove.
20098 * src/lex.h (token_t): Remove tok_include.
20099 * src/options.c (option_table): 'include' is now a simple command line
20100 option.
20101
5b5d1929
MA
201022001-11-28 Marc Autret <autret_m@epita.fr>
20103
20104 * src/bison.simple: Adjust muscle names.
20105 * src/muscle_tab.c (muscle_init): Also rename the muscles.
20106 * src/output.c (prepare): s/_/-/ for the muscles names.
20107 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
20108
8850be4b
MA
201092001-11-28 Marc Autret <autret_m@epita.fr>
20110
20111 * src/bison.simple: Fix debug.
20112 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
20113
4a38e613
AD
201142001-11-28 Akim Demaille <akim@epita.fr>
20115
20116 * src/LR0.c (shifts_new): New.
20117 (save_shifts, insert_start_shift, augment_automaton): Use it.
20118
4b35e1c1
AD
201192001-11-28 Akim Demaille <akim@epita.fr>
20120
20121 * src/closure.c (closure): `b' and `ruleno' denote the same value:
20122 keep ruleno only.
20123
d2b04478
AD
201242001-11-28 Akim Demaille <akim@epita.fr>
20125
20126 * src/closure.c (closure): Instead of looping over word in array
20127 then bits in words, loop over bits in array.
20128
2c4c30aa
AD
201292001-11-28 Akim Demaille <akim@epita.fr>
20130
20131 * src/closure.c (closure): No longer optimize the special case
20132 where all the bits of `ruleset[r]' are set to 0, to make the code
20133 clearer.
20134
576890b7
AD
201352001-11-28 Akim Demaille <akim@epita.fr>
20136
20137 * src/closure.c (closure): `r' and `c' are new variables, used to
20138 de-obfuscate accesses to RULESET and CORE.
20139
cb487d7d
AD
201402001-11-28 Akim Demaille <akim@epita.fr>
20141
20142 * src/reduce.c (reduce_print): Use ngettext.
20143 (dump_grammar): Improve the trace accuracy.
20144
6013d43f
AD
201452001-11-28 Akim Demaille <akim@epita.fr>
20146
20147 * src/reduce.c (dump_grammar): Don't translate trace messages.
20148
cb4956ee
AD
201492001-11-28 Akim Demaille <akim@epita.fr>
20150
20151 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
20152 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
20153 as all tags are free'ed afterwards.
20154 From Enrico Scholz.
20155
648185ab
PE
201562001-11-27 Paul Eggert <eggert@twinsun.com>
20157
20158 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
20159 use alloca when we didn't want to, and vice versa.
20160
68254a03
MA
201612001-11-27 Marc Autret <autret_m@epita.fr>
20162
9113b58f
AD
20163 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
20164 initialization.
68254a03
MA
20165 * src/output.c (prepare): Remove its update.
20166
04d843a2
MA
201672001-11-27 Marc Autret <autret_m@epita.fr>
20168
20169 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
20170 Use %error-verbose.
20171
d2079671 201722001-11-27 Marc Autret <autret_m@epita.fr>
eeeb962b
MA
20173
20174 * src/bison.simple: Remove YYERROR_VERBOSE using.
20175 Use %%error_verbose.
20176 (yyparse): Likewise.
20177 * src/output.c (prepare): Give its final value.
20178 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
20179 * src/getargs.h: Add its extern declaration.
20180 * src/getargs.c (error_verbose_flag): New int.
20181 (getargs): Update to catch new case.
20182 * src/options.c (option_table): 'error-verbose' is a new option.
20183 (shortopts): Update.
20184
e0327bc8
AD
201852001-11-27 Akim Demaille <akim@epita.fr>
20186
20187 * src/system.h: Use intl/libgettext.h.
20188 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
20189
000f1a3c
AD
201902001-11-27 Akim Demaille <akim@epita.fr>
20191
20192 * tests/torture.at (Exploding the Stack Size with Malloc):
20193 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
20194
26cfe0be
AD
201952001-11-27 Akim Demaille <akim@epita.fr>
20196
20197 * src/files.c: Include error.h.
20198 Reported by Hans Aberg.
20199
f6bd5427
MA
202002001-11-26 Marc Autret <autret_m@epita.fr>
20201
d2079671 20202 * src/reader.c (parse_include_decl): New, not yet implemented.
f6bd5427
MA
20203 (read_declarations): Add case tok_include.
20204 * src/getargs.h (include): Add its extern definition.
20205 * src/getargs.c (include): New const char *.
20206 (getargs): Add case '-I'.
20207 * src/options.c (option_table): Add include as command line and
20208 percent option.
20209 * src/lex.h (token_t): Add tok_include.
20210
2ca209c1
AD
202112001-11-26 Akim Demaille <akim@epita.fr>
20212
20213 * src/reader.c (readgram): Make sure rules for mid-rule actions
20214 have a lineno equal to that of their host rule.
20215 Reported by Hans Aberg.
20216 * tests/regression.at (Rule Line Numbers): New.
20217
0e41b407
AD
202182001-11-26 Akim Demaille <akim@epita.fr>
20219
20220 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
20221 size_ts.
20222
202232001-11-26 Akim Demaille <akim@epita.fr>
20224
20225 * src/complain.c, src/complain.h (error): Remove, provided by
20226 lib/error.[ch].
20227
e0c40012
AD
202282001-11-26 Akim Demaille <akim@epita.fr>
20229
20230 * src/reader.c (read_declarations): Don't abort on tok_illegal,
20231 issue an error message.
20232 * tests/regression.at (Invalid %directive): New.
20233 Reported by Hans Aberg.
20234
5e147124
AD
202352001-11-26 Akim Demaille <akim@epita.fr>
20236
20237 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
20238 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
20239
a034c8b8
AD
202402001-11-26 Akim Demaille <akim@epita.fr>
20241
20242 * src/conflicts.c (conflicts_print): Don't complain at all when
20243 there are no reduce/reduce conflicts, and as many shift/reduce
20244 conflicts as expected.
20245 * tests/regression.at (%expect right): Adjust.
20246
c64a20f3
AD
202472001-11-23 Akim Demaille <akim@epita.fr>
20248
20249 * lib/alloca.c: Update, from fileutils.
20250
5b0d29bb
AD
202512001-11-23 Akim Demaille <akim@epita.fr>
20252
20253 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
20254
722c4bfe
AD
202552001-11-23 Akim Demaille <akim@epita.fr>
20256
20257 * src/system.h: Include alloca.h.
20258 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
20259
6255b435
AD
202602001-11-23 Akim Demaille <akim@epita.fr>
20261
20262 * src/print_graph.c (print_actions): Remove `rule', unused.
20263 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
20264 pacify GCC's signed < unsigned warnings.
20265 * src/closure.c (itemsetsize): Likewise.
20266 * src/reader.c (symbol_list_new): Static.
20267
b29b2ed5
AD
202682001-11-23 Akim Demaille <akim@epita.fr>
20269
20270 Attaching lineno to buckets is stupid, since only one copy of each
20271 symbol is kept, only the line of the first occurrence is kept too.
20272
20273 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
20274 * src/reader.c (rline_allocated): Remove, unused.
20275 (symbol_list): Have a `line' member.
20276 (symbol_list_new): New.
20277 (readgram): Use it.
20278 * src/print.c (print_grammar): Output the rule line numbers.
20279 * tests/regression.at (Solved SR Conflicts)
20280 (Unresolved SR Conflicts): Adjust.
20281 Reported by Hans Aberg.
20282
a81b1d4a
MA
202832001-11-22 Marc Autret <autret_m@epita.fr>
20284
20285 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
20286
c1ecb3c1
MA
202872001-11-22 Marc Autret <autret_m@epita.fr>
20288
20289 * src/muscle_tab.c (muscle_init): Remove initialization of
20290 skeleton muscle.
20291 * src/output.c (output_master_parser): Do it here.
20292
fbe01355
AD
202932001-11-20 Akim Demaille <akim@epita.fr>
20294
20295 * po/sv.po: New.
20296 * configure.in (ALL_LINGUAS): Adjust.
20297 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
20298 longer contains strings to translate.
20299
81e895c0
AD
203002001-11-19 Akim Demaille <akim@epita.fr>
20301
20302 * src/conflicts.c (conflicts_print): Add a missing \n.
20303
6bb1878b
AD
203042001-11-19 Akim Demaille <akim@epita.fr>
20305
20306 * src/nullable.c (nullable_print): New.
20307 (set_nullable): Call it when tracing.
20308 Better locality of variables.
20309
d9ec2d07
AD
203102001-11-19 Akim Demaille <akim@epita.fr>
20311
20312 * src/print.c (print_actions): Better locality of variables.
20313
720e5c1b
AD
203142001-11-19 Akim Demaille <akim@epita.fr>
20315
20316 * src/derives.c (print_derives): Fix and enrich.
20317 * src/closure.c (print_fderives): Likewise.
20318
fb908786
AD
203192001-11-19 Akim Demaille <akim@epita.fr>
20320
20321 * src/closure.c (itemsetend): Remove, replaced with...
20322 (itemsetsize): new.
20323
125ecb56
AD
203242001-11-19 Akim Demaille <akim@epita.fr>
20325
20326 * src/LR0.c (kernel_end): Remove, replaced with...
20327 (kernel_size): new.
20328
d8cf039f
AD
203292001-11-19 Akim Demaille <akim@epita.fr>
20330
20331 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
20332 to clarify.
20333
7bec0760
AD
203342001-11-19 Akim Demaille <akim@epita.fr>
20335
20336 * src/closure.c (closure): Use arrays instead of pointers to clarify.
20337
c87d4863
AD
203382001-11-19 Akim Demaille <akim@epita.fr>
20339
20340 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
20341 trace messages.
20342 * src/LR0.c: Likewise.
20343 (allocate_itemsets): Use arrays instead of pointers to clarify.
20344
9bfe901c
AD
203452001-11-19 Akim Demaille <akim@epita.fr>
20346
20347 * src/getargs.c (statistics_flag): Replace with...
20348 (trace_flag): New.
20349 (longopts): Accept --trace instead of --statistics.
20350 * src/getargs.h, src/options.c: Adjust.
20351 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
20352 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
20353
97db7bd4
AD
203542001-11-19 Akim Demaille <akim@epita.fr>
20355
cc72668c 20356 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
97db7bd4
AD
20357 pointers to clarify the code.
20358 (save_reductions, save_shifts): Factor common parts of alternatives.
20359
2c5f66ed
AD
203602001-11-19 Akim Demaille <akim@epita.fr>
20361
20362 * src/LR0.c (new_state, get_state): Complete TRACE code.
20363 * src/closure.c: Include `reader.h' to get `tags', needed by the
20364 trace code.
20365 Rename the conditional DEBUG as TRACE.
20366 Output consistently TRACEs to stderr, not stdout.
20367 * src/derives.c: Likewise.
20368 * src/reduce.c: (inaccessable_symbols): Using if is better style
20369 than goto.
20370 Use `#if TRACE' instead of `#if 0' for tracing code.
20371
300f275f
AD
203722001-11-19 Akim Demaille <akim@epita.fr>
20373
20374 * src/system.h (LIST_FREE, shortcpy): New.
20375 * src/LR0.c: Use them.
20376 * src/output.c (free_itemsets, free_reductions, free_shifts):
20377 Remove, replaced by LIST_FREE.
20378
f59c437a
AD
203792001-11-19 Akim Demaille <akim@epita.fr>
20380
20381 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
20382 (REDUCTIONS_ALLOC): New.
20383 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
20384 allocation.
20385
6986fd9e
AD
203862001-11-19 Akim Demaille <akim@epita.fr>
20387
20388 * src/LR0.c (new_state): Complete trace code.
20389 * src/nullable.c (set_nullable): Don't translate traces.
20390
4bc30f78
AD
203912001-11-19 Akim Demaille <akim@epita.fr>
20392
20393 * src/print_graph.c (print_core): Better locality of variables.
20394 * src/print.c (print_core): Likewise.
20395
08a946e0
AD
203962001-11-19 Akim Demaille <akim@epita.fr>
20397
20398 * src/vcg.c: You do the output, so you are responsible of the
20399 handling of VCG syntax, in particular: use quotearg.
20400 * src/print_graph.c: Don't.
20401 (print_actions): Don't output the actions as part of the nodes,
20402 since that's the job of the edges.
20403 (print_state): Don't output by hand: fill the node description,
9bfe901c 20404 and ask for its output.
08a946e0 20405
f0473484
AD
204062001-11-19 Akim Demaille <akim@epita.fr>
20407
cc72668c
AD
20408 * src/bison.simple (yyparse): When verbosely reporting an error,
20409 no longer put additional quotes around token names.
f0473484
AD
20410 * tests/calc.at: Adjust.
20411
e41dc700
AD
204122001-11-19 Akim Demaille <akim@epita.fr>
20413
20414 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
20415 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
20416 * src/output.c: Adjust.
20417
652a871c
AD
204182001-11-19 Akim Demaille <akim@epita.fr>
20419
20420 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
20421 (rule_t): this.
20422 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
20423
b2ed6e58
AD
204242001-11-19 Akim Demaille <akim@epita.fr>
20425
20426 * src/gram.h (rule_t): New.
20427 (rule_table): New.
20428 (rrhs, rlhs): Remove, part of state_t.
20429 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
20430 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
20431 * src/reader.c, src/reduce.c: Adjust.
20432
edad7067
AD
204332001-11-19 Akim Demaille <akim@epita.fr>
20434
20435 * src/reader.c (symbols_output): New, extracted from...
20436 (packsymbols): Here.
20437 (reader): Call it.
20438
3feec034
AD
204392001-11-19 Akim Demaille <akim@epita.fr>
20440
20441 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
20442 (maxrhs): this new function.
20443
ddcd5fdf
AD
204442001-11-19 Akim Demaille <akim@epita.fr>
20445
cc72668c 20446 * src/lalr.c (F): New macro to access the variable F.
ddcd5fdf
AD
20447 Adjust.
20448
bb527fc2
AD
204492001-11-19 Akim Demaille <akim@epita.fr>
20450
cc72668c 20451 * src/lalr.h (LA): New macro to access the variable LA.
bb527fc2
AD
20452 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20453 * src/lalr.c: Adjust.
20454
a845a697
AD
204552001-11-19 Akim Demaille <akim@epita.fr>
20456
20457 * src/lalr.c (initialize_LA): Only initialize LA. Let...
20458 (set_state_table): handle the `lookaheads' members.
20459
f004bf6a
AD
204602001-11-19 Akim Demaille <akim@epita.fr>
20461
cc72668c
AD
20462 * src/lalr.h (lookaheads): Removed array, whose contents is now
20463 a member of...
f004bf6a
AD
20464 (state_t): this structure.
20465 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20466 Adjust.
20467
de326cc0
AD
204682001-11-19 Akim Demaille <akim@epita.fr>
20469
cc72668c
AD
20470 * src/lalr.h (consistent): Removed array, whose contents is now
20471 a member of...
de326cc0
AD
20472 (state_t): this structure.
20473 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20474 Adjust.
20475
90b4416b
AD
204762001-11-19 Akim Demaille <akim@epita.fr>
20477
cc72668c
AD
20478 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
20479 contents are now members of...
90b4416b
AD
20480 (state_t): this structure.
20481 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20482 Adjust.
20483
9703cc49
AD
204842001-11-19 Akim Demaille <akim@epita.fr>
20485
20486 * src/lalr.h (state_t): New.
20487 (state_table): Be a state_t * instead of a core **.
20488 (accessing_symbol): Remove, part of state_t.
20489 * src/lalr.c: Adjust.
20490 (set_accessing_symbol): Merge into...
20491 (set_state_table): this.
20492 * src/print_graph.c, src/conflicts.c: Adjust.
20493
d803322e
AD
204942001-11-14 Akim Demaille <akim@epita.fr>
20495
20496 * tests/calc.at, tests/output.at, tests/regression.at,
20497 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
20498 now the tests are run in private dirs, therefore AC_CLEANUP and
20499 family can be simplified to 0-ary.
20500 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
20501 use abs. path to find config.h.
20502 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
20503 stderr, there can be way too much random noise.
20504 Instead pass -Werror to GCC and rely on the exit status.
20505 Reported by Wolfram Wagner.
20506
3d76b07d
AD
205072001-11-14 Akim Demaille <akim@epita.fr>
20508
20509 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
20510 defined only if yyoverflow is defined, to avoid `warning: unused
20511 variable `yyvs1''.
20512 Reported by The Test Suite.
20513
09b503c8
AD
205142001-11-14 Akim Demaille <akim@epita.fr>
20515
20516 * src/print.c: Include reduce.h.
20517 Reported by Hans Aberg.
20518
205192001-11-14 Akim Demaille <akim@epita.fr>
20520
20521 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
20522 Revert a previous patch: these are really const.
20523 * src/conflicts.c (conflict_report): Additional useless pair of
20524 braces to pacify GCC's warnings for `if () if () {} else {}'.
20525 * src/lex.c (parse_percent_token): Replace equal_offset with
20526 arg_offset.
20527 arg is const.
20528 Be sure to strdup `arg' when used, since there is no reason for
20529 token_buffer not to change.
20530
0f37a994
AD
205312001-11-14 Akim Demaille <akim@epita.fr>
20532
20533 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
20534 definition.
20535 * src/main.c (main): Use them.
20536 Suggested by Hans Aberg.
20537
d39d93b8
AD
205382001-11-12 Akim Demaille <akim@epita.fr>
20539
20540 * src/system.h (ngettext): Now that we use ngettext, be sure to
20541 provide a default definition when NLS are not used.
20542
9edcd895
AD
205432001-11-12 Akim Demaille <akim@epita.fr>
20544
20545 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
20546 Use @kbd to denote user input.
20547 (Language and Grammar): ANSIfy the example.
20548 Adjust its layout for info/notinfo.
20549 (Location Tracking Calc): Output error messages to stderr.
20550 Output locations in a more GNUtically correct way.
20551 Fix a couple of Englishos.
20552 Adjust @group/@end group pairs.
20553
7da99ede
AD
205542001-11-12 Akim Demaille <akim@epita.fr>
20555
e3aa65c5 20556 %expect was not functioning at all.
7da99ede
AD
20557
20558 * src/conflicts.c (expected_conflicts): Set to -1.
20559 (conflict_report): Use ngettext.
20560 (conflicts_print): Check %expect and make its violation an error.
20561 * doc/bison.texinfo (Expect Decl): Adjust.
20562 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
20563 * tests/regression.at (%expect not enough, %expect right)
20564 (%expect too much): New.
20565
ba9dda1a
AD
205662001-11-12 Akim Demaille <akim@epita.fr>
20567
20568 * tests/regression.at (Conflicts): Rename as...
20569 (Unresolved SR Conflicts): this.
20570 (Solved SR Conflicts): New.
20571
337c5bd1
AD
205722001-11-12 Akim Demaille <akim@epita.fr>
20573
20574 * src/reduce.c (print_results): Rename as...
20575 (reduce_output): This.
20576 Output to OUT, passed as argument, instead of output_obstack.
20577 (dump_grammar): Likewise.
20578 (reduce_free): New.
20579 Also free V1.
20580 (reduce_grammar): No longer call reduce_output, since...
20581 * src/print.c (print_results): do it.
20582 * src/main.c (main): Call reduce_free;
20583
c73a41af
AD
205842001-11-12 Akim Demaille <akim@epita.fr>
20585
20586 * src/conflicts.c (print_reductions): Accept OUT as argument.
20587 Output to it, not to output_obstack.
20588 * src/print.c (print_actions): Adjust.
20589
0df87bb6
AD
205902001-11-12 Akim Demaille <akim@epita.fr>
20591
20592 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
20593 the result instead of using...
20594 (src_total, rrc_total, src_count, rrc_count): Remove.
20595 (any_conflicts): Remove.
20596 (print_conflicts): Split into...
20597 (conflicts_print, conflicts_output): New.
20598 * src/conflicts.h: Adjust.
20599 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
0f37a994 20600 * src/print.c (print_grammar): Issue `\n' between two rules.
0df87bb6
AD
20601 * tests/regression.at (Conflicts): New.
20602 Reported by Tom Lane.
20603
e4d3d4de
AD
206042001-11-12 Akim Demaille <akim@epita.fr>
20605
20606 * tests/regression.at (Invalid input): Remove, duplicate with
20607 ``Invalid input: 1''.
20608
6d7d248e
AD
206092001-11-12 Akim Demaille <akim@epita.fr>
20610
20611 * tests/torture.at (AT_DATA_STACK_TORTURE)
20612 (Exploding the Stack Size with Alloca)
20613 (Exploding the Stack Size with Malloc): New.
20614
e9e4c321
AD
206152001-11-12 Akim Demaille <akim@epita.fr>
20616
20617 * src/bison.simple (YYSTACK_REALLOC): New.
20618 (yyparse) [!yyoverflow]: Use it and free the old stack.
0f37a994 20619 Reported by Per Allansson.
e9e4c321 20620
5f7e0832
AD
206212001-11-12 Pascal Bart <pascal.bart@epita.fr>
20622
20623 * src/bison.simple: Define type yystype instead of YYSTYPE, and
20624 define CPP macro, which substitute YYSTYPE by yystype.
20625 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
20626 with yyltype/YYLTYPE. This allows inclusion of the generated
20627 header within the parser if the compiler, such as GGC, accepts
20628 multiple equivalent #defines.
20629 From Akim.
20630
e3f1699f
AD
206312001-11-05 Akim Demaille <akim@epita.fr>
20632
20633 * src/reader.c (symbols_output): New, extracted from...
20634 (packsymbols): here.
20635 (reader): Adjust.
20636
65be0866
AD
206372001-11-05 Akim Demaille <akim@epita.fr>
20638
20639 * src/lex.c (parse_percent_token): s/quotearg/quote/.
20640
e4d910bf
AD
206412001-11-05 Akim Demaille <akim@epita.fr>
20642
20643 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
20644 pattern.
20645
951366c1
AD
206462001-11-05 Akim Demaille <akim@epita.fr>
20647
20648 * src/options.h (struct option_table_struct): set_flags is void*.
20649 * src/options.c (longopts): Support `--output' and `%output'.
20650 (usage): Adjust.
20651 * src/lex.h (tok_setopt): Remove, replaced with...
20652 (tok_intopt, tok_stropt): these new guys.
20653 * src/lex.c (getopt.h): Not needed.
20654 (token_buffer, unlexed_token_buffer): Not const.
20655 (percent_table): Promote `-' over `_' in directive names.
20656 Active `%name-prefix', `file-prefix', and `output'.
20657 (parse_percent_token): Accept possible arguments to directives.
20658 Promote `-' over `_' in directive names.
20659
d8988b2f
AD
206602001-11-04 Akim Demaille <akim@epita.fr>
20661
20662 * doc/bison.texinfo (Decl Summary): Split the list into
20663 `directives for grammars' and `directives for bison'.
20664 Sort'em.
20665 Add description of `%name-prefix', `file-prefix', and `output'.
20666 Promote `-' over `_' in directive names.
20667 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
20668 Simplify the description of `--name-prefix'.
20669 Promote `-' over `_' in directive names.
20670 Promote `--output' over `--output-file'.
20671 Fix the description of `--defines'.
20672 * tests/output.at: Exercise %file-prefix and %output.
20673
6468d18e
AD
206742001-11-02 Akim Demaille <akim@epita.fr>
20675
20676 * doc/refcard.tex: Update.
20677
6b7e85b9
AD
206782001-11-02 Akim Demaille <akim@epita.fr>
20679
20680 * src/symtab.h (SUNDEF): New.
20681 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
20682 stand for `uninitialized', instead of 0.
20683 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
20684 * src/lex.c (lex): Adjust.
20685
20686 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
20687 Number it 0.
20688 Let yylex return it instead of a plain 0.
20689 Reported by Dick Streefland.
20690
cd5aafcf
AD
206912001-11-02 Akim Demaille <akim@epita.fr>
20692
20693 * tests/regression.at (Mixing %token styles): New test.
20694
037ca2f1
AD
206952001-11-02 Akim Demaille <akim@epita.fr>
20696
20697 * src/reader.c (parse_thong_decl): Formatting changes.
20698 (token_translations_init): New, extracted from...
20699 (packsymbols): Here.
20700 Adjust.
20701
270a173c
AD
207022001-11-01 Akim Demaille <akim@epita.fr>
20703
20704 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
20705 Check that `9foo.y' produces correct cpp guards.
20706 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
20707 guards.
20708 Reported by Wwp.
20709
561f9a30
AD
207102001-11-01 Akim Demaille <akim@epita.fr>
20711
20712 * tests/regression.at (Invalid input: 2): New.
20713 * src/lex.c (unlexed_token_buffer): New.
20714 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
20715 too.
20716 Reported by Wwp.
20717
f987e9d2
AD
207182001-11-01 Akim Demaille <akim@epita.fr>
20719
20720 * tests/calc.at: Catch up with 1.30.
20721 * configure.in: Bump to 1.49a.
20722 Adjust to newer Autotest.
20723
0846f581
PB
207242001-10-19 Pascal Bart <pascal.bart@epita.fr>
20725
20726 * src/conflicts.c: Move global variables rrc_total and src_total ...
20727 (print_conflicts): here.
20728 * src/output.c (output): Free global variable user_toknums.
20729 * src/lex.c (token_obstack): Become static.
20730
3c1a79b3
AD
207312001-10-18 Akim Demaille <akim@epita.fr>
20732
20733 * tests/atlocal.in (GCC): Add.
20734 * tests/calc.at: s/m4_match/m4_bmatch/.
20735 s/m4_patsubst/m4_bpatsubst/.
20736 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
20737 * configure.in: AC_SUBST(GCC).
20738
5d52e7d0
MA
207392001-10-14 Marc Autret <autret_m@epita.fr>
20740
20741 * src/options.c (create_long_option_table): Fix.
20742
631aa1d3
AD
207432001-10-10 Akim Demaille <akim@epita.fr>
20744
20745 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
20746
f6ec6d13
AD
207472001-10-04 Akim Demaille <akim@epita.fr>
20748
20749 * src/reader.c (parse_union_decl): Push the caracters in
20750 union_obstack, not attrs_obstack.
20751
342b8b6e
AD
207522001-10-04 Akim Demaille <akim@epita.fr>
20753
20754 Merge in the branch 1.29.
20755
20756 * src/reader.c (packsymbols): Use a temporary obstack for
20757 `%%tokendef', since output_stack is already used elsewhere.
20758
20759 2001-10-02 Akim Demaille <akim@epita.fr>
20760
20761 Bump 1.29d.
20762
20763 2001-10-02 Akim Demaille <akim@epita.fr>
20764
20765 Version 1.29c.
20766
20767 2001-10-02 Akim Demaille <akim@epita.fr>
20768
20769 * tests/regression.at (Invalid CPP headers): New.
20770 From Alexander Belopolsky.
20771 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
20772
20773 2001-10-02 Akim Demaille <akim@epita.fr>
20774
20775 * tests/regression.at (Invalid input): New.
20776 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
20777 Reported by Shura.
20778
20779 2001-10-02 Akim Demaille <akim@epita.fr>
20780
20781 * tests/calc.at: Now that --debug works, the tests must be adjusted.
20782
20783 2001-10-02 Akim Demaille <akim@epita.fr>
20784
20785 * src/output.c (output_parser): Assert `skeleton'.
20786 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
20787 systems.
20788 From Shura.
20789
20790 2001-10-01 Marc Autret <autret_m@epita.fr>
20791
20792 * src/lex.h: Echo modifications.
20793 * src/lex.c (unlex): Parameter is now token_t.
20794 From Hans Aberg.
20795
20796 2001-10-01 Marc Autret <autret_m@epita.fr>
20797
20798 * src/main.c: Include lex.h.
20799 From Hans Aberg.
20800
20801 2001-09-29 Akim Demaille <akim@epita.fr>
20802
20803 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
20804
20805 2001-09-28 Akim Demaille <akim@epita.fr>
20806
20807 * tests/testsuite.at: Update to newer Autotest.
20808 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
20809
20810 2001-09-27 Akim Demaille <akim@epita.fr>
20811
20812 Position independent wrapper.
20813
20814 * tests/bison: Remove.
20815 * tests/bison.in: New.
20816 * configure.in: Adjust.
20817
20818 2001-09-27 Paul Eggert <eggert@twinsun.com>
20819
20820 Port quotearg fixes from tar 1.13.24.
20821
20822 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
20823 tm to be declared.
20824 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
20825 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
20826
20827 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
20828 * m4/mbrtowc.m4: New file.
20829 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
20830 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
20831
20832 2001-09-27 Akim Demaille <akim@epita.fr>
20833
20834 Bump to 1.29c.
20835
20836 2001-09-27 Akim Demaille <akim@epita.fr>
20837
20838 Version 1.29b.
20839
20840 2001-09-25 Akim Demaille <akim@epita.fr>
20841
20842 * src/system.h: Include `xalloc.h'.
20843 Remove it from the C files.
20844 * src/files.c (output_files): Free the obstacks.
20845 * src/lex.c (init_lex): Rename as...
20846 (lex_init): this.
20847 (lex_free): New.
20848 * src/main.c (main): Use it.
20849
20850 2001-09-24 Marc Autret <autret_m@epita.fr>
20851
20852 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
20853 to output informations in fout (FILE*).
20854 (open_graph, close_graph): Likewise.
20855 (output_graph, output_edge, output_node): Likewise.
20856 * src/vcg.h: Update function prototypes.
20857 * src/print_graph.c (print_graph): Open output graph file.
20858 (print_actions): Adjust.
20859 * src/files.h: Remove extern declaration.
20860 * src/files.c: Remove graph_obstack declaration.
20861 (open_files): Remove graph_obstack initialization.
20862 (output_files): Remove graph_obstack saving.
20863
20864 2001-09-24 Marc Autret <autret_m@epita.fr>
20865
20866 * src/files.c (compute_output_file_names): Fix.
20867
20868 2001-09-24 Marc Autret <autret_m@epita.fr>,
20869 Akim Demaille <akim@epita.fr>
20870
20871 * src/reader.c (reader): Remove call to free_symtab ().
20872 * src/main.c (main): Call it here.
20873 Include symtab.h.
20874 * src/conflicts.c (initialize_conflicts): Rename as...
20875 (solve_conflicts): this.
20876 * src/print.c (print_core, print_actions, print_state)
20877 (print_grammar): Dump to a file instead a `output_obstack'.
20878 (print_results): Dump `output_obstack', and then proceed with the
20879 FILE *.
20880 * src/files.c (compute_output_file_names, close_files): New.
20881 (output_files): Adjust.
20882 * src/main.c (main): Adjust.
20883
20884 2001-09-23 Marc Autret <autret_m@epita.fr>
20885
20886 * src/files.c (compute_header_macro): Computes header macro name
20887 from spec_defines_file when given.
20888
20889 2001-09-23 Marc Autret <autret_m@epita.fr>
20890
20891 * src/files.c (output_files): Add default extensions.
20892
20893 2001-09-22 Akim Demaille <akim@epita.fr>
20894
20895 * src/conflicts.c (finalize_conflicts): Rename as...
20896 (free_conflicts): this.
20897
20898 2001-09-22 Akim Demaille <akim@epita.fr>
20899
20900 * src/gram.c (gram_free): Rename back as...
20901 (dummy): this.
20902 (output_token_translations): Free `token_translations'.
20903 * src/symtab.c (free_symtab): Free the tag field.
20904
20905 2001-09-22 Akim Demaille <akim@epita.fr>
20906
20907 Remove `translations' as it is always set to true.
20908
20909 * src/gram.h: Adjust.
20910 * src/reader.c (packsymbols, parse_token_decl): Adjust
20911 * src/print.c (print_grammar): Adjust.
20912 * src/output.c (output_token_translations): Adjust.
20913 * src/lex.c (lex): Adjust.
20914 * src/gram.c: Be sure the set pointers to NULL.
20915 (dummy): Rename as...
20916 (gram_free): this.
20917
20918 2001-09-22 Akim Demaille <akim@epita.fr>
20919
20920 * configure.in: Invoke AM_LIB_DMALLOC.
20921 * src/system.h: Use dmalloc.
20922 * src/LR0.c: Be sure to have pointers initialized to NULL.
20923 (allocate_itemsets): Allocate kernel_items only if needed.
20924
20925 2001-09-22 Akim Demaille <akim@epita.fr>
20926
20927 * configure.in: Bump to 1.29b.
20928 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
20929 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
20930 need xmalloc.c in calc.y.
20931 From Pascal Bart.
20932
20933 2001-09-21 Akim Demaille <akim@epita.fr>
20934
20935 Version 1.29a.
20936 * Makefile.maint, config/config.guess, config/config.sub,
20937 * config/missing: Update from masters.
20938 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
20939 upon package.m4.
20940 * configure.in (ALL_LINGUAS): Add `tr'.
20941
20942 2001-09-21 Akim Demaille <akim@epita.fr>
20943
20944 * tests/Makefile.am (package.m4): Move to...
20945 ($(srcdir)/$(TESTSUITE)): here.
20946
20947 2001-09-20 Akim Demaille <akim@epita.fr>
20948
20949 * src/complain.c: No longer try to be standalone: use system.h.
20950 Don't assume __STDC__ is defined to 1. Just test if it is defined.
20951 * src/complain.h: Likewise.
20952 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
20953 Remove the unused variable `n'.
20954 From Albert Chin-A-Young.
20955
20956 2001-09-18 Marc Autret <autret_m@epita.fr>
20957
20958 * doc/bison.1: Update.
20959 * doc/bison.texinfo (Bison Options): Update --defines and --graph
20960 descriptions.
20961 (Option Cross Key): Update.
20962 Add --graph.
20963
20964 2001-09-18 Marc Autret <autret_m@epita.fr>
20965
20966 * tests/regression.at: New test (comment in %union).
20967
20968 2001-09-18 Marc Autret <autret_m@epita.fr>
20969
20970 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
20971 do that.
20972 Reported by Keith Browne.
20973
20974 2001-09-18 Marc Autret <autret_m@epita.fr>
20975
20976 * tests/output.at: Add tests for --defines and --graph.
20977
20978 2001-09-18 Marc Autret <autret_m@epita.fr>
20979
20980 * tests/output.at: Removes tests of %{header,src}_extension features.
20981
20982 2001-09-18 Akim Demaille <akim@epita.fr>
20983
20984 * tests/Makefile.am (package.m4): New.
20985 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
20986 (_AT_CHECK_CALC_ERROR): Likewise.
20987 Factor the `, ' part of verbose error messages.
20988
20989 2001-09-18 Marc Autret <autret_m@epita.fr>
20990
20991 * src/getargs.c (longopts): Declare --defines and --graph as options
20992 with optional arguments.
20993 * src/files.h: Add extern declarations.
20994 * src/files.c (spec_graph_file, spec_defines_file): New.
20995 (output_files): Update.
20996 Remove CPP-outed code.
20997
20998 2001-09-18 Marc Autret <autret_m@epita.fr>
20999
21000 Turn off %{source,header}_extension feature.
21001
21002 * src/files.c (compute_exts_from_gf): Update.
21003 (compute_exts_from_src): Update.
21004 (output_files): CPP-out useless code.
21005 * src/files.h: Remove {header,source}_extension extern declarations.
21006 * src/reader.c (parse_dquoted_param): CPP-out.
21007 (parse_header_extension_decl): Remove.
21008 (parse_source_extension_decl): Remove.
21009 (read_declarations): Remove cases tok_{hdrext,srcext}.
21010 * src/lex.c (percent_table): Remove {header,source}_extension entries.
21011 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
21012
21013 2001-09-10 Akim Demaille <akim@epita.fr>
21014
21015 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
21016 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
21017 (AT_CHECK_OUTPUT): this.
21018 Merely check ls' exit status, its output is useless.
21019
21020 2001-09-10 Akim Demaille <akim@epita.fr>
21021
21022 * tests/calc.at: Use m4_match.
21023 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
21024
21025 2001-09-10 Marc Autret <autret_m@epita.fr>,
21026 Akim Demaille <akim@epita.fr>
21027
21028 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
21029 enum color_e.
21030 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
21031 to `normal'.
21032 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
21033 * src/lex.h: Adjust prototype.
21034 (token_t): Add `tok_undef'.
21035 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
21036 (parse_percent_token): Now returns token_t.
21037 Add default statement in switch.
21038 (lex): Separate `c' as an input variable, from the token_t result
21039 part.
21040 (unlexed): Is a token_t.
21041
21042 2001-09-10 Akim Demaille <akim@epita.fr>
21043
21044 * configure.in: Bump to 1.29a.
21045
21046 2001-09-07 Akim Demaille <akim@epita.fr>
21047
21048 Version 1.29.
21049
21050 2001-08-30 Akim Demaille <akim@epita.fr>
21051
21052 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
21053 * m4/atconfig.m4: Remove.
21054 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
21055 * tests/bison: New.
21056 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
21057 m4_if, m4_patsubst, and m4_regexp.
21058 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
21059 `input' file instead of echo.
21060
21061 2001-08-29 Akim Demaille <akim@epita.fr>
21062
21063 Bump to 1.28e.
21064
21065 2001-08-29 Akim Demaille <akim@epita.fr>
21066
21067 Version 1.28d.
21068
21069 2001-08-29 Paul Eggert <eggert@twinsun.com>
21070
21071 * src/bison.simple (yyparse): Don't take the address of an
21072 item before the start of an array, as that doesn't conform to
21073 the C Standard.
21074
21075 2001-08-29 Robert Anisko <anisko_r@epita.fr>
21076
21077 * doc/bison.texinfo (Location Tracking Calc): New node.
21078
21079 2001-08-29 Paul Eggert <eggert@twinsun.com>
21080
21081 * src/output.c (output): Do not define const, as this now
21082 causes more problems than it cures.
21083
21084 2001-08-29 Akim Demaille <akim@epita.fr>
21085
21086 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
21087 the nodes.
21088 Be sure to tag the `detailmenu'.
21089
21090 2001-08-29 Akim Demaille <akim@epita.fr>
21091
21092 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
21093 download in a tmp dir.
21094
21095 2001-08-28 Marc Autret <autret_m@epita.fr>
21096
21097 * config/depcomp: New file.
21098
21099 2001-08-28 Marc Autret <autret_m@epita.fr>
21100
21101 * doc/bison.1 (mandoc): Adjust.
21102 From Juan Manuel Guerrero.
21103
21104 2001-08-28 Marc Autret <autret_m@epita.fr>
21105
21106 * src/print_graph.c (print_state): Fix.
21107
21108 2001-08-27 Marc Autret <autret_m@epita.fr>
21109
21110 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
21111 char * members.
21112 Echo modifications to the functions prototypes.
21113 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
21114
21115 2001-08-27 Marc Autret <autret_m@epita.fr>
21116
21117 * src/vcg.c: Include `xalloc.h'.
21118 (add_colorentry): New.
21119 (add_classname): New.
21120 (add_infoname): New.
21121 * src/vcg.h: Add new prototypes.
21122
21123 2001-08-27 Akim Demaille <akim@epita.fr>
21124
21125 * Makefile.maint: Sync. again with CVS Autoconf.
21126
21127 2001-08-27 Akim Demaille <akim@epita.fr>
21128
21129 * Makefile.maint: Formatting changes.
21130 (po-update, cvs-update, update): New targets.
21131 (AMTAR): Remove.
21132
21133 2001-08-27 Akim Demaille <akim@epita.fr>
21134
21135 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
21136 * Makefile.maint: Sync. with CVS Autoconf.
21137
21138 2001-08-27 Marc Autret <autret_m@epita.fr>
21139
21140 * src/vcg.h (struct infoname_s): New.
21141 (struct colorentry_s): New.
21142 (graph_s): New fields {vertical,horizontal}_order in structure.
21143 Add `infoname' field.
21144 Add `colorentry' field;
21145 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
21146 (G_HORIZONTAL_ORDER): New.
21147 (G_INFONAME): New.
21148 (G_COLORENTRY): New.
21149 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
21150 Add output of `infoname'.
21151 Add output of `colorentry'.
21152
21153 2001-08-27 Marc Autret <autret_m@epita.fr>
21154
21155 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
21156 This one shadowed a global parameter.
21157
21158 2001-08-24 Marc Autret <autret_m@epita.fr>
21159
21160 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
21161 instead of `unsigned'.
21162 (print_state): Do not call obstack_object_size () in obstack_grow ()
21163 to avoid macro variables shadowing.
21164
21165 2001-08-23 Marc Autret <autret_m@epita.fr>
21166
21167 * src/lex.c (percent_table): Typo: s/naem/name/.
21168 Add graph option.
21169 Normalize new options declarations.
21170
21171 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
21172
21173 * tests/suite.at: Exercise %header_extension and %source_extension.
21174
21175 2001-08-16 Marc Autret <autret_m@epita.fr>
21176
21177 * src/reader.c (parse_dquoted_param): New.
21178 (parse_header_extension_decl): Use it.
21179 (parse_source_extension_decl): Likewise.
21180
21181 2001-08-16 Marc Autret <autret_m@epita.fr>
21182
21183 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
21184 (get_xxxx_str): Use assert () instead of complain ().
21185 Remove return invokations in default cases.
21186 (get_decision_str): Modify default behaviour. Remove second argument.
21187 Echo modifications on calls.
21188 (output_graph): Fix.
21189
21190 2001-08-16 Marc Autret <autret_m@epita.fr>
21191
21192 * src/getargs.c (usage): Update with ``-g, --graph''.
21193
21194 2001-08-16 Marc Autret <autret_m@epita.fr>
21195
21196 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
21197 (Option Cross Key): Likewise.
21198 * doc/bison.1: Update.
21199
1c8c2190
PB
212002001-09-25 Pascal Bart <pascal.bart@epita.fr>
21201
21202 * src/output.c (output_master_parser): Don't finish action_obstack.
21203 (output_parser): Don't care about the muscle action, here.
21204 (prepare): Copy the action_obstack in the action muscle.
21205 (output): Free action_obstack.
21206
180d45ba
PB
212072001-09-23 Pascal Bart <pascal.bart@epita.fr>
21208
21209 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
21210 will contain `%union' declaration.
21211 (parse_union_decl): Delete #line directive output.
21212 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
21213 informations about %union.
21214 (parse_union_decl): Copy the union_obstack in the muscle stype.
21215 * src/bison.simple: Add new #line directive.
21216 Add typdef %%stype YYSTYPE.
21217
c51d1a19
PB
212182001-09-23 Pascal Bart <pascal.bart@epita.fr>
21219
21220 * src/bison.simple: Add new `#line' directive.
21221
6f9344da
PB
212222001-09-22 Pascal Bart <pascal.bart@epita.fr>
21223
21224 * src/bison.simple: New `#line' directive.
21225 * src/output.c (output_parser): Support new dynamic muscle input_line.
21226
652def80
MA
212272001-09-22 Marc Autret <autret_m@epita.fr>
21228
21229 * src/output.c (output_master_parser): New.
21230 (output_parser): Be more re-entrant.
21231
25b222fa
MA
212322001-09-21 Marc Autret <autret_m@epita.fr>
21233
21234 * src/reader.c (copy_definition, parse_union_decl): Update and use
21235 `linef' muscle.
21236 (copy_action): Likewise.
21237 Use obstack_1grow ().
21238 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
21239
6bc35ae5
MA
212402001-09-21 Marc Autret <autret_m@epita.fr>
21241
21242 * src/options.c (option_table): Adjust.
21243 * src/lex.c (parse_percent_token): Fix.
21244
c0629aa1
PB
212452001-09-20 Pascal Bart <pascal.bart@epita.fr>
21246
21247 * src/options.c (symtab.h): Include it, need by lex.h.
342b8b6e 21248
82b6d266
PB
212492001-09-20 Pascal Bart <pascal.bart@epita.fr>
21250
21251 * src/lex.c (parse_percent_token): Change type of variable `tx', which
21252 is now an option_table_struct*.
21253 (option_strcmp): New function option_strcmp.
21254 (parse_percent_token): Call option_strcmp.
21255 * src/getargs.c (xalloc.h, options.h): Include it.
21256 (getargs): Call create_long_option_table.
21257 (getargs): Free longopts at the end of the function.
21258 (shortopts): Move in options.c.
21259 * src/options.c (create_long_option_table): New function. Convert
21260 information from option_table to option structure.
21261 * src/reader.c (options.h): Include it.
21262
21263 * src/Makefile.am: Adjust.
21264 * src/options.c (option_table): Create from longopts and percent_table.
21265 * src/getargs.c (longopts): Delete.
21266 * src/lex.c (struct percent_table_struct): Delete.
21267 (percent_table): Delete.
21268 (options.h): Include it.
21269 * src/options.c: Create.
21270 * src/options.h: Create.
21271 Declare enum opt_access_e.
21272 Define struct option_table_struct.
21273
75f5aaea
MA
212742001-09-20 Marc Autret <autret_m@epita.fr>
21275
21276 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
21277 sections of Bison.
21278
f508cb0a
PB
212792001-09-19 Pascal Bart <pascal.bart@epita.fr>
21280
21281 * src/bison.simple: s/%%filename/%%skeleton.
21282 * src/muscle_tab.c (getargs.h): Include it.
21283 (muscle_init): Insert new muscle skeleton.
21284
13105fc1
PB
212852001-09-18 Pascal Bart <pascal.bart@epita.fr>
21286
21287 * src/output.c (output_parser): Delete unused variable actions_dumped.
21288
b0c4483e
PB
212892001-09-07 Pascal Bart <pascal.bart@epita.fr>
21290
21291 * src/output.c (output): Delete call to reader_output_yylsp.
21292 * src/reader.c (reader): Likewise.
ba0fe3c7 21293 * src/reader.h: Delete declaration of reader_output_yylsp.
342b8b6e 21294
11d82f03
MA
212952001-09-02 Marc Autret <autret_m@epita.fr>
21296
21297 * src/reader.c: Include muscle_tab.h.
21298 (parse_union_decl): Update.
21299 (parse_macro_decl): Rename parse_muscle_decl.
21300 Update to use renamed functions and variable.
21301 (read_declarations, copy_action, read_additionnal_code, : Updated
21302 with correct variables and functions names.
21303 (packsymbols, reader): Likewise.
342b8b6e 21304
11d82f03 21305 * src/reader.h (muscle_obstack): Extern declaration update.
342b8b6e 21306
11d82f03
MA
21307 * src/output.c: Include muscle_tab.h
21308 In all functions using macro_insert, change by using muscle_insert ().
21309 (macro_obstack): Rename muscle_obstack.
21310 Echo modifications in the whole file.
21311 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
21312 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
21313 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
21314
21315 * src/muscle_tab.h: Update double inclusion macros.
21316 (macro_entry_s): Rename muscle_entry_s.
21317 Update prototypes.
342b8b6e 21318
11d82f03
MA
21319 * src/muscle_tab.c: Include muscle_tab.h.
21320 Rename macro_tabble to muscle_table.
21321 (mhash1, mhash2, mcmp): Use muscle_entry.
21322 (macro_init): Rename muscle_init. Update.
21323 (macro_insert): Rename muscle_insert. Update.
21324 (macro_find): Rename muscle_find. Update.
21325
21326 * src/main.c: Include muscle_tab.h.
21327 (main): Call muscle_init ().
21328 * src/Makefile.am (bison_SOURCES): Echo modifications.
21329
93a37297
MA
213302001-09-02 Marc Autret <autret_m@epita.fr>
21331
f753cd62 21332 Now the files macro_tab.[ch] are named muscle_tab.[ch].
342b8b6e 21333
f753cd62
MA
21334 * src/muscle_tab.c, src/muscle_tab.h: Add files.
21335
213362001-09-02 Marc Autret <autret_m@epita.fr>
21337
21338 * src/macrotab.c, src/macrotab.h: Remove.
93a37297 21339
682d48cd
PB
213402001-09-01 Pascal Bart <pascal.bart@epita.fr>
21341
342b8b6e 21342 * src/reader.c (copy_guard): Use muscle to specify the `#line'
682d48cd
PB
21343 filename.
21344
087c8fda
MA
213452001-09-01 Marc Autret <autret_m@epita.fr>
21346
21347 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
21348 to an explicit value to activate the feature. We do it here.
21349
dda680cb
PB
213502001-08-31 Pascal Bart <pascal.bart@epita.fr>
21351
21352 * src/output.c (prepare): Delete the `filename' muscule insertion.
21353 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
21354 (parse_union_decl): Likewise.
21355 * src/macrotab.c (macro_init): Initialize filename by infile.
21356
9e644e64
MA
213572001-08-31 Marc Autret <autret_m@epita.fr>
21358
21359 * src/bison.simple (YYLSP_NEEDED): New definition.
21360 * src/output.c (prepare): Add macro insertion of `locations_flag'
21361
17da6427
PB
213622001-08-31 Pascal Bart <pascal.bart@epita.fr>
21363
21364 * src/output.c (prepare): Delete insertion of previous muscles,
21365 and insert the `prefix' muscles.
21366 * src/macrotab.c (macro_init): Likewise.
21367 (macro_init): Initialization prefix directive by `yy'.
342b8b6e 21368 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17da6427
PB
21369 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
21370 yylval, yydebug, yyerror, yynerrs and yyparse.
342b8b6e 21371 New directive `#define' to substitute yydebug, ... with option
17da6427
PB
21372 name_prefix.
21373
e8cb70b9
PB
213742001-08-31 Pascal Bart <pascal.bart@epita.fr>
21375
21376 * src/main.c (main): Standardize.
21377 * src/output.c (output_table_data, output_parser): Likewise.
21378 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
21379
63c2d5de
MA
213802001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
21381
342b8b6e 21382 * src/reader.c (read_additionnal_code): Rename %%user_code to
63c2d5de
MA
21383 %%epilogue.
21384 * src/output.c (output): Rename %%declarations to %%prologue.
21385 * src/bison.simple: Echo modifications.
342b8b6e 21386
d8cb5183
MA
213872001-08-31 Marc Autret <autret_m@epita.fr>
21388
21389 * src/reader.c (readgram): CleanUp.
21390 (output_token_defines): Likewise.
21391 (packsymbols): Likewise.
21392 (reader): Likewise.
21393 * src/output.c (output): CPP-out useless code.
21394
6c686258
PB
213952001-08-31 Pascal Bart <pascal.bart@epita.fr>
21396
342b8b6e 21397 * src/reader.c (reader): Delete obsolete call to function
6c686258
PB
21398 output_trailers and output_headers.
21399 * src/output.h: Remove obsolete functions prototypes of output_headers
21400 and output_trailers.
21401
8f451ef7
PB
214022001-08-30 Pascal Bart <pascal.bart@epita.fr>
21403
21404 * src/main.c: Include macrotab.h.
342b8b6e 21405 * src/macrotab.h (macro_entry_s): Constify fields.
8f451ef7
PB
21406 Adjust functions prototypes.
21407 * src/macrotab.c (macro_insert): Constify key and value.
21408 (macro_find): Constify key.
21409 (macro_insert): Include 'xalloc.h'
21410 (macro_insert): Use XMALLOC.
21411 (macro_find): Constify return value.
21412 * src/output.c (output_table_data): Rename table to table_data.
21413 (output_parser): Constify macro_key, macro_value.
21414
997b6fd0 214152001-08-30 Marc Autret <autret_m@epita.fr>
2ba3b73c
MA
21416
21417 * src/reader.c (parse_skel_decl): New.
342b8b6e 21418 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
2ba3b73c
MA
21419 * src/lex.h (token_t): New token `tok_skel'.
21420 * src/lex.c (percent_table): Add skeleton option entry.
21421 Standardize.
21422
ff48177d
MA
214232001-08-29 Marc Autret <autret_m@epita.fr>
21424
21425 * src/bison.simple: Add %%user_code directive at the end.
21426 * src/reader.c (read_additionnal_code): New.
21427 (reader): Use it.
21428 * src/output.c (output_program): Remove.
21429 (output): Update.
21430
b33160bf
MA
214312001-08-28 Marc Autret <autret_m@epita.fr>
21432
21433 * src/output.c (output_actions): Clean up.
4e5caae2 21434 (output_gram): CPP-out useless code.
b33160bf
MA
21435 * src/reader.c (reader): Clean up, CPP-out useless code.
21436
d1a2daf7
PB
214372001-08-28 Pascal Bart <pascal.bart@epita.fr>
21438
342b8b6e 21439 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
535c0e75 21440 directive.
d1a2daf7
PB
21441 * src/bison.simple: Add `%%definitions'.
21442
2b763dfe
MA
214432001-08-28 Marc Autret <autret_m@epita.fr>
21444
21445 * config/depcomp: New file.
21446
f1a87ef6
PE
214472001-08-27 Paul Eggert <eggert@twinsun.com>
21448
21449 * src/bison.simple (yyparse): Don't take the address of an
21450 item before the start of an array, as that doesn't conform to
21451 the C Standard.
21452
82e236e2
RA
214532001-08-27 Robert Anisko <robert.anisko@epita.fr>
21454
f1a87ef6 21455 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
21456 obstack. It was done too late here.
21457
21458 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
21459 completely wrong.
21460 (reader): Initialize the macro obstack here, since we need it to grow
21461 '%define' directives.
21462
21463 * src/reader.h: Declare the macro obstack as extern.
21464
b0cfa28a
RA
214652001-08-27 Robert Anisko <robert.anisko@epita.fr>
21466
21467 * src/output.c (output_parser): Fix. Store single '%' characters in
21468 the output obstack instead of throwing them away.
21469
6fc74234
AD
214702001-08-27 Akim Demaille <akim@epita.fr>
21471
21472 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
21473
9c76d118
RA
214742001-08-25 Robert Anisko <robert.anisko@epita.fr>
21475
21476 * lib/Makefile.am: Adjust.
21477
a8289c62
RA
214782001-08-25 Robert Anisko <robert.anisko@epita.fr>
21479
21480 * src/bison.simple: Update and add '%%' directives.
21481
b6610515
RA
214822001-08-25 Robert Anisko <robert.anisko@epita.fr>
21483
21484 * src/reader.c (reader): Remove calls to 'output_headers' and
21485 'output_trailers'. Remove some C output.
21486 (readgram): Disable a piece of code that was writing a default
21487 definition for 'YYSTYPE'.
21488 (reader_output_yylsp): Remove.
21489 (packsymbols): Output token defintions to a macro.
21490 (copy_definition): Disable C output.
6fc74234 21491
b6610515
RA
21492 * src/reader.c (parse_macro_decl): New function used to parse macro
21493 declarations.
21494 (copy_string2): Put the body of copy_string into this new function.
21495 Add a parameter to let the caller choose whether he wants to copy the
21496 string delimiters or not.
21497 (copy_string): Be a simple call to copy_string2 with the last argument
21498 bound to true.
21499 (read_declarations): Add case for macro definition.
21500 (copy_identifier): New.
6fc74234 21501 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
21502 rather than lex.
21503
26f609ff
RA
215042001-08-25 Robert Anisko <robert.anisko@epita.fr>
21505
21506 * src/output.c (prepare): Add prefixed names.
21507 (output_parser): Output semantic actions.
21508 (output_parser): Fix bug on '%%line' directives.
6fc74234 21509
26f609ff
RA
21510 * src/output.c (output_headers): Remove. The C code printed by this
21511 function should now be in the skeletons.
21512 (output_trailers): Remove.
21513 (output): Disable call to 'reader_output_yylsp'.
21514 (output_rule_data): Do not output tables to the table obstack.
21515
21516 * src/output.c: Remove some C dedicated output.
21517 Improve the use of macro and output obstacks.
21518 (output_defines): Remove.
6fc74234 21519
26f609ff
RA
21520 * src/output.c (output_token_translations): Associate 'translate'
21521 table with a macro. No output to the table obstack.
21522 (output_gram): Same for 'rhs' and 'prhs'.
21523 (output_stos): Same for 'stos'.
21524 (output_rule_data): Same for 'r1' and 'r2'.
21525 (token_actions): Same for 'defact'.
21526 (goto_actions): Same for 'defgoto'.
21527 (output_base): Same for 'pact' and 'pgoto'.
21528 (output_table): Same for 'table'.
21529 (output_check): Same for 'check'.
6fc74234 21530
26f609ff
RA
21531 * src/output.c (output_table_data): New function.
21532 (output_short_table): Remove.
21533 (output_short_or_char_table): Remove.
6fc74234 21534
26f609ff
RA
21535 * src/output.c (output_parser): Replace most of the skeleton copy code
21536 with something new. Skeletons are now processed character by character
21537 rather than line by line, and Bison looks for '%%' macros. This is the
21538 first step in making Bison's output process (a lot) more flexible.
21539 (output_parser): Use the macro table.
21540
6f43b113
RA
215412001-08-25 Robert Anisko <robert.anisko@epita.fr>
21542
21543 * src/main.c (main): Initialize the macro table.
21544
dd3127cf
RA
215452001-08-25 Robert Anisko <robert.anisko@epita.fr>
21546
21547 * src/lex.c (percent_table): Add tok_define.
21548 * src/lex.h: Add tok_define.
21549
aa321494
RA
215502001-08-25 Robert Anisko <robert.anisko@epita.fr>
21551
21552 * src/macrotab.c: New file.
21553 * src/macrotab.h: New file.
21554 * src/Makefile.am: Update.
21555
68bd3b6b
RA
215562001-08-25 Robert Anisko <robert.anisko@epita.fr>
21557
21558 * lib/hash.c: New file.
21559 * lib/hash.h: New file.
21560 * lib/Makefile.am: Update.
21561
45f8dd1e
AD
215622001-08-15 Akim Demaille <akim@epita.fr>
21563
21564 Version 1.28c.
21565
40a64a7a 215662001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
21567
21568 * src/reader.c (readgram): Indent output macro YYSTYPE.
21569 (packsymbols): Likewise.
21570 (output_token_defines): Likewise.
21571 * src/files.c: Standardize.
21572 (compute_header_macro): New.
21573 (defines_obstack_save): New. Use compute_header_macro.
21574 (output_files): Update. Use defines_obstack_save.
21575
f9a8293a
AD
215762001-08-15 Akim Demaille <akim@epita.fr>
21577
21578 * doc/bison.texinfo (Table of Symbols): Document
21579 YYSTACK_USE_ALLOCA.
21580
150ca7a7
AD
215812001-08-15 Akim Demaille <akim@epita.fr>
21582
21583 * missing: Update from CVS Automake.
21584 * config/config.guess, config/config.sub, config/texinfo.tex:
21585 Update from gnu.org.
21586
69b5cec4
AD
215872001-08-15 Akim Demaille <akim@epita.fr>
21588
21589 * Makefile.maint: Sync with CVS Autoconf.
21590
f2b5126e
PB
215912001-08-14 Pascal Bart <pascal.bart@epita.fr>
21592
69b5cec4 21593 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
21594 `fdl.texi'.
21595 * doc/fdl.texi: Add to package.
21596
4ecbf796
MA
215972001-08-14 Marc Autret <autret_m@epita.fr>
21598
21599 Turn on %{source,header}_extension features.
21600
69b5cec4 21601 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
21602 source_extension.
21603 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 21604 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
21605 between options.
21606
95fb5662
MA
216072001-08-14 Marc Autret <autret_m@epita.fr>
21608
21609 * src/files.c (compute_base_names): Add extensions computing when
21610 `--file-prefix' used.
21611 Standardize function calls.
21612
78d09da9
MA
216132001-08-13 Marc Autret <autret_m@epita.fr>
21614
69b5cec4 21615 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
21616 defining it (defined but null disables alloca).
21617
5a009f2c
MA
216182001-08-13 Marc Autret <autret_m@epita.fr>
21619
21620 * src/bison.simple (_yy_memcpy): CPP reformat.
21621
1e41465a
PB
216222001-08-13 Pascal Bart <pascal.bart@epita.fr>
21623
21624 * tests/atconfig.in (CPPFLAGS): Fix.
21625
c67a198d
PB
216262001-08-10 Pascal Bart <pascal.bart@epita.fr>
21627
79282c6c 21628 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
21629 `gpl.texi'.
21630 * doc/gpl.texi: Add to package.
21631
09a6de7e
MA
216322001-08-10 Marc Autret <autret_m@epita.fr>
21633
21634 * src/print_graph.h: Fix.
21635 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
21636
b77b9ee0
AD
216372001-08-10 Akim Demaille <akim@epita.fr>
21638
21639 * src/system.h: Provide default declarations for stpcpy, strndup,
21640 and strnlen.
21641
3e259915
MA
216422001-08-10 Robert Anisko <anisko_r@epita.fr>
21643
21644 * doc/bison.texinfo (Locations): Update @$ stuff.
21645
ca96bc2d
MA
216462001-08-09 Robert Anisko <anisko_r@epita.fr>
21647
21648 * src/bison.simple (YYLLOC_DEFAULT): Update.
21649 (yyparse): Adjust.
21650
fdc6758b
MA
216512001-08-08 Marc Autret <autret_m@epita.fr>
21652
b77b9ee0 21653 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
21654 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
21655 Reported by Fabrice Bauzac.
957d4dbf 21656
600cad3b
MA
216572001-08-08 Marc Autret <autret_m@epita.fr>
21658
21659 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
21660 * src/vcg.c (output_node): Fix.
21661 * src/vcg.h: Cleanup.
21662 * src/print_graph.c: Add comments.
b77b9ee0 21663 (node_output_size): New global variable. Simplify the formatting of
600cad3b 21664 the VCG graph output.
b77b9ee0 21665 (print_actions): Unused code is now used. It notifies the final state
600cad3b 21666 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 21667 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
21668 blue.
21669 Get the current node name and node_obstack by argument.
21670 (node_obstack): New variable.
21671 (print_state): Manage node_obstack.
21672 (print_core): Use node_obstack given by argument.
21673 A node is not only computed here but in print_actions also.
21674 (print_graph): CPP out useless code instead of commenting it.
21675
976e528f
AD
216762001-08-07 Pascal Bart <pascal.bart@epita.fr>
21677
21678 * tests/atconfig.in (CPPFLAGS): Fix.
21679
20e8e5ca
AD
216802001-08-07 Akim Demaille <akim@epita.fr>
21681
21682 * src/print_graph.c (quote): New.
21683 (print_core): Use it.
21684
957d4dbf 216852001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 21686
3e3da797
AD
21687 * src/vcg.c (complain.h): Include it.
21688 Unepitaize `return' invocations.
c4b66126 21689 [NDEBUG] (main): Remove.
79282c6c 21690 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
21691 * src/files.c (open_files): Initialize graph_obstack.
21692 * src/print_graph.c (print_actions): CPP out useless code.
21693 (print_core): Don't output the last `\n' in labels.
21694 Use `quote'.
21695 * src/files.c (output_files): Output the VCG file.
21696 * src/main.c (main): Invoke print_graph ();
3e3da797 21697
957d4dbf 216982001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
21699
21700 Automaton VCG graph output.
21701 Using option ``-g'' or long option ``--graph'', you can generate
21702 a gram_filename.vcg file containing a VCG description of the LALR (1)
21703 automaton of your grammar.
21704
21705 * src/main.c: Call to print_graph() function.
21706 * src/getargs.h: Update.
21707 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
21708 (graph_flag): New flag.
21709 (longopts): Update.
21710 (getargs): Add case `g'.
21711 * src/files.c (graph_obstack): New obstack struct.
21712 (open_files): Initialize new obstack.
21713 (output_files): Saves graph_obstack if required.
21714 * src/files.h (graph_obstack): New extern declaration.
21715 * src/Makefile.am: Add new source files.
21716
927c1557 217172001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
21718
21719 * src/print_graph.c, src/print_graph.h (graph): New.
21720 * src/vcg.h: New file.
21721 * src/vcg.c: New file, VCG graph handling.
21722
7333d403
AD
217232001-08-06 Marc Autret <autret_m@epita.fr>
21724
21725 Add of %source_extension and %header_extension which specify
21726 the source or/and the header output file extension.
21727
21728 * src/files.c (compute_base_names): Remove initialisation of
21729 src_extension and header_extension.
21730 (compute_exts_from_gf): Update.
21731 (compute_exts_from_src): Update.
21732 (output_files): Update.
21733 * src/reader.c (parse_header_extension_decl): New.
21734 (parse_source_extension_decl): New.
21735 (read_declarations): New case statements for the new tokens.
21736 * src/lex.c (percent_table): Add entries for %source_extension
21737 and %header_extension.
21738 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
21739
84163231
AD
217402001-08-06 Marc Autret <autret_m@epita.fr>
21741
21742 * configure.in: Bump to 1.28c.
21743 * doc/bison.texinfo: Texinfo thingies.
21744
8303fc42
AD
217452001-08-04 Pascal Bart <pascal.bart@epita.fr>
21746
21747 * tests/atconfig.in (CPPFLAGS): Add.
21748 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
21749
70a84437
AD
217502001-08-03 Akim Demaille <akim@epita.fr>
21751
21752 Version 1.28b.
21753
2ce10144
AD
217542001-08-03 Akim Demaille <akim@epita.fr>
21755
21756 * tests/Makefile.am (check-local): Ship testsuite.
21757 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
21758 Include `string.h'.
21759
1e3e4bc1
AD
217602001-08-03 Akim Demaille <akim@epita.fr>
21761
21762 * configure.in: Try using -Wformat when compiling.
21763
42b45b7f
AD
217642001-08-03 Akim Demaille <akim@epita.fr>
21765
21766 * configure.in: Bump to 1.28b.
21767
8f13fe33
AD
217682001-08-03 Akim Demaille <akim@epita.fr>
21769
21770 * src/complain.c: Adjust strerror_r portability issues.
21771
b37ba92c
AD
217722001-08-03 Akim Demaille <akim@epita.fr>
21773
21774 Version 1.28a.
21775
b0ce6046
AD
217762001-08-03 Akim Demaille <akim@epita.fr>
21777
21778 * src/getargs.c, src/getarg.h (skeleton)): Constify.
21779 * src/lex.c (literalchar): Avoid name clashes on `buf'.
21780 * src/getargs.c: Include complain.h.
21781 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
21782 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
21783
d01c415b
AD
217842001-08-03 Akim Demaille <akim@epita.fr>
21785
21786 * src/reader.c (readgram): Display hidden chars in error messages.
21787
459dd1a6
AD
217882001-08-03 Akim Demaille <akim@epita.fr>
21789
21790 Update to gettext 0.10.39.
21791
53b74c0c
AD
217922001-08-03 Akim Demaille <akim@epita.fr>
21793
21794 * lib/strspn.c: New.
21795
234a3be3
AD
217962001-08-01 Marc Autret <autret_m@epita.fr>
21797
21798 * doc/bison.texinfo: Update.
21799 * doc/bison.1 (mandoc): Update.
21800 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
21801 * src/files.c: Support output files extensions computing.
21802 (src_extension): New static variable.
21803 (header_extension): New static variable.
21804 (tr): New function.
21805 (get_extension_index): New function, gets the index of an extension
21806 filename in a string.
21807 (compute_exts_from_gf): New function, computes extensions from the
21808 grammar file extension.
21809 (compute_exts_from_src): New functions, computes extensions from the
21810 C source file extension, file given by ``-o'' option.
21811 (compute_base_names): Update.
21812 (output_files): Update.
21813
847bf1f5
AD
218142001-08-01 Robert Anisko <anisko_r@epita.fr>
21815
d995fee7 21816 * doc/bison.texi: Document @$.
847bf1f5
AD
21817 (Locations): New section.
21818
d074a105
AD
218192001-07-18 Akim Demaille <akim@epita.fr>
21820
21821 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
21822 * config/prev-version.txt, config/move-if-change: New.
21823 * Makefile.am: Adjust.
21824
3419715d
AD
218252001-07-08 Pascal Bart <pascal.bart@epita.fr>
21826
21827 * src/bison.simple (yyparse): Suppress warning `comparaison
21828 between signed and unsigned'.
21829
62ab6972
AD
218302001-07-05 Pascal Bart <pascal.bart@epita.fr>
21831
21832 * src/getargs.h (raw_flag): Remove.
21833 * src/getargs.c: Die on `-r'/`--raw'.
21834 * src/lex.c (parse_percent_token): Die on `%raw'.
21835 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
21836 * tests/calc.at: Suppress test with option `--raw'.
21837
1e24cc5b
AD
218382001-07-14 Akim Demaille <akim@epita.fr>
21839
21840 * config/: New.
21841 * configure.in: Require Autoconf 2.50.
21842 Update to gettext 0.10.38.
21843
32dfccf8
AD
218442001-03-16 Akim Demaille <akim@epita.fr>
21845
21846 * doc/bison.texinfo: ANSIfy the examples.
21847
cd5bd6ac
AD
218482001-03-16 Akim Demaille <akim@epita.fr>
21849
21850 * getargs.c (skeleton): New variable.
21851 (longopts): --skeleton is a new option.
21852 (shortopts, getargs): -S is a new option.
21853 * getargs.h: Declare skeleton.
21854 * output.c (output_parser): Use it.
21855
5141b016
AD
218562001-03-16 Akim Demaille <akim@epita.fr>
21857
21858 * m4/strerror_r.m4: New.
21859 * m4/error.m4: Run AC_FUNC_STRERROR_R.
21860 * lib/error.h, lib/error.c: Update.
21861
447992b9
AD
218622001-03-16 Akim Demaille <akim@epita.fr>
21863
21864 * src/getargs.c (longopts): Clean up.
21865
274d42ce
AD
218662001-02-21 Akim Demaille <akim@epita.fr>
21867
21868 * src/reader.c (gensym): `gensym_count' is your own.
21869 Use a static buf to create the symbol name, as token_buffer is no
21870 longer a buffer.
21871
22c821f3
AD
218722001-02-08 Akim Demaille <akim@epita.fr>
21873
21874 * src/conflicts.c (conflict_report): Be sure not to append to res
21875 between two calls, which could happen if both first sprintf were
21876 skipped, but not the first cp += strlen.
21877
18569462
AD
218782001-02-08 Akim Demaille <akim@epita.fr>
21879
21880 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
21881 New, from fileutils 4.0.37.
21882 * configure.in: Require Autoconf 2.49c. I took some time before
21883 making this decision. This is the only way out for portability
21884 issues in Bison, it would mean way too much duplicate effort to
21885 import in Bison features implemented in 2.49c since 2.13.
21886 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
21887
0d8f3c8a
AD
218882001-02-02 Akim Demaille <akim@epita.fr>
21889
21890 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 21891 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 21892
f17bcd1f
AD
218932001-01-19 Akim Demaille <akim@epita.fr>
21894
21895 Get rid of the ad hoc handling of token_buffer in the scanner: use
21896 the obstacks.
21897
21898 * src/lex.c (token_obstack): New.
21899 (init_lex): Initialize it. No longer call...
21900 (grow_token_buffer): this. Remove it.
21901 Adjust all the places which used it to use the obstack.
21902
511e79b3
AD
219032001-01-19 Akim Demaille <akim@epita.fr>
21904
21905 * src/lex.h: Rename all the tokens:
21906 s/\bENDFILE\b/tok_eof/g;
21907 s/\bIDENTIFIER\b/tok_identifier/g;
21908 etc.
21909 Let them be enums, not #define, to ease debugging.
21910 Adjust all the code.
21911
0d6508ef
AD
219122001-01-18 Akim Demaille <akim@epita.fr>
21913
21914 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
21915 * src/lex.c (maxtoken, grow_token_buffer): Static.
21916
6deb4447
AD
219172001-01-18 Akim Demaille <akim@epita.fr>
21918
21919 Since we now use obstacks, more % directives can be enabled.
21920
21921 * src/lex.c (percent_table): Also accept `%yacc',
21922 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
21923 `%debug'.
21924 Handle the actions for `%semantic_parser' and `%pure_parser' here,
21925 instead of returning a token.
21926 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
21927 * src/reader.c (read_declarations): Adjust.
21928 * src/files.c (open_files): Don't call `compute_base_names', don't
21929 compute `attrsfile' since they depend upon data which might be
21930 *in* the input file now.
21931 (output_files): Do it here.
21932 * src/output.c (output_headers): Document the fact that this patch
21933 introduces a guaranteed SEGV for semantic parsers.
21934 * doc/bison.texinfo: Document them.
21935 * tests/suite.at: Exercise these %options.
21936
ff4423cc
AD
219372000-12-20 Akim Demaille <akim@epita.fr>
21938
21939 Also handle the output file (--verbose) with obstacks.
21940
21941 * files.c (foutput): Remove.
21942 (output_obstack): New.
21943 Adjust all dependencies.
21944 * src/conflicts.c: Return a string.
21945 * src/system.h (obstack_grow_string): Rename as...
21946 (obstack_sgrow): this. Be ready to work with non literals.
21947 (obstack_fgrow4): New.
21948
956dba3a
AD
219492000-12-20 Akim Demaille <akim@epita.fr>
21950
21951 * src/files.c (open_files): Fix the computation of short_base_name
21952 in the case of `-o foo.tab.c'.
21953
337bab46
AD
219542000-12-20 Akim Demaille <akim@epita.fr>
21955
21956 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
21957 (copy_dollar): Now that everything uses obstacks, get rid of the
21958 FILE * parameters.
21959
5d3214b8
AD
219602000-12-20 Akim Demaille <akim@epita.fr>
21961
21962 * src/files.c (open_files): Actually the `.output' file is based
21963 on the short_base_name, not base_name.
21964 * tests/suite.at (Checking output file names): Adjust.
21965
29092a57
AD
219662000-12-20 Akim Demaille <akim@epita.fr>
21967
21968 * src/bison.s1: Remove, we now use directly...
21969 * src/bison.simple: this.
21970 * src/Makefile.am: Use pkgdata instead of data.
21971
ea5607fd
AD
219722000-12-20 Akim Demaille <akim@epita.fr>
21973
21974 * src/files.c (guard_obstack): New.
21975 (open_files): Initialize it.
21976 (output_files): Dump it...
21977 * src/files.h: Export it.
21978 * src/reader.c (copy_guard): Use it.
21979
27110317
AD
219802000-12-19 Akim Demaille <akim@epita.fr>
21981
21982 * src/files.c (outfile, defsfile, actfile): Removed as global
21983 vars.
21984 (open_files): Don't compute them.
21985 (output_files): Adjust.
21986 (base_name, short_base_name): Be global.
21987 Adjust dependencies.
21988
19c50364
AD
219892000-12-19 Akim Demaille <akim@epita.fr>
21990
21991 * src/files.c (strsuffix): New.
21992 (stringappend): Be just like strcat but allocate.
21993 (base_names): Eve out from open_files.
21994 Try to simplify the rather hairy computation of base_name and
21995 short_base_name.
21996 (open_files): Use it.
21997 * tests/suite.at (Checking output file names): New test.
21998
573c1d9f
AD
219992000-12-19 Akim Demaille <akim@epita.fr>
22000
22001 * src/system.h (obstack_grow_literal_string): Rename as...
22002 (obstack_grow_string): this.
22003 * src/output.c (output_parser): Recognize `%% actions' instead of
22004 `$'.
22005 * src/bison.s1: s/$/%% actions/.
22006 * src/bison.hairy: Likewise.
22007
ef7ddedd
AD
220082000-12-19 Akim Demaille <akim@epita.fr>
22009
22010 * src/output.c (output_parser): Compute the `#line' lines when
22011 there are.
22012 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
22013 Suggested by Hans Aberg.
22014
ff61dabd
AD
220152000-12-19 Akim Demaille <akim@epita.fr>
22016
22017 Let the handling of the skeleton files be local to the procedures
22018 that use it.
22019
22020 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
22021 longer static.
22022 (fparser, open_extra_files): Remove.
22023 (open_files, output_files): Don't take care of fparser.
22024 * src/files.h: Adjust.
22025 * src/output.c (output_parser): Open and close the file to the
22026 skeleton.
22027 * src/reader.c (read_declarations): When %semantic_parser, open
22028 fguard.
22029
55b96341
AD
220302000-12-19 Akim Demaille <akim@epita.fr>
22031
22032 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
22033 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
22034
358c15b7
AD
220352000-12-19 Akim Demaille <akim@epita.fr>
22036
22037 * src/files.c (open_files): Yipee! We no longer need all the code
22038 looking for `/tmp' since we have no tmp file.
22039
7de3329e
AD
220402000-12-19 Akim Demaille <akim@epita.fr>
22041
22042 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
22043 New macros.
22044 * src/files.c (open_files): Less dependency on MSDOS etc.
22045
3abcd459
AD
220462000-12-14 Akim Demaille <akim@epita.fr>
22047
22048 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
22049 Provide a default definition.
22050 Use it when executing the default @ action.
22051 * src/reader.c (reader_output_yylsp): No longer include
22052 `timestamp' and `text' in the default YYLTYPE.
22053
2a91a95e
AD
220542000-12-12 Akim Demaille <akim@epita.fr>
22055
22056 * src/reader.c (copy_definition, parse_union_decl, copy_action)
22057 (copy_guard): Quote the file names.
22058 Reported by Laurent Mascherpa.
22059
14d3eb9b
AD
220602000-12-12 Akim Demaille <akim@epita.fr>
22061
22062 * src/output.c (output_headers, output_program, output): Be sure
22063 to escape special characters when outputting filenames.
22064 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
22065 (output_headers): Don't depend on them, Use ACTSTR.
22066
d7045ec6
AD
220672000-11-17 Akim Demaille <akim@epita.fr>
22068
22069 * lib/obstack.h: Formatting changes.
22070 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
22071 prevents type checking.
22072 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
22073 cast the value to (void *): assigning a `foo *' to a `void *'
22074 variable is valid.
22075 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
22076 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
22077 append characters.
22078
6fd54b73
AD
220792000-11-17 Akim Demaille <akim@epita.fr>
22080
22081 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
22082 as...
22083 (suite.m4, regression.m4, calc.m4): these.
22084 * tests/atgeneral.m4: Update from CVS Autoconf.
22085
4c50eae6
AD
220862000-11-17 Akim Demaille <akim@epita.fr>
22087
22088 * tests/regression.m4 (%union and --defines): New test,
22089 demonstrating a current bug in the obstack implementation.
22090
a35f64ea
AD
220912000-11-17 Akim Demaille <akim@epita.fr>
22092
22093 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
22094 macros.
22095 Use them to declare the variables which are global or local to
22096 `yyparse'.
22097
7de23534
AD
220982000-11-17 Akim Demaille <akim@epita.fr>
22099
22100 * acconfig.h: Remove, no longer used.
22101
aa7815f5
AD
221022000-11-07 Akim Demaille <akim@epita.fr>
22103
22104 * src: s/Copyright (C)/Copyright/g.
22105
5af1f549
AD
221062000-11-07 Akim Demaille <akim@epita.fr>
22107
22108 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
22109 defining.
22110 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
22111
553e2b22
AD
221122000-11-07 Akim Demaille <akim@epita.fr>
22113
22114 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
22115 Merge in a single CPP if/else.
22116
8a4f41d6
AD
221172000-11-07 Akim Demaille <akim@epita.fr>
22118
22119 * src/output.c (output): Remove useless variables.
22120 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
22121 argument `data' for consistency with the prototypes.
22122 Qualify it `const'.
22123 (obstack_copy, obstack_copy0): Rename the second argument as
22124 `address' for consistency. Qualify it `const'.
22125 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
22126 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
22127 `const' their input argument (`data' or `address').
22128 Adjust the corresponding macros to include `const' in casts.
22129
095a3fb5
AD
221302000-11-03 Akim Demaille <akim@epita.fr>
22131
22132 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
22133 s/PFILE1/BISON_HAIRY/.
22134 Adjust dependencies.
22135
d1cdce7c
AD
221362000-11-03 Akim Demaille <akim@epita.fr>
22137
090c5ebf 22138 For some reason, this was not applied.
d1cdce7c
AD
22139
22140 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
22141 `unlink': it's no longer used.
22142
9311529b
AD
221432000-11-03 Akim Demaille <akim@epita.fr>
22144
22145 * src/files.c (skeleton_find): New function, eved out of...
22146 (open_files, open_extra_files): here.
22147
d8880f69
AD
221482000-11-03 Akim Demaille <akim@epita.fr>
22149
22150 Don't use `atexit'.
22151
22152 * src/files.c (obstack_save): New function.
22153 (done): Rename as...
22154 (output_files): this.
22155 Use `obstack_save'.
22156 * src/main.c (main): Don't use `atexit' to register `done', since
22157 it no longer has to remove tmp files, just call `output_files'
22158 when there are no errors.
22159
0dbb648e
AD
221602000-11-02 Akim Demaille <akim@epita.fr>
22161
22162 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
22163 `unlink': it's no longer used.
22164 * src/files.h: Formatting changes.
22165
896fe5c1
AD
221662000-11-02 Akim Demaille <akim@epita.fr>
22167
22168 Remove the last uses of mktemp and unlink/delete.
22169
22170 * src/files.c (fdefines, ftable): Removed.
22171 (defines_ostack, table_obstack): New.
22172 Adjust dependencies of the former into uses of the latter.
22173 * src/output.c (output_short_or_char_table, output_short_table):
22174 Convert to using obstacks.
22175 * src/reader.c (copy_comment2): Accept one FILE * and two
22176 obstacks.
22177 (output_token_defines, reader_output_yylsp): Use obstacks.
22178 * src/system.h (obstack_fgrow3): New.
1f65350a 22179 * po/POTFILES.in: Adjust.
896fe5c1 22180
dd60faec
AD
221812000-11-01 Akim Demaille <akim@epita.fr>
22182
22183 Change each use of `fattrs' into a use of `attrs_obstack'.
22184
22185 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
22186 * src/files.c (fattrs): Remove.
22187 (attrs_obstack): New.
22188 Adjust all dependencies.
22189 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
22190
8c7ebe49
AD
221912000-11-01 Akim Demaille <akim@epita.fr>
22192
22193 Introduce obstacks.
22194 Change each use of `faction' into a use of `action_obstack'.
22195
22196 * lib/obstack.h, lib/obstack.c: New files.
22197 * src/files.c (faction): Remove.
22198 (action_obstack): New.
22199 Adjust all dependencies.
22200
77aee789
AD
222012000-10-20 Akim Demaille <akim@epita.fr>
22202
22203 * lib/quote.h (PARAMS): New macro. Use it.
22204
43591cec
AD
222052000-10-16 Akim Demaille <akim@epita.fr>
22206
22207 * src/output.c (output_short_or_char_table): New function.
22208 (output_short_table, output_token_translations): Use it.
22209 (goto_actions): Use output_short_table.
22210
1e9798d5
AD
222112000-10-16 Akim Demaille <akim@epita.fr>
22212
22213 * src/symtab.c (bucket_new): New function.
22214 (getsym): Use it.
22215
22216 * src/output.c (output_short_table): New argument to display the
22217 comment associated with the table.
22218 Adjust dependencies.
22219 (output_gram): Use it.
22220 (output_rule_data): Nicer output layout for YYTNAME.
22221
f282676b
AD
222222000-10-16 Akim Demaille <akim@epita.fr>
22223
22224 * src/lex.c (read_typename): New function.
22225 (lex): Use it.
22226 * src/reader.c (copy_dollar): Likewise.
22227
550a72a3
AD
222282000-10-16 Akim Demaille <akim@epita.fr>
22229
22230 * src/reader.c (copy_comment2): Expect the input stream to be on
22231 the `/' which is suspected to open a comment, instead of being
22232 called after `//' or `/*' was read.
22233 (copy_comment, copy_definition, parse_union_decl, copy_action)
22234 (copy_guard): Adjust.
22235
131e2fef
AD
222362000-10-16 Akim Demaille <akim@epita.fr>
22237
22238 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
22239 `read_signed_integer'.
22240
79282c5a
AD
222412000-10-16 Akim Demaille <akim@epita.fr>
22242
22243 * src/reader.c (copy_dollar): New function.
22244 (copy_guard, copy_action): Use it.
22245
ff4a34be
AD
222462000-10-16 Akim Demaille <akim@epita.fr>
22247
22248 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
22249 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
22250 New files, from Fileutils 4.0.27.
22251 * src/main.c (printable_version): Remove.
22252 * src/lex.c, src/reader.c: Use `quote'.
22253
222542000-10-04 Akim Demaille <akim@epita.fr>
22255
22256 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
22257
14ded682
AD
222582000-10-04 Akim Demaille <akim@epita.fr>
22259
22260 * doc/bison.texinfo: Various typos spotted by Neil Booth.
22261
8e03724b
AD
222622000-10-04 Akim Demaille <akim@epita.fr>
22263
22264 When a literal string is used to define two different tokens,
22265 `bison -v' segfaults.
22266 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
22267
22268 * tests/regression.m4: New file.
22269 Include the core of the sample provided by Piotr Gackiewicz.
22270 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
22271 properly.
22272
a9e64249
AD
222732000-10-04 Akim Demaille <akim@epita.fr>
22274
22275 * src/reader.c (parse_expect_decl): Keep `count' within the size
22276 of `buffer'.
22277 From Neil Booth.
22278
da9abf43
AD
222792000-10-02 Paul Eggert <eggert@twinsun.com>
22280
22281 * bison.s1 (yyparse): Assign the default value
22282 unconditionally, to avoid a GCC warning and make the parser a
22283 tad smaller.
22284
c33638bb
AD
222852000-10-02 Akim Demaille <akim@epita.fr>
22286
22287 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
22288 options.
22289
444c570a
AD
222902000-10-02 Akim Demaille <akim@epita.fr>
22291
22292 * src/derives.c, src/print.c, src/reduce.c: To ease the
22293 translation, move some `\n' out of the translated strings.
22294
89cab50d
AD
222952000-10-02 Akim Demaille <akim@epita.fr>
22296
22297 The location tracking mechanism is precious for parse error
22298 messages. Nevertheless, it is enabled only when `@n' is used in
22299 the grammar, which is a different issue (you can use it in error
22300 message, but not in the grammar per se). Therefore, there should
22301 be another means to enable it.
22302
22303 * src/getargs.c (getargs): Support `--locations'.
22304 (usage): Report it.
22305 * src/getargs.h (locationsflag): Export it.
22306 * src/lex.c (percent_table): Support `%locations'.
22307 * src/reader.c (yylsp_needed): Remove this variable, now replaced
22308 with `locationsflag'.
22309 * doc/bison.texinfo: Document `--locations' and `%locations'.
22310 Sort the options.
22311 * tests/calc.m4: Test it.
22312
22313 For regularity of the names, replace each
22314 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
22315 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
22316 In addition replace each `flag' with `_flag'.
22317
d6c2cba0
AD
223182000-10-02 Akim Demaille <akim@epita.fr>
22319
22320 Also test parse error messages, including with YYERROR_VERBOSE.
22321
22322 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
22323 associative).
22324 Use it to check the computations.
22325 Use it to check `nonassoc' is honored.
22326 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
22327 `--yyerror-verbose'.
22328 (_AT_CHECK_CALC): Adjust to this option.
22329 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
22330
5a35a6cb
AD
223312000-10-02 Akim Demaille <akim@epita.fr>
22332
22333 Test also `--verbose', `--defines' and `--name-prefix'. Testing
22334 the latter demonstrates a flaw in the handling of non debugging
22335 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
22336 was used in order to simplify:
22337
22338 #if YYDEBUG
22339 if (yydebug)
22340 {
22341 ...
22342 }
22343 #endif
22344
22345 into
22346
22347 if (yydebug)
22348 {
22349 ...
22350 }
22351
22352 unfortunately this leads to a CPP conflict when
22353 `--name-prefix=foo' is used since it produces `#define yydebug
22354 foodebug'.
22355
22356 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
22357 (YYDPRINTF): New macro.
22358 Spread its use.
22359 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
22360 the bison options.
22361 Also test `--verbose', `--defines' and `--name-prefix'.
22362
71da9eea
AD
223632000-10-02 Akim Demaille <akim@epita.fr>
22364
22365 Improve the readability of the produced parsers.
22366
22367 * src/bison.s1: Formatting changes.
22368 Improve the comment related to the `$' mark.
22369 (yydefault): Don't fall through to `yyresume': `goto' there.
22370 * src/output.c (output_parser): When the `$' is met, skip the end
22371 of its line.
22372 New variable, `number_of_dollar_signs', to check there's exactly
22373 one `$' in the parser skeleton.
22374
95e36146
AD
223752000-10-02 Akim Demaille <akim@epita.fr>
22376
22377 * lib/xstrdup.c: New file, from the fileutils.
22378 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
22379 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
22380 instead of strlen + xmalloc + strcpy.
22381 * src/symtab.c (copys): Remove, use xstrdup instead.
22382
d7020c20
AD
223832000-10-02 Akim Demaille <akim@epita.fr>
22384
22385 * src/gram.h (associativity): New enum type which replaces the
22386 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
22387 `right_assoc', `left_assoc' and `non_assoc'.
22388 Adjust all dependencies.
22389 * src/reader.c: Formatting changes.
22390 (LTYPESTR): Don't define it, use it as a literal in
22391 `reader_output_yylsp'.
22392 * src/symtab.h (symbol_class): New enum type which replaces the
22393 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
22394 `sunknown', `stoken and `snterm'.
22395
1916f98e
AD
223962000-10-02 Akim Demaille <akim@epita.fr>
22397
22398 * src/getargs.c (fixed_outfiles): Rename as...
22399 (yaccflag): for consistency and accuracy.
22400 Adjust dependencies.
22401
d7913476
AD
224022000-10-02 Akim Demaille <akim@epita.fr>
22403
22404 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
22405 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
22406 difficult and introduced a lot of core dump. It turns out that
22407 Bison used an implementation of `xmalloc' based on `calloc', and
22408 at various places it does depend upon the initialization to 0. I
22409 have not tried to isolate the pertinent places, and all the former
22410 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
22411 someone should address this issue.
22412
22413 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
22414 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
22415 files.
22416 Adjust dependencies.
22417 * src/warshall.h: New file.
22418 Propagate.
22419
340ef489
AD
224202000-10-02 Akim Demaille <akim@epita.fr>
22421
22422 Various anti-`extern in *.c' changes.
22423
22424 * src/system.h: Include `assert.h'.
22425
b2ca4022
AD
224262000-10-02 Akim Demaille <akim@epita.fr>
22427
22428 * src/state.h (nstates, final_state, first_state, first_shift)
22429 (first_reduction): Move their exportation from here...
22430 * src/LR0.h: to here.
22431 Adjust dependencies.
22432 * src/getargs.c (statisticsflag): New variable.
22433 Add support for `--statistics'.
22434 Adjust dependencies.
22435
22436 Remove a lot of now useless `extern' statements in most files.
22437
403b315b
AD
224382000-10-02 Akim Demaille <akim@epita.fr>
22439
22440 * src/LR0.h: New file.
22441 Propagate its use.
22442
07a58c13
AD
224432000-10-02 Akim Demaille <akim@epita.fr>
22444
22445 * src/print.h: New file.
22446 Propagate its use.
22447 * src/print.c: Formatting and ordering changes.
22448 (verbose, terse): Replace with...
22449 (print_results): this new function.
22450 Adjust dependencies.
22451
0619caf0
AD
224522000-10-02 Akim Demaille <akim@epita.fr>
22453
22454 * src/conflicts.c (conflict_report): New function.
22455 (conflict_log, verbose_conflict_log): Replace with...
22456 (print_conflicts): this function.
22457 Adjust dependencies.
22458 * src/conflicts.h: New file.
22459 Propagate its inclusion.
22460
3519ec76
AD
224612000-10-02 Akim Demaille <akim@epita.fr>
22462
22463 * src/nullable.h: New file.
22464 Propagate its inclusion.
22465 * src/nullable.c: Formatting changes.
22466
015acc48
AD
224672000-10-02 Akim Demaille <akim@epita.fr>
22468
22469 * src/reduce.h: New file.
22470 Propagate its inclusion.
22471 * src/reduce.c: Topological sort and other formatting changes.
22472 (bool, TRUE, FALSE): Move their definition to...
22473 * src/system.h: here.
22474
8963a27b
AD
224752000-10-02 Akim Demaille <akim@epita.fr>
22476
22477 * src/files.c: Formatting changes.
22478 (tryopen, tryclose, openfiles): Rename as...
22479 (xfopen, xfclose, open_files): this.
22480 (stringappend): static.
22481 * src/files.h: Complete the list of exported symbols.
22482 Propagate its use.
22483
a70083a3
AD
224842000-10-02 Akim Demaille <akim@epita.fr>
22485
22486 * src/reader.h: New file.
22487 Propagate its use instead of tedious list of `extern' and
22488 prototypes.
22489 * src/reader.c: Formatting changes, topological sort,
22490 s/register//.
22491
abadc117
AD
224922000-10-02 Akim Demaille <akim@epita.fr>
22493
22494 * src/lex.h: Prototype `lex.c' exported functions.
22495 * src/reader.c: Adjust.
22496 * src/lex.c: Formatting changes.
22497 (safegetc): Rename as...
22498 (xgetc): this.
22499
720d742f
AD
225002000-10-02 Akim Demaille <akim@epita.fr>
22501
22502 * src/lalr.h: New file.
22503 Propagate its inclusion instead of prototypes and `extern'.
22504 * src/lalr.c: Formatting changes, topological sorting etc.
22505
f2acea59
AD
225062000-10-02 Akim Demaille <akim@epita.fr>
22507
22508 * src/output.c (token_actions): Introduce a temporary array,
22509 YYDEFACT, that makes it possible for this function to use
22510 output_short_table.
22511
d019d655
AD
225122000-10-02 Akim Demaille <akim@epita.fr>
22513
22514 `user_toknums' is output as a `short[]' in `output.c', while it is
22515 defined as a `int[]' in `reader.c'. For consistency with the
22516 other output tables, `user_toknums' is now defined as a table of
22517 shorts.
22518
22519 * src/reader.c (user_toknums): Be a short table instead of an int
22520 table.
22521 Adjust dependencies.
22522
22523 Factor the short table outputs.
22524
22525 * src/output.c (output_short_table): New function.
22526 * src/output.c (output_gram, output_stos, output_rule_data)
22527 (output_base, output_table, output_check): Use it.
22528
6c89f1c1
AD
225292000-10-02 Akim Demaille <akim@epita.fr>
22530
22531 * src/output.c (output): Topological sort of the functions, in
22532 order to get rid of the `static' prototypes.
22533 No longer use `register'.
22534 * src/output.h: New file.
22535 Propagate its inclusion in files explicitly prototyping functions
22536 from output.c.
22537
d9efd181
AD
225382000-09-21 Akim Demaille <akim@epita.fr>
22539
22540 * src/atgeneral.m4: Update from Autoconf.
22541
c29240e7 225422000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
22543
22544 * src/closure.h: New file.
22545 * src/closure.c: Formatting changes, topological sort over the
22546 functions, use of closure.h.
22547 (initialize_closure, finalize_closure): Rename as...
22548 (new_closure, free_closure): these. Adjust dependencies.
22549 * src/LR0.c: Formatting changes, topological sort, use of
22550 cloture.h.
22551 (initialize_states): Rename as...
22552 (new_states): this.
22553 * src/Makefile.am (noinst_HEADERS): Adjust.
22554
499daa50
AD
225552000-09-20 Akim Demaille <akim@epita.fr>
22556
22557 * src/acconfig.h: Don't protect config.h against multiple
22558 inclusion.
22559 Don't define PARAMS.
22560 * src/system.h: Define PARAMS.
22561 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
22562 purpose of config.h. system.h must not try to fix wrong
22563 definitions in config.h.
22564
cc84fd5d
AD
225652000-09-20 Akim Demaille <akim@epita.fr>
22566
22567 * src/derives.h: New file.
22568 * src/main.c, src/derives.h: Use it.
22569 Formatting changes.
22570 * src/Makefile.am (noinst_HEADERS): Adjust.
22571
db5b3a89
AD
225722000-09-20 Akim Demaille <akim@epita.fr>
22573
22574 * tests/atgeneral.m4: Update from Autoconf.
22575 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
22576 (AT_CHECK_CALC): New macros.
22577 Use these macros to test bison with options `', `--raw',
22578 `--debug', `--yacc', `--yacc --debug'.
22579
ceed8467
AD
225802000-09-19 Akim Demaille <akim@epita.fr>
22581
22582 * src/output.c: Formatting changes.
22583 * src/machine.h: Remove, leaving its contents in...
22584 * src/system.h: here.
22585 Include stdio.h.
22586 Adjust all dependencies on stdio.h and machine.h.
22587 * src/getargs.h: New file.
22588 Let all `extern' declarations about getargs.c be replaced with
22589 inclusion of `getargs.h'.
22590 * src/Makefile.am (noinst_HEADERS): Adjust.
22591
22592 * tests/calc.m4 (yyin): Be initialized in main, not on the global
22593 scope.
22594 (yyerror): Returns void, not int.
22595 * doc/bison.texinfo: Formatting changes.
22596
05a1d24b
AD
225972000-09-19 Akim Demaille <akim@epita.fr>
22598
22599 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
22600 portable.
22601
cbd25751
AD
226022000-09-18 Akim Demaille <akim@epita.fr>
22603
22604 * configure.in: Append WARNING_CFLAGS to CFLAGS.
22605 * src/Makefile.am (INCLUDES): Don't.
22606 Be ready to fetch headers in lib/.
22607
13863333
AD
226082000-09-18 Akim Demaille <akim@epita.fr>
22609
22610 * doc/bison.texinfo: Update the copyright.
22611 ANSIfy and GNUify the examples.
22612 Remove the old menu.
22613
0d533154
AD
226142000-09-18 Akim Demaille <akim@epita.fr>
22615
22616 First set of tests: use the `calc' example from the documentation.
22617
22618 * src/bison.s1 (yyparse): Condition the code using `yytname' which
22619 is defined only when YYDEBUG is.
22620 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
22621 * src/files.c (tryopen, tryclose): Formatting changes.
22622 Move to the top and be static.
22623 * src/reader.c (read_signed_integer): Likewise.
22624 * tests/calc.m4: New file.
22625 * Makefile.am, suite.m4: Adjust.
22626 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
22627
e79137ac
AD
226282000-09-18 Akim Demaille <akim@epita.fr>
22629
22630 Add support for an Autotest test suite for Bison.
22631
22632 * m4/m4.m4, m4/atconfig.m4: New files.
22633 * m4/Makefile.am (EXTRA_DIST): Adjust.
22634 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
22635 files.
22636 * src/getargs.c: Display a more standard --version message.
22637 * src/reader.c (reader): Formatting changes.
22638 No longer depend upon VERSION_STRING.
22639 * configure.in: No longer use `dnl'.
22640 Set up the test suite and the new directory `tests/.
22641 (VERSION_STRING): Remove.
22642
27821bff
AD
226432000-04-14 Akim Demaille <akim@epita.fr>
22644
22645 * src/reader.c (copy_comment2): New function, same as former
22646 `copy_comment', but outputs into two FILE *.
22647 (copy_comment): Use it.
22648 (parse_union_decl): Use it.
22649 (get_type, parse_start_decl): Use the same `invalid' message.
22650 (parse_start_decl, parse_union_decl): Use the same `multiple'
22651 message.
22652 (parse_union_decl, copy_guard, copy_action): Use the same
22653 `unmatched' message.
22654 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
22655
cfe5fbc0
AD
226562000-03-31 Akim Demaille <akim@epita.fr>
22657
22658 * src/files.c (tryopen, tryclose): Move to the top.
22659 Be static.
22660
cb7db13e
AD
226612000-03-31 Akim Demaille <akim@epita.fr>
22662
22663 * src/main.c (main): Don't call `done', exit does it.
22664
a0f6b076
AD
226652000-03-31 Akim Demaille <akim@epita.fr>
22666
36281465
AD
22667 * allocate.c: s/return (foo)/return foo/.
22668 * lalr.c: Likewise.
22669 * LR0.c: Likewise.
22670 * output.c: Likewise.
22671 * reader.c: Likewise.
22672 * symtab.c: Likewise.
22673 * vmsgetargs.c: Likewise.
22674
226752000-03-31 Akim Demaille <akim@epita.fr>
22676
22677 Clean up the error reporting functions.
a0f6b076
AD
22678
22679 * src/report.c: New file.
22680 * src/report.h: Likewise.
22681 * src/Makefile.am: Adjust.
22682 * m4/error.m4: New file.
22683 * m4/Makefile.am: Adjust.
22684 * configure.in (jm_PREREQ_ERROR): Call it.
22685 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
22686 Remove.
22687 (fatal, fatals): Remove. All callers use complain.c::fatal.
22688 (warn, warni, warns, warnss, warnss): Remove. All callers use
22689 complain.c::complain.
22690 (toomany): Remove, use fatal instead.
22691 * src/files.c (done): No argument, use complain_message_count.
22692 * src/main.c (main): Register `done' to `atexit'.
22693
22694 * src/getargs.c (usage): More `fputs', less `fprintf'.
22695
18539825
AD
226962000-03-28 Akim Demaille <akim@epita.fr>
22697
22698 * lib/: New directory.
22699 * Makefile.am (SUBDIRS): Adjust.
22700 * configure.in: Adjust.
22701 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
22702 useless.
22703 * src/alloca.c: Moved to lib/.
22704 * src/getopt.c: Likewise.
22705 * src/getopt1.c: Likewise.
22706 * src/getopt.h: Likewise.
22707 * src/ansi2knr.c: Likewise.
22708 * src/ansi2knr.1: Likewise.
22709 * src/Makefile.am: Adjust.
22710 * lib/Makefile.am: New file.
22711
9f306f2a
AD
227122000-03-28 Akim Demaille <akim@epita.fr>
22713
22714 * src/getargs.c (usage): Refresh the help message.
22715
0ba347b6
AD
227162000-03-17 Akim Demaille <akim@epita.fr>
22717
22718 * src/getopt1.c: Updated from textutils 2.0e
22719 * src/getopt.c: Likewise.
22720 * src/getopt.h: Likewise.
22721
dbe7f271
AD
227222000-03-17 Akim Demaille <akim@epita.fr>
22723
22724 * src/Makefile.am (bison.simple): Fix the awk program: quote only
22725 the file name, not the whole `#line LINE FILE'.
22726
75bbe78d
AD
227272000-03-17 Akim Demaille <akim@epita.fr>
22728
22729 On syntax errors, report the token on which we choked.
22730
aa5fd0ee
AD
22731 * src/bison.s1 (yyparse): In the label yyerrlab, when
22732 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 22733
7b306f52
AD
227342000-03-17 Akim Demaille <akim@epita.fr>
22735
aa5fd0ee 22736 * src/reader.c (copy_at): New function.
7b306f52
AD
22737 (copy_guard): Use it.
22738 (copy_action): Use it.
22739
e87b5700
AD
227402000-03-17 Akim Demaille <akim@epita.fr>
22741
22742 Be kind to translators, save some useless translations.
22743
aa5fd0ee 22744 * src/main.c (banner): New function.
e87b5700
AD
22745 (fatal_banner): Use it.
22746 (warn_banner): Use it.
22747
ae3c3164
AD
227482000-03-17 Akim Demaille <akim@epita.fr>
22749
aa5fd0ee
AD
22750 * src/reader.c (copy_definition): Use copy_string and
22751 copy_comment. Removed now unused `match', `ended',
22752 `cplus_comment'.
ae3c3164
AD
22753 (copy_comment, copy_string): Moved, to be visible from
22754 copy_definition.
22755
4dc58e7c
AD
227562000-03-17 Akim Demaille <akim@epita.fr>
22757
aa5fd0ee
AD
22758 * src/reader.c (copy_string): Declare `static inline'. No
22759 problems with inline, since it is checked by configure.
4dc58e7c
AD
22760 (copy_comment): Likewise.
22761
0a6384c4
AD
227622000-03-17 Akim Demaille <akim@epita.fr>
22763
aa5fd0ee 22764 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 22765
3cef001a
AD
227662000-03-17 Akim Demaille <akim@epita.fr>
22767
aa5fd0ee 22768 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
22769 (copy_action): Use it. Removed now unused `match', `ended',
22770 `cplus_comment'.
22771 (copy_guard): Likewise.
22772
ca36d2ef
AD
227732000-03-17 Akim Demaille <akim@epita.fr>
22774
aa5fd0ee 22775 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
22776 (copy_action): Use it.
22777 (copy_guard): Likewise.
22778
6666f98f
AD
227792000-03-17 Akim Demaille <akim@epita.fr>
22780
22781 Change the handling of @s so that they behave exactly like $s.
22782 There is now a pseudo variable @$ (readble and writable), location
22783 of the lhs of the rule (by default ranging from the location of
22784 the first symbol of the rhs, to the location of the last symbol,
22785 or, if the rhs is empty, YYLLOC).
22786
22787 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
22788 yyval.
22789 (yyparse): When providing a default semantic action, provide a
22790 default location action.
22791 (after the $): No longer change `*YYLSP', just stack YYLOC the
22792 same way you stack YYVAL.
22793 * src/reader.c (read_declarations): Use warns.
22794 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
22795 (copy_action, case '@'): Likewise.
22796 Use a standard error message, to save useless work from
22797 translators.
22798
41aca2e0
AD
227992000-03-17 Akim Demaille <akim@epita.fr>
22800
aa5fd0ee
AD
22801 * src/bison.s1: Formatting and cosmetics changes.
22802 * src/reader.c: Likewise.
41aca2e0
AD
22803 Update the Copyright notice.
22804
dc08c1d5
AD
228052000-03-17 Akim Demaille <akim@epita.fr>
22806
aa5fd0ee
AD
22807 * src/bison.s1 (#line): All set to `#line' only, since the
22808 Makefile now handles them.
dc08c1d5 22809
9ee3c97b
AD
228102000-03-16 Akim Demaille <akim@epita.fr>
22811
22812 * src/output.c (output_rule_data): Output the documentation of
22813 some of the tables.
22814 (Copyright notice): Update.
22815 Formatting changes.
22816
0de741ca
AD
228172000-03-16 Akim Demaille <akim@epita.fr>
22818
22819 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
22820 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
22821 One `#if YYDEBUG' remains, since it uses variables which are
22822 defined only if `YYDEBUG != 0'.
22823
bb10be54
AD
228242000-03-16 Akim Demaille <akim@epita.fr>
22825
22826 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
22827 and related variables so that the similarities are highlighted.
22828
b07b484a
AD
228292000-03-16 Akim Demaille <akim@epita.fr>
22830
22831 * src/bison.s1: Properly indent CPP directives.
22832
361f60b3
AD
228332000-03-16 Akim Demaille <akim@epita.fr>
22834
22835 * src/bison.s1: Properly indent the `alloca' CPP section.
22836
8c44d3ec
AD
228372000-03-16 Akim Demaille <akim@epita.fr>
22838
22839 Do not hard code values of directories in `configure.in'.
22840 Update the `configure' tool chain.
22841
22842 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
22843 src/makefile.am.
22844 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
22845 (AC_OUTPUT): Add m4/Makefile.
22846 Bump to bison 1.28a, 1.29 has never been released.
22847 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
22848 handled via src/Makefile.am.
22849 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
22850 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
22851 autoheader.
22852 * Makefile.am (SUBDIRS): Add m4.
22853 (ACLOCAL_AM_FLAGS): New variable.
22854 (AUTOMAKE_OPTIONS): Add check-news.
22855 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
22856 the proper line number and file name.
22857 (DEFS): Propagate the location of bison library files and of the
22858 locale files.
22859 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
22860 builddir.
22861 * acinclude.m4: Remove, replaced by the directory m4.
22862 * m4/Makefile.am (EXTRA_DIST): New variable.
22863 * m4/gettext.m4: New file, from the fileutils.
22864 * m4/lcmessage.m4: Likewise
22865 * m4/progtest.m4: Likewise.
22866 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
22867
f95997e7
AD
228682000-03-10 Akim Demaille <akim@epita.fr>
22869
22870 * src/closure.c:
22871 Formatting changes of various comments.
22872 Respect the GNU coding standards at various places.
22873 Don't use `_()' when no translation is needed.
22874
228751999-12-13 Jesse Thilo <jthilo@gnu.org>
22876
22877 * src/files.c:
22878 OS/2 honors TMPDIR environment variable.
22879
228801999-12-13 Jesse Thilo <jthilo@gnu.org>
22881
22882 * doc/bison.texinfo: Tweaked spelling and grammar.
22883 Updated ISBN.
22884 Removed reference to price of printed copy.
22885 Mention BISON_SIMPLE and BISON_HAIRY.
22886
228871999-12-13 Jesse Thilo <jthilo@gnu.org>
22888
22889 * configure.in, NEWS:
22890 Bison 1.29 released.
22891
228921999-10-27 Jesse Thilo <jthilo@gnu.org>
22893
22894 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
22895 Added reference card.
22896
228971999-07-26 Jesse Thilo <jthilo@gnu.org>
22898
22899 * po/ru.po: Added Russian translation.
22900
229011999-07-26 Jesse Thilo <jthilo@gnu.org>
22902
22903 * configure.in: Added Russian translation.
22904
229051999-07-06 Jesse Thilo <jthilo@gnu.org>
22906
22907 * configure.in, NEWS, README:
22908 Released version 1.28.
22909
229101999-06-14 Jesse Thilo <jthilo@gnu.org>
22911
22912 * src/system.h:
22913 Squashed redefinition warning on some systems.
22914
22915 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
22916 Have configure build version string instead of relying on ANSI string
22917 concatentation.
22918
229191999-06-14 Jesse Thilo <jthilo@gnu.org>
22920
22921 * po/POTFILES.in: Got rid of version.c.
22922
229231999-06-14 Jesse Thilo <jthilo@gnu.org>
22924
22925 * acconfig.h, configure.in:
22926 Have configure build version string instead of relying on ANSI string
22927 concatentation.
22928
229291999-06-08 Jesse Thilo <jthilo@gnu.org>
22930
22931 * doc/bison.1:
22932 Dropped mention of `+' for long-named options.
22933
229341999-05-30 Jesse Thilo <jthilo@gnu.org>
22935
22936 * src/files.c: Added <unistd.h> for unlink().
22937
22938 * src/Makefile.am, src/system.h:
22939 I18n fixes.
22940
229411999-05-30 Jesse Thilo <jthilo@gnu.org>
22942
22943 * README: Added a FAQ list.
22944
22945 * configure.in, acconfig.h:
22946 I18n fixes.
22947
229481999-05-30 Jesse Thilo <jthilo@gnu.org>
22949
22950 * doc/FAQ, doc/Makefile.am:
22951 Added a FAQ list.
22952
229531999-05-19 Jesse Thilo <jthilo@gnu.org>
22954
22955 * src/alloc.h, src/symtab.h, src/version.c:
22956 Protected inclusion of "config.h" with HAVE_CONFIG_H.
22957
229581999-04-18 Jesse Thilo <jthilo@gnu.org>
22959
22960 * src/.cvsignore, src/Makefile.am:
22961 Reorganized: sources in `src', documentation in `doc'.
22962
22963 * src/lex.c (literalchar):
22964 fixed the code for escaping double quotes (thanks
22965 Jonathan Czisny.)
22966
229671999-04-18 Jesse Thilo <jthilo@gnu.org>
22968
22969 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
22970 Adjusted paths to reflect directory reorganization.
22971
229721999-04-18 Jesse Thilo <jthilo@gnu.org>
22973
22974 * doc/.cvsignore, doc/Makefile.am:
22975 Reorganized: sources in `src', documentation in `doc'.
22976
229771999-04-18 Jesse Thilo <jthilo@gnu.org>
22978
22979 * configure.in:
22980 Updated AC_INIT file to reflect directory reorganization.
22981
22982 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
22983 Reorganized: sources in `src', documentation in `doc'.
22984
229851999-04-13 Jesse Thilo <jthilo@gnu.org>
22986
22987 * src/allocate.c:
22988 Don't declare calloc() and realloc() if not necessary.
22989
229901999-04-13 Jesse Thilo <jthilo@gnu.org>
22991
22992 * configure.in, acconfig.h, acinclude.m4:
22993 Don't declare calloc() and realloc() if not necessary.
22994
229951999-03-23 Jesse Thilo <jthilo@gnu.org>
22996
22997 * po/.cvsignore: Added i18n support.
22998
229991999-03-23 Jesse Thilo <jthilo@gnu.org>
23000
23001 * acconfig.h, configure.in, Makefile.am:
23002 Added i18n support.
23003
230041999-03-22 Jesse Thilo <jthilo@gnu.org>
23005
23006 * src/bison.s1: Fixed #line numbers.
23007
230081999-03-15 Jesse Thilo <jthilo@gnu.org>
23009
23010 * po/es.po, po/fr.po, po/nl.po, po/de.po:
23011 Added PO files from Translation Project.
23012
230131999-03-03 Jesse Thilo <jthilo@gnu.org>
23014
23015 * Makefile.am:
23016 Added support for non-ANSI compilers (ansi2knr).
23017
230181999-02-16 Jesse Thilo <jthilo@gnu.org>
23019
23020 * configure.in: Bumped version number to 1.27.
23021
23022 * Makefile.am:
23023 Added `bison.simple' to list of files removed by `make distclean'.
23024
230251999-02-12 Jesse Thilo <jthilo@gnu.org>
23026
23027 * src/files.c, src/files.h:
23028 Defined locations of parser files in config.h instead of Makefile.
23029
230301999-02-12 Jesse Thilo <jthilo@gnu.org>
23031
23032 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
23033 Defined locations of parser files in config.h instead of Makefile.
23034
230351999-02-09 Jesse Thilo <jthilo@gnu.org>
23036
23037 * Makefile.am:
23038 Removed inappropriate use of $< macro.
23039
230401999-02-05 Jesse Thilo <jthilo@gnu.org>
23041
23042 * po/Makefile.in.in, po/POTFILES.in:
23043 Add `po' directory skeleton.
23044
230451999-01-27 Jesse Thilo <jthilo@gnu.org>
23046
23047 * README: Document help-bison list.
23048
23049 * configure.in: Add check for mkstemp().
23050
230511999-01-20 Jesse Thilo <jthilo@gnu.org>
23052
23053 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
23054 Hush a few compiler warnings.
23055
23056 * src/files.c:
23057 Add tryclose(), which verifies that fclose was successful.
23058 Hush a couple of compiler warnings.
23059
230601999-01-20 Jesse Thilo <jthilo@gnu.org>
23061
23062 * Makefile.am, OChangeLog:
23063 ChangeLog is now automatically generated. Include the old version as
23064 OChangeLog.
23065
230661999-01-14 Jesse Thilo <jthilo@gnu.org>
23067
23068 * 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:
23069 Update FSF address.
23070
230711999-01-14 Jesse Thilo <jthilo@gnu.org>
23072
23073 * doc/bison.texinfo: Fix formatting glitch.
23074
23075 * doc/bison.texinfo: Update FSF address.
23076
230771999-01-14 Jesse Thilo <jthilo@gnu.org>
23078
23079 * acconfig.h: Update FSF address.
23080
230811999-01-08 Jesse Thilo <jthilo@gnu.org>
23082
23083 * src/system.h:
23084 Don't define PACKAGE here, since config.h defines it.
23085
230861998-12-30 Jesse Thilo <jthilo@gnu.org>
23087
23088 * src/reader.c: Update copyright date.
23089
23090 * src/main.c:
23091 Ditch sprintf to statically-sized buffers in fatal/warn functions in
23092 favor of output directly to stderr (avoids buffer overruns).
23093
23094 * src/reader.c: Some checks for premature EOF.
23095
23096 * 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:
23097 Use prototypes if the compiler understands them.
23098
23099 * src/files.c: Honor TMPDIR on Unix hosts.
23100 Use prototypes if the compiler understands them.
23101
23102 * src/reader.c:
23103 Fix a couple of buffer overrun bugs.
23104 Use prototypes if the compiler understands them.
23105
23106 * src/system.h: Include unistd.h and ctype.h.
23107 Use #ifdef instead of #if for NLS symbols.
23108
231091998-12-30 Jesse Thilo <jthilo@gnu.org>
23110
23111 * doc/bison.texinfo:
23112 Delete comment "consider using @set for edition number, etc..." since
23113 we now are doing so.
23114
231151998-12-30 Jesse Thilo <jthilo@gnu.org>
23116
23117 * configure.in:
23118 Use prototypes if the compiler understands them.
23119
23120 * NEWS: Document 1.26 highlights.
23121
23122 * Makefile.am: Require Automake 1.3 or later.
23123
23124 * acconfig.h:
23125 Use prototypes if the compiler understands them.
23126
231271998-12-29 Jesse Thilo <jthilo@gnu.org>
23128
23129 * src/version.c:
23130 Use VERSION symbol from automake for version number.
23131
231321998-12-29 Jesse Thilo <jthilo@gnu.org>
23133
23134 * acconfig.h, configure.in, version.cin:
23135 Use VERSION symbol from automake for version number.
23136
231371998-11-28 Jesse Thilo <jthilo@gnu.org>
23138
23139 * Makefile.am:
23140 Distribute original version of simple parser (bison.s1), not built
23141 version (bison.simple).
23142
231431998-11-28 Jesse Thilo <jthilo@gnu.org>
23144
23145 * doc/bison.texinfo: Add info dir entry.
23146
23147 * doc/bison.texinfo:
23148 Let automake put version number into documentation.
23149
231501998-11-26 Jesse Thilo <jthilo@gnu.org>
23151
23152 * src/bison.cld, src/build.com, src/vmshlp.mar:
23153 Add non-RCS files from /gd/gnu/bison.
23154
231551998-11-26 Jesse Thilo <jthilo@gnu.org>
23156
23157 * doc/bison.1:
23158 Document the BISON_HAIRY and BISON_SIMPLE variables.
23159
231601998-11-25 Jesse Thilo <jthilo@gnu.org>
23161
23162 * src/version.c: Build version.c automatically.
23163
23164 * src/reader.c:
23165 Fix token numbering (used to start at 258, not 257).
23166
23167 * src/system.h: Include config.h.
23168
23169 * src/getargs.c: Update bug report address.
23170
23171 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
23172 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
23173
231741998-11-25 Jesse Thilo <jthilo@gnu.org>
23175
23176 * Makefile.am:
23177 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
23178
23179 * configure.in, version.cin:
23180 Build version.c automatically.
23181
23182 * AUTHORS: Add AUTHORS file.
23183
23184 * README: Update bug report address.
23185
23186 * bison.simple:
23187 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
23188
23189 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
23190 Add automake stuff.
23191
231921998-11-25 Jesse Thilo <jthilo@gnu.org>
23193
23194 * doc/bison.texinfo: Clean up some formatting.
23195
231961998-05-05 Richard Stallman <rms@gnu.org>
23197
23198 * doc/bison.texinfo:
23199 Explain better why to make a pure parser.
23200
232011998-01-05 Richard Stallman <rms@gnu.org>
23202
23203 * src/files.c (openfiles):
23204 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
23205 find a temporary directory, if possible. Do not unlink files while
23206 they are open.
23207
232081997-08-25 Richard Stallman <rms@gnu.org>
23209
23210 * src/reader.c (stack_offset;):
23211 Change some warni to warns.
23212
23213 * src/lex.c (literalchar): Use warns, not warni.
23214
232151997-06-28 Richard Stallman <rms@gnu.org>
23216
23217 * src/bison.s1: Add a Bison version comment.
23218
23219 * src/main.c (fatal, warn, berror):
23220 Use program_name.
23221
232221997-06-28 Richard Stallman <rms@gnu.org>
23223
23224 * Makefile.in (bison_version): New variable.
23225 (dist): Use that variable.
23226 (bison.s1): Substitute the Bison version into bison.simple.
23227
23228 * bison.simple: Add a Bison version comment.
23229
232301997-06-18 Richard Stallman <rms@gnu.org>
23231
23232 * src/main.c (fatal, warn, berror):
23233 Make error messages standard.
23234 (toomany): Improve error message text.
23235
23236 * 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:
23237 new.h renamed to alloc.h.
23238
232391997-06-18 Richard Stallman <rms@gnu.org>
23240
23241 * Makefile.in: new.h renamed to alloc.h.
23242
232431997-05-24 Richard Stallman <rms@gnu.org>
23244
23245 * src/lex.c (literalchar):
23246 Fix the code for escaping \, " and '.
23247
23248 (lex): Avoid trouble when there are many chars
23249 to discard in a char literal with just several chars in it.
23250
232511997-05-17 Richard Stallman <rms@gnu.org>
23252
23253 * src/bison.s1:
23254 Use malloc, if using alloca is troublesome.
23255 (YYSTACK_USE_ALLOCA): New flag macro.
23256 Define it for some systems and compilers.
23257 (YYSTACK_ALLOC): New macro.
23258 (yyparse): Use YYSTACK_ALLOC to allocate stack.
23259 If it was malloc'd, free it.
23260
232611997-05-17 Richard Stallman <rms@gnu.org>
23262
23263 * bison.simple:
23264 Use malloc, if using alloca is troublesome.
23265 (YYSTACK_USE_ALLOCA): New flag macro.
23266 Define it for some systems and compilers.
23267 (YYSTACK_ALLOC): New macro.
23268 (yyparse): Use YYSTACK_ALLOC to allocate stack.
23269 If it was malloc'd, free it.
23270
232711997-04-23 Richard Stallman <rms@gnu.org>
23272
23273 * src/bison.s1:
23274 (alloca) [__hpux]: Always define as __builtin_alloca.
23275
232761997-04-23 Richard Stallman <rms@gnu.org>
23277
23278 * bison.simple:
23279 (alloca) [__hpux]: Always define as __builtin_alloca.
23280
232811997-04-22 Richard Stallman <rms@gnu.org>
23282
23283 * src/bison.s1:
23284 [__hpux]: Include alloca.h (right for HPUX 10)
23285 instead of declaring alloca (right for HPUX 9).
23286
23287 * src/bison.s1 (__yy_memcpy):
23288 Declare arg `count' as unsigned int.
23289 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
23290
232911997-04-22 Richard Stallman <rms@gnu.org>
23292
23293 * bison.simple:
23294 [__hpux]: Include alloca.h (right for HPUX 10)
23295 instead of declaring alloca (right for HPUX 9).
23296
23297 * bison.simple (__yy_memcpy):
23298 Declare arg `count' as unsigned int.
23299 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
23300
233011997-01-03 Richard Stallman <rms@gnu.org>
23302
23303 * src/allocate.c: [__STDC__ or _MSC_VER]:
23304 Declare calloc and realloc to return void *.
23305
233061997-01-02 Richard Stallman <rms@gnu.org>
23307
23308 * src/system.h:
23309 [_MSC_VER]: Include stdlib.h and process.h.
23310 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
23311
23312 * src/main.c (main): Return FAILURE as a value.
23313 (printable_version): Declare arg as int, not char.
23314
233151997-01-02 Richard Stallman <rms@gnu.org>
23316
23317 * Makefile.in (dist):
23318 Explicitly check for symlinks, and copy them.
23319
233201996-12-19 Richard Stallman <rms@gnu.org>
23321
23322 * src/files.c:
23323 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
23324
233251996-12-18 Paul Eggert <eggert@gnu.org>
23326
23327 * src/bison.s1 (yyparse):
23328 If __GNUC__ and YYPARSE_PARAM are both defined,
23329 declare yyparse to have a void * argument.
23330
233311996-12-18 Paul Eggert <eggert@gnu.org>
23332
23333 * bison.simple (yyparse):
23334 If __GNUC__ and YYPARSE_PARAM are both defined,
23335 declare yyparse to have a void * argument.
23336
233371996-12-17 Richard Stallman <rms@gnu.org>
23338
23339 * src/reduce.c (nbits): Add some casts.
23340
233411996-08-12 Richard Stallman <rms@gnu.org>
23342
23343 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
23344
233451996-08-12 Richard Stallman <rms@gnu.org>
23346
23347 * bison.simple: Test _MSDOS as well as _MSDOS_.
23348
233491996-07-31 Richard Stallman <rms@gnu.org>
23350
23351 * src/bison.s1:
23352 [__sun && __i386]: Include alloca.h.
23353
233541996-07-31 Richard Stallman <rms@gnu.org>
23355
23356 * bison.simple:
23357 [__sun && __i386]: Include alloca.h.
23358
233591996-07-30 Richard Stallman <rms@gnu.org>
23360
23361 * src/bison.s1: Comment change.
23362
23363 * src/bison.s1: Test _MSDOS_, not MSDOS.
23364
233651996-07-30 Richard Stallman <rms@gnu.org>
23366
23367 * bison.simple: Comment change.
23368
23369 * bison.simple: Test _MSDOS_, not MSDOS.
23370
233711996-06-01 Richard Stallman <rms@gnu.org>
23372
23373 * 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:
23374 Insert `_' macro around many string constants.
23375
23376 * src/main.c:
23377 Insert `_' macro around many string constants.
23378
23379 (main): Call setlocale, bindtextdomain and textdomain.
23380
23381 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
23382 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
23383 [ENABLE_NLS]: Include libintl.h.
23384 [ENABLE_NLS] (gettext): Define.
23385 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
23386 (N_, PACKAGE, LOCALEDIR): New macros.
23387
233881996-06-01 Richard Stallman <rms@gnu.org>
23389
23390 * POTFILES.in: New file.
23391
23392 * Makefile.in (allocate.o):
23393 Define target explicitly.
23394
23395 * Makefile.in (CFLAGS): Set to @CFLAGS@.
23396 (LDFLAGS): Set to @LDFLAGS@.
23397 (configure): Run autoconf only if preceding `cd' succeeds.
23398 (bison.s1): Redirect output to temporary file then move the
23399 temporary to the target, rather than redirecting directly to bison.s1.
23400 (clean): Remove config.status and config.log.
23401 (distclean): Don't remove config.status here.
23402
234031996-05-12 Richard Stallman <rms@gnu.org>
23404
23405 * src/bison.s1:
23406 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
23407
234081996-05-12 Richard Stallman <rms@gnu.org>
23409
23410 * bison.simple:
23411 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
23412
234131996-05-11 Richard Stallman <rms@gnu.org>
23414
23415 * src/bison.s1 (__yy_memcpy):
23416 Really reorder the args, as was supposedly done on Feb 14 1995.
23417 (yyparse): Calls changed accordingly.
23418
234191996-05-11 Richard Stallman <rms@gnu.org>
23420
23421 * Makefile.in (dist): Don't use $(srcdir).
23422
23423 * bison.simple (__yy_memcpy):
23424 Really reorder the args, as was supposedly done on Feb 14 1995.
23425 (yyparse): Calls changed accordingly.
23426
234271996-01-27 Richard Stallman <rms@gnu.org>
23428
23429 * src/output.c (output_rule_data):
23430 Test YYERROR_VERBOSE in the conditional
23431 around the definition of ttyname.
23432
234331995-12-29 Richard Stallman <rms@gnu.org>
23434
23435 * src/bison.s1:
23436 Fix line numbers in #line commands.
23437
234381995-12-29 Richard Stallman <rms@gnu.org>
23439
23440 * bison.simple:
23441 Fix line numbers in #line commands.
23442
234431995-12-27 Richard Stallman <rms@gnu.org>
23444
23445 * src/bison.s1 (YYPARSE_PARAM_DECL):
23446 In C++, make it always null.
23447 (YYPARSE_PARAM_ARG): New macro.
23448 (yyparse): Use YYPARSE_PARAM_ARG.
23449
234501995-12-27 Richard Stallman <rms@gnu.org>
23451
23452 * bison.simple (YYPARSE_PARAM_DECL):
23453 In C++, make it always null.
23454 (YYPARSE_PARAM_ARG): New macro.
23455 (yyparse): Use YYPARSE_PARAM_ARG.
23456
234571995-11-29 Richard Stallman <rms@gnu.org>
23458
23459 * doc/bison.texinfo:
23460 Describe literal string tokens, %raw, %no_lines, %token_table.
23461
234621995-11-29 Daniel Hagerty <hag@gnu.org>
23463
23464 * doc/bison.texinfo: Fixed update date
23465
234661995-10-16 Richard Stallman <rms@gnu.org>
23467
23468 * src/version.c: Version 1.25.
23469
234701995-10-16 Richard Stallman <rms@gnu.org>
23471
23472 * NEWS: *** empty log message ***
23473
234741995-10-16 Richard Stallman <rms@gnu.org>
23475
23476 * doc/bison.1, doc/bison.rnh:
23477 Add new options.
23478
234791995-10-15 Richard Stallman <rms@gnu.org>
23480
23481 * src/vmsgetargs.c, src/getargs.c:
23482 Added -n, -k, and -raw switches.
23483 (noparserflag, toknumflag, rawtoknumflag): New variables.
23484
23485 * src/symtab.h (SALIAS):
23486 New #define for adding aliases to %token.
23487 (struct bucket): Added `alias' field.
23488
23489 * src/reduce.c (reduce_grammar):
23490 Revise error message.
23491 (print_notices): Remove final `.' from error message.
23492
23493 * src/reader.c (reader_output_yylsp):
23494 New function.
23495 (readgram): Use `#if 0' around code that accepted %command
23496 inside grammar rules: The documentation doesn't allow it,
23497 and it will fail since the %command processors scan for the next %.
23498 (parse_token_decl): Extended the %token
23499 declaration to allow a multi-character symbol as an alias.
23500 (parse_thong_decl): New function.
23501 (read_declarations): Added %thong declarations.
23502 (read_declarations): Handle NOOP to deal with allowing
23503 % declarations as another means to specify the flags.
23504 (readgram): Allow %prec prior to semantics embedded in a rule.
23505 (skip_to_char, read_declarations, copy_definition)
23506 (parse_token_decl, parse_start_decl, parse_type_decl)
23507 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
23508 (get_type_name, copy_guard, copy_action, readgram)
23509 (get_type, packsymbols): Revised most error messages.
23510 Changed `fatal' to `warnxxx' to avoid aborting for error.
23511 Revised and use multiple warnxxx functions to avoid using VARARGS1.
23512 (read_declarations): Improve the error message for
23513 an invalid character. Do not abort.
23514 (read_declarations, copy_guard, copy_action): Use
23515 printable_version to avoid unprintable characters in printed output.
23516 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
23517 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
23518 Allow the type of a non-terminal can be given
23519 more than once, as long as all specifications give the same type.
23520
23521 * src/output.c:
23522 (output_headers, output_trailers, output, output_gram)
23523 (output_rule_data): Implement noparserflag variable.
23524 Implement toknumflag variable.
23525 (output): Call reader_output_yylsp to output LTYPESTR.
23526
23527 * src/main.c (main):
23528 If reader sees an error, don't process the grammar.
23529 (fatals): Updated to not use VARARGS1.
23530 (printable_version, int_to_string, warn, warni, warns, warnss)
23531 (warnsss): New error reporting functions. Avoid abort for error.
23532
23533 * src/lex.h:
23534 Added THONG and NOOP for alias processing.
23535 Added SETOPT for the new code that allows setting options with %flags.
23536
23537 * src/lex.c:
23538 Include getopt.h. Add some extern decls.
23539 (safegetc): New function to deal with EOF gracefully.
23540 (literalchar); new function to deal with reading \ escapes.
23541 (lex): Use literalchar.
23542 (lex): Implemented "..." tokens.
23543 (literalchar, lex, parse_percent_token): Made tokenbuffer
23544 always contain the token. This includes growing the token
23545 buffer while reading an integer.
23546 (parse_percent_token): Replaced if-else statement with percent_table.
23547 (parse_percent_token): Added % declarations as another
23548 way to specify the flags -n, -l, and -r. Also added hooks for
23549 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
23550 major changes to files.c.
23551 (lex) Retain in the incoming stream a character following
23552 an incorrect '/'.
23553 (skip_white_space, lex): Revised most error messages
23554 and changed fatal to warn to avoid aborting.
23555 (percent_table): Added %thong declarations.
23556
23557 * src/gram.h: Comment changes.
23558
23559 * src/files.c (openfiles, open_extra_files, done):
23560 Add faction flag
23561 and actfile file. Handle noparserflag. Both for -n switch.
23562
23563 * src/conflicts.c (resolve_sr_conflict):
23564 Remove use of alloca.
23565
235661995-06-01 Jim Meyering <meyering@gnu.org>
23567
23568 * doc/bison.texinfo: *** empty log message ***
23569
235701995-05-06 Richard Stallman <rms@gnu.org>
23571
23572 * src/bison.s1: Comment change.
23573
235741995-05-06 Richard Stallman <rms@gnu.org>
23575
23576 * bison.simple: Comment change.
23577
235781995-05-03 Richard Stallman <rms@gnu.org>
23579
23580 * src/version.c: Version now 1.24.
23581
23582 * src/bison.s1: Change distribution terms.
23583
23584 * src/version.c: Version now 1.23.
23585
235861995-05-03 Richard Stallman <rms@gnu.org>
23587
23588 * doc/bison.texinfo:
23589 Rewrite "Conditions for Using Bison".
23590 Update version to 1.24.
23591
235921995-05-03 Richard Stallman <rms@gnu.org>
23593
23594 * bison.simple: Change distribution terms.
23595
235961995-02-23 Richard Stallman <rms@gnu.org>
23597
23598 * src/files.c: Test __VMS_POSIX as well as VMS.
23599
236001995-02-14 Jim Meyering <meyering@gnu.org>
23601
23602 * src/bison.s1 (__yy_memcpy):
23603 Renamed from __yy_bcopy to avoid
23604 confusion. Reverse FROM and TO arguments to be consistent with
23605 those of memcpy.
23606
236071995-02-14 Jim Meyering <meyering@gnu.org>
23608
23609 * bison.simple (__yy_memcpy):
23610 Renamed from __yy_bcopy to avoid
23611 confusion. Reverse FROM and TO arguments to be consistent with
23612 those of memcpy.
23613
236141994-11-10 David J. MacKenzie <djm@gnu.org>
23615
23616 * NEWS: reformat
23617
23618 * NEWS: New file.
23619
23620 * Makefile.in (DISTFILES): Include NEWS.
23621
23622 * Makefile.in (DISTFILES):
23623 Include install-sh, not install.sh.
23624
23625 * configure.in: Update to Autoconf v2 macro names.
23626
236271994-10-05 David J. MacKenzie <djm@gnu.org>
23628
23629 * Makefile.in: fix typo
23630
23631 * Makefile.in (prefix, exec_prefix):
23632 Let configure set them.
23633
236341994-09-28 David J. MacKenzie <djm@gnu.org>
23635
23636 * Makefile.in: Set datadir to $(prefix)/share.
23637
236381994-09-15 Richard Stallman <rms@gnu.org>
23639
23640 * src/bison.s1:
23641 Update copyright notice and GPL version.
23642
236431994-09-15 Richard Stallman <rms@gnu.org>
23644
23645 * bison.simple:
23646 Update copyright notice and GPL version.
23647
236481994-07-12 Richard Stallman <rms@gnu.org>
23649
23650 * src/reduce.c, src/reader.c:
23651 entered into RCS
23652
236531994-05-05 David J. MacKenzie <djm@gnu.org>
23654
23655 * Makefile.in: entered into RCS
23656
236571994-03-26 Richard Stallman <rms@gnu.org>
23658
23659 * src/bison.s1: entered into RCS
23660
236611994-03-26 Richard Stallman <rms@gnu.org>
23662
23663 * bison.simple: entered into RCS
23664
236651994-03-25 Richard Stallman <rms@gnu.org>
23666
23667 * src/main.c: entered into RCS
23668
236691994-03-24 Richard Stallman <rms@gnu.org>
23670
23671 * src/conflicts.c: entered into RCS
23672
236731994-01-02 Richard Stallman <rms@gnu.org>
23674
23675 * Makefile.in: *** empty log message ***
23676
236771993-11-21 Richard Stallman <rms@gnu.org>
23678
23679 * src/bison.s1: *** empty log message ***
23680
236811993-11-21 Richard Stallman <rms@gnu.org>
23682
23683 * doc/bison.texinfo: entered into RCS
23684
23685 * doc/bison.texinfo: *** empty log message ***
23686
236871993-11-21 Richard Stallman <rms@gnu.org>
23688
23689 * bison.simple: *** empty log message ***
23690
236911993-10-25 David J. MacKenzie <djm@gnu.org>
23692
23693 * doc/bison.texinfo: *** empty log message ***
23694
236951993-10-19 Richard Stallman <rms@gnu.org>
23696
23697 * src/bison.s1: *** empty log message ***
23698
236991993-10-19 Richard Stallman <rms@gnu.org>
23700
23701 * bison.simple: *** empty log message ***
23702
237031993-10-14 Richard Stallman <rms@gnu.org>
23704
23705 * src/bison.s1: *** empty log message ***
23706
237071993-10-14 Richard Stallman <rms@gnu.org>
23708
23709 * bison.simple: *** empty log message ***
23710
237111993-09-14 David J. MacKenzie <djm@gnu.org>
23712
23713 * doc/bison.texinfo: *** empty log message ***
23714
237151993-09-13 Noah Friedman <friedman@gnu.org>
23716
23717 * Makefile.in: *** empty log message ***
23718
237191993-09-10 Richard Stallman <rms@gnu.org>
23720
23721 * src/conflicts.c: *** empty log message ***
23722
23723 * src/system.h: entered into RCS
23724
237251993-09-10 Richard Stallman <rms@gnu.org>
23726
23727 * doc/bison.1: entered into RCS
23728
237291993-09-06 Noah Friedman <friedman@gnu.org>
23730
23731 * src/version.c: entered into RCS
23732
237331993-09-06 Noah Friedman <friedman@gnu.org>
23734
23735 * Makefile.in: *** empty log message ***
23736
237371993-07-30 David J. MacKenzie <djm@gnu.org>
23738
23739 * Makefile.in: *** empty log message ***
23740
237411993-07-24 Richard Stallman <rms@gnu.org>
23742
23743 * src/bison.s1: *** empty log message ***
23744
237451993-07-24 Richard Stallman <rms@gnu.org>
23746
23747 * bison.simple: *** empty log message ***
23748
237491993-07-08 David J. MacKenzie <djm@gnu.org>
23750
23751 * Makefile.in: *** empty log message ***
23752
237531993-07-04 Richard Stallman <rms@gnu.org>
23754
23755 * src/bison.s1: *** empty log message ***
23756
237571993-07-04 Richard Stallman <rms@gnu.org>
23758
23759 * bison.simple: *** empty log message ***
23760
237611993-06-26 David J. MacKenzie <djm@gnu.org>
23762
23763 * src/getargs.c: entered into RCS
23764
237651993-06-26 David J. MacKenzie <djm@gnu.org>
23766
23767 * doc/bison.texinfo: *** empty log message ***
23768
23769 * doc/bison.1: New file.
23770
237711993-06-25 Richard Stallman <rms@gnu.org>
23772
23773 * src/getargs.c: New file.
23774
237751993-06-16 Richard Stallman <rms@gnu.org>
23776
23777 * src/bison.s1: *** empty log message ***
23778
237791993-06-16 Richard Stallman <rms@gnu.org>
23780
23781 * bison.simple: *** empty log message ***
23782
237831993-06-03 Richard Stallman <rms@gnu.org>
23784
23785 * src/bison.s1: New file.
23786
237871993-06-03 Richard Stallman <rms@gnu.org>
23788
23789 * doc/bison.texinfo: *** empty log message ***
23790
237911993-06-03 Richard Stallman <rms@gnu.org>
23792
23793 * bison.simple: New file.
23794
237951993-05-19 Richard Stallman <rms@gnu.org>
23796
23797 * doc/bison.texinfo: New file.
23798
237991993-05-07 Noah Friedman <friedman@gnu.org>
23800
23801 * Makefile.in: *** empty log message ***
23802
238031993-04-28 Noah Friedman <friedman@gnu.org>
23804
23805 * src/reader.c: *** empty log message ***
23806
238071993-04-23 Noah Friedman <friedman@gnu.org>
23808
23809 * src/alloc.h: entered into RCS
23810
238111993-04-20 David J. MacKenzie <djm@gnu.org>
23812
23813 * src/version.c: *** empty log message ***
23814
23815 * src/files.c, src/allocate.c:
23816 entered into RCS
23817
23818 * src/reader.c: *** empty log message ***
23819
23820 * src/lex.c: entered into RCS
23821
23822 * src/conflicts.c: New file.
23823
23824 * src/symtab.c: entered into RCS
23825
23826 * src/alloc.h: New file.
23827
23828 * src/LR0.c: entered into RCS
23829
238301993-04-18 Noah Friedman <friedman@gnu.org>
23831
23832 * src/reader.c: New file.
23833
23834 * src/version.c: *** empty log message ***
23835
238361993-04-18 Noah Friedman <friedman@gnu.org>
23837
23838 * Makefile.in: *** empty log message ***
23839
238401993-04-17 Noah Friedman <friedman@gnu.org>
23841
23842 * Makefile.in: *** empty log message ***
23843
238441993-04-15 Richard Stallman <rms@gnu.org>
23845
23846 * src/main.c, src/files.c:
23847 New file.
23848
238491993-04-15 Noah Friedman <friedman@gnu.org>
23850
23851 * configure.in: entered into RCS
23852
23853 * configure.in: *** empty log message ***
23854
23855 * configure.in: New file.
23856
238571993-04-14 Richard Stallman <rms@gnu.org>
23858
23859 * Makefile.in: New file.
23860
238611993-04-13 Richard Stallman <rms@gnu.org>
23862
23863 * src/version.c: New file.
23864
238651993-03-25 Richard Stallman <rms@gnu.org>
23866
23867 * src/output.c: entered into RCS
23868
238691992-09-25 Richard Stallman <rms@gnu.org>
23870
23871 * configure.bat: entered into RCS
23872
238731992-06-22 Richard Stallman <rms@gnu.org>
23874
23875 * src/vmsgetargs.c: entered into RCS
23876
238771992-06-22 Richard Stallman <rms@gnu.org>
23878
23879 * doc/bison.rnh: entered into RCS
23880
238811992-04-20 David J. MacKenzie <djm@gnu.org>
23882
23883 * README: entered into RCS
23884
238851992-01-22 Richard Stallman <rms@gnu.org>
23886
23887 * src/machine.h: entered into RCS
23888
238891991-12-21 Richard Stallman <rms@gnu.org>
23890
23891 * src/lalr.c, src/closure.c:
23892 entered into RCS
23893
238941991-12-20 Richard Stallman <rms@gnu.org>
23895
23896 * src/state.h: entered into RCS
23897
238981991-12-18 Richard Stallman <rms@gnu.org>
23899
23900 * src/print.c, src/nullable.c, src/derives.c:
23901 entered into RCS
23902
239031991-11-03 David J. MacKenzie <djm@gnu.org>
23904
23905 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
23906 entered into RCS
23907
239081988-09-09 Richard Stallman <rms@gnu.org>
23909
23910 * src/bison.hairy: entered into RCS
23911
239121987-12-16 Richard Stallman <rms@gnu.org>
23913
23914 * REFERENCES: entered into RCS
dc546b0f 23915
f294a2c2 23916
04098407 23917 -----
f294a2c2 23918
ea0a7676
JD
23919 Copyright (C) 1987-1988, 1991-2011 Free Software Foundation,
23920 Inc.
f294a2c2 23921
04098407
PE
23922 Copying and distribution of this file, with or without
23923 modification, are permitted provided the copyright notice and this
23924 notice are preserved.