]> git.saurik.com Git - bison.git/blame - ChangeLog
doc: clean up terminology for mysterious conflicts.
[bison.git] / ChangeLog
CommitLineData
5da0355a
JD
12011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
2
3 doc: clean up terminology for mysterious conflicts.
4 * doc/bison.texinfo (Mystery Conflicts): Rename node to...
5 (Mysterious Conflicts): ... this, which is already the section
6 title and the name used in the index. Update all cross-references
7 to this node. Also, don't imply that R/R conflicts are the only
8 kind of mysterious conflict.
9
d815ec4a
JD
102011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
11
12 lr.default-reductions: rename "all" value to "full".
13 States that shift the error token do not have default reductions,
14 and GLR disables some default reductions, so "all" was a misnomer.
15 * doc/bison.texinfo (%define Summary): Update.
16 (Default Reductions): Update.
17 * src/print.c (print_reductions): Update.
18 * src/reader.c (prepare_percent_define_front_end_variables):
19 Update.
20 * src/tables.c (action_row): Update.
21 * tests/input.at (%define enum variables): Update.
22 * tests/reduce.at (%define lr.default-reductions): Update.
23
6f04ee6c
JD
242011-03-06 Joel E. Denny <joeldenny@joeldenny.org>
25
26 doc: create a new Tuning LR section in the manual.
27 And clean up all other documentation of the features described
28 there.
29 * NEWS (2.5): Tweak wording of lr.type and parse.lac entries a
30 bit, update the cross-references to the manual, and point out that
31 LAC has caveats. Don't be so adamant that IELR+LAC=canonical LR.
32 That is, as the referenced section in the manual documents, LAC
33 does not fix infinite parsing loops on syntax errors.
34 * doc/bison.texinfo: Consistently drop the "(1)" suffix from LALR,
35 IELR, and LR in @cindex.
36 (%define Summary): Condense the entries for lr.default-reductions,
37 lr.keep-unreachable-states, lr.type, and parse.lac into brief
38 summaries, and cross-reference the appropriate subsections of
39 Tuning LR. For parse.lac, mention that it's only implemented for
40 deterministic parsers in C.
41 (Error Reporting): When mentioning %error-verbose, mention LAC,
42 and add cross-reference to the LAC section.
43 (Tuning LR): New section with an extended version of the
44 documentation removed from %define Summary. Change all
45 cross-references in the manual to point here instead of there.
46 (Calc++ Parser): When mentioning %error-verbose, mention LAC, and
47 add cross-reference to the LAC section.
48 (Table of Symbols): In %error-verbose and YYERROR_VERBOSE entries,
49 add cross-references to Error Reporting.
50 (Glossary): Capitalize entry titles consistently. Add definitions
51 for "defaulted state" and "unreachable state". Expand IELR
52 acronym in IELR's entry.
53
71caec06
JD
542011-02-20 Joel E. Denny <joeldenny@joeldenny.org>
55
56 doc: add bibliography to manual.
57 * doc/bison.texinfo (Mystery Conflicts): Cross-reference
58 bibliography instead of citing publications directly.
59 (Generalized LR Parsing): Likewise.
60 (Bibliography): New section. Not all entries are cross-referenced
61 yet, but that will come in future patches.
62
77768165
JD
632011-02-19 Joel E. Denny <joeldenny@joeldenny.org>
64
65 java: test and document previous bug fix.
66 * NEWS (2.5): Document it.
67 * tests/java.at (_AT_DATA_JAVA_CALC_Y): To one of the yyerror
68 invocations, pass a location that spans multiple tokens. Change
69 yyerror to report all of a location rather than just the begin
70 position. Extend yylex and Position to count tokens on a line.
71 Remove getHashCode as it's unused. Update all expected output.
72
8db68289
BK
732011-02-19 Bernd Kiefer <kiefer@dfki.de> (tiny change)
74
75 java: fix location handling bug.
76 Reported at
77 <http://lists.gnu.org/archive/html/bison-patches/2011-02/msg00005.html>.
78 * data/lalr1.java (YYParser::yylloc): For non-empty RHS, fix
79 reversed access to location stack.
80 * THANKS (Bernd Kiefer): Add.
81
f3103c5b
AD
822010-05-11 Akim Demaille <demaille@gostai.com>
83
84 doc: please Emacs.
85 * doc/bison.texinfo (Local Variables): Move this after the
86 LocalWords, since the latter are looked for in the whole document,
87 while the former are looked for only at its end.
88 Require american spell checking.
89
406dec82
JD
902011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
91
92 doc: clean up new subsections in manual.
93 * doc/bison.texinfo (%define Summary): Reword so it reads well as
94 a separate section. For example, add an intro, and move most of
95 the text outside of the @deffn so it is not indented so far.
96 (%code Summary): Likewise.
97 (Table of Symbols): Reword %code entry to match the %code entry in
98 Decl Summary.
99
2f4518a1
JD
1002011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
101
102 doc: finish splitting apart the manual's Decl Summary section.
103 Suggested by Akim Demaille at
104 <http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00013.html>.
105 * doc/bison.texinfo (Decl Summary): Extract most of the %define
106 entry into...
107 (%define Summary): ... this new subsection, and update all
108 cross-references. For readability of the patches, rewriting of
109 the text so it makes sense as a separate subsection will come in a
110 later patch. Moreover, the majority of the text describing the
111 various new LR features should likely move to another new section
112 somewhere.
113
8e6f2266
JD
1142011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
115
116 doc: begin to split apart the manual's Decl Summary section.
117 Discussed in thread starting at
118 <http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00013.html>.
119 * doc/bison.texinfo (Decl Summary): Extract most of the %code
120 entry into...
121 (%code Summary): ... this new subsection, and update all
122 cross-references. For readability of the patches, rewriting of
123 the text so it makes sense as a separate subsection will come in a
124 later patch.
125
9913d6e4
JD
1262011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
127
128 doc: clean up naming of various Bison files.
129 The Bison manual's names for various files associated with a Bison
130 parser has devolved into inconsistency. This patch makes the
131 naming consistent for the most important files. First, it chooses
132 "grammar file" over "input file". The former appears to be more
133 traditional in the Bison manual, and Bison has other input
134 files (skeletons). Second, it chooses "parser implementation
135 file" over names like "parser file", "parser source file", "parser
136 source code file", and "parser output file". The new name makes
137 it clearer where Bison generates the main parser implementation,
138 and it is easily distinguishable from "parser header file".
139 * doc/bison.texinfo: Implement throughout.
140
840341d6
JD
1412011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
142
143 doc: give credit to more of Bison's developers.
144 * doc/bison.texinfo (Introduction): Don't imply that only Robert
145 Corbett, Richard Stallman, and Wilfred Hansen have contributed to
146 Bison. However, I don't have time to write a full history, so
147 just point readers to THANKS and ChangeLog.
148
d89e48b3
JD
1492011-02-06 Joel E. Denny <joeldenny@joeldenny.org>
150
151 doc: document experimental features better.
152 * doc/bison.texinfo (Introduction): Say that IELR(1) and canonical
153 LR(1) are experimental. Mention Java. Normally experimental
154 features probably shouldn't be mentioned in the introduction.
155 However, if Bison's limitations to LALR(1), C, and C++ are so
156 important that they should be mentioned here, then it's important
157 to point out that Bison is beginning to escape those limitations.
158 Moreover, these particular experimental features have very little
159 chance of being removed.
160 * src/getargs.c (usage): Say that IELR(1) and canonical LR(1) are
161 experimental.
162
eb8c66bb
JD
1632011-01-29 Joel E. Denny <joeldenny@joeldenny.org>
164
165 Do not allow identifiers that start with a dash.
166 This cleans up our previous fixes for a bug whereby Bison
167 discarded `.field' in `$-1.field'. The previous fixes were less
168 restrictive about where a dash could appear in an identifier, but
169 the restrictions were hard to explain. That bug was reported and
170 this final fix was originally suggested by Paul Hilfinger. This
171 also fixes a remaining bug reported by Paul Eggert whereby Bison
172 parses `%token ID -123' as `%token ID - 123' and handles `-' as an
173 identifier. Now, `-' cannot be an identifier. Discussed in
174 threads beginning at
175 <http://lists.gnu.org/archive/html/bug-bison/2011-01/msg00000.html>,
176 <http://lists.gnu.org/archive/html/bug-bison/2011-01/msg00004.html>.
177 * NEWS (2.5): Update entry describing the dash extension to
178 grammar symbol names. Also, move that entry before the named
179 references entry because the latter mentions the former.
180 * doc/bison.texinfo (Symbol): Update documentation for symbol
181 names. As suggested by Paul Eggert, mention the effect of periods
182 and dashes on named references.
183 (Decl Summary): Update documentation for unquoted %define values,
184 which, as a side effect, can no longer start with dashes either.
185 * src/scan-code.l (id): Implement.
186 * src/scan-gram.l (id): Implement.
187 * tests/actions.at (Exotic Dollars): Extend test group to exercise
188 bug reported by Paul Hilfinger.
189 * tests/input.at (Symbols): Update test group, and extend to
190 exercise bug reported by Paul Eggert.
191 * tests/named-refs.at (Stray symbols in brackets): Update test
192 group.
193 ($ or @ followed by . or -): Likewise.
194 * tests/regression.at (Invalid inputs): Likewise.
195
448dc38b
JD
1962011-01-24 Joel E. Denny <joeldenny@joeldenny.org>
197
198 * data/yacc.c: Fix last apostrophe warning from xgettext.
199
7e5ef706
PE
2002011-01-09 Paul Eggert <eggert@cs.ucla.edu>
201
202 Fix minor problems encountered by a fresh bootstrap.
203 * data/glr.c, data/yacc.c: Do not use apostrophes in '#' comments,
204 as they confuse xgettext, which tries to parse them as C character
205 constants in a preprocessor directive.
206 * data/yacc.c (yy_lac): Don't use printf %d format on *yyesp, as
207 that expression might not promote to int on some platforms.
208 * src/parse-gram.c, src/parse-gram.h: Regenerate.
209
8cbbf178
JD
2102011-01-09 Joel E. Denny <joeldenny@joeldenny.org>
211
212 Improve error messages for `$' or `@' followed by `.' or `-'.
213 Previously, for this special case of an invalid reference, the
214 usual "symbol not found in production:" was printed. However,
215 because the symbol name was parsed as the empty string, that
216 message was followed immediately by a newline instead of a symbol
217 name. In reality, this is a syntax error, so the reference is
218 invalid regardless of the symbols actually appearing in the
219 production. Discussed at
220 <http://lists.gnu.org/archive/html/bison-patches/2011-01/msg00012.html>.
221 * src/scan-code.l (parse_ref): Report the above case as a syntax
222 error. Other than that, continue to handle this case like any
223 other invalid reference that Bison manages to parse because
224 "possibly meant" messages can still be helpful to the user.
225 * tests/named-refs.at ($ or @ followed by . or -): New test group.
226
35430378
JD
2272011-01-08 Joel E. Denny <joeldenny@joeldenny.org>
228
229 doc: don't use @acronym.
230 Lately, many GNU packages are dropping it. See
231 <http://lists.gnu.org/archive/html/bison-patches/2011-01/msg00003.html>.
232 * doc/bison.texinfo: Remove all uses.
233
d236ad94
AR
2342011-01-05 Alex Rozenman <rozenman@gmail.com>
235
236 Do not allow identifiers that start with a negative number.
237 Reported by Paul Hilfinger as a side effect of named references
238 support at
239 <http://lists.gnu.org/archive/html/bug-bison/2011-01/msg00000.html>.
240 Suggested by Paul Eggert.
241 * src/scan-code.l ({letter}, {id}): Adjust lexical definitions.
242 * src/scan-gram.l ({letter}, {id}): Likewise.
243
9a4292e5
JD
2442011-01-03 Joel E. Denny <joeldenny@joeldenny.org>
245
246 * ChangeLog (2011-01-02): improve description.
247
17300e83
JD
2482011-01-03 Joel E. Denny <joeldenny@joeldenny.org>
249
250 maint: don't update copyright years in bootstrap.
251 * .x-update-copyright: Add entry for bootstrap.
252 * bootstrap: Remove 2011 from copyright years. The bootstrap
253 version we're currently using comes from an older version of
254 gnulib.
255 * bootstrap.conf (bootstrap_sync): Add comments explaining this
256 issue.
257
ea0a7676
JD
2582011-01-02 Joel E. Denny <joeldenny@joeldenny.org>
259
260 maint: run "make update-copyright".
261
f52e1e5e
JD
2622011-01-02 Joel E. Denny <joeldenny@joeldenny.org>
263
9a4292e5 264 maint: prepare to use year ranges in copyright notices.
f52e1e5e 265 * README (Copyright statements): New section explaining the range
9a4292e5
JD
266 notation. The GNU maintainers document requires this explanation:
267 <http://www.gnu.org/prep/maintain/maintain.html#Copyright-Notices>.
268 I copied our explanation from coreutils.
f52e1e5e
JD
269 * build-aux/update-b4-copyright: Revert 2010-06-17 changes that
270 disabled Bison's automated use of ranges.
271 * cfg.mk (update-copyright-env): Likewise.
272
210c1eef
JD
2732011-01-02 Joel E. Denny <joeldenny@joeldenny.org>
274
275 Correct my email address.
276 * ChangeLog: In all recent entries.
277 * THANKS (Joel E. Denny): Here.
278
2792010-12-19 Joel E. Denny <joeldenny@joeldenny.org>
6ee881f6
JD
280
281 doc: cleanup.
282 * NEWS (2.5): Try to sort entries according to how interesting
283 users might find them.
284
210c1eef 2852010-12-19 Joel E. Denny <joeldenny@joeldenny.org>
3b1977ea
JD
286
287 doc: cleanup.
288 * NEWS (2.5): Make some minor improvements to wording, and format
289 entries more consistently.
290 * doc/bison.texinfo (Language and Grammar): Point out that IELR
291 and canonical LR are experimental features.
292 (Decl Summary): In list of %define variables, make wording more
293 consistent. Improve discussion of using LALR for GLR.
294
210c1eef 2952010-12-19 Joel E. Denny <joeldenny@joeldenny.org>
4c38b19e
JD
296
297 parse.lac: document.
298 * NEWS (2.5): Add entry for LAC, and mention LAC in entry for
299 other corrections to verbose syntax error messages.
300 * doc/bison.texinfo (Decl Summary): Rewrite entries for
301 lr.default-reductions and lr.type to be clearer, to mention
302 %nonassoc's effect on canonical LR, and to mention LAC. Add entry
303 for parse.lac.
304 (Glossary): Add entry for LAC.
305
210c1eef 3062010-12-11 Joel E. Denny <joeldenny@joeldenny.org>
723fe7d1
JD
307
308 parse.lac: implement exploratory stack reallocations.
309 * data/yacc.c: Rename %define variable parse.lac.es-capacity to
310 parse.lac.es-capacity-initial. Accept parse.lac.memory-trace
311 with values of "failures" (default) or "full".
312 (b4_declare_parser_state_variables): Add yyesa, yyes, and
313 yyes_capacity variables.
314 (YYSTACK_USE_ALLOCA): Ignore it if LAC requested.
315 (YYSTACK_ALLOC, YYSTACK_FREE, YYSTACK_ALLOC_MAXIMUM): Define if
316 LAC requested.
317 (YYCOPY_NEEDED): New cpp macro.
318 (YYCOPY): Define if LAC requested.
319 (yy_lac_stack_realloc): New function implementing stack
320 reallocations. Use YYMAXDEPTH for maximum stack size given that
321 the stack should never need to grow larger than the main state
322 stack needs to grow without LAC.
323 (YY_LAC_ESTABLISH): Update yy_lac invocation.
324 (yy_lac): Add arguments for exploratory stack memory data
325 recorded in the main parser. Invoke yy_lac_stack_realloc when
326 reallocation is necessary.
327 (yysyntax_error): Add the same new arguments and pass them to
328 yy_lac.
329 (yypstate_delete): Free yyes if necessary.
330 (yyesa, yyes, yyes_capacity): #define these to yypstate members
331 in the case of push parsing.
332 (yyparse, yypush_parse): Initialize yyes and yyes_capacity.
333 Update yysyntax_error invocations. At yyreturn, free yyes if
334 necessary.
335 * src/parse-gram.y: %define parse.lac full.
336 * tests/input.at (LAC: errors for %define): Extend for
337 parse.lac-memory-trace.
338 * tests/regression.at (LAC: Exploratory stack): Extend to check
339 that stack reallocs happen when expected.
340 (LAC: Memory exhaustion): Update to use YYMAXDEPTH and
341 parse.lac.es-capacity-initial.
342
210c1eef 3432010-12-11 Joel E. Denny <joeldenny@joeldenny.org>
ea13bea8
JD
344
345 parse.lac: implement as %define variable.
346 LAC = lookahead correction. See discussion at
347 <http://lists.gnu.org/archive/html/bison-patches/2009-09/msg00034.html>.
348 However, one point there must be corrected: because of %nonassoc,
349 LAC is *not* always redundant for lr.type=canonical-lr.
350 * data/yacc.c: Accept values of "none" (default) or "full" for
351 parse.lac. Accept %define parse.lac.es-capacity to specify
352 capacity of LAC's temporary exploratory stack. It defaults to 20
353 and, for now, will not grow dynamically.
354 (b4_lac_flag, b4_lac_if): New m4 macros. Evaluate as true for
355 parse.lac!=none.
356 (YYBACKUP): Invoke YY_LAC_DISCARD.
357 (YY_LAC_ESTABLISH, YY_LAC_DISCARD): New cpp macros that invoke
358 yy_lac and track when it needs to be invoked
359 (yy_lac): New function that, given the current stack, determines
360 whether a token can eventually be shifted. Return status mimics
361 yyparse return status.
362 (yysyntax_error): Change yystate argument to yyssp so stack top
363 can be passed to yy_lac. If LAC is requested, build expected
364 token list by invoking yy_lac for every token instead of just
365 checking the current state for lookaheads. Return 2 if yy_lac
366 exhausts memory.
367 (yyparse, yypush_parse): Use local variable yy_lac_established and
368 cpp macros YY_LAC_ESTABLISH and YY_LAC_DISCARD to implement LAC.
369 Update yysyntax_error invocation. Add yyexhaustedlab code if LAC
370 is requested.
371 * tests/conflicts.at (%nonassoc and eof): Extend to check the
372 effect of each of -Dlr.type=canonical-lr and -Dparse.lac=full.
373 (%error-verbose and consistent errors): Likewise.
374 (LAC: %nonassoc requires splitting canonical LR states): New test
375 group demonstrating how LAC can fix canonical LR.
376 * tests/input.at (LAC: Errors for %define): New test group.
377 * tests/regression.at (LAC: Exploratory stack): New test group.
378 (LAC: Memory exhaustion): New test group.
379
210c1eef 3802010-11-21 Joel E. Denny <joeldenny@joeldenny.org>
dcd39f1d
JD
381
382 build: use gnulib's new bootstrap_sync option.
383 Now, whenever we update bison's copy of gnulib, bootstrap will
384 update itself the next time it's run.
385 * bootstrap: Copy from latest gnulib for bootstrap_sync support.
386 * bootstrap.conf (bootstrap_sync): Set to true.
387 * gnulib: Update to latest so bootstrap is in sync now.
388
210c1eef 3892010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
3b837882
JD
390
391 yysyntax_error: adjust prior fixes for branch-2.5's lalr1.cc.
392 On master, there is no yychar in lalr1.cc, but there is on
393 branch-2.5, and the prior cherry-pick of "Fix handling of yychar
394 manipulation in user semantic actions" wasn't adjusted for that
395 difference.
396 * data/lalr1.cc (yy::parser::parse): Translate yychar before
397 every use of yytoken, and add comments explaining this approach.
398 * tests/conflicts.at (%error-verbose and consistent errors):
399 Extend to test yychar manipulation with lalr1.cc.
400
210c1eef 4012010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
095a1d11
JD
402
403 yysyntax_error: fix for consistent error with lookahead.
404 * NEWS (2.5): Document.
405 * data/yacc.c (yysyntax_error): In a verbose syntax error
406 message while in a consistent state with a default action (which
407 must be an error action given that yysyntax_error is being
408 invoked), continue to drop the expected token list, but don't
409 drop the unexpected token unless there actually is no lookahead.
410 Moreover, handle that internally instead of returning 1 to tell
411 the caller to do it. With that meaning of 1 gone, renumber
412 return codes more usefully.
413 (yyparse, yypush_parse): Update yysyntax_error usage. Most
414 importantly, set yytoken to YYEMPTY when there's no lookahead.
415 * data/glr.c (yyreportSyntaxError): As in yacc.c, don't drop the
416 unexpected token unless there actually is no lookahead.
417 * data/lalr1.cc (yy::parser::parse): If there's no lookahead,
418 set yytoken to yyempty_ before invoking yysyntax_error_.
419 (yy::parser::yysyntax_error_): Again, don't drop the unexpected
420 token unless there actually is no lookahead.
421 * data/lalr1.java (YYParser::parse): If there's no lookahead,
422 set yytoken to yyempty_ before invoking yysyntax_error.
423 (YYParser::yysyntax_error): Again, don't drop the unexpected
424 token unless there actually is no lookahead.
425 * tests/conflicts.at (%error-verbose and consistent
426 errors): Extend test group to further reveal how the previous
427 use of the simple "syntax error" message was too general. Test
428 yacc.c, glr.c, lalr1.cc, and lalr1.java. No longer an expected
429 failure.
430 * tests/java.at (AT_JAVA_COMPILE, AT_JAVA_PARSER_CHECK): Move
431 to...
432 * tests/local.at: ... here.
433 (_AT_BISON_OPTION_PUSHDEFS): Push AT_SKEL_JAVA_IF definition.
434 (AT_BISON_OPTION_POPDEFS): Pop it.
435 (AT_FULL_COMPILE): Extend to handle Java.
436
210c1eef 4372010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
678094a2
JD
438
439 yysyntax_error: more preparation for readability of next patch.
440 There are no behavioral changes here.
441 * data/glr.c (yyreportSyntaxError): Reorganize.
442 * data/lalr1.cc (yy::parser::yysyntax_error_): Reorganize.
443 * tests/conflicts.at (%error-verbose and consistent errors):
444 Reorganize.
445
210c1eef 4462010-11-07 Joel E. Denny <joeldenny@joeldenny.org>
f953cb20
JD
447
448 yysyntax_error: prepare for readability of next patches.
449 These are purely whitespace changes that result in ugly code
450 but that make the next couple of patches much easier to read.
451 * data/glr.c (yyreportSyntaxError): Reindent.
452 * data/lalr1.cc (yy::parser::yysyntax_error_): Reindent.
453 * data/lalr1.java (YYParser::yysyntax_error): Reindent.
454 * data/yacc.c (yysyntax_error): Reindent.
455
0e0f066b
JD
4562010-10-31 Joel E. Denny <joeldenny@joeldenny.org>
457
458 yysyntax_error: improve invocation readability.
459 * data/yacc.c (yyparse, yypush_parse): For yysyntax_error
460 invocation, get rid of the while loop, which is misleading
461 because there are really at most two iterations.
462
5f1485d8
JD
4632010-10-31 Joel E. Denny <joeldenny@joeldenny.org>
464
465 * ChangeLog: Correct some errors in previous entries.
466
2f3fd8f9
JD
4672010-10-17 Joel E. Denny <joeldenny@joeldenny.org>
468
469 maint: re-anchor all .gitignore entries.
470 * bootstrap: Copy from gnulib's latest for the fix to
471 automatically anchor entries it constructs.
472 * gnulib: Update to latest just so it has the same bootstrap.
473 * .gitignore, build-aux/.gitignore, doc/.gitignore:
474 * lib/.gitignore, m4/.gitignore, po/.gitignore:
475 * runtime-po/.gitignore: Re-anchor all entries.
476
86996fca
PE
4772010-10-08 Paul Eggert <eggert@cs.ucla.edu>
478
ea6046b9
PE
479 Fix portability problem on OpenBSD 4.7.
480
481 Jim Meyering reported this in
482 <http://lists.gnu.org/archive/html/bug-bison/2010-10/msg00007.html>.
483 * data/yacc.c: Use EXIT_SUCCESS as a witness for stdlib.h,
484 not _STDLIB_H. EXIT_SUCCESS has been defined by the standard
485 for quite some time.
486 * src/parse-gram.c, src/parse-gram.h: Regenerate.
487 * tests/regression.at: Tamper with the renamed witness.
488
86996fca
PE
489 Adjust to recent changes to gnulib bootstrap.
490
491 * .cvsignore, build-aux/.cvsignore, doc/.cvsignore, etc/.cvsignore:
492 * examples/calc++/.cvsignore, lib/.cvsignore, m4/.cvsignore:
493 * po/.cvsignore, runtime-po/.cvsignore, src/.cvsignore:
494 * tests/.cvsignore: Remove; I don't use CVS to maintain Bison
495 anymore and don't know of anybody else who does. If someone needs
496 these files, they can resurrect them.
497 * .gitignore, build-aux/.gitignore, doc/.gitignore, lib/.gitignore:
498 * m4/.gitignore, po/.gitignore, runtime-po/.gitignore:
499 Omit leading '/', since bootstrap omits it.
500 Adjust file names to match current contents better.
501 * bootstrap: Sync from gnulib: this contains the new gnulib_mk_hook
502 installed just for us.
503 * bootstrap.conf (excluded_files): Don't exclude codeset.m4,
504 glibc21.m4, inttypes_h.m4, size_max.m4, xsize.m4, as they are now
505 needed somehow. Don't have time to look into why.
506 (gnulib_modules): Change malloc to malloc-gnu. Do we really assume
507 the GNU malloc behavior, where malloc (0) != NULL unless we're
508 out of storage? If not, we can omit malloc-gnu; but for now I left
509 it in to be safe.
510 (vc_ignore): Remove.
511 * README-hacking: Renamed from HACKING, since gnulib bootstrap now
512 uses that convention.
513
7527c744
JD
5142010-08-05 Joel E. Denny <joeldenny@joeldenny.org>
515
516 Version 2.4.3.
517 * NEWS (2.4.3): Set date.
518
d034d520
JD
5192010-08-04 Joel E. Denny <joeldenny@joeldenny.org>
520
521 maint: add gettext version to release announcements.
522 Suggested by Paul Hilfinger at
523 <http://lists.gnu.org/archive/html/bison-patches/2010-07/msg00019.html>
524 <http://lists.gnu.org/archive/html/bison-patches/2010-08/msg00002.html>.
525 * cfg.mk (bootstrap-tools): Add gettext.
526
cf22447c
JD
5272010-08-04 Joel E. Denny <joeldenny@joeldenny.org>
528
529 doc: fix -W and %expect documentation some.
530 * NEWS (2.4.3): Mention that there are documentation fixes.
531 * doc/bison.texinfo (Expect Decl): Make it clear that %expect
532 turns conflicts into errors not warnings.
533 (Shift/Reduce): Likewise.
534 (Bison Options): Don't mention -Wsyntax. It doesn't exist.
535
4631c34f
JD
5362010-08-01 Joel E. Denny <joeldenny@joeldenny.org>
537
538 -Werror: fix for rules useless in parser after conflicts.
539 * NEWS (2.4.3): Document fix.
540 * src/complain.c (error_message): Extend to handle incomplete
541 error messages so warn and warn_at can be used in more cases.
542 * src/gram.c (grammar_rules_useless_report): Use warn_at so that
543 -Werror is always obeyed.
544 * src/reduce.c (reduce_print): Use warn so that the "warnings
545 being treated as errors" message is printed consistently before
546 the first warning message. This makes testing easier.
547 * tests/local.at (AT_BISON_WERROR_MSG): New macro.
548 (AT_BISON_CHECK_NO_XML): Extend to check -Werror and
549 --warnings=error when warnings appear in bison's stderr.
550
3e948170
JD
5512010-07-29 Joel E. Denny <joeldenny@joeldenny.org>
552
553 maint: enable gnits only at stable releases.
554 * configure.ac (AM_INIT_AUTOMAKE): Underscore or dash in a
555 version string should disable gnits. Explain in comments.
556
82df2d6d
JD
5572010-07-28 Joel E. Denny <joeldenny@joeldenny.org>
558
559 i18n: update.
560 * po/POTFILES.in: Add src/graphviz.c.
561
6e0ecb9a
JD
5622010-07-28 Joel E. Denny <joeldenny@joeldenny.org>
563
564 i18n: fix for gnulib.
565 * po/POTFILES.in: Add remaining gnulib files that have
566 translatable strings.
567
83e34842
JD
5682010-07-25 Joel E. Denny <joeldenny@joeldenny.org>
569
570 maint: use announce-gen's new --mail-headers.
571 * HACKING (Announce): Update instructions.
572 * cfg.mk (announcement_Cc_): Define.
573 * configure.ac (AM_GNU_GETTEXT_VERSION): Update to 0.18 as
574 required by latest gnulib.
575 * gnulib: Update to latest.
576
0162a44c
JD
5772010-07-24 Joel E. Denny <joeldenny@joeldenny.org>
578
579 tests: handle Valgrind that complains about >&-.
580 * tests/output.at (AT_CHECK_OUTPUT): Extend to accept pre-tests.
581 (Output files: -dv >&-): Skip test group if running
582 maintainer-check-valgrind.
583
241ac701
AD
5842010-06-17 Paul Eggert <eggert@cs.ucla.edu>
585
586 Update from GFDL GFDL 1.2 to 1.3.
587 * doc/bison.texinfo: Update GFDL version number.
588 * doc/fdl.texi: Update to version 1.3, taken from:
589 http://www.gnu.org/licenses/fdl.texi
590
6e30ede8
PE
5912010-06-17 Paul Eggert <eggert@cs.ucla.edu>
592
593 Do not use date ranges in copyright notices.
594 See http://www.gnu.org/prep/maintain/maintain.html#Copyright-Notices
595
596 * HACKING, Makefile.am, NEWS, PACKAGING, README, README-alpha:
597 * TODO, bootstrap, bootstrap.conf:
598 * build-aux/update-b4-copyright, cfg.mk, configure.ac:
599 * data/README, data/bison.m4, data/c++-skel.m4, data/c++.m4:
600 * data/c-skel.m4, data/c.m4, data/glr.c, data/glr.cc:
601 * data/java-skel.m4, data/java.m4, data/lalr1.cc:
602 * data/lalr1.java, data/location.cc:
603 * data/xslt/bison.xsl:
604 * data/xslt/xml2dot.xsl, data/xslt/xml2text.xsl:
605 * data/xslt/xml2xhtml.xsl, data/yacc.c, djgpp/Makefile.maint:
606 * djgpp/README.in, djgpp/config.bat, djgpp/config.sed:
607 * djgpp/config.site, djgpp/config_h.sed, djgpp/djunpack.bat:
608 * djgpp/subpipe.c, djgpp/subpipe.h:
609 * djgpp/testsuite.sed, doc/bison.texinfo:
610 * doc/refcard.tex, etc/README, etc/bench.pl.in:
611 * examples/calc++/Makefile.am, examples/extexi:
612 * lib/abitset.c, lib/abitset.h:
613 * lib/bbitset.h, lib/bitset.c, lib/bitset.h:
614 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
615 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
616 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
617 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
618 * lib/libiberty.h, lib/main.c, lib/timevar.c:
619 * lib/timevar.def, lib/timevar.h, lib/vbitset.c:
620 * lib/vbitset.h, lib/yyerror.c, m4/bison-i18n.m4:
621 * m4/c-working.m4, m4/cxx.m4, m4/subpipe.m4, m4/timevar.m4:
622 * src/AnnotationList.c, src/AnnotationList.h:
623 * src/InadequacyList.c, src/InadequacyList.h, src/LR0.c:
624 * src/LR0.h, src/Sbitset.c, src/Sbitset.h, src/assoc.c:
625 * src/assoc.h, src/closure.c, src/closure.h, src/complain.c:
626 * src/complain.h, src/conflicts.c, src/conflicts.h:
627 * src/derives.c, src/derives.h, src/files.c, src/files.h:
628 * src/flex-scanner.h, src/getargs.c, src/getargs.h:
629 * src/gram.c, src/gram.h, src/graphviz.c, src/ielr.c:
630 * src/ielr.h, src/lalr.c, src/lalr.h:
631 * src/location.c, src/location.h, src/main.c:
632 * src/muscle-tab.c, src/muscle-tab.h, src/named-ref.c:
633 * src/named-ref.h, src/nullable.c, src/nullable.h:
634 * src/output.c, src/output.h, src/parse-gram.y:
635 * src/print-xml.c, src/print-xml.h, src/print.c, src/print.h:
636 * src/print_graph.c, src/print_graph.h, src/reader.c:
637 * src/reader.h, src/reduce.c, src/reduce.h, src/relation.c:
638 * src/relation.h, src/scan-code.h, src/scan-code.l:
639 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
640 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
641 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
642 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
643 * tests/actions.at, tests/atlocal.in, tests/c++.at:
644 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
645 * tests/existing.at, tests/glr-regression.at:
646 * tests/headers.at, tests/input.at, tests/java.at:
647 * tests/local.at, tests/named-refs.at:
648 * tests/output.at, tests/push.at, tests/reduce.at:
649 * tests/regression.at, tests/sets.at, tests/skeletons.at:
650 * tests/synclines.at, tests/testsuite.at, tests/torture.at:
651 * data/Makefile.am, data/location.cc, doc/Makefile.am, src/Makefile.am:
652 * tests/Makefile.am, lib/Makefile.am, examples/Makefile.am:
653 * etc/Makefile.am:
654 Don't use date ranges in copyright notices.
655
3d4a0cad
AD
6562010-05-11 Akim Demaille <demaille@gostai.com>
657
658 lalrl1.cc: give a chance to user defined YYLLOC_DEFAULT.
659 * data/lalr1.cc (YYLLOC_DEFAULT): Move its definition from the
660 header file to the implementation file, after the user %code
661 sections.
662 * NEWS (2.5): Document this.
663
e7bab2df
AD
6642010-05-07 Akim Demaille <demaille@gostai.com>
665
666 c++: use YYRHSLOC.
667 * data/lalr1.cc (YYRHSLOC): New.
668 (YYLLOC_DEFAULT): Use it.
669 * data/glr.cc: If location_type was user defined, do not include
670 location.hh, and do not produce location.hh and position.hh.
671 * tests/calc.at (YYLLOC_DEFAULT): Use YYRHSLOC.
672 Check that glr.cc supports user defined location_type.
673 * NEWS: Document this.
674
baacae49
AD
6752010-05-10 Akim Demaille <demaille@gostai.com>
676
677 doc: fix lalr1.cc documentation.
678 * doc/bison.texinfo (C++ Scanner Interface): Fix yylex signature.
679 (C++ Bison Interface): Fix lalr1.cc skeleton name.
680 (C++ Parser Interface): Fix semantic_type and location_type names.
681 Document yy::parser::token.
682 Reported by Jerry Quinn.
683
95a2de56
AD
6842010-05-04 Akim Demaille <demaille@gostai.com>
685
686 lalr1.cc: don't generate location.hh when location_type is defined
687 * data/bison.m4 (b4_percent_define_use): New.
688 (b4_percent_define_get): Use it.
689 Accept a default value.
690 * data/c++.m4: Do not provide a default value for the %define
691 variable location_type, rather, use b4_percent_define_get with a
692 default argument where its value is needed.
693 * data/lalr1.cc: Do not load location.cc (which outputs both
694 location.hh and position.hh) if the user defined location_type.
695 Do not include location.hh either.
696 * data/glr.cc: Likewise.
697
0f404a0a
AD
6982010-05-04 Akim Demaille <demaille@gostai.com>
699
700 lalr1.cc: location_type: make sure we don't depend on loc.(begin|end).
701 * tests/calc.at (Span): Instead of begin/end, as in the built-in
702 location class, use first and last.
703 Define YYLLOC_DEFAULT to adjust to these changes.
704 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Adjust to the
705 location_type changes.
706
bdc360ae
AD
7072010-05-04 Akim Demaille <demaille@gostai.com>
708
709 tests: enhance AT_SYNCLINES_COMPILE.
710 * tests/synclines.at (AT_TEST_SYNCLINE): Move GCC 4.5 protection
711 into...
712 (AT_SYNCLINES_COMPILE): here.
713 Add more distcc patterns.
714
ca7a59e8
JD
7152010-05-01 Joel E. Denny <joeldenny@joeldenny.org>
716
717 tests: fix maintainer-xml-check.
718 * data/xslt/xml2dot.xsl (xsl:template match="bison-xml-report"):
719 Update output to include comments now produced by --graph.
720 (xsl:template match="automaton"): As for --graph, name the
721 digraph after the grammar file.
722 * src/print-xml.c (escape_bufs): Enlarge array.
723 (print_xml): Add bug-report and url attributes to
724 bison-xml-report element.
725
ad6f84e5
JD
7262010-05-01 Joel E. Denny <joeldenny@joeldenny.org>
727
728 In DOT output, convert from "/*" comments to "//" comments.
729 This handles the possibility that a "*/" might appear in
730 variable portions of those comments at some point in the future.
731 * src/graphviz.c (start_graph): Implement.
732
43fdc9fd
JD
7332010-04-30 Joel E. Denny <joeldenny@joeldenny.org>
734
735 Document that undefined %prec identifier warnings will remain.
736 * NEWS (2.4.3): Here.
737 (2.4.2): Here.
738
e02df72c
JD
7392010-04-30 Joel E. Denny <joeldenny@joeldenny.org>
740
741 Revert 2009-12-30 change for undefined %prec token complaints.
742 That is, keep them as warnings because that should be sufficient
743 to satisfy POSIX without creating backward compatibility issues.
744 Suggested by Richard Stallman at
745 <http://lists.gnu.org/archive/html/bison-patches/2010-03/msg00033.html>.
746 * NEWS (2.5): Remove mention of complaint.
21279295
JD
747 * src/reader.c (grammar_rule_check): Convert complaint back to
748 warning.
e02df72c
JD
749 * tests/input.at (%prec's token must be defined): Update.
750
ba3063f6
JD
7512010-04-25 Joel E. Denny <joeldenny@joeldenny.org>
752
753 build: don't require src/bison during bootstrap.
754 Suggested by Eric Blake at
755 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00003.html>.
756 * bootstrap.conf (bootstrap_epilogue): New function to make sure
757 src/parse-gram.[ch] are stamped later than src/parse-gram.y.
758
e0fda26c
JD
7592010-04-25 Joel E. Denny <joeldenny@joeldenny.org>
760
761 i18n: fix untranslatable string.
762 Reported by Goran Uddeborg at
763 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00000.html>.
764 * src/muscle-tab.c (muscle_percent_define_insert): Here.
765
ecbca7db
AD
7662010-04-13 Akim Demaille <demaille@gostai.com>
767
768 tests: calc: minor refactoring.
769 * tests/calc.at (_AT_DATA_CALC_Y): Simplify yylex.
770
ed228e60
AD
7712010-04-13 Akim Demaille <demaille@gostai.com>
772
773 tests: calc: simplify location management.
774 * tests/local.at (AT_LOC_PUSHDEF, AT_LOC_POPDEF): New.
775 (_AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS): Use them to
776 define the appropriate AT_LOC accessors.
777 * tests/calc.at: Use AT_LOC accessors.
778
cacfdef7
AD
7792010-04-13 Akim Demaille <demaille@gostai.com>
780
781 test location_type.
782 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS):
783 Define AT_LOCATION_TYPE_IF.
784 (_AT_BISON_OPTION_POPDEFS): Undefine AT_LOCATION_TYPE_IF.
785 * tests/calc.at (_AT_DATA_CALC_Y): When %define location_type is
786 used, provide a user location type and use it.
787 (Simple LALR1 C++ Calculator): Add a test case for location_type.
788
2f61c4a2
AD
7892010-04-13 Akim Demaille <demaille@gostai.com>
790
791 tests: check fclose's return value.
792 * tests/calc.at (_AT_DATA_CALC_Y): Check fclose's return status.
793
16d9244d
AD
7942010-04-13 Akim Demaille <demaille@gostai.com>
795
796 tests: don't depend on the actual location type.
797 * tests/calc.at: Use yy::parser::location_type rather than
798 yy::location, since the former is always right, and might point to
799 another type than the latter.
800
3e4a253b
AD
8012010-04-13 Akim Demaille <demaille@gostai.com>
802
803 formatting changes.
804 * tests/calc.at: Formatting changes.
805
df5df58d
AD
8062010-04-13 Akim Demaille <demaille@gostai.com>
807
808 lalr1.cc: remove useless forward declaration.
809 * data/lalr1.cc: Include location.hh before stack.hh.
810 Remove the useless forward declarations of position and location.
811 Reported by Chris Morley.
812 * data/glr.cc: Likewise.
813
88bb35d6
JD
8142010-04-11 Joel E. Denny <joeldenny@joeldenny.org>
815
816 * NEWS (2.4.3): Mention fix for Sun Studio C++.
817
585ef2eb
JD
8182010-04-10 Joel E. Denny <joeldenny@joeldenny.org>
819
820 tests: fix for newer Sun Studio C++.
821 Reported by Dagobert Michelsen at
822 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00023.html>.
823 * THANKS (Dagobert Michelsen): Add.
824 * configure.ac (AC_PREREQ): Set to 2.64 so we get the latest
825 Autoconf macro for handling the restrict keyword.
826 * gnulib: Update to latest, which no longer overrides that macro
827 from Autoconf.
828
a005dbcb
JD
8292010-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
830
831 portability: fix pointer arithmetic to conform to C standard.
832 Reported by Tys Lefering at
833 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00035.html>.
834 This fix is already implemented in glr.c and does not apply to
835 lalr1.java.
836 * data/lalr1.cc (yy::parser::parse): Increase size of
837 yyerror_range and adjust subscripting so you don't have to
838 subtract one from the beginning of the array.
839 * data/yacc.c (b4_declare_parser_state_variables,
840 yyparse, yypush_parse): Likewise.
841
8a8b33e8
AD
8422010-04-05 Akim Demaille <demaille@gostai.com>
843
844 remove useless include.
845 * src/graphviz.h: Don't include stdbool.h.
846
a0279765
AD
8472010-04-05 Akim Demaille <demaille@gostai.com>
848
849 graph: sign the output file.
850 * src/graphviz.c (start_graph): Issue comments about Bison.
851 Suggested by Tys Lefering.
852
132247cd
JD
8532010-03-31 Joel E. Denny <jdenny@ces.clemson.edu>
854
855 portability: fix test suite for GCC 4.5's new #error message.
856 Reported by Tys Lefering at
857 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00030.html>.
858 * NEWS (2.4.3): Mention.
859 * tests/synclines.at (AT_TEST_SYNCLINE): Implement.
860
c0259969
AD
8612010-03-30 Akim Demaille <demaille@gostai.com>
862
863 fix comments.
864 * src/graphviz.h: Add missing license notice.
865 Document.
866
23761f42
AD
8672010-03-25 Akim Demaille <demaille@gostai.com>
868
869 tests: fix 250: parse.error=verbose overflow.
870 * tests/regression.at (parse.error=verbose overflow): Avoid the
871 double inclusion of stdlib.h as it triggers hard errors.
872
9097fda0
JD
8732010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
874
875 portability: fix for BSD make.
876 Reported by Johan van Selst at
877 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00016.html>.
878 * tests/Makefile.am ($(TESTSUITE)): Qualify package.m4 in
879 this dependency list as in package.m4's target rule.
880
7a9c3cb3
JD
8812010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
882
883 portability: fix spawning on at least FreeBSD 8 and FreeBSD 9.
884 Reported by Johan van Selst at
885 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00014.html>.
886 * NEWS (2.4.3): New.
887 * THANKS (Johan van Selst): Add.
888 * gnulib: Update to latest.
889
5a3c69f1
JD
8902010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
891
892 maint: update for changes to gnulib's announce-gen.
893 * HACKING (Announce): RELEASE_TYPE=major must now be written
894 RELEASE_TYPE=stable.
895
ea66d039
JD
8962010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
897
898 Version 2.4.2.
899 * NEWS (2.4.2): Set version and date. For the recent test suite
900 portability fixes, don't be so optimistic about their success
901 given the lack of feedback on the affected platforms.
902
c50befe6
JD
9032010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
904
905 tests: fix maintainer-xml-check for recent changes.
906 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Use
907 AT_BISON_CHECK_NO_XML rather than AT_BISON_CHECK because an
908 output file whose name conflicts with a previous output file
909 is now never generated.
910
47fa5747
JD
9112010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
912
913 portability: fix several issues with M4 subprocess.
914
915 M4's output pipe was not being drained upon fatal errors during
916 scan_skel. As a result, broken-pipe messages from M4 were seen
917 on at least AIX, HP-UX, Solaris, and RHEL4, and this caused a
918 failure in the test suite. The problem was that, on platforms
919 where the default disposition for SIGPIPE is ignore instead of
920 terminate, M4 sometimes saw fwrite fail with errno=EPIPE and
921 then reported it. However, there's some sort of race condition,
922 because the new test group occasionally succeeded.
923 Reported by Albert Chin at
924 <http://lists.gnu.org/archive/html/bug-bison/2010-02/msg00004.html>.
925
926 There were also problems with the test suite livelocking on
927 Tru64 5.1b. Reported by Didier Godefroy at
928 <http://lists.gnu.org/archive/html/bug-bison/2009-05/msg00005.html>.
929 Switching to create_pipe_bidi suggested by Akim Demaille.
930
931 To attempt to solve both of these problems, switch to gnulib's
932 create_pipe_bidi and register M4 process as a slave. Along the
933 way, clean up file name conflict handling, which was affected by
934 the broken-pipe problem before the switch.
935 * NEWS (2.4.2): Document.
936 * THANKS (Didier Godefroy): Add.
937 * bootstrap.conf (gnulib_modules): Add pipe.
938 * gnulib: Update to latest to make sure we have all the latest
939 fixes.
940 * lib/Makefile.am (libbison_a_SOURCES): Remove subpipe.h and
941 subpipe.c.
942 * po/POTFILES.in (lib/subpipe.c): Remove.
943 * src/files.c (compute_output_file_names): Update invocations
944 of output_file_name_check.
945 (output_file_name_check): In the case that the grammar file
946 would be overwritten, use complain instead of fatal, but replace
947 the output file name with /dev/null. Use the /dev/null solution
948 for the case of two conflicting output files as well because it
949 seems safer in case Bison one day tries to open both files at
950 the same time.
951 * src/files.h (output_file_name_check): Update prototype.
952 * src/output.c (output_skeleton): Use create_pipe_bidi and
953 wait_subprocess. Assert that scan_skel completely drains the
954 pipe.
955 * src/scan-skel.l (at_directive_perform): Update
956 output_file_name_check invocation.
957 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Check that the
958 grammar file actually isn't overwritten.
959 (Conflicting output files: -o foo.y): Update expected output.
960 * tests/skeletons.at (Fatal errors but M4 continues producing
961 output): New test group.
962
d67e37a7
JD
9632010-02-04 Joel E. Denny <jdenny@ces.clemson.edu>
964
965 Update POTFILES.
966 * HACKING (Release Procedure): Add reminder about keeping
967 POTFILES files up-to-date.
968 * po/POTFILES.in (src/muscle-tab.c, src/scan-skel.l): Add.
969
0ee1af2e
JD
9702010-02-01 Joel E. Denny <jdenny@clemson.edu>
971
972 Code cleanup.
973 * tests/atlocal.in (abs_top_srcdir): Remove shell variable,
974 which is already defined in atconfig.
975
2655c7cd
JD
9762010-01-21 Joel E. Denny <jdenny@clemson.edu>
977
978 * cfg.mk (gnulib_dir): Assume gnulib is a subdirectory.
979
8ebc7dca
JD
9802010-01-21 Joel E. Denny <jdenny@clemson.edu>
981
982 maint: automate PACKAGE_COPYRIGHT_YEAR update, and update it.
983 * HACKING (Release Procedure): Update notes on copyright years.
984 * Makefile.am (update-package-copyright-year): New target rule.
985 * build-aux/update-package-copyright-year: New file.
986 * cfg.mk (update-copyright): Add update-package-copyright-year
987 as a dependency.
988
f0a43dd1
JD
9892010-01-19 Joel E. Denny <jdenny@clemson.edu>
990
991 * bootstrap: Import improvements from latest gnulib.
992
e4ca7a85
JD
9932010-01-19 Joel E. Denny <jdenny@clemson.edu>
994
995 build: require Automake 1.11.1 to avoid a security flaw.
996 * HACKING (Release Procedure): Don't document Automake security
997 flaw here.
998 * configure.ac (AM_INIT_AUTOMAKE): Require 1.11.1, and explain
999 why here.
1000
8d830047
JD
10012010-01-19 Joel E. Denny <jdenny@clemson.edu>
1002
1003 gnulib: update to latest.
1004
e5926647
JD
10052010-01-19 Joel E. Denny <jdenny@clemson.edu>
1006
1007 ChangeLog (2006-09-15): add Odd Arild Olsen's role for push.c.
1008
5a2f6eb4
JD
10092010-01-15 Joel E. Denny <jdenny@clemson.edu>
1010
1011 Thank the developer of the initial push parser implementation.
1012 This unfortunate oversight is several years old.
1013 * THANKS (Odd Arild Olsen): Add.
1014
1c4ad777
JD
10152010-01-04 Joel E. Denny <jdenny@clemson.edu>
1016
1017 Fix some comments concerning LR(0) versus LALR(1).
1018
1019 Stop equating LR(0) with nondeterminism and LALR(1) with
1020 determinism. That is, if all states are consistent, then LR(0)
1021 tables are deterministic. On the other hand, LALR(1) tables
1022 might be nondeterministic before conflict resolution, and GLR
1023 permits LALR(1) tables to remain nondeterministic.
1024 * src/LR0.c, src/LR0.h: Here.
1025 * src/lalr.c, src/lalr.h: Here.
1026 * src/main.c (main): Here.
1027 * src/state.c, src/state.h: Here.
1028
1029 * src/ielr.h (ielr): In preconditions, expect LR(0) not LALR(1)
1030 parser tables.
1031
1462fcee
JD
10322010-01-04 Joel E. Denny <jdenny@clemson.edu>
1033
1034 maint: run "make update-copyright"
1035
510df951
JD
10362009-12-30 Joel E. Denny <jdenny@clemson.edu>
1037
1038 POSIX: complain if %prec's token was not defined.
1039 * NEWS (2.5): Document.
1040 * src/reader.c (grammar_rule_check): Convert warning to
1041 complaint.
1042 * tests/input.at (%prec's token must be defined): Update.
1043
2c203528
JD
10442009-12-30 Joel E. Denny <jdenny@clemson.edu>
1045
1046 POSIX: warn if %prec's token was not defined.
1047 Reported by Florian Krohm at
1048 <http://lists.gnu.org/archive/html/bug-bison/2009-12/msg00005.html>.
1049 * NEWS (2.4.2): Document.
1050 * src/reader.c (grammar_rule_check): Implement.
1051 (grammar_current_rule_prec_set): Add comments explaining that we
1052 here assume a %prec identifier is a token, but we still manage
1053 to support POSIX.
1054 * tests/input.at (%prec's token must be defined): New test
1055 group.
1056
a93cdd3d
JD
10572009-12-31 Joel E. Denny <jdenny@clemson.edu>
1058
1059 * HACKING (Release Procedure): Recommend a secure automake.
1060
bb57985c
AD
10612008-12-11 Akim Demaille <demaille@gostai.com>
1062
1063 Propagate i18n changes into glr.c.
1064 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
1065 building the error message format dynamically.
1066 * data/lalr1.java: Formatting changes.
1067
70afaf26
JD
10682009-12-22 Joel E. Denny <jdenny@clemson.edu>
1069
1070 Port small part of master's 11707b2b so future ports are easier.
1071 * data/lalr1.java (YYParser::yysyntax_error): Untabify.
1072
8200219a
AD
10732008-12-11 Akim Demaille <demaille@gostai.com>
1074
1075 Simplify the i18n of the error messages.
1076 * data/lalr1.cc: Comment changes.
1077
39f6a8d1
AD
10782008-11-11 Akim Demaille <demaille@gostai.com>
1079
1080 Prefer M4 to CPP.
1081 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
1082 YYERROR_VERBOSE.
1083
e657f369
AD
10842008-11-11 Akim Demaille <demaille@gostai.com>
1085
1086 Support i18n of the parse error messages.
1087 * TODO (lalr1.cc/I18n): Remove.
1088 * data/lalr1.cc (yysyntax_error_): Support the translation of the
1089 error messages, as done in yacc.c.
1090 Stay within the yy* pseudo namespace.
1091
1e05521d
JD
10922009-12-22 Joel E. Denny <jdenny@clemson.edu>
1093
1094 Port small part of master's 8901f32e so future ports are easier.
1095 * data/lalr1.cc (yy::parser::yysyntax_error_): Always add second
1096 argument, but name it in the function definition only when
1097 verbose error messages are enabled and it'll thus be used.
1098 (yy::parser::parse): Update use of yysyntax_error_.
1099
2728ac7e
JD
11002009-12-29 Joel E. Denny <jdenny@clemson.edu>
1101
1102 portability: `<' and `>' are not always defined on addresses.
1103 Specifically, don't sort objects by their memory addresses when
1104 they're not allocated in the same array or other object. Though
1105 I haven't found a test case where that fails on my platform, C
1106 says the behavior is undefined.
1107 * src/AnnotationList.c (AnnotationList__insertInto): Remove
1108 FIXME. Use new id field of InadequacyList nodes rather than
1109 their memory addresses when sorting.
1110 (AnnotationList__compute_from_inadequacies): Add
1111 inadequacy_list_node_count argument to pass to
1112 InadequacyList__new_conflict.
1113 * src/AnnotationList.h
1114 (AnnotationList__compute_from_inadequacies): Update prototype
1115 and documentation for new argument.
1116 * src/InadequacyList.c (InadequacyList__new_conflict): Add
1117 node_count argument and use it to assign a unique ID.
1118 * src/InadequacyList.h (InadequacyListNodeCount): New typedef.
1119 (InadequacyList): Add id field.
1120 (InadequacyList__new_conflict): Update prototype and
1121 documentation for new argument.
1122 * src/ielr.c (ielr_compute_annotation_lists): Update
1123 AnnotationList__compute_from_inadequacies invocation.
1124
abcc7c03
JD
11252009-12-20 Joel E. Denny <jdenny@clemson.edu>
1126
1127 Fix handling of yychar manipulation in user semantic actions.
1128 The problem was that yacc.c didn't always update the yychar
1129 translation afterwards. However, other skeletons appear to be
1130 fine. glr.c appears to already translate yychar before every
1131 use. lalr1.cc does not define yychar and does not document its
1132 replacement, yyla, for users. It does provide yyclearin, but
1133 that does not manipulate yyla and thus requires no translation
1134 update. In lalr1.java, yychar is out of scope during semantic
1135 actions.
1136 * NEWS (2.5): Document.
1137 * data/yacc.c (YYBACKUP): Don't bother translating yychar into
1138 yytoken here.
1139 (yyparse, yypush_parse): Instead, translate before every use of
1140 yytoken, and add comments explaining this approach.
1141 * tests/actions.at (Destroying lookahead assigned by semantic
1142 action): New test group checking that translation happens before
1143 lookahead destructor calls at parser return. Previously,
1144 incorrect destructors were called.
1145 * tests/conflicts.at (%error-verbose and consistent
1146 errors): New test group checking that translation happens at
1147 syntax error detection before the associated verbose error
1148 message and the associated lookahead destructor calls. While
1149 the destructor call is fixed by this patch, the verbose error
1150 message is currently incorrect due to another bug (see
1151 comments in test group), so this is an expected failure for now.
1152
62efdd2a
JD
11532009-12-21 Joel E. Denny <jdenny@clemson.edu>
1154
1155 YYFAIL: warn about uses and remove from lalr1.java.
1156 * NEWS (2.5): Document.
5f1485d8 1157 * data/lalr1.java (YYParser::YYFAIL): Rename to YYERRLAB,
62efdd2a
JD
1158 and make it private. Update all uses.
1159 * src/scan-code.l (SC_RULE_ACTION): Implement warning.
1160
41d35e54
JD
11612009-12-21 Joel E. Denny <jdenny@clemson.edu>
1162
1163 YYFAIL: deprecate.
1164 * NEWS (2.4.2): Document deprecation and the phase-out plan.
5f1485d8 1165 * data/lalr1.java (YYParser::YYFAIL): Add comment about
41d35e54
JD
1166 deprecation.
1167 * data/yacc.c (YYFAIL): Likewise, and suppress warnings about
1168 YYFAIL from GCC cpp's -Wunused-macros.
1169 * doc/bison.texinfo (Java Action Features): Remove YYFAIL
1170 documentation.
1171 (LocalWords): Remove YYFAIL.
1172
692d04cb
JD
11732009-12-17 Joel E. Denny <jdenny@clemson.edu>
1174
1175 Code cleanup.
1176 * src/symtab.c, src/symtab.h (symbol_class_get_string): Remove
1177 function, which is no longer used.
1178
34731471
JD
11792009-12-16 Joel E. Denny <jdenny@clemson.edu>
1180
1181 Add gcc's -Wundef to test suite and fix another warning from it.
1182 * NEWS (2.4.2): Update description of -Wundef fix.
1183 * configure.ac (WARN_CXXFLAGS_TEST): New substitution.
1184 (WARN_CFLAGS_TEST): New substitution.
1185 * data/glr.c: Avoid warning about __STRICT_ANSI__.
1186 * tests/atlocal.in (CFLAGS): Use WARN_CFLAGS_TEST instead of
1187 WARN_CFLAGS.
1188 (NO_WERROR_CFLAGS): Likewise.
1189 (CXXFLAGS): Use WARN_CXXFLAGS_TEST instead of WARN_CXXFLAGS.
1190
3bba2dad
JD
11912009-12-16 Joel E. Denny <jdenny@clemson.edu>
1192
1193 * data/yacc.c: Reformat m4 a little.
1194
af2ffe5c
JD
11952009-12-16 Joel E. Denny <jdenny@clemson.edu>
1196
1197 Document gcc -Wundef fix.
1198 * NEWS (2.4.2): Here.
1199 * THANKS (Jonathan Nieder): Add.
1200
874ac415
JN
12012009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
1202
1203 Simplify y.tab.c when location tracking is disabled.
1204 * data/yacc.c: Do not check YYLTYPE_IS_TRIVIAL if location
1205 tracking is not enabled. Instead, unconditionally define
1206 YY_LOCATION_PRINT as a no-op for backward compatibility.
1207
06caf0e1
JN
12082009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
1209
1210 Avoid warnings from gcc -Wundef y.tab.c.
1211 * data/glr.c: Check if YYENABLE_NLS and YYLTYPE_IS_TRIVIAL are
1212 defined before using them.
1213 * data/lalr1.cc: Likewise.
1214 * data/yacc.c: Likewise.
1215
687f011a
JD
12162009-12-15 Joel E. Denny <jdenny@clemson.edu>
1217
1218 autoconf: update to latest for fix of M4 detection.
1219 Reported by Eric Blake.
1220 * submodules/autoconf: Update.
1221
fb9a3976
JD
12222009-12-15 Joel E. Denny <jdenny@clemson.edu>
1223
1224 portability: use -DGNULIB_POSIXCHECK.
1225 Reported by Eric Blake. See discussions at
1226 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00008.html>
1227 and
1228 <http://lists.gnu.org/archive/html/bug-gnulib/2009-10/msg00108.html>.
1229 * HACKING (Release checks): Suggest -DGNULIB_POSIXCHECK.
1230 * bootstrap.conf (gnulib_modules): Add all the printf modules
1231 suggested by -DGNULIB_POSIXCHECK. Add realloc-posix as
1232 suggested by -DGNULIB_POSIXCHECK for gnulib's own vasnprintf.c.
1233 (excluded_files): Remove m4/printf-posix.m4.
1234 * tests/atlocal.in (LIBS): As for LDADD in src/local.mk, add
1235 lib/libbison.a so gnulib libraries can be linked.
1236
f1fb412c
JD
12372009-12-14 Joel E. Denny <jdenny@clemson.edu>
1238
1239 Enable assertion output and --disable-assert for configure.
1240 * bootstrap.conf (gnulib_modules): Add assert module.
1241 * src/system.h (aver): Define as assert, and summarize the
1242 discussion on this issue.
1243
51c7ca01
JD
12442009-12-14 Joel E. Denny <jdenny@clemson.edu>
1245
1246 Expand GLR acronym in summary of Bison.
1247 Based on discussion with Akim Demaille starting at
1248 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00087.html>.
1249 * doc/bison.texinfo (Introduction): Here.
1250 * src/getargs.c (usage): Here.
1251
1f68dca5
AR
12522009-10-03 Alex Rozenman <rozenman@gmail.com>
1253
1254 Document named references.
1255 * doc/bison.texinfo (Actions): Add new example and xref to
1256 Using Named References node.
1257 (Using Named References): New node.
1258
aa01d193
JD
12592009-10-16 Joel E. Denny <jdenny@clemson.edu>
1260
1261 cleanup.
1262 * src/Sbitset.c (Sbitset__new_on_obstack): Use Sbitset instead
1263 of char*.
1264 (Sbitset__isEmpty): Use Sbitset instead of char*.
1265 * src/Sbitset.h (Sbitset): Make it a pointer to unsigned char
1266 instead of char. This helps to avoid casting errors.
1267 (Sbitset__or): Use Sbitset instead of char*.
1268
61747047
JD
12692009-10-16 Joel E. Denny <jdenny@clemson.edu>
1270
1271 portability: don't assume 8-bit bytes.
1272 That is, use CHAR_BIT and UCHAR_MAX instead of 8 and 0xff.
1273 * src/Sbitset.h (Sbitset__nbytes): Here.
1274 (Sbitset__byteAddress): Here.
1275 (Sbitset__bit_mask): Here.
1276 (Sbitset__last_byte_mask): Here.
1277 (Sbitset__ones): Here.
1278 (SBITSET__FOR_EACH): Here.
1279
a70596de
JD
12802009-10-11 Joel E. Denny <jdenny@clemson.edu>
1281
1282 portability: use va_start and va_end in the same function.
1283 * src/complain.c (error_message): Move va_end from here...
1284 (ERROR_MESSAGE): ... to here.
1285
51f255a5
JD
12862009-10-08 Joel E. Denny <jdenny@clemson.edu>
1287
1288 * data/bison.m4: Update comments for rename to muscle-tab.h.
1289
23ec25b7
JD
12902009-10-08 Joel E. Denny <jdenny@clemson.edu>
1291
1292 Rename muscle_tab.* to muscle-tab.* for consistency with master.
1293 * src/Makefile.am (bison_SOURCES): Update.
1294 * src/getargs.c, src/ielr.c, src/lalr.c, src/main.c,
1295 src/output.c, src/parse-gram.y, src/print.c, src/reader.c,
1296 src/tables.c: Update include.
1297 * src/muscle_tab.c, src/muscle_tab.h: Rename to...
1298 * src/muscle-tab.c, src/muscle-tab.h: ... these and update
1299 include.
1300
0ab402b4
JD
13012009-10-07 Joel E. Denny <jdenny@clemson.edu>
1302
1303 Minor code cleanup.
1304 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT): Remove macro and
1305 replace all uses with UNIQSTR_CONCAT.
1306 * src/uniqstr.c (uniqstr_vsprintf): New function.
1307 * src/uniqstr.h (uniqstr_vsprintf): Add prototype.
1308 (UNIQSTR_CONCAT, UNIQSTR_GEN_FORMAT, UNIQSTR_GEN_FORMAT_): New
1309 macros.
1310
42ec0ae1
JD
13112009-10-04 Joel E. Denny <jdenny@clemson.edu>
1312
1313 Minor code cleanup.
1314 * src/parse-gram.y: Clean up sorting of declarations.
1315 Use types to simplify %printer declarations where possible.
1316 Provide %printer for BRACKETED_ID and symbol.prec.
1317 * src/symtab.c: Whitespace change.
1318
9637e0ed
JD
13192009-10-04 Joel E. Denny <jdenny@clemson.edu>
1320
1321 tests: skip tests of file names that platform does not support.
1322 Reported by Michael Raskin at
1323 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
1324 * THANKS (Michael Raskin): Add.
1325 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
1326 to fail at least for file names containing ":" or "\".
1327
69a2ab11
JD
13282009-09-23 Joel E. Denny <jdenny@clemson.edu>
1329
1330 yysyntax_error: avoid duplicate lookahead collection.
1331 Except when memory reallocation is required, this change
1332 eliminates the need to invoke yysyntax_error twice and thus to
1333 repeat the collection of lookaheads. It also prepares for
1334 future extensions that will make those repetitions more
1335 expensive and that will require additional memory management in
1336 yysyntax_error. Finally, it fixes an obscure bug already
1337 exercised in the test suite.
1338 * data/yacc.c (yysyntax_error): Add arguments for message
1339 buffer variables stored in the parser. Instead of size, return
1340 status similar to yyparse status but indicating success of
1341 message creation. Other than the actual reallocation of the
1342 message buffer, import and clean up memory management code
1343 from...
1344 (yyparse, yypush_parse): ... here.
1345 * tests/regression.at (%error-verbose overflow): No longer an
1346 expected failure.
1347
d88cf117
JD
13482009-09-23 Joel E. Denny <jdenny@clemson.edu>
1349
1350 yysyntax_error: test memory management more.
1351 * tests/atlocal.in (NO_WERROR_CFLAGS): New cpp macro.
1352 * tests/regression.at (%error-verbose and YYSTACK_USE_ALLOCA):
1353 New test group.
1354 (%error-verbose overflow): New test group that reveals an
1355 obscure bug. Expected fail for now.
1356
9da640ea
AD
13572008-12-11 Akim Demaille <demaille@gostai.com>
1358
1359 Pass the token type to yysyntax_error.
1360 * data/yacc.c (yysyntax_error): Take the transated token instead
1361 of the raw number.
1362 Adjust callers.
1363
d3d3628b
AD
13642008-12-11 Akim Demaille <demaille@gostai.com>
1365
1366 Simplify the i18n of the error messages.
1367 * data/yacc.c (yysyntax_error): Rewrite, using a switch instead
1368 of building dynamically the format string.
1369
4c6b13f3
JD
13702009-10-03 Joel E. Denny <jdenny@clemson.edu>
1371
1372 Remove dead code.
1373 * src/symtab.c (symbol_pack): Here because every symbol's number
1374 is always defined by this time.
1375
f840c05a
AR
13762009-10-03 Alex Rozenman <rozenman@gmail.com>
1377
1378 Add additional space after periods in NEWS.
1379 * NEWS (2.5): here.
1380
17a407dc
JD
13812009-09-29 Joel E. Denny <jdenny@clemson.edu>
1382
1383 Use the correct conversion specifier for size_t.
1384 Reported by Jim Meyering.
1385 * src/Sbitset.h (SBITSET__INDEX__CONVERSION_SPEC): New, "zu"
1386 because Sbitset__Index is size_t.
1387 * src/Sbitset.c (Sbitset__fprint): Use it instead of %d.
1388
4b7a4c1b
JD
13892009-09-27 Joel E. Denny <jdenny@clemson.edu>
1390
1391 tests: don't abuse AT_BISON_CHECK.
1392 * tests/regression.at (parse-gram.y: LALR = IELR): Move
1393 additional shell commands outside of AT_BISON_CHECK.
1394
873ac263
JD
13952009-09-26 Joel E. Denny <jdenny@clemson.edu>
1396
1397 tests: check that parse-gram.y's IELR and LALR are identical.
1398 * tests/atlocal.in (abs_top_srcdir): New shell variable.
1399 * tests/regression.at (parse-gram.y: LALR = IELR): New test
1400 group.
1401
232be91a
AD
14022009-09-16 Akim Demaille <demaille@gostai.com>
1403
1404 doc: comment changes.
1405 * doc/bison.texinfo: Comment changes.
1406
c781580d
AD
14072009-09-16 Akim Demaille <demaille@gostai.com>
1408
1409 doc: spell checking.
1410 * doc/bison.texinfo: here.
1411
348f5608
AR
14122009-09-19 Alex Rozenman <rozenman@gmail.com>
1413
1414 Keep sub-messages aligned. Fix strings for translation.
f840c05a
AR
1415 * src/location.h (location_print): Add return value.
1416 * src/location.c (location_print): Return number of printed
348f5608 1417 characters.
f840c05a
AR
1418 * src/complain.h (complain_at_indent, warn_at_indent): Prototype
1419 new functions.
1420 * src/complain.cpp (indent_ptr): New static variable.
1421 (error_message, complain_at_indent, warn_at_indent): Implement
1422 the alignment mechanism.
1423 * src/scan-code.l (parse_ref, show_sub_messages): Fix strings
1424 for translations. Use new alignment mechanism.
1425 * tests/named-ref.at: Adjust test-cases.
348f5608
AR
1426 * NEWS (2.5): Add an announcement about named references.
1427
d93b5f50
JD
14282009-09-13 Joel E. Denny <jdenny@clemson.edu>
1429
1430 tests: clean up push.at test group titles.
1431 * tests/push.at: Remove "Push Parsing: " from test group titles
1432 because these are already under the banner "Push Parsing Tests".
1433
4c56b131
AR
14342009-09-12 Alex Rozenman <rozenman@gmail.com>
1435
1436 Provide an additional sub-message for clarity.
1437 Add "symbol not found in production" error message when
1438 an "invalid reference" is detected in named references
1439 resolution.
1440 * src/scan-code.l: Update "invalid reference" case.
1441 * tests/named-ref.at: Adjust test-cases.
1442
93d0103d
JD
14432009-09-10 Joel E. Denny <jdenny@clemson.edu>
1444
1445 Clean up yacc.c a little.
1446 * data/yacc.c: Clean up M4 for readability, and make output
1447 whitespace more consistent. For the main parse function
1448 comment, instead of saying "yyparse or yypush_parse", say either
1449 "yyparse" or "yypush_parse" depending on which it actually is.
1450
628be6c9
JD
14512009-09-03 Joel E. Denny <jdenny@clemson.edu>
1452
1453 Complain about unused %define variables and %code qualifiers.
1454 * NEWS (2.5): Document.
1455 * data/bison.m4 (b4_check_user_names): Complain instead of warn.
1456 * doc/bison.texinfo (Decl Summary): Document complaint, and
1457 improve %define documentation a little otherwise.
1458 * tests/input.at (Reject unused %code qualifiers): Update.
1459 (%define errors): Update.
1460 (%define, --define, --force-define): Update.
1461 (%define backward compatibility): Update.
1462 (Unused %define api.pure): Update.
1463 * tests/push.at (Push Parsing: Unsupported Skeletons): Update.
1464
c842365a
JD
14652009-09-03 Joel E. Denny <jdenny@clemson.edu>
1466
1467 Use aver not assert.
1468 * src/output.c: Don't include assert.h.
1469 (output_skeleton): Use aver not assert.
1470 * src/system.h (aver): In documentation of why, add links to
1471 Paul Eggert's explanations in the mailing lists.
1472
14e568d7
AR
14732009-09-05 Alex Rozenman <rozenman@gmail.com>
1474
1475 Use "Unresolved reference" error message when no symbols were found
1476 in a symbolic reference resolution. Remove .expr and -expr from
1477 the shown reference when the reference is unresolved.
1478 * src/scan-code.l: Change the error message, adjust location columns,
1479 rename variable "exact_mode" to "explicit_bracketing".
1480 * tests/named-ref.at: Adjust existing tests and add a new one.
1481
dac8cc0d
AD
14822009-09-03 Akim Demaille <demaille@gostai.com>
1483
1484 * NEWS (2.4.2): Add "Internationalization" item.
1485
3710dd02
AD
14862009-09-03 Akim Demaille <demaille@gostai.com>
1487
1488 bootstrap: fix/improve find_tool.
1489 * bootstrap (find_tool): Improve error messages.
1490 Fix typo about find_tool_names.
1491
9852b61c
JD
14922009-08-29 Joel E. Denny <jdenny@clemson.edu>
1493
1494 Fix gcc 3.4.4 shadowing warning reported by Eric Blake.
1495 See
1496 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00093.html>.
1497 * src/scan-code.h (code_props_rule_action_init): Rename
1498 named_ref arg to name so it doesn't shadow named_ref type. This
1499 makes it consistent with the function definition in scan-code.l
1500 anyway.
1501
f37495f6
JD
15022009-08-28 Joel E. Denny <jdenny@clemson.edu>
1503
1504 %define: accept unquoted values.
1505 * NEWS (2.5): Group all %define changes together, and document
1506 this one. Remove quotes in IELR and canonical LR entry.
1507 * doc/bison.texinfo: Remove quotes in most examples throughout.
1508 (Decl Summary): Update %define documentation.
1509 (Table of Symbols): Likewise.
1510 * src/ielr.c (LrType): Update documentation.
1511 * src/parse-gram.y (content.opt): Add production for ID.
5bf2bf7a 1512 * tests/calc.at: Remove quotes in most tests.
f37495f6
JD
1513 * tests/existing.at: Likewise.
1514 * tests/input.at: Likewise.
1515 * tests/local.at: Likewise.
1516 * tests/push.at: Likewise.
1517 * tests/reduce.at: Likewise.
1518 * tests/torture.at: Likewise.
1519
3a414bbf
JD
15202009-08-28 Joel E. Denny <jdenny@clemson.edu>
1521
1522 %define lr.type: make values lowercase IDs.
1523 That is, "LALR" => "lalr", "IELR" => "ielr", and
1524 "canonical LR" => "canonical-lr".
1525 * NEWS (2.5): Update documentation.
1526 * doc/bison.texinfo (Decl Summary): Likewise.
1527 * src/ielr.c (ielr): Use new values.
1528 * src/ielr.h (ielr): Update documentation.
1529 * src/reader.c (prepare_percent_define_front_end_variables): Use
1530 and validate new values.
1531 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
1532 grammars.
1533 * tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
1534
4bb975e1
EB
15352009-08-27 Eric Blake <ebb9@byu.net>
1536
1537 scan-gram: avoid portability trap with ctype usage.
1538 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
1539 Avoid compiler warning.
1540
74baf5c9
JD
15412009-08-27 Joel E. Denny <jdenny@clemson.edu>
1542
1543 tests: use perl for printing special sequences to files.
1544 And skip tests if perl is not available. This is better than
1545 playing tricks with shell portability. Suggested by Akim
1546 Demaille.
1547 * tests/input.at (Bad character literals): Use it here for
1548 omitting final newlines.
1549 (Bad escapes in literals): Use it here for special characters.
1550
d63e1279
JD
15512009-08-26 Joel E. Denny <jdenny@clemson.edu>
1552
1553 tests: show a use of %define lr.default-reductions "consistent"
1554 * tests/conflicts.at (%nonassoc and eof): Extend to test that it
1555 prevents the omission of expected tokens for %error-verbose.
1556
833d1720
AD
15572009-08-26 Akim Demaille <demaille@gostai.com>
1558
1559 tests: portability fix.
1560 * tests/input.at (Bad escapes in literals): Don't expect "echo
1561 '\0'" to output \ then 0.
1562
e4bcae3c
JD
15632009-08-26 Joel E. Denny <jdenny@clemson.edu>
1564
1565 Actually handle the yytable zero value correctly this time.
1566 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c: Don't
1567 mention zero values in the YYTABLE comments.
1568 * data/glr.c (yytable_value_is_error): Don't check for zero
1569 value.
1570 * data/lalr1.cc (yy_table_value_is_error_): Likewise.
1571 * data/yacc.c (yytable_value_is_error): Likewise.
1572 * data/lalr1.java (yy_table_value_is_error_): Likewise.
1573 (yysyntax_error): Fix typo in code: use yytable_ not yycheck_.
1574 * src/tables.h: In header comments, explain why it's useless to
1575 check for a zero value in yytable.
1576
d5eb0826
JD
15772009-08-25 Joel E. Denny <jdenny@clemson.edu>
1578
1579 More fixes related to last two patches.
1580 * data/c.m4 (b4_table_value_equals): Comment that YYID must be
1581 defined.
1582 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c: Fix
1583 yytable comments: zero indicates syntax error not default
1584 action.
1585 * data/glr.c (yyis_pact_ninf): Rename to...
1586 (yypact_value_is_default): ... this.
1587 (yyisDefaultedState): Update for rename.
1588 (yyis_table_ninf): Rename to...
1589 (yytable_value_is_error): ... this, and check for value zero
1590 besides just YYTABLE_NINF.
1591 (yygetLRActions): Check for default value from yypact. It
1592 appears that this check is always performed before this function
1593 is invoked, and so adding the check here is probably redundant.
1594 However, the code may evolve after this subtlety is forgotten.
1595 Also, update for rename to yytable_value_is_error. Because that
1596 macro now checks for zero, a different but equivalent branch of
1597 the if-then-else here is evaluated.
1598 (yyreportSyntaxError): Update for rename to
1599 yytable_value_is_error. The zero condition was mishandled
1600 before.
1601 (yyrecoverSyntaxError): Update for renames. No behavioral
1602 changes.
1603 * data/lalr1.cc, data/lalr1.java (yy_pact_value_is_default_):
1604 New function.
1605 (yy_table_value_is_error_): New function.
1606 (parse): Use new functions where possible. No behavioral
1607 changes.
1608 (yysyntax_error_, yysyntax_error): Use yy_table_value_is_error_.
1609 The zero condition was mishandled before.
1610 * data/yacc.c (yyis_pact_ninf): Rename to...
1611 (yypact_value_is_default): ... this.
1612 (yyis_table_ninf): Rename to...
1613 (yytable_value_is_error): ... this, and check for value zero
1614 besides just YYTABLE_NINF.
1615 (yysyntax_error): Update for rename to yytable_value_is_error.
1616 The zero condition was mishandled before.
1617 (yyparse): Update for renames. No behavioral changes.
1618 * src/tables.h: Improve comments about yypact, yytable, etc.
1619 more. Most importantly, say yytable value of zero means syntax
1620 error not default action.
1621
1fa30307
JD
16222009-08-25 Joel E. Denny <jdenny@clemson.edu>
1623
1624 Fix %error-verbose for conflicts resolved by %nonassoc.
1625 * NEWS (2.5): Document.
1626 * data/glr.c (yyreportSyntaxError): Fix this by checking
1627 yyis_table_ninf.
1628 * data/yacc.c (yysyntax_error): Likewise.
1629 * data/lalr1.cc (yysyntax_error_): Fix this by checking
1630 yytable_ninf_.
1631 * data/lalr1.java (yysyntax_error): Likewise.
1632 * tests/conflicts.at (%nonassoc and eof): Update expected output
1633 and remove FIXME.
1634
77373efa
JD
16352009-08-25 Joel E. Denny <jdenny@clemson.edu>
1636
1637 Some code and documentation improvements.
1638 * data/c.m4 (b4_table_value_equals): New macro to capture
1639 some repeated code.
1640 * data/glr.c (yyis_pact_ninf): Use it here.
1641 (yyis_table_ninf): Likewise.
1642 (yyreportSyntaxError): Improve internal comments.
1643 * data/yacc.c (yyis_pact_ninf): New macro copied from glr.c.
1644 Use it everywhere possible.
1645 (yyis_table_ninf): Likewise.
1646 (yysyntax_error): Improve internal comments.
1647 * data/lalr1.cc (yysyntax_error_): Likewise.
1648 * data/lalr1.java (yysyntax_error): Likewise.
1649 * src/tables.h: Improve comments about yypact, yytable, etc.
1650
890ab17c
JD
16512009-08-21 Joel E. Denny <jdenny@clemson.edu>
1652
1653 Use locale when quoting.
1654 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
1655 quote rather than implementing quoting here.
1656
c5196098
EB
16572009-08-20 Eric Blake <ebb9@byu.net>
1658
aa50ba7b
EB
1659 Make previous patch more robust.
1660 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
1661 argmatch.h.
1662 (output_skeleton): Use it.
1663 Suggested by Akim Demaille.
1664
c5196098
EB
1665 Import latest m4/m4.m4.
1666 * submodules/autoconf: Update to autoconf 2.64.
1667 * configure.ac (M4_GNU_OPTION): New define.
1668 * src/output.c (output_skeleton): Use it to resolve FIXME.
1669 * NEWS: Mention this.
1670
39fb7e62
JD
16712009-08-19 Joel E. Denny <jdenny@clemson.edu>
1672
1673 Fix complaints about escape sequences.
1674 Discussed starting at
1675 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
1676 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
1677 For a \0 and similar escape sequences meaning the null
1678 character, report an invalid escape sequence instead of an
1679 invalid null character because the latter does not actually
1680 appear in the user's input.
1681 In all escape sequence complaints, don't escape the initial
1682 backslash, and don't quote when the sequence appears at the end
1683 of the complaint line unless there's whitespace that quotearg
1684 won't escape.
1685 Consistently say "invalid" not "unrecognized".
1686 Consistently prefer "empty character literal" over "extra
1687 characters in character literal" warning for invalid escape
1688 sequences; that is, consistently discard those sequences.
1689 * tests/input.at (Bad escapes in literals): New.
1690
c33bc800
AD
16912009-08-19 Akim Demaille <demaille@gostai.com>
1692
1693 doc: fixes.
1694 * doc/bison.texinfo: Fix minor Texinfo errors.
1695
8fbbeba2
AD
16962009-08-19 Akim Demaille <demaille@gostai.com>
1697
1698 doc: %initial-action to initialize yylloc.
1699 Reported by Bill Allombert.
1700 * doc/bison.texinfo: Set fill-column to 76.
1701 (Location Type): Document the use of %initial-action to initialize
1702 yylloc.
1703
1874a474
JD
17042009-08-18 Joel E. Denny <jdenny@clemson.edu>
1705
1706 maint: update for gnulib's recent update-copyright changes
1707 * gnulib: Update.
1708 * .x-update-copyright (COPYING): Add as it's no longer implied
1709 when .x-update-copyright is present.
1710 * cfg.mk (update-copyright-local): Remove, now ignored.
1711 (update-copyright): Declare update-b4-copyright as a dependency.
1712
f4bfd5a9
AD
17132009-08-17 Akim Demaille <demaille@gostai.com>
1714
1715 build: require gettext 0.17.
1716
1717 Suggested by Bruno Haible.
1718 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
1719 * configure.ac: require gettext 0.17 to ensure compatibility with
1720 gnulib.
1721
2509eba6
AD
17222009-08-17 Akim Demaille <demaille@gostai.com>
1723
1724 build: lower gettext requirements.
1725
1726 Bison was uselessly requiring the formatstring macros from
1727 gettext, which resulted in mo files not being installed on systems
1728 that perfectly supported Bison mo files. Lower the requirement.
1729 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
1730
aa50ba7b
EB
1731 * configure.ac: Require need-ngettext instead of
1732 need-formatstring-macros.
1733 Reported by Martin Jabocs.
1734 Suggested by Bruno Haible.
1735 * INSTALL: Restructure.
1736 (Internationalization): New.
2509eba6 1737
314542f9
JD
17382009-08-14 Joel E. Denny <jdenny@clemson.edu>
1739
1740 maint: fix use of copyright year intervals.
1741 * gnulib: Update.
1742 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
1743 as now recommended in gnulib/NEWS.
1744 * build-aux/update-b4-copyright: Fix.
1745 * cfg.mk (update-copyright-env): Configure update-copyright.
1746
24985964
JD
17472009-08-13 Joel E. Denny <jdenny@clemson.edu>
1748
1749 Make it easier to write deterministic tests.
1750 Continues Akim's work from his 2009-06-10 commits.
1751 * src/reader.c (check_and_convert_grammar): Don't add any
1752 symbols after the first symbols_do invocation.
1753 * src/symtab.c (symbols_sorted): New static global.
1754 (user_token_number_redeclaration): Update comments.
1755 (symbol_from_uniqstr): If a new symbol is being created, assert
1756 that symbols_sorted hasn't been allocated yet.
1757 (symbols_free): Free symbols_sorted.
1758 (symbols_cmp, symbols_cmp_qsort): New functions.
1759 (symbols_do): Sort symbol_table into symbols_sorted on first
1760 invocation.
1761 * tests/input.at (Numbered tokens): Recombine tests now that the
1762 output should be deterministic across multiple numbers.
1763
47076da5
AD
17642009-08-12 Akim Demaille <demaille@gostai.com>
1765
1766 distcheck: fix.
1767
aa50ba7b 1768 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
47076da5 1769
36dfe466
JD
17702009-08-10 Joel E. Denny <jdenny@clemson.edu>
1771
1772 * tests/Makefile.am (TESTSUITE_AT): Add named-refs.at.
1773
07c0db18
JD
17742009-08-10 Joel E. Denny <jdenny@clemson.edu>
1775
1776 Miscellaneous code readability improvements.
1777
1778 * src/reader.c (reader): Move %define front-end variable
1779 defaults and checking into...
1780 (prepare_percent_define_front_end_variables): ... this new
1781 function.
1782
1783 * src/scan-gram.l (INITIAL): For consistency with string
1784 literals, don't store open quote on character literal. It's
1785 discarded before returning anyway.
1786 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
1787 Make length test more readable, and make the character stored
1788 for an empty literal more obvious while consistent with the
1789 previous behavior.
1790
1791 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
1792 USER_NUMBER_HAS_STRING_ALIAS throughout.
1793 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
1794 that is repeated in symtab.h. Improve argument names to make it
1795 clear which side of the symbol-string alias pair is which.
1796 (symbol_check_alias_consistency): Improve local variable names
1797 for the same purpose.
1798 * src/symtab.h (struct symbol): Make comments about aliases
1799 clearer.
1800 (symbol_make_alias): Improve comments and argument name.
1801 * src/output.c (token_definitions_output): Update for rename to
1802 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
1803
1a323c2f
AR
18042009-08-08 Alex Rozenman <rozenman@gmail.com>
1805
1806 Convert "misleading reference" messages to warnings.
1807 * src/scan-code.l: New function 'show_sub_messages', more
1808 factoring.
1809 * tests/named-ref.at: Adjust tests.
1810
38609c34
JD
18112009-08-06 Joel E. Denny <jdenny@clemson.edu>
1812
1813 maint: run "make update-copyright"
1814
642f240e
JD
18152009-08-06 Joel E. Denny <jdenny@clemson.edu>
1816
1817 maint: make update-b4-copyright easier to use
1818 * build-aux/update-b4-copyright: In warnings, report line
1819 numbers rather than character positions.
1820 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
1821 that update-copyright runs it.
1822 * gnulib: Update.
1823
d0caad01
JD
18242009-08-05 Joel E. Denny <jdenny@clemson.edu>
1825
1826 maint: clean up update-b4-copyright code
1827 * build-aux/update-b4-copyright: Do not accept 2-digit
1828 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
1829 Don't accept a `[' in a b4_copyright argument.
1830 Format code more consistently.
1831 Don't assume b4*copyright never occurs.
1832
ac2def56
JD
18332009-08-04 Joel E. Denny <jdenny@clemson.edu>
1834
1835 maint: automate b4_copyright updates.
1836 * Makefile.am (update-b4-copyright): New target rule.
1837 * build-aux/Makefile.am (EXTRA_DIST): Add update-b4-copyright.
1838 * build-aux/update-b4-copyright: New.
1839 * data/yacc.c: Remove stray characters around b4_copyright
1840 invocations.
1841
dbbb64f0
JD
18422009-08-04 Joel E. Denny <jdenny@clemson.edu>
1843
1844 maint: automate annual package-wide copyright-year update.
1845 * .x-update-copyright: New.
1846 * Makefile.am (EXTRA_DIST): Remove maint.mk.
1847 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
1848 update-copyright. Remove gnumakefile, which is implied by
1849 maintainer-makefile.
1850 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
1851 * gnulib: Update.
1852 * maint.mk: Remove, now copied from gnulib.
1853 * examples/extexi: Add missing "(C)" in copyright statement so
1854 update-copyright can recognize it.
1855 * src/LR0.h: Likewise.
1856 * src/print.h: Likewise.
1857 * src/print_graph.h: Likewise.
1858 * src/gram.c: Add missing comma in copyright statement.
1859 * src/gram.h: Likewise.
1860
bfa018d4
JD
18612009-08-04 Joel E. Denny <jdenny@clemson.edu>
1862
1863 Fix "make distcheck".
1864 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
1865 of just calc.stamp.
1866
4521fcdf
JD
18672009-08-01 Joel E. Denny <jdenny@clemson.edu>
1868
1869 Pacify "gcc -Wunused" for the input function from Flex.
1870 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
1871 and later.
1872 * src/scan-code.l: Add "%option noinput", which I cannot find in
1873 the Flex manual, but which Flex has supported since at least as
1874 far back as 2.5.4. However, if any of our developers still use
1875 Flex 2.5.4, they'll need to stop configuring with
1876 --enable-gcc-warnings because "%option noinput" didn't work
1877 correctly until Flex 2.5.6.
1878 * src/scan-gram.l: Likewise.
1879 * src/scan-skel.l: Likewise.
1880
992e874a
AR
18812009-07-31 Alex Rozenman <rozenman@gmail.com>
1882
1883 Fix --enable-gcc-warnings problems.
1884 * src/reader.c: Adjust variable names.
1885 * src/scan-code.l: Fix prototypes and adjust names.
1886 * src/named-ref.c: Remove redundant "if".
1887
a1ed2b71
JD
18882009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
1889
1890 Fix a --enable-gcc-warnings problem.
1891 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
1892 variable.
1893
cbc6a70e 18942009-07-24 Alex Rozenman <rozenman@gmail.com>
1e20ad11
AR
1895
1896 Fix some memory leaks.
1897 * src/named-ref.c: Add a pointer check (named_ref_free).
1898 * src/scan-code.l: New function (variant_table_free). Called in
1899 code_scanner_free.
1900 * src/symlist.c: Call to named_ref_free (symbol_list_free).
1901
ac9b0e95
JD
19022009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
1903
1904 Warn about character literals not of length one.
1905 * NEWS (2.5): Document.
1906 * src/scan-gram.l (INITIAL): Remove comment that we don't check
1907 the length.
1908 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
1909 * tests/input.at (Bad character literals): New test group.
1910
2de160e1
JD
19112009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
1912
1913 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
1914
cba97506
JD
19152009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
1916
1917 Some M4 cleanup in the testsuite.
1918 Suggested by Eric Blake at
1919 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
1920 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
1921 complicate the code by distinguishing between a missing value
1922 and an empty string value for an optional argument. This fix is
1923 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
1924 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
1925 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
1926 arguments are not needed because of the following changes.
1927 Fix stale comments.
1928 Bison developers should use GNU M4 and should not use
1929 POSIXLY_CORRECT when building the test suite, so do not
1930 complicate the code by avoiding $10 and above.
1931 Do not quote an empty string value for an optional argument, and
1932 do not distinguish between a missing value and an empty string
1933 value.
1934
62eb2d1b
JD
19352009-07-21 Joel E. Denny <jdenny@ces.clemson.edu>
1936
1937 * m4/m4.m4: Make it a sym link to submodules/autoconf/m4/m4.m4.
1938
620b2e36
JD
19392009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1940
1941 Revert unnecessary column realignment in --help output.
1942 Reported by Akim Demaille at
1943 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
1944 * src/getargs.c (usage): Here.
1945
cbc6a70e 19462009-07-04 Alex Rozenman <rozenman@gmail.com>
dad6544d
AR
1947
1948 Alphabetical order in src/Makefile.am.
1949 * src/Makefile.am: Adjust.
1950
cbc6a70e 19512009-07-04 Alex Rozenman <rozenman@gmail.com>
d5e8574b
AR
1952
1953 Style changes and factoring.
1954 * src/named-ref.h: Add comments.
1955 * src/parse-gram.y: Readability and style changes.
1956 * src/reader.c: Factoring: assign_named_ref function.
1957 * src/scan-code.l: Factoring and style changes. Rename
1958 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
1959 Use "unsigned" type for variant index. Improve readablity.
1960 * src/scan-gram.l: Change error messages and add comments.
1961 * src/symlist.h: symbol_list_null: New function decl.
1962 * src/symlist.c: symbol_list_null: Implement here.
1963 * tests/named-refs.at: Adjust for new error messages.
1964
ae09ec85
EB
19652009-06-29 Eric Blake <ebb9@byu.net>
1966
1967 scan-code: avoid compiler warnings
1968 * src/scan-code.l (parse_named_ref): Use correct specifiers.
1969
80d653fd
AD
19702009-06-29 Akim Demaille <demaille@gostai.com>
1971
1972 build: avoid concurrent extraction of calc++.
1973 * examples/calc++/Makefile.am (calc.stamp): New.
1974 Depend on it to create the sources of calc++ so that concurrent
1975 builds don't launch several "extexi" in parallel.
1976 Not only this is inefficient, this also builds incorrect sources
1977 with several extractions mixed together.
1978
7685e2f7
AR
19792009-06-27 Alex Rozenman <rozenman@gmail.com>
1980
1981 Implement support for named symbol references.
1982 * src/parse-gram.y: Add new syntax (named_ref.opt).
1983 * src/reader.c: Store named refs in symbol lists.
1984 * src/reader.h: New argument for symbol_append and
1985 action_append functions.
1986 * src/scan-code.h: Add new field (named_ref) into
1987 code_props data structure. Keeps named ref of midrule
1988 actions.
1989 * src/scan-code.l: Support for named refs in semantic
1990 action code. New function 'parse_named_ref'.
1991 * src/scan-gram.l: Support bracketed id.
1992 * src/symlist.c: Store named refs in symbol lists.
1993 * src/symlist.h: New field in symbol list: named_ref.
1994 * src/named-ref.h: New file, a struct for named_ref.
1995 * src/named-ref.cp: New file, named_ref_new function.
1996 * src/local.mk: Add two new files.
1997 * tests/testsuite.at: Include new test group:
1998 * tests/named-refs.at: this new file.
1999
67f8cf51
AD
20002009-06-25 Akim Demaille <demaille@gostai.com>
2001
2002 hash: check insertion for memory exhaustion.
2003 * src/uniqstr.c (uniqstr_new): New.
2004
83b66ddd
AD
20052009-06-11 Akim Demaille <demaille@gostai.com>
2006
2007 style changes.
2008 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
2009 * src/print-xml.c: Style changes.
2010 * tests/conflicts.at: Comment changes.
2011
517cb0ad
AD
20122009-06-11 Akim Demaille <demaille@gostai.com>
2013
2014 xml: beware of user strings used to give a %prec to rules.
2015 * tests/conflicts.at (%prec with user strings): New.
2016 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
2017 XML output.
2018
75c7a52a
AD
20192009-06-11 Akim Demaille <demaille@gostai.com>
2020
2021 hash: check insertion for memory exhaustion.
2022 * src/muscle-tab.c (muscle_insert, muscle_grow)
2023 * src/state.c (state_hash_insert): Check the return value of
2024 hash_insert.
2025
66ed9753
AD
20262009-06-10 Akim Demaille <demaille@gostai.com>
2027
2028 deterministic test suite.
2029 Some consistency checks on symbols are performed after all the
2030 symbols were read, by an iteration over the symbol table. This
2031 traversal is nondeterministic, which can be a problem for test
2032 cases.
2033 Avoid this.
2034 Addresses another form of nondeterminism reported by Joel E. Denny.
2035 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
2036
2037 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
2038 test in two.
2039 Use different file names for the three tests to make the
2040 maintenance easier.
2041
ed15d907
AD
20422009-06-10 Akim Demaille <demaille@gostai.com>
2043
95d176ff
AD
2044 deterministic user-token-number redeclaration errors.
2045 Address nondeterminism reported by Joel E. Denny.
2046 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
2047
2048 * src/uniqstr.h: Comment changes.
2049 * src/location.h (boundary_cmp, location_cmp): New.
2050 * src/symtab.c (user_token_number_redeclaration): New.
2051 (symbol_translation): Use it.
2052 * tests/input.at (Numbered tokens): Adjust the expected output.
2053
20542009-05-25 Akim Demaille <demaille@gostai.com>
2055
ed15d907 2056 gnulib: update.
aa50ba7b
EB
2057 * gnulib: Update to latest.
2058 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
2059 * m4/.gitignore: Regen.
2060 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
2061 Call xalloc_die on hash_insert failures.
2062 Requested by the new __warn_unused_result__ attribute of
2063 hash_insert.
ed15d907 2064
e3a33f7c
JD
20652009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2066
2067 Convert multiple variable definition warnings to complaints.
2068 * NEWS (2.5): Add a new entry for that change.
2069 * doc/bison.texinfo (Decl Summary): Update %define entry.
2070 (Bison Options): Update -D/--define/-F/--force-define entry.
2071 * src/muscle_tab.c (muscle_percent_define_insert): Implement.
2072 * src/muscle_tab.h (muscle_percent_define_insert): Update
2073 comments.
2074 * tests/input.at (`%define errors'): Update.
2075 (`%define, --define, --force-define'): Update.
2076
34d41938
JD
20772009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2078
2079 -F/--force-define and relative %define/-D/--define priorities.
2080 * NEWS (2.5): Add documentation to -D/--define entry.
2081 * build-aux/cross-options.pl: Hard-code association of
2082 --force-define with %define.
2083 * doc/bison.texinfo (Decl Summary): In %define entry,
2084 cross-reference command-line options.
2085 (Bison Options): Add documentation to -D/--define entry.
2086 (Option Cross Key): Widen column for --force-define row.
2087 * src/getargs.c (usage): Document -F/--force-define. Realign
2088 options in output.
2089 (short_options, long_options, getargs): Parse -F/--force-define,
2090 and update muscle_percent_define_insert invocation.
2091 * src/muscle_tab.h (muscle_percent_define_how): New enum type.
2092 (muscle_percent_define_insert): Add argument with that type.
2093 * src/muscle_tab.c (muscle_percent_define_insert): Implement
2094 -F/--force-define behavior and priorities.
2095 * src/parse-gram.y (prologue_declaration): Update
2096 muscle_percent_define_insert invocations.
2097 * tests/input.at (`%define, --define'): Rename to...
2098 (`%define, --define, --force-define'): ... this and extend.
2099
246c4efa
JD
21002009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2101
2102 Update some comments to make sense for -D.
2103 * data/bison.m4 (b4_check_user_names): In header comments, say
2104 "user occurrence" instead of "grammar occurrence".
2105 * src/muscle_tab.h (muscle_percent_define_insert): Likewise.
2106 (muscle_percent_code_grow): Likewise just for consistency.
2107
531683e7
JD
21082009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2109
2110 * data/c++.m4: Update copyright year.
2111
e7bfa8b7
JD
21122009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
2113
2114 * data/c++.m4 (b4_namespace_close): Simplify slightly.
2115
8c221795
JD
21162009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
2117
2118 Handle a trailing `:' in a user-supplied C++ namespace better.
2119 * data/c++.m4 (b4_namespace_close): Don't let it be printed
2120 among the closing braces here. This fix might make the
2121 generated code easier to debug, but otherwise it should be
2122 insignificant because a trailing `:' is a C++ error already.
2123
c8bf65f0
AD
21242009-05-19 Akim Demaille <demaille@gostai.com>
2125
2126 remove useless variable.
2127 * src/getargs.c (skeleton_arg): Remove now useless variable.
2128 Should help the compiler see that this printf-like call is sane.
2129
7ac45a46
AD
21302009-05-11 Akim Demaille <demaille@gostai.com>
2131
2132 doc: use C++ headers.
2133 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
2134 headers.
2135
601bdfab
AD
21362009-05-05 Akim Demaille <demaille@gostai.com>
2137
2138 fix hexadecimal token number support.
2139 * src/scan-gram.l: Catch incorrect ids after hexadecimal numbers.
2140
d19123e6
AD
21412009-05-05 Akim Demaille <demaille@gostai.com>
2142
2143 tests: check token numbers.
2144 * tests/input.at (Numbered tokens): New.
2145
ecdfea9a
AD
21462009-05-04 Akim Demaille <demaille@gostai.com>
2147
2148 bison: catch bad symbol names.
2149 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
2150 * tests/input.at: Adjust.
2151
43e6aea5
AD
21522009-05-04 Akim Demaille <demaille@gostai.com>
2153
2154 space changes.
2155 * src/scan-gram.l: Untabify to be robust to zealous editors.
2156
c046698e
AD
21572009-05-04 Akim Demaille <demaille@gostai.com>
2158
2159 identifiers: dashes are letters.
2160 Dashes can now start identifiers (symbols and directives).
b10dd689 2161
c046698e
AD
2162 * src/scan-gram.l ({letter}): Add dash.
2163 ({id}): Remove it.
2164 * tests/input.at (Symbols): Adjust.
2165 Remove stray comment.
2166 * tests/regression.at (Invalid inputs): Adjust error message.
2167 * doc/bison.texinfo (Symbols): Update.
2168
966aba65
JD
21692009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
2170
2171 Declare %code to be a permanent feature.
2172 * NEWS (2.4.2): Here.
2173 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
2174 experimental.
2175 (Decl Summary): Likewise.
2176
812775a0
JD
21772009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
2178
2179 Convert underscores to dashes in some %define variable names.
2180 For now, just api.push-pull and lr.keep-unreachable-states.
2181 Maintain old names for backward compatibility.
2182 * NEWS (2.5): Document.
2183 * data/c.m4 (b4_identification): Update comment.
2184 * data/yacc.c: Update access.
2185 * doc/bison.texinfo: Update.
2186 * etc/bench.pl.in (bench_grammar): Update use.
2187 * src/files.c (tr): Move to...
2188 * src/getargs.c, src/getargs.h (tr): ... here because I can't
2189 think of a better place to expose it. My logic is that, for all
2190 uses of tr so far, command-line arguments can be involved, and
2191 getargs.h is already included.
2192 * src/main.c (main): Update access.
2193 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
2194 variable names to new variable names before assigning value.
2195 * src/reader.c (reader): Update setting default.
2196 * tests/calc.at: Update uses.
2197 * tests/conflicts.at (Unreachable States After Conflict
2198 Resolution): Update use.
2199 * tests/input.at (%define enum variables): Update use.
2200 (%define backward compatibility): New test group.
2201 * tests/push.at: Update uses.
2202 * tests/reduce.at: Update uses.
2203 * tests/torture.at: Update uses.
2204
1c4aa81d
JD
22052009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
2206
2207 Set all front-end %define defaults in one place.
2208 * src/main.c (main): Move lr.keep_unreachable_states default...
2209 * src/reader.c (reader): ... to here.
2210
1d0f55cc
JD
22112009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
2212
2213 Rename lr.default_reductions to lr.default-reductions.
2214 * NEWS (2.5): Here.
2215 * doc/bison.texinfo: Here.
2216 * src/lalr.c (initialize_LA): Here.
2217 * src/print.c (print_reductions): Here.
2218 * src/reader.c (reader): Here.
2219 * src/tables.c (action_row): Here.
2220 * tests/input.at (%define enum variables): Here.
2221 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
2222
0b593457
JD
22232009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
2224
2225 Pacify ./configure --enable-gcc-warnings.
2226 * tests/input.at (Symbols): Prototype yyerror and yylex.
2227
0939aa2d
AD
22282009-04-21 Akim Demaille <demaille@gostai.com>
2229
2230 tests: check the use of dashes and periods in symbols.
2231 * tests/input.at (Symbol): New test group.
2232
0b593457 22332009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
ae618dcc
JD
2234
2235 Document how `%define "var" "value"' is not M4-friendly.
2236 * src/parse-gram.y (variable): In comments here.
2237
0b593457 22382009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
6789b8bd
JD
2239
2240 Add copyright updates missed during previous cherry pick.
2241 * src/output.c: Here.
2242 * src/parse-gram.y: Here.
2243 * src/scan-gram.l: Here.
2244
663ce7bb
AD
22452009-04-20 Akim Demaille <demaille@gostai.com>
2246
2247 variables: accept dashes.
2248 * src/scan-gram.l ({id}): Also accept dashes after the initial
2249 letter.
2250 ({directive}): Use {id}.
2251 * src/parse-gram.y: Comment and formatting changes.
2252 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
2253 symbols.
2254 * src/complain.h, src/complain.c (yacc_at): New.
2255 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
2256 symbol names.
2257 * src/output.c (token_definitions_output): Do not #define token
2258 names with dashes.
2259
379261b3
JD
22602009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
2261
2262 Clean up recent patches a little.
2263 Reported by Akim Demaille.
2264 * doc/bison.texinfo (Understanding): Fix typos.
2265 * src/print.c (print_reductions): Don't use negated variable.
2266
25029e16
JD
22672009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
2268
2269 List accepted values for a %define enum variable with an invalid value.
2270 Suggested by Akim Demaille at
2271 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
2272 * data/bison.m4 (_b4_percent_define_check_values): Implement.
2273 * src/muscle_tab.c (muscle_percent_define_check_values): Implement.
2274 * tests/input.at (%define lr.default_reductions invalid values): Merge
2275 into...
2276 (%define enum variables): ... here, and update output.
2277
620b5727
JD
22782009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
2279
2280 Rename "default rule" to "default reduction".
2281 This includes changing variable names in code, changing
2282 comments, and renaming %define lr.default_rules to %define
2283 lr.default_reductions.
2284 * NEWS (2.5): Update IELR documentation.
2285 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c:
2286 Adjust YYDEFACT and yydefact_ documentation.
2287 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
2288 and lr.type documentation. Make some other wording
2289 improvements.
2290 (Glossary): Adjust cross-references and Default Reduction
2291 definition.
2292 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
2293 Remove a confusing comment pointed out by Akim Demaille.
2294 (initialize_LA): Adjust code.
2295 * src/print-xml.c (print_reductions): Adjust code.
2296 * src/print.c (print_reductions): Adjust code.
2297 * src/reader.c (reader): Adjust code.
2298 * src/tables.c (action_row): Adjust code.
2299 (token_actions): Adjust code.
2300 * src/tables.h: Adjust YYDEFACT documentation.
2301 * tests/input.at (%define lr.default_rules invalid values):
2302 Rename test group to...
2303 (%define lr.default_reductions invalid values): ... this, and
2304 update grammar file and expected output.
2305 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
2306 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
2307
34a6c2d1
JD
23082009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2309
2310 Document %define lr.type and lr.default_rules.
2311 * NEWS (2.5): Add an entry.
2312 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
2313 besides just LALR(1) and GLR(1).
2314 * doc/bison.texinfo (Introduction): Likewise.
2315 (Language and Grammar): Bison is no longer limited to LALR(1)
2316 restrictions.
2317 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
2318 when trying to distinguish from GLR. Talk about LR(1) grammars
2319 rather than LALR(1) grammars.
2320 (Decl Summary): In %define api.push_pull entry, say it applies
2321 to deterministic parsers in C rather than LALR(1) parsers in C.
2322 Add lr.default_rules entry.
2323 Add lr.type entry.
2324 (Mystery Conflicts): Bison is no longer limited to LALR(1)
2325 restrictions.
2326 (Generalized LR Parsing): Same changes as for the previous GLR
2327 section.
2328 (Memory Management): Say deterministic rather than LALR(1).
2329 (Understanding): Correct some bison output.
2330 Index discussion of "accepting state".
2331 Say deterministic rather than LALR(1).
2332 (Bison Options): In --yacc entry, say deterministic rather than
2333 LALR(1).
2334 In --report, --graph, and --xml entries, just don't mention
2335 LALR(1).
2336 (C++ Parsers): Say deterministic rather than LALR(1).
2337 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
2338 (Glossary): Add Accepting State, Consistent State, Default Rule,
2339 and IELR(1) definitions.
2340 In Generalized LR (GLR) definition, make same changes as in
2341 previous GLR sections.
2342 In LALR(1) definition, say Bison uses LALR(1) by default rather
2343 than implying Bison is limited to LALR(1).
2344 (LocalWords): Add IELR.
2345
f805dfcb
JD
23462009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2347
2348 Finish implementing %define lr.type.
2349 Its value can be "LALR", "IELR", or "canonical LR".
2350 * lib/timevar.def (TV_IELR_PHASE1): New var.
2351 (TV_IELR_PHASE2): New var.
2352 (TV_IELR_PHASE3): New var.
2353 (TV_IELR_PHASE4): New var.
2354 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
2355 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
2356 Sbitset.h, ielr.h, and ielr.c.
2357 * src/getargs.h, src/getargs.c (enum trace, trace_args,
2358 trace_types): Add trace_ielr.
2359 * src/lalr.h, src/lalr.c (ngotos): Export it.
2360 (F): Rename to...
2361 (goto_follows): ... this, update all uses, and export it.
2362 (set_goto_map): Export it.
2363 (map_goto): Export it.
2364 (compute_lookahead_tokens): Don't free goto_follows yet. Now
2365 handled in ielr.
2366 (initialize_LA): Export it. Move lookback allocation to...
2367 (lalr): ... here because, for canonical LR, initialize_LA must
2368 be invoked but lookback and much of the rest of LALR isn't
2369 needed.
2370 * main.c (main): Instead of lalr, invoke ielr, which invokes
2371 lalr.
2372 * src/reader.c (reader): Default lr.type to "LALR".
2373 Default lr.default_rules to "accepting" if lr.type is "canonical
2374 LR". Leave the default as "all" otherwise.
2375 Check for a valid lr.type value.
2376 * src/state.h, src/state.c (struct state_list): Add state_list
2377 member.
2378 (state_new): Initialize state_list member to NULL.
2379 (state_new_isocore): New function, exported.
2380 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
2381 exercises all values of lr.type.
2382 (GNU AWK Grammar): Rename test group to...
2383 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
2384 AT_TEST_EXISTING_GRAMMAR.
2385 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
2386 (GNU pic Grammar): Rename test group to...
2387 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
2388 AT_TEST_EXISTING_GRAMMAR.
2389 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
2390 all values of lr.type.
2391 (Single State Split): New test groups using AT_TEST_LR_TYPE.
2392 (Lane Split): Likewise.
2393 (Complex Lane Split): Likewise.
2394 (Split During Added Lookahead Propagation): Likewise.
2395
166366b2
JD
23962009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2397
2398 Add new files for IELR and canonical LR implementation.
2399 * src/AnnotationList.c: New.
2400 * src/AnnotationList.h: New.
2401 * src/InadequacyList.c: New.
2402 * src/InadequacyList.h: New.
2403 * src/Sbitset.c: New.
2404 * src/Sbitset.h: New.
2405 * src/ielr.c: New.
2406 * src/ielr.h: New.
2407
03c07b03
JD
24082009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
2409
2410 Implement %define lr.default_rules.
2411 Its value describes the states that are permitted to contain
2412 default rules: "all", "consistent", or "accepting".
2413 * src/reader.c (reader): Default lr.default_rules to "all".
2414 Check for a valid lr.default_rules value.
2415 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
2416 is "accepting", then only mark the accepting state as
2417 consistent.
2418 (initialize_LA): Tell state_lookahead_tokens_count whether
2419 lr.default_rules is "accepting".
2420 * src/tables.c (action_row): If lr.default_rules is not "all",
2421 then disable default rules in inconsistent states.
2422 * src/print.c (print_reductions): Use this opportunity to
2423 perform some assertions about whether lr.default_rules was
2424 obeyed correctly.
2425 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
2426 helps with checking the parser tables for a grammar.
2427 * tests/input.at (%define lr.default_rules invalid values): New
2428 test group.
2429 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
2430 AT_TEST_TABLES_AND_PARSE.
2431 (`no %define lr.default_rules'): New test group generated by
2432 AT_TEST_LR_DEFAULT_RULES.
2433 (`%define lr.default_rules "all"'): Likewise.
2434 (`%define lr.default_rules "consistent"'): Likewise.
2435 (`%define lr.default_rules "accepting"'): Likewise.
2436
44c124a3
AD
24372009-04-20 Akim Demaille <demaille@gostai.com>
2438
2439 Consistently refer to Yacc, not YACC.
2440 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
2441
42660736
JD
24422009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
2443
2444 Pacify make maintainer-check-posix.
2445 * tests/input.at (%define, --define): Move bison command-line
2446 options before grammar file name.
2447
a2d05674
JD
24482009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
2449
2450 Document semicolon warnings.
2451 * NEWS (2.5): Here.
2452
c4fae1ef
AD
24532008-12-08 Akim Demaille <demaille@gostai.com>
2454
2455 Fix portability issue in the test suite.
2456 * tests/local.at (AT_MATCHES_CHECK): New.
2457 Based on Perl instead of Sed. Sed has too many portability
2458 pitfalls, not ever Sed is GNU Sed.
2459 * tests/actions.at (Fix user actions without a trailing semicolon):
2460 Use it.
2461
42f4393a
DJ
24622008-12-07 Di-an Jan <dianj@freeshell.org>
2463
2464 Implement the FIXME that ends an user action with a semicolon
2465 if it seems necessary.
2466 * src/scan-code.l (flex rules section): Flag cpp directive from
2467 any `#' to the first unescaped end-of-line. Semicolon is not
2468 needed after `;', `{', '}', or cpp directives and is needed after
2469 any other token (whitespaces and comments have no effect).
2470 * tests/actions.at (Fix user actions without a trailing semicolon):
2471 New test.
2472 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
2473 to make user actions complete statements.
2474 Adjust column numbers in error messages.
2475 * tests/regression.at (Fix user actions without a trailing semicolon):
2476 Remove. Covered by new test.
2477
bd5df716
AD
24782009-04-14 Akim Demaille <demaille@gostai.com>
2479
2480 doc: minor fixes.
2481 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
2482 (Table of Symbols): Remove duplicate entry for %debug.
2483
7ba0d59d
EB
24842009-04-10 Eric Blake <ebb9@byu.net>
2485
2486 submodules: update to latest
2487 * submodules/autoconf: Use latest upstream Autoconf.
2488
b4d71a96
EB
24892009-04-06 Eric Blake <ebb9@byu.net>
2490
2491 Work around autoconf 2.63b bug in testsuite.
2492 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
2493 autoconf bug related to # in test.
2494
4ecd3681
JD
24952009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
2496
2497 * NEWS (2.5): Describe new -D/--define feature.
2498
c65e5292
AD
24992008-11-10 Akim Demaille <demaille@gostai.com>
2500
2501 --trace=muscles
2502 * src/getargs.h, src/getargs.c (trace_muscle): New.
2503 (trace_types, trace_args): Support it.
2504 * src/output.c (output_skeleton): Use it.
2505
96002de2
AD
25062008-11-10 Akim Demaille <demaille@gostai.com>
2507
2508 muscles_output.
2509 * src/output.c (muscles_output): New, extracted from...
2510 (output_skeleton): here.
2511 Adjust.
2512
fadb13b5
AD
25132008-11-21 Akim Demaille <demaille@gostai.com>
2514
2515 Display the changes in cross-options.texi.
2516 * build-aux/cross-options.pl ($sep): New, to separate items.
2517 * doc/Makefile.am ($(srcdir)/cross-options.texi): Use diff to display
2518 the changes.
2519
72183df4
DJ
25202008-11-20 Di-an Jan <dianj@freeshell.org>
2521
2522 Improves options in the manual.
2523 * doc/bison.texinfo (-g, -x): Add space before argument.
2524 (Option Cross Key): Implement FIXME: listing directives also.
2525 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
2526 (Short Option): Special case -d. Put arguments inside @option.
fadb13b5 2527 (Bison Directive): Add column, automatically extracted from
72183df4
DJ
2528 src/scan-gram.l (actual name passed as the first argument)
2529 with special case for %define.
2530 * doc/Makefile.am (doc/cross-options.texi): Pass src/scan-gram.l
2531 to build-aux/cross-options.pl.
2532 * src/getargs.c (usage): Document limitations of cross-options.pl.
2533 * src/scan-gram.l: Likewise.
2534
e80b068c
AD
25352009-02-25 Akim Demaille <demaille@gostai.com>
2536
2537 Copyright years.
2538 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
2539
e3ee30b8
AD
25402008-12-08 Akim Demaille <demaille@gostai.com>
2541
2542 Install autoconf as a submodule to get m4sugar.
2543 * .gitmodules: Add submodules/autoconf.
2544 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
2545 submodules/autoconf.
2546
c4eb1e84
JD
25472008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2548
2549 Simplify last patch slightly.
2550 * src/getargs.c (getargs): Here.
2551
10fa0146
JD
25522008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2553
2554 Fix last warning from --enable-gcc-warnings.
2555 * src/getargs.c (getargs): Don't assign const address to non-const
2556 pointer.
2557
6f5be1ab
DJ
25582008-11-17 Di-an Jan <dianj@freeshell.org>
2559
2560 Handle --enable-gcc-warnings.
2561 * src/getargs.c (command_line_location): Set parameters to void.
2562
11c4e57d
AD
25632008-11-11 Akim Demaille <demaille@gostai.com>
2564
2565 AT_FULL_COMPILE.
2566 * tests/actions.at, tests/regression.at: Use it.
2567
e186a284
AD
25682008-11-07 Akim Demaille <demaille@gostai.com>
2569
2570 Pass command line location to skeleton_arg and language_argmatch.
2571 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
2572 The location argument is now mandatory.
2573 Adjust all dependencies.
2574 (getargs): Use command_line_location.
2575
e14c6831
AD
25762008-11-07 Akim Demaille <demaille@gostai.com>
2577
2578 -D, --define.
2579 * src/getargs.c (usage): Document -D.
2580 Fix help string for --locations.
2581 (command_line_location): New.
2582 (short_options, long_options, getargs): Support -D, --define.
2583 (getargs): Move -d support at the right place.
2584 * doc/bison.texinfo (Bison Options): Update.
2585 * tests/input.at (%define, --define): New.
2586
75c21b61
AD
25872008-11-07 Akim Demaille <demaille@gostai.com>
2588
2589 Initialize the muscle table before parsing the command line.
2590 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
2591 (getargs): Define file_name.
2592 * src/main.c (main): Initialize muscle_tab before calling
2593 getargs.
2594 * src/muscle_tab.c (muscle_init): No longer define file_name, as
2595 its value is not available yet.
2596
33d2a860
AD
25972008-11-09 Akim Demaille <demaille@gostai.com>
2598
2599 Require the generation of parse-gram.output.
2600 * src/Makefile.am (YACC): Pass --report=all.
2601
006faedf
JD
26022009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
2603
2604 * NEWS (2.5): New stub.
2605
ecd1b61c
JD
26062009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
2607
2608 Fix options documentation.
2609 * build-aux/cross-options.pl: As in --help output, write optional
2610 arguments as [=ARG] not =[ARG].
2611 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
2612
f67c4037
AD
26132008-11-07 Akim Demaille <demaille@gostai.com>
2614
2615 Fix --help.
2616 * src/getargs.c (usage): Fix help string for -W.
2617
0213d651
AD
26182008-11-07 Akim Demaille <demaille@gostai.com>
2619
2620 Handle more general types of option arguments.
2621 * build-aux/cross-options.pl: The argument ends at the first
2622 space, not the first non-symbol character.
2623 Use @var for each word appearing the argument description.
2624
c19178bf
JD
26252009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
2626
2627 Remove spurious initial empty lines.
2628 * data/location.cc: End the @output lines with an @.
2629
0d2b2ab0
AD
26302008-11-04 Akim Demaille <demaille@gostai.com>
2631
2632 Remove spurious initial empty lines.
2633 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
2634 * data/yacc.c: End the @output lines with an @.
2635
8ba62e3e
JD
26362009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
2637
2638 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
2639 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
2640 requirements for a correct m4 are stricter.
2641 * m4/m4.m4: Replace with Autoconf 2.63's m4/m4.m4.
2642 * configure.ac: Update to use AC_PROG_GNU_M4.
2643 Reported by Eric Blake.
2644
5bc993d9
JD
26452009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2646
2647 Help with updating web manual.
2648 * HACKING: Incorporate instructions from gnulib/doc/README.
2649 * bootstrap.conf (gnulib_modules): Add gendocs.
2650
580c075d
JD
26512009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2652
2653 Fix strange %define locations for default values.
2654 Reported by Akim Demaille at
2655 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
2656 and discussed again starting at
2657 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
2658 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
2659 because location information is bogus.
2660 Use angle brackets to delimit fake file name because square brackets
2661 look like underexpanded m4. Choose a better fake file name.
2662 Use negative line numbers.
2663 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
2664 * src/location.c (location_print): If line for a boundary is negative,
2665 only print that boundary's file name.
2666 * src/location.h: Document that.
2667 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2668 defaults): Update output.
2669
5d3a1ecb
AD
26702008-11-07 Akim Demaille <demaille@gostai.com>
2671
2672 Locations without columns for command line arguments.
2673 * src/location.c (location_print): Don't display negative columns.
2674 * src/location.h: Document this.
2675
015e86a7
JD
26762009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
2677
2678 Add reminder about uploading public key to keys.gnupg.net.
2679 * HACKING (Release Procedure): Here.
2680
c1455bab
AD
26812009-03-31 Akim Demaille <demaille@gostai.com>
2682
2683 bootstrap: --help to stdout.
2684 * bootstrap (usage): Don't send --help to stderr.
2685 Use a here doc instead of a long string.
2686
2075a82a
AD
26872009-03-31 Akim Demaille <demaille@gostai.com>
2688
2689 bootstrap: README-hacking no longer exists
2690 * bootstrap (checkout_only_file): Set to HACKING.
2691
26fccd4d
AD
26922009-03-26 Akim Demaille <demaille@gostai.com>
2693
2694 doc: merge HACKING and README-hacking.
2695 Two files is confusing.
2696 Reported by Alexandre Duret-Lutz.
5bc993d9 2697
26fccd4d
AD
2698 * README-hacking: Merge into...
2699 * HACKING (Working from the repository): here.
2700
6469c4d7
AD
27012009-03-26 Akim Demaille <demaille@gostai.com>
2702
2703 doc: update README-hacking.
2704 * README-hacking: We now use git and git submodules.
2705 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
2706
b328890a
AD
27072009-03-26 Akim Demaille <demaille@gostai.com>
2708
2709 lalr1.cc: avoid GCC 4.3 warnings.
2710 GCC 4.3 now warns about "a || b && c" and asks for explicit
2711 parentheses.
2712 Reported by Alexandre Duret-Lutz.
2713 * data/location.cc: Update copyright years.
2714 (Position::operator==): Use parens to make precedence explicit.
2715 Compare lines and columns first, as they are more likely to be
2716 different, and they are faster to compare.
2717
f3079439
AD
27182009-03-26 Akim Demaille <demaille@gostai.com>
2719
2720 gnulib: update.
2721 * gnulib: Update to latest.
2722 * lib/Makefile.am (AM_CPPFLAGS): It is now defined by gnulib, so
2723 use +=.
2724
8defe11b
AD
27252009-01-08 Akim Demaille <demaille@gostai.com>
2726
2727 Fix grep portability issues.
2728 Grep on Solaris does not support -q.
2729 Reported by Summum Bonum.
5bc993d9 2730
8defe11b
AD
2731 * NEWS: Add a stub for 2.4.2.
2732 * THANKS: Add Summum Bonum.
2733 * tests/atlocal.in (EGREP): New.
2734 (CC, CXX, XSLTPROC): Make it possible to override them via
2735 envvars.
2736 * tests/java.at: Use $EGREP instead of egrep.
2737 Use AT_CHECK's ignore instead of grep's -q.
2738
41930e7a
JD
27392008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
2740
2741 Version 2.4.1.
2742 * NEWS: Set version and date.
2743 * lib/Makefile.am: Update copyright year.
2744 * tests/atlocal.in: Update copyright year.
2745
d07932ef
JD
27462008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
2747
2748 Semicolon feature removal is not about future language support.
2749 * NEWS: The semicolon feature is no longer active for newer languages,
2750 so don't claim that it causes trouble for them.
2751
0364b334
JD
27522008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
2753
2754 * gnulib: Update submodule to HEAD.
2755
876fd835
AD
27562008-12-09 Akim Demaille <demaille@gostai.com>
2757
2758 Update data/README.
2759 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
2760
bee1df15
EB
27612008-12-05 Eric Blake <ebb9@byu.net>
2762
2763 Build testsuite with newer autoconf.
2764 * tests/output.at (m4_expand): Don't override in newer autoconf,
2765 where the underlying implementation changed.
2766 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
2767 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
2768 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
2769 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
2770 since some of them contain unbalanced ')'.
2771
7e6d1e22
JD
27722008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
2773
2774 * NEWS: Clarify a little.
2775
a957d06c
JD
27762008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
2777
2778 * NEWS: Update for recent changes.
2779
462503f8
JD
27802008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2781
2782 Fix unexpanded macros in GLR defines file.
2783 Reported by Csaba Raduly at
2784 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
2785 * THANKS (Csaba Raduly): Add.
2786 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
2787 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
2788 lexer in a separate module that includes the defines file.
2789 (AT_CHECK_CALC): Use AT_FULL_COMPILE and request compilation of lexer
2790 source.
2791 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
2792 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
2793 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
2794 (AT_DATA_SOURCE_PROLOGUE): New.
2795 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
2796 (AT_DATA_SOURCE): New.
2797 (AT_FULL_COMPILE): New, copied from master branch and extended to
2798 support an additional source file.
2799
bf151b75
JD
28002008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
2801
2802 Don't let maintainer-*-check targets force a version update.
2803 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
2804 handled.
2805
f56274a8
DJ
28062008-11-17 Di-an Jan <dianj@freeshell.org>
2807
2808 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
2809 Align menus. Adjust word wrapping. Use node names for menu names.
2810 (Examples): Don't abbreviate node names.
2811 (LocalWords): Remove abbreviations.
2812 (Copying): Make description a sentence.
bf151b75 2813 (Java Action Features): Remove period to match the rest of menu.
f56274a8 2814
b5775a81
PB
28152008-11-11 Paolo Bonzini <bonzini@gnu.org>
2816
2817 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
2818 * configure.ac: Adjust usage.
2819 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
2820 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
2821 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
2822
7ed73f82
JD
28232008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
2824
2825 Don't add a semicolon to actions for %skeleton or %language.
2826 It breaks Java test cases as reported by Akim Demaille.
2827 * src/scan-code.l: Implement.
2828
4b1ebc49
JD
28292008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
2830
2831 Clean up %skeleton and %language priority implementation.
2832 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
2833 remove static qualifier because others will soon need to see it.
2834 (language_prio): Likewise.
2835 (getargs): Use command_line_prio rather than 0.
2836 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
2837 enum fields.
2838 (skeleton_prio): Extern it.
2839 (language_prio): Extern it.
2840 * src/parse-gram.y: Use grammar_prio rather than 1.
2841
738cde3e
AD
28422008-11-04 Akim Demaille <demaille@gostai.com>
2843
2844 * NEWS: Mention the trailing semicolon in action.
2845
d6fb461d
AD
28462008-11-04 Akim Demaille <demaille@gostai.com>
2847
2848 Reformat NEWS.
2849 * NEWS: Use more outline-mode markup.
2850 Suggested by Jim Meyering.
2851
14da0cdd
JD
28522008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
2853
2854 Fix user actions without a trailing semicolon.
2855 Reported by Sergei Steshenko at
2856 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
2857 * THANKS (Sergei Steshenko): Add.
2858 * src/scan-code.l (SC_RULE_ACTION): Fix it.
2859 * tests/regression.at (Fix user actions without a trailing semicolon):
2860 New test case.
2861
c9ba9e59
JD
28622008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2863
2864 Initiate further development.
2865 * NEWS: Create an empty section for new entries.
2866 * gnulib: Update submodule to HEAD.
2867
bfb40910
JD
28682008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2869
2870 * NEWS: Version 2.4.
2871
241fda7a
JD
28722008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2873
2874 Prepare for next release.
2875 * NEWS: Briefly mention changes since 2.3b.
2876 * README: Say GNU m4 1.4.6, which we've been requiring in release
2877 announcements already, not 1.4.3, which breaks the build.
2878
ed4d67dc
JD
28792008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
2880
2881 Say %language is experimental.
2882 We're thinking of extending it's effect on output file naming. See the
2883 thread at
2884 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
2885 * NEWS: Say it's experimental.
2886 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
2887 recommend it over %skeleton for now.
2888 (Bison Options): Likewise.
2889 (C++ Bison Interface): Use %skeleton not %language.
2890 (Calc++ Parser): Use %skeleton not %language.
2891 * src/getargs.c (usage): Say it's experimental.
2892
e254a580
DJ
28932008-11-01 Di-an Jan <dianj@freeshell.org>
2894 Paolo Bonzini <bonzini@gnu.org>
2895
2896 Support all Java parser class modifiers.
2897 * data/java.m4 (b4_percent_define_get3): New.
2898 (b4_final_if, b4_strictfp_if): New.
2899 * data/lalr1.java (final, strictfp, extends, implements): Support.
2900 * doc/bison.texinfo (final, strictfp, extends, implements): Add
2901 documentation.
2902 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
2903 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
2904 (AT_CHECK_JAVA_GREP): New.
2905 (Java parser class modifiers): New test.
2906 (Java parser class extends and implements): New test.
2907
2908 Model exception propagation better with throws and lex_throws.
2909 * data/java.m4 (b4_list2): New.
2910 (throws): Change default.
2911 * data/lalr1.java (yyaction): Add throws.
2912 (parse): Add lex_throws in addition to throws.
2913 * doc/bison.texinfo (throws, lex_throws): Add documentation.
2914 * tests/java.at (Java throws specifications): New test.
2915
2916 Improve documentation for Java parsers.
2917 * doc/bison.texinfo (Java Parsers): Add subsections.
2918 Don't quote first argument of %define.
2919 (Java Bison Interface): Document output files. Move documentation
2920 of parser class and merge into Java Parser Interface. Document
2921 features that error out. Document directives with no effect.
2922 Move note about Javadoc higher.
2923 (Java Semantic Values): Explicitly mention stype.
2924 Document that generic types cannot be used.
2925 (Java Location Values): Use @deftypeivar. Document constructors.
2926 Correct return value for toString.
2927 (Java Parser Interface): List undocumented constants/fields.
2928 Move documentation of fields added by %parse-param closer to list
2929 of members. Document that token names are added as fields.
2930 Document constructors accurately. Remove error method.
2931 (Java Scanner Interface): Move note on %pure-parser to Java Bison
2932 Interface. Describe %code lexer and yylex accutately.
2933 Remove documentation that does not match the code.
2934 (Java Action Features): New.
2935 (Java Differences): Add reference. Add item on semantic values.
2936 Add note about @{ ... @}. Clarify %% epilogue placement.
2937 (Java Declarations Summary): New.
2938
2939 Fix Java skeleton.
2940 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
2941 (b4_remove_comma): Quote test argument.
2942 (b4_identification): Remove "bison" field.
2943 * tests/java.at (Java parser class and package names): New test.
2944 (Java %parse-param and %lex-param): New test.
2945 (Java stype, position_class and location_class): New test.
2946
f259e4e6
PB
29472008-10-31 Di-an Jan <dianj@freeshell.org>
2948
2949 * data/lalr1.jave: Update copyright years.
2950 (YYParser): Correct name of "generated from" file in Javadoc:
2951 use b4_file_name instead of @ofile@.
2952 (Location constructor): Correct Javadoc parameter name.
2953 (yylloc): Add missing opening m4 quote after b4_location_if.
2954 This removes a stray [ in the Javadoc of Lexer.getStartPos.
2955 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
2956 (YYParser constructor): Correct Javadoc parameter name.
2957
cae5057f
JD
29582008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
2959
2960 Always put auxiliary code files in the same dir as other output files.
2961 * src/files.c (compute_file_name_parts): When the user specifies
2962 --output but not --file-prefix, extract the directory prefix from the
2963 file prefix not from the grammar file name. This affects the location
2964 of files like location.hh generated by the C++ skeleton. The includes
2965 in the other output files require this fix.
2966 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
2967 for expected output files.
2968 (Output files): Add a test for the above.
2969
4af432ba
JD
29702008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
2971
2972 * gnulib: Update submodule to HEAD.
2973
e26d4e43
JD
29742008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2975
2976 Update copyright year.
2977 * src/files.c: Here.
2978
c0ee9e21
DJ
29792008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
2980
2981 Don't overwrite the input file.
2982 * src/files.c (output_file_name_check): Fatal error if using input file
2983 for output.
2984 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
2985 argument.
2986 (Conflicting output files): Add test.
2987
482dc52f
AD
29882008-10-28 Akim Demaille <demaille@gostai.com>
2989
2990 Space changes.
2991 * data/lalr1.cc: Formatting changes.
2992
52cbbe84
AD
29932008-10-28 Akim Demaille <demaille@gostai.com>
2994
2995 Don't define debugging functions when !YYDEBUG.
2996 * data/lalr1.cc (debug_stream, set_debug_stream)
2997 (debug_level_type, debug_level, set_debug_level): Don't
2998 declare them when YYDEBUG is not defined.
2999 The implementation are already YYDEBUG-aware.
3000
0925d5bf
AD
30012008-10-28 Akim Demaille <demaille@gostai.com>
3002
3003 Prefer "continue" for empty loop bodies.
3004 * etc/bench.pl.in: Use "continue" instead of {}.
3005
cf98343c
AD
30062008-10-28 Akim Demaille <demaille@gostai.com>
3007
3008 Space and comments changes.
3009 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
3010 * data/c.m4, data/lalr1.cc: Space changes.
3011
9f467b7d
AD
30122008-10-28 Akim Demaille <demaille@gostai.com>
3013
3014 Make gnulib a submodule.
3015 * gnulib: New.
3016 * .gitmodules (gnulib): New.
3017
0f0e1ace
JD
30182008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
3019
3020 Fix yyerror_range for user-defined location type in C++. Reported by
3021 Georg Sauthoff at
3022 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
3023 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
3024 * THANKS (Georg Sauthoff): Add.
3025
548e2104
JD
30262008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
3027
3028 Update several administrative files mainly to facilitate releasing.
3029 * HACKING (Administrivia): Make the git-merge-changelog notes more
3030 helpful.
3031 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
3032 (Release Procedure): Update for git and add numerous details that were
3033 previously missing.
3034 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
3035 * maint.mk (announcement): Don't list bison as a bootstrap tool so
3036 that announcements don't claim we bootstrapped with whatever bison
3037 happened to be in PATH. Add flex as a bootstrap tool.
3038 * Makefile.maint: Remove, previously replaced by maint.mk.
3039 * Makefile.cfg: Remove, and migrate settings to...
3040 * cfg.mk: ... here for the sake of `make announcement'.
3041 * bootstrap.conf (gnulib_modules): Add announce-gen.
3042 * README: Say GNU Bison instead of just Bison. Suggested by Karl
3043 Berry.
3044
ddf17a6e
PB
30452008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
3046
3047 Small but important bugfixes for the Java skeleton.
3048 * data/lalr1.java (yyerror): Change Location to b4_location_type.
3049 (yy_symbol_print): Call toString on yyvaluep.
3050
e1145ad8
AD
30512008-08-29 Akim Demaille <demaille@gostai.com>
3052
3053 Clarify UPDATED use.
bee1df15 3054 * doc/bison.texinfo: It refers to the last edition of this file,
e1145ad8 3055 not to the release date of Bison.
bee1df15 3056 Reported by Joel E. Denny.
e1145ad8 3057
0df72d78
AD
30582008-08-29 Akim Demaille <demaille@gostai.com>
3059
3060 * README: Update FAQ pointer.
3061 Reported by Joel E. Denny.
3062
9a90b6bb
EB
30632008-08-27 Eric Blake <ebb9@byu.net>
3064
3065 Resync m4sugar from autoconf.
3066 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
3067 (m4_init): Adjust to latest m4.git changes.
3068 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
3069 effects.
3070 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
3071 (_m4_list_cmp): Reduce side effects.
3072
65015668
AD
30732008-08-27 Akim Demaille <demaille@gostai.com>
3074
3075 Check yyerrok in calc.at.
bee1df15
EB
3076 * tests/calc.at (calc.y): Use yyerrok on "( error )".
3077 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
3078 expected.
65015668 3079
98e26a92
AD
30802008-08-27 Akim Demaille <demaille@gostai.com>
3081
3082 Support yyerrok in lalr1.cc.
3083 YYBACKUP is still to import back into lalr1.cc.
bee1df15 3084 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
98e26a92 3085
86c0e784
JD
30862008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
3087
3088 For maintainer-check*, don't recompile for a $(VERSION) update.
3089 * cfg.mk: New file.
3090 (_is-dist-target): Override the one in GNUmakefile.
3091 * Makefile.am (EXTRA_DIST): Add cfg.mk.
3092
88511166
JD
30932008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
3094
3095 Update for recent change to gnulib.
3096 * src/parse-gram.y: Don't include strverscmp.h. It comes from
3097 string.h now.
3098
6bbb2ed5
EB
30992008-08-15 Eric Blake <ebb9@byu.net>
3100
d67c52e8
EB
3101 Remaining m4sugar merge from autoconf.
3102 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
3103 * data/m4sugar/foreach.m4: New file, copied from autoconf.
3104 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
3105 * src/output.c (output_skeleton): Tell m4 how to find it.
3106
6bbb2ed5
EB
3107 Partial m4sugar merge from autoconf: m4_map.
3108 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
3109 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
3110 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
3111 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
3112 for empty list.
3113 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
3114 Likewise.
3115 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
3116 declares it.
3117
8dce3875
JD
31182008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
3119
3120 Keep .version and PACKAGE_VERSION in sync.
3121 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
3122 dependency, and add comments justifying this in more detail. Discussed
3123 starting at
3124 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
3125
882a1fbf
EB
31262008-08-06 Eric Blake <ebb9@byu.net>
3127
a3764451
EB
3128 Partial m4sugar merge from autoconf: m4_shiftn.
3129 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
3130 (m4_shift2, m4_shift3): New macros.
3131 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
3132 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
3133 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
3134 * data/java.m4 (b4_remove_comma): Likewise.
3135
882a1fbf
EB
3136 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
3137 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
3138 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
3139 (m4_init): Consolidate wrapped text into single m4_wrap.
3140 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
3141 in wrapped text.
3142
a30e920d
EB
31432008-08-05 Eric Blake <ebb9@byu.net>
3144
dfcc5959
EB
3145 Partial m4sugar merge from autoconf: builtins, version.m4.
3146 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
3147 (m4_prepend): Remove, as it is unused and inherently quadratic,
3148 whereas m4_append is linear in newer m4.
3149 (m4_mkstemp): New builtin.
3150 (m4_symbols): Make rename conditional.
3151 (m4_version_prereq): Ensure fatal error if used in bison, which
3152 intentionally lacks version.m4.
3153
a30e920d
EB
3154 Fix comments in m4sugar.
3155 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
3156
445b7470
JD
31572008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
3158
3159 Update for recent .gitignore fix in Gnulib.
3160 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
3161 anchored .gitignore entries.
3162
a1e50014
JD
31632008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
3164
3165 Set gnu or gnits strictness.
3166 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
3167 development and gnits strictness for releases. Based on Eric Blake's
3168 suggestion at
3169 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
3170
d43f77e7
PB
31712008-07-31 Paolo Bonzini <bonzini@gnu.org>
3172
3173 * NEWS: Clarify documentation of %language.
3174
fee2ed87
PB
31752008-07-31 Paolo Bonzini <bonzini@gnu.org>
3176
3177 Support usage of git-merge-changelog.
3178 * .gitattributes: New.
3179 * HACKING: Document usage of git-merge-changelog.
3180 * bootstrap: Install git-merge-changelog entries in .git/config
3181 if appropriate.
3182
78029cd5
JD
31832008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3184
3185 Remove remaining dependence on CVS Id keyword.
3186 * ChangeLog: For the sake of people still using CVS, don't use dollars
3187 when mentioning Id.
3188 * data/xslt/bison.xsl: Remove Id from header comments, where it was
3189 unusual anyway.
3190 * data/xslt/xml2dot.xsl: Likewise.
3191 * data/xslt/xml2text.xsl: Likewise.
3192 * data/xslt/xml2xhtml.xsl: Likewise.
3193 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
3194 * doc/Makefile.am (neutralize): Remove, no longer needed.
3195 (.x.1): Don't use neutralize.
3196 (edit): Don't substitute for ID.
3197 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
3198
c53d18b1
JD
31992008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3200
3201 Fix dependence on computed configure variables.
3202 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
3203 $(top_srcdir)/configure.ac so that changes to computed variables, such
3204 as PACKAGE_VERSION, are seen.
3205 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
3206
5523ac79
JD
32072008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
3208
3209 Update copyright dates for recent changes.
3210 * Makefile.am: Here.
3211 * src/Makefile.am: Here.
3212 * src/reduce.c: Here.
3213 * tests/reduce.at: Here.
3214
8fa36911
JD
32152008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
3216
3217 Use git-version-gen for version names between releases.
3218 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
3219 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
3220 * .prev-version: New.
3221 * .version.in: Remove.
78029cd5 3222 * ChangeLog: Remove the Id previously used for capturing the CVS
8fa36911
JD
3223 revision.
3224 * GNUmakefile: Remove, now copied from Gnulib.
3225 * Makefile.am: Add code suggested by comments in
3226 build-aux/git-version-gen.
3227 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
3228 .prev-version, and .version.
3229 * NEWS (2.3b+): Rename to...
3230 (?.?): ... this because we're dropping the "+" version naming scheme,
3231 but, in general, we still can't be sure of our next release name.
3232 * bootstrap: Add a quick hack to remove from .gitignore the
3233 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
3234 entry. This should really be fixed in gnulib instead.
3235 * bootstrap.conf (gnulib_modules): Add gnumakefile.
3236 * configure.ac (AC_INIT): Set version name by invoking
3237 build-aux/git-version-gen.
3238 (AC_CONFIG_FILES): Remove .version, now generated by
3239 build-aux/git-version-gen.
3240 * maint.mk: New, copied from coreutils.
3241 * doc/.cvsignore (bison.1): Add.
3242 * doc/.gitignore (/bison.1): Add.
3243 * doc/bison.1: Remove, generated.
3244 * src/.cvsignore (revision.c): Remove.
3245 * src/.gitignore (/revision.c): Remove.
3246 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
3247 (BUILT_SOURCES): Remove revision.c.
3248 (revision.c): Remove.
3249 * src/getargs.c (version): Don't print revision after the VERSION.
3250 * src/revision.h: Remove.
3251
bcf07cb7
JD
32522008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
3253
3254 Fix untranslatable composition of sentences. Reported by Goran
3255 Uddeborg at
3256 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
3257 * THANKS (Goran Uddeborg): Add.
3258 * src/reduce.c (reduce_print): Report the number of nonterminals and
3259 rules useless in the grammar in separate sentences.
3260 * tests/reduce.at (Useless Rules): Update output.
3261 (Reduced Automaton): Likewise.
3262 (Underivable Rules): Likewise.
3263 (Empty Language): Likewise.
3264
9aacab9a
JD
32652008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
3266
3267 Fix some .gitignore and .cvsignore problems.
3268 * bootstrap (insert_sorted_if_absent): Replace all uses with...
3269 (insert_vc_ignore): ... this new function, which prepends `/' to all
3270 .gitignore entries before passing them to insert_sorted_if_absent.
3271 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
3272 .cvsignore files are maintained even though Bison developers run
3273 bootstrap while using Git.
3274 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
3275 unneeded by Bison.
3276 (gnulib): Add.
3277 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
3278 unneeded. Reported by Eric Blake.
3279 * lib/.gitignore (/*~): Add.
3280 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
3281 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
3282 Blake.
3283 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
3284
a9fc7990
JD
32852008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
3286
3287 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
3288 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
3289 * bootstrap.conf (gnulib_modules): Add unsetenv.
3290 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
3291 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
3292 (/setenv.m4): Add.
3293 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
3294 the first argument because it may become position-dependent, and unset
3295 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
3296 Add comments explaining these issues in more detail.
3297
0f1d6f10
JD
32982008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
3299
3300 Add .gitignore everywhere based on .cvsignore.
3301 * .gitignore: New.
3302 * build-aux/.gitignore: New.
3303 * data/.gitignore: New.
3304 * doc/.gitignore: New.
3305 * etc/.gitignore: New.
3306 * examples/.gitignore: New.
3307 * examples/calc++/.gitignore: New.
3308 * lib/.gitignore: New.
3309 * m4/.gitignore: New.
3310 * po/.gitignore: New.
3311 * runtime-po/.gitignore: New.
3312 * src/.gitignore: New.
3313 * tests/.gitignore: New.
3314
7bd1665a
JD
33152008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3316
3317 * NEWS (2.3b+): New section, empty for now.
3318 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
3319
72c5b982
JD
33202008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3321
3322 * NEWS (2.3b): Update release date since there has been a delay in
3323 getting the announcements and tarballs out.
3324
bd02cd5d
JD
33252008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
3326
3327 * NEWS: Version 2.3b.
3328 * configure.ac (AC_INIT): Likewise.
3329 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
3330
9126263e
JD
33312008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
3332
3333 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
3334 been doing it for years.
3335 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
3336 (Release Procedure): Add FIXME about make alpha being unmaintained.
3337
fa6aa7b3
JD
33382008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
3339
3340 * data/yacc.c: Reformat m4 a little for readability.
3341 * src/lalr.c (build_relations): Correct comment.
3342
d30b312d
JMG
33432008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3344
3345 DJGPP specific issue.
3346 * djgpp/config.sed: Fixes required to run configure scripts generated
3347 by autoconf 2.62.
3348
138d4cd9
JD
33492008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
3350
3351 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
3352 coordinator@translationproject.org.
3353
8f7e2e1f
JD
33542008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3355
3356 * THANKS: Add Eric Blake.
3357
f55efa38
JD
33582008-04-23 Eric Blake <ebb9@byu.net>
3359
3360 Revert prior patch, by working around autoconf regression.
3361 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
3362 ("Output file name: ("): Uncomment test.
3363 ("Output file name: )"): Likewise.
3364 Based on an idea from Noah Misch.
3365
096c9f9d
JD
33662008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3367
3368 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
3369 2.61. Reported by Juan Manuel Guerrero at
3370 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
3371 * tests/output.at ("Output file name: ("): Comment out test case for
3372 now.
3373 ("Output file name: )"): Likewise.
3374
0f664b89
JD
33752008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3376
3377 * GNUmakefile: Update git-version-gen invocation so make dist
3378 succeeds.
3379
1cfe6375
JD
33802008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3381
3382 Update to the current gnulib CVS repository, and fix trigraph handling
3383 in Bison.
3384 * bootstrap: Update gnulib CVS repository URL.
3385 (symlink_to_dir): Encapsulate the code that guarantees the destination
3386 directory exists into...
3387 (check_dst_dir): ... this new function, and...
3388 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
3389 fail when copying files into lib/uniwidth/.
3390 * src/output.c (prepare_symbols): When writing yytname muscles, where
3391 symbol names will be encoded in C-string literals, tell quotearg to
3392 escape trigraphs. This used to be the default in gnulib.
3393 * tests/regression.at (Token definitions): Because of the change in
3394 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
3395 escapes trigraphs in symbol names. Thus, yytname no longer has
3396 trigraphs unnecessarily doubly escaped. Update test case output.
3397 Extend test case to be sure Bison's own error messages will no longer
3398 have trigraphs in symbol names unnecessarily escaped once.
3399
74c52fc8
JD
34002008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
3401
3402 Fix make dist infinite loop reported by Juan Manuel Guerrero at
3403 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
3404 * .cvsignore: Add .version.
3405 * .version.in: New.
3406 * bootstrap.conf (gnulib_modules): Add git-version-gen.
3407 * configure.ac (AC_CONFIG_FILES): Add .version.
3408 * build-aux/.cvsignore: Add git-version-gen.
3409
8e55b3aa
JD
34102008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
3411
3412 * NEWS (2.3a+): Mention that -g now takes an argument.
3413 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
3414 consistency. Update the -g and -x entries now that they take
3415 arguments. Use brackets to indicate optional arguments.
3416 * src/getargs.c (usage): Explain the relationship between arguments of
3417 long and short options more completely. Document --defines and -d
3418 separately since the former takes an argument but, for POSIX Yacc, the
3419 latter does not.
3420 (short_options): Let -W take an optional argument like --warnings.
8452fdd9 3421 (getargs): Sort cases.
8e55b3aa 3422
59c5ac72
AD
34232008-02-28 Akim Demaille <demaille@gostai.com>
3424
3425 * doc/bison.texinfo: Fix a few typos.
3426
118d4978
AD
34272008-02-28 Akim Demaille <akim@epita.fr>
3428
3429 * doc/bison.texinfo (Bison Options): Document -W.
3430 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
3431
7020f1e9
AD
34322008-02-28 Akim Demaille <akim@epita.fr>
3433
3434 * src/getargs.c (short_options): Split and sort for readability.
3435 -g and -x take optional arguments, just like their long options.
3436 * build-aux/cross-options.pl: Use /x to make the regexp easier to
3437 understand.
3438 Fix the handling of $opt which resulted in all the argument to be
3439 considered as optional.
3440
59da312b
JD
34412008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
3442
3443 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
3444 say its interface is experimental.
3445 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
3446 Java.
3447 (Bison Options): In the -L and --language entry, mention Java.
3448 (Java Bison Interface): Say the interface is experimental.
3449 * src/getargs.c (usage): Mention -L and --language.
3450
3451 * NEWS (2.3a+): Say the push parsing interface is experimental.
3452 * doc/bison.texinfo (Push Decl): Likewise.
3453 (Decl Summary): Likewise in the "%define api.push_pull" entry.
3454 (Push Parser Function): Likewise.
3455 (Pull Parser Function): Likewise.
3456 (Parser Create Function): Likewise.
3457 (Parser Delete Function): Likewise.
3458 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
3459 yypull_parse, and yypush_parse entries.
3460
3461 * NEWS (2.3a+): Mention XML support, and say the schema is
3462 experimental.
3463 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
3464 * src/getargs.c (usage): Say the XML schema is experimental.
3465
3466 * NEWS (2.3a+): Say option instead of flag.
3467
2bb3ebec
WP
34682008-02-21 Wojciech Polak <polak@gnu.org>
3469
3470 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
3471 text.
3472
333e670c
JD
34732008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
3474
3475 Fix impure push parser compile error reported by Bob Rossi at
3476 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
3477 * data/yacc.c: Clean up whitespace in the output a little.
3478 (yypstate_allocated): Define for impure push parsers regardless of
3479 whether the pull interface is also requested.
3480 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
3481 check impure push parsers without the pull interface.
3482
3483 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
3484 yyerror takes arguments specified by %parse-param while yypstate_new
3485 does not.
3486 * doc/bison.texinfo (Parser Create Function): Document that
3487 yypstate_new returns 0 for multiple impure parser instances.
3488 * tests/push.at (Push Parsing: Multiple impure instances): Update
3489 expected stderr output.
3490
798096e1
JD
34912008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3492
3493 * runtime-po/POTFILES.in (push.c): Remove.
3494
9ca7f077
JD
34952008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
3496
3497 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
3498 * data/push.c: Rename to...
3499 * data/yacc.c: ... this, overwriting it.
3500 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
3501 `%push-pull-parser' -> `%define api.push_pull "both"'.
3502 Remove old yacc.c tests, and update push.c tests to yacc.c.
3503
42ee26bb
JD
35042008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
3505
3506 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
3507 `"%code top" blocks' instead of `%code "top" blocks'.
3508 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
3509 Clean up whitespace in the output a little.
3510
b1cc23c4
JD
35112008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
3512
3513 Fix documentation problems reported by Tim Josling at
3514 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
3515 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
3516 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
3517 integers. Explain the effect of literal string aliases on error
3518 messages. Copy token 0 documentation from the C++ skeleton
3519 documentation.
3520
ab7f29f8
JD
35212008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
3522
3523 Accept a token number in a %left, %right, or %nonassoc for POSIX
3524 conformance. Reported by Tim Josling at
3525 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
3526 * NEWS (2.3a+): Mention.
3527 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
3528 and code numbers are treated by precedence declarations.
3529 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
3530 of symbols.1.
3531 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
3532 of symbol.
3533 (symbol.prec): New, just like symbol but allows INT.
3534 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
3535 longer holds.
3536 * tests/regression.at (Token number in precedence declaration): New
3537 test case.
3538
a924ef36
JMG
35392008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3540
3541 DJGPP specific issues.
3542 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
3543 be changed. Copyright timestamp adjusted.
3544 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
3545 be changed. Copyright timestamp adjusted.
3546 * djgpp/config.site: Copyright timestamp adjusted.
3547 * djgpp/config_h.sed: Copyright timestamp adjusted.
3548 * djgpp/djunpack.bat: Copyright timestamp adjusted.
3549 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
3550 filename translation list.
3551 * djgpp/subpipe.c (init_subpipe): Check the environment variables
3552 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
3553 files shall be created. Before trying to use the temp dir where the
3554 environment variable points to check that the dir really exists. If
3555 not default to the cwd as temp dir. Copyright timestamp adjusted.
3556 * djgpp/subpipe.h: Copyright timestamp adjusted.
3557 * djgpp/testsuite.sed: Copyright timestamp adjusted.
3558
389c8cfd
PE
35592008-01-30 Paul Eggert <eggert@cs.ucla.edu>
3560
3561 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
3562
5d1cfef4
PE
35632008-01-09 Paul Eggert <eggert@cs.ucla.edu>
3564
3565 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
3566 Problem reported by Claudio Saavedra in
3567 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
3568
e2dcf996
WP
35692008-01-05 Wojciech Polak <polak@gnu.org>
3570
3571 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
3572 document's title with the input grammar file name.
3573
da730230
JD
35742007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
3575
3576 Automate regression testing of the XML/XSLT implementation. Discussed
3577 starting at
3578 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
3579 * configure.ac (XSLTPROC): New substitution.
3580 * Makefile.am (maintainer-xml-check): New phony target invoking...
3581 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
3582 invoking make maintainer-check with BISON_TEST_XML=1.
3583 * tests/atlocal.in (XSLTPROC): New.
3584 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
3585 not to report reachable memory when Bison is expected to have a
3586 non-zero exit status and (2) to compare XML/XSLT output with --graph
3587 and --report=all output for every working grammar when
3588 BISON_TEST_XML=1.
3589 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
3590 (AT_BISON_CHECK_XML): New.
3591 (AT_QUELL_VALGRIND): New.
3592 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
3593 (AT_CHECK): ... don't redefine this since this was the old way to
3594 quell Valgrind.
3595 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
3596 AT_BISON_CHECK invocations.
3597 * tests/c++.at: Likewise.
3598 * tests/calc.at: Likewise.
3599 * tests/conflicts.at: Likewise.
3600 * tests/cxx-type.at: Likewise.
3601 * tests/existing.at: Likewise.
3602 * tests/glr-regression.at: Likewise.
3603 * tests/headers.at: Likewise.
3604 * tests/input.at: Likewise.
3605 * tests/java.at: Likewise.
3606 * tests/output.at: Likewise.
3607 * tests/push.at: Likewise.
3608 * tests/reduce.at: Likewise.
3609 * tests/regression.at: Likewise.
3610 * tests/sets.at: Likewise.
3611 * tests/skeletons.at: Likewise.
3612 * tests/synclines.at: Likewise.
3613 * tests/torture.at: Likewise.
3614 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
3615 tends to hang xsltproc.
3616 (Big horizontal): Likewise.
3617
408476bc
JD
36182007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
3619
3620 In XML output, remove redundant class attribute on symbol element.
3621 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
3622 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
3623 look up a symbol to determine whether it's a nonterminal or terminal.
3624 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
3625 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
3626
3627 Add prec/assoc information to XML output.
3628 * src/gram.c (grammar_rules_print_xml): For each rule that has a
3629 %prec, add a percent_prec attribute.
3630 * src/print-xml.c (print_grammar): For each terminal that has a
3631 precedence or associativity, add a prec or assoc attribute.
3632 (xml_indent): New.
3633 (xml_puts): Use xml_indent.
3634 (xml_printf): Use xml_indent.
3635 * src/print-xml.h (xml_indent): Prototype.
3636
3637 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
3638 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
3639
d4a26c48
JD
36402007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
3641
3642 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
3643 (bison:ruleByNumber): ... this for clarity.
3644 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
3645 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
3646 (xsl:template match="reduction"): Update.
3647 (xsl:template match="item"): Update.
3648 (xsl:template match="reduction"): Update.
3649
3650 In the XML output, don't print the list of rules where symbols appear.
3651 Compute it in XSLT instead. Discussed at
3652 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
3653 * data/xslt/bison.xsl (bison:ruleByLhs): New.
3654 (bison:ruleByRhs): New.
3655 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
3656 bison:ruleByRhs.
3657 (xsl:template match="terminal/rule"): Remove.
3658 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
3659 bison:ruleByRhs.
3660 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
3661 Remove.
3662 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
3663 bison:ruleByRhs and mode="number-link" for rule template.
3664 (xsl:template match="terminal/rule"): Remove.
3665 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
3666 bison:ruleByRhs and mode="number-link" for rule template.
3667 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
3668 Rewrite as...
3669 (xsl:template match="rule" mode="number-link"): ... this.
3670 * src/print-xml.c (print_grammar): Don't print the list of rules.
3671
ef1b4273
JD
36722007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
3673
3674 Don't let --report affect XML output; always print all information.
3675 Discussed at
3676 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
3677 * src/conflicts.c (log_resolution): Implement.
3678 * src/print-xml.c (print_core): Implement.
3679 (print_state): Implement.
3680 (print_xml): Implement.
3681
3682 * NEWS (2.3a+): Fix quotes.
3683 * src/parse-gram.y (prologue_declaration): For consistency with -v,
3684 don't let %verbose clear the list specified by --report.
3685
0f6cd9e3
AD
36862007-11-26 Akim Demaille <akim@epita.fr>
3687
3688 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
3689
d80fb37a
JD
36902007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
3691
3692 In the XML output, list useless and unused symbols and rules with the
3693 useful ones and add a "usefulness" attribute. Discussed starting at
3694 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
3695 * src/gram.c (grammar_rules_partial_print_xml): Remove.
3696 (grammar_rules_print_xml): Print all rules instead of just those
3697 useful in the grammar, and add a "usefulness" attribute.
3698 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
3699 * src/print-xml.c (print_rules_useless_in_parser): Remove.
3700 (print_grammar): Print all nonterminals instead of just useful ones,
3701 and add a "usefulness" attribute to nonterminals and terminals.
3702 (print_xml): Don't print a separate "reductions" or
3703 "rules-useless-in-parser" element.
3704 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
3705 (reduce_xml): Remove.
3706 (reduce_token_unused_in_grammar): New.
3707 (reduce_nonterminal_useless_in_grammar): New.
3708 * src/reduce.h (reduce_xml): Remove prototype.
3709 (reduce_token_unused_in_grammar): Add prototype.
3710 (reduce_nonterminal_useless_in_grammar): Add prototype.
3711 * data/xslt/xml2text.xsl: Update for XML changes.
3712 * data/xslt/xml2xhtml.xsl: Update for XML changes.
3713 * tests/reduce.at (Useless Terminals): Update output.
3714 (Useless Rules): Update output.
3715 (Reduced Automaton): Update output.
3716
3717 Say "Terminals unused in grammar" instead of "Unused terminals".
3718 * NEWS (2.3a+): Update.
3719 * doc/bison.texinfo (Understanding): Update example output.
3720 * src/reduce.c (reduce_output): Implement.
3721 * data/xslt/xml2text.xsl: Implement.
3722 * data/xslt/xml2xhtml.xsl: Implement.
3723
1bb2bd75
JD
37242007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
3725
3726 Accept --report-file=FILE to override the default `.output' filename.
3727 * NEWS (2.3a+): Mention.
3728 * doc/bison.texinfo (Bison Options): Add an entry.
3729 * src/files.c (compute_output_file_names): Don't override
3730 spec_verbose_file if already set.
3731 * src/getargs.c (usage): Document --report-file.
3732 (REPORT_FILE_OPTION): New anonymous enum member.
3733 (long_options): Add entry for it.
3734 (getargs): Add case for it setting spec_verbose_file.
3735
3736 * build-aux/cross-options.pl: Don't record a short option just because
3737 there's an arg.
3738 * doc/.cvsignore: Add yacc.1.
3739
a005a9c4
AD
37402007-11-14 Akim Demaille <akim@epita.fr>
3741
3742 * doc/yacc.1.in: New.
3743 * configure.ac, doc/Makefile.am: Adjust.
3744 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
3745 config.h symbol.
3746 Use AC_SUBST for assignments too.
3747 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
3748
cff03fb2
JD
37492007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
3750
3751 * src/gram.c: Remove comments that duplicate comments in gram.h.
3752
3753 When reporting useless rules and nonterminals, say "useless in grammar"
3754 instead of "useless", and say "useless in parser" instead of "never
3755 reduced". Discussed starting at
3756 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
3757 * NEWS (2.3a+): Mention this change.
3758 * data/xslt/xml2text.xsl: Update output text and expected input XML
3759 element names to match changes below.
3760 * data/xslt/xml2xhtml.xsl: Likewise.
3761 (xsl:template match="bison-xml-report"): Add missing entry in Table of
3762 Contents: "Rules useless in parser due to conflicts".
3763 * doc/bison.texinfo (Decl Summary): Reword a little.
3764 (Understanding): Update example output for changes below.
3765 * src/gram.c: (rule_useful_p): Rename to...
3766 (rule_useful_in_grammar_p): ... this.
3767 (rule_useless_p): Rename to...
3768 (rule_useless_in_grammar_p): ... this.
3769 (rule_never_reduced_p): Rename to...
3770 (rule_useless_in_parser_p): ... this.
3771 (grammar_rules_print): Update for renames.
3772 (grammar_rules_print_xml): Update for renames.
3773 (grammar_rules_never_reduced_report): Rename to...
3774 (grammar_rules_useless_report): ... this since it is used for either
3775 kind of useless rule.
3776 * src/gram.h: Reword comments and update function names in prototypes.
3777 * src/main.c (main): Say "rule useless in parser due to conflicts".
3778 * src/print-xml.c (print_rules_never_reduced): Rename to...
3779 (print_rules_useless_in_parser): ... this, and rename output XML
3780 element "rules-never-reduced" to "rules-useless-in-parser".
3781 (print_xml): Update for rename.
3782 * src/print.c (print_results): Say "Rules useless in parser due to
3783 conflicts".
3784 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
3785 (nonterminals_reduce): Say "nonterminal useless in grammar".
3786 (reduce_output): Say "Nonterminals useless in grammar".
3787 Say "Rules useless in grammar".
3788 (reduce_xml): Rename output XML element "useless" to
3789 "useless-in-grammar".
3790 (reduce_print): Don't report the count of grammatically useless rules
3791 as "rules never reduced" just because %yacc is specified.
3792 In the correct report of this count, say nonterminal(s) and rule(s)
3793 "useless in grammar".
3794 * tests/conflicts.at (S/R in initial): Update expected output.
3795 (Defaulted Conflicted Reduction): Likewise.
3796 (Unreachable States After Conflict Resolution): Likewise.
3797 * tests/existing.at (GNU pic Grammar): Likewise.
3798 * tests/reduce.at (Useless Nonterminals): Likewise.
3799 (Useless Rules): Likewise.
3800 (Reduced Automaton): Likewise.
3801 (Underivable Rules): Likewise.
3802 (Empty Language): Likewise.
3803
66f0441d
JD
38042007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
3805
3806 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
3807 here document and before the EOF so that BSD's implementation of Bourne
3808 shell doesn't parse the delimiter as part of the here document.
3809 * doc/.cvsignore: Add cross-options.texi.
3810 * src/getargs.c (usage): Add a blank line after the warning categories.
3811
d0ee4105
PB
38122007-11-08 Paolo Bonzini <bonzini@gnu.org>
3813
3814 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
3815
e8b1fb9b
AD
38162007-11-05 Akim Demaille <akim@epita.fr>
3817
3818 Remove Id: from bison.1.
3819 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
3820 (perl -0777 -pi -e 's/\.PP\nId): New.
3821 (.x.1): Use it to ignore the version control revision.
3822
2f7a96b5
AD
38232007-11-05 Akim Demaille <demaille@gostai.com>
3824
3825 * build-aux/Makefile.am: Ship cross-options.pl.
3826 * doc/Makefile.am: Always refer to cross-options.texi with
3827 $(srcdir).
3828 (MAINTAINERCLEANFILES): Add it.
3829
f4101aa6
AD
38302007-11-04 Akim Demaille <demaille@gostai.com>
3831
3832 Generate the long/short option cross-table.
3833 * build-aux/cross-options.pl: New.
3834 * doc/Makefile.am (cross-options.texi): New.
3835 * doc/bison.texinfo: Use it.
3836
727a1401
AD
38372007-11-04 Akim Demaille <demaille@gostai.com>
3838
3839 Generate bison.1 using help2man.
3840 * doc/common.x, doc/bison.x: New.
3841 * doc/Makefile.am (bison.1, .x.1): New.
3842 The code is taken from autoconf-2.61/man/Makefile.am.
3843 * configure.ac: Look for help2man.
3844
6aeb9c57
AD
38452007-11-04 Akim Demaille <demaille@gostai.com>
3846
3847 Complete --help.
3848 * src/getargs.c (usage): Document -W, make it clear that -d,
3849 -g and -x have optional arguments.
3850
d7be4085
AD
38512007-11-04 Akim Demaille <demaille@gostai.com>
3852
3853 Find sha1sum when named gsha1sum.
3854 * bootstrap (find_tool): New.
3855 ($SHA1SUM): New.
3856
d9df47b6
JD
38572007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
3858
3859 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
3860 at
3861 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
3862 * NEWS (2.3a+): Mention.
3863 * data/bison.m4 (b4_pure_if): Don't define it here.
3864 * data/c.m4 (b4_identification): Depend on individual skeletons to
3865 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
3866 values of the %define variables api.pure or api.push_pull. Define
3867 YYPURE, YYPUSH, and YYPULL accordingly.
3868 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
3869 glr.cc has already defined b4_pure_flag.
3870 * data/push.c: Define b4_pure_if based on `%define api.pure'.
3871 Remove YYPUSH and YYPULL since they're back in b4_identification again.
42ee26bb 3872 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
d9df47b6
JD
3873 * doc/bison.texinfo (Pure Decl): Update.
3874 (Push Decl): Update.
3875 (Decl Summary): Add api.pure to %define entry.
3876 In %pure-parser entry, say it's deprecated and reference %define.
3877 (Pure Calling): Update.
3878 (Error Reporting): Update.
3879 (C++ Scanner Interface): Update.
3880 (How Can I Reset the Parser): Update.
3881 (Table of Symbols): In %pure-parser entry, say it's deprecated and
3882 reference %define.
3883 * src/getargs.c (pure_parser): Remove global variable.
3884 * src/getargs.h (pure_parser): Remove extern.
3885 * src/output.c (prepare): Don't define pure_flag muscle.
3886 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
3887 wrapper around `%define api.pure'.
3888 * tests/calc.at (Simple LALR Calculator): Update.
3889 (Simple GLR Calculator): Update.
3890 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
3891 Update.
3892 (GLR: Resolve ambiguity, pure, locations): Update.
3893 (GLR: Merge conflicting parses, pure, no locations): Update.
3894 (GLR: Merge conflicting parses, pure, locations): Update.
3895 * tests/glr-regression.at (Uninitialized location when reporting
3896 ambiguity): Update
3897 * tests/input.at (Unused %define api.pure): New test case.
3898 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
3899 AT_PURE_IF and AT_PURE_AND_LOC_IF.
3900 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
3901
c373bf8b
JD
39022007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
3903
3904 %define push_pull -> %define api.push_pull. Discussed starting at
3905 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
3906 * data/push.c: Expect the new name.
3907 * data/yacc.c: Likewise.
3908 * doc/bison.texinfo (Push Decl): Update.
3909 (Decl Summary): Update %define entry.
3910 (Push Parser Function): Update.
3911 (Pull Parser Function): Update.
3912 (Parser Create Function): Update.
3913 (Parser Delete Function): Update.
3914 * tests/calc.at (Simple LALR Calculator): Update.
3915 * tests/input.at (%define enum variables): Update.
3916 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
3917 (Push Parsing: Multiple impure instances): Update.
3918 (Push Parsing: Unsupported Skeletons): Update.
3919 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
3920 (Exploding the Stack Size with Malloc): Update.
3921
3922 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
3923 other entries some.
3924
32f19b6b
JD
39252007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
3926
3927 For the XML output's terminal element, rename @number to @token-number,
3928 and add @symbol-number. In the nonterminal element, rename @number to
3929 @symbol-number. Discussed starting at
3930 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
3931 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
3932 renames.
3933 (xsl:template match="nonterminal"): Likewise.
3934 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
3935 (xsl:template match="nonterminal"): Likewise.
3936 * src/print-xml.c (print_grammar): Implement.
3937
255a6b90
JD
39382007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
3939
3940 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
3941 2007-10-11 change, the child elements here are items not rules.
408476bc 3942 (xsl:template match="item"): New.
255a6b90
JD
3943 (xsl:template match="rule"): Update for new reduced itemset.
3944 (xsl:template match="point"): Remove.
3945 (xsl:template match="empty"): For consistency with --graph, don't
3946 output "/* empty */".
3947 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
3948 line-wrap, don't pass a negative value as first-line-length since this
3949 won't work with the following changes.
3950 (xsl:template name="line-wrap"): Simplify slightly.
3951 (xsl:template name="ws-search"): Eliminate recursion.
3952 * src/print_graph.c (print_core): Don't print a reduction's lookahead
3953 set next to an item whose dot is not at the end of the RHS even if it
3954 happens to be associated with the same rule.
3955
88c78747
JD
39562007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
3957
31984206
JD
3958 Add %define lr.keep_unreachable_states.
3959 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
3960 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
3961 * src/main.c (main): Implement it.
3962 * tests/conflicts.at (Unreachable States After Conflict Resolution):
3963 Extend to test it, and fix a typo.
3964
39652007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
3966
3967 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
88c78747
JD
3968 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
3969 the example .output text.
3970 * tests/regression.at (Extra lookahead sets in report): Improve wording
3971 of comments.
3972
b7a70162
WP
39732007-10-17 Wojciech Polak <polak@gnu.org>
3974
3975 * src/print-xml.c (print_grammar): Renamed
3976 <terminal> and <nonterminal> attributes:
3977 "type" to "number" and "symbol" to "name".
3978 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
3979 Use new attribute names.
3980 (xsl:template match="nonterminal"): Likewise.
3981 * data/xslt/xml2xhtml.xsl: Likewise.
3982
a0de5091
JD
39832007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
3984
3985 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
3986 (Option Cross Key): Likewise.
3987
3988 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
3989 next to an item whose dot is not at the end of the RHS even if it
3990 happens to be associated with the same rule.
3991 * src/print.c (print_core): Likewise.
3992 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
3993 (Resolved SR Conflicts): Update output.
3994 * tests/regression.at (Extra lookahead sets in report): New test case.
3995
4c20d18d
WP
39962007-10-11 Wojciech Polak <polak@gnu.org>
3997
3998 * src/print-xml.c (print_core): Remove item set
3999 redundancy.
4000 * data/xslt/bison.xsl (bison:ruleNumber): New key.
4001 Improve processing time. Suggested by Joel E. Denny.
4002 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
4003 Write xsl:param "required" attribute as comment.
4004 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
4005 (xsl:template match="rule"): Support new reduced itemset.
4006 (xsl:template match="point"): Remove.
4007 * data/xslt/xml2xhtml.xsl: Likewise.
4008
f506ad1c
JD
40092007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
4010
4011 * src/getargs.c (version): Update copyright year.
4012
21f1b063
JD
40132007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
4014
4015 Make xml2dot.xsl and --graph produce the same output.
4016 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
4017 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
4018 escaped later.
4019 (xsl:template name="output-node"): Use the new escape template instead
4020 of the string-replace template directly.
4021 (xsl:template name="output-edge"): Likewise.
4022 (xsl:template name="escape"): New, escapes backslashes and newlines in
4023 addition to quotation marks.
4024 * src/graphviz.c (start_graph, output_node, output_edge): Add
4025 whitespace to output for legibility.
4026
4027 Make xml2text.xsl and --report produce the same output, and remove the
4028 XML "conflicts" element since a conflict summary is easily extracted
4029 from the automaton.
4030 * data/xslt/bison.xsl: New.
4031 (xsl:template match="state" mode="bison:count-conflicts): New.
4032 * data/xslt/xml2text.xsl: Import bison.xsl.
4033 (xsl:template match="bison-xml-report"): Instead of styling the
4034 "conflicts" element, style the "automaton" element with mode
4035 "conflicts". Unlike the former, the latter lists S/R and R/R
4036 conflicts for a state on the same line.
4037 (xsl:template match="conflicts"): Remove.
4038 (xsl:template match="conflict"): Remove.
4039 (xsl:template match="terminal"): Line-wrap the list of rules in which
4040 the terminal is used.
4041 (xsl:template match="nonterminal"): Likewise for nonterminals.
4042 (xsl:template match="automaton" mode="conflicts"): New.
4043 (xsl:template match="state" mode="conflicts"): New.
4044 (xsl:template name="line-wrap"): New.
4045 (xsl:template name="ws-search"): New.
4046 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
4047 (xsl:template match="bison-xml-report"): Instead of styling the
4048 "conflicts" element, style the "automaton" element with mode
4049 "conflicts."
4050 (xsl:template match="conflicts"): Remove.
4051 (xsl:template match="conflict"): Remove.
4052 (xsl:template match="automaton" mode="conflicts"): New.
4053 (xsl:template match="state" mode="conflicts): New.
4054 * src/conflicts.c (conflicts_output_xml): Remove.
4055 * src/conflicts.h (conflicts_output_xml): Remove prototype.
4056 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
4057 * src/print.c (print_grammar): Consistently wrap at the 66th column so
4058 the corresponding XSLT is easier. Also, never wrap between a word and
4059 the comma that follows it.
4060
793fbca5
JD
40612007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
4062
4063 Improve C++ namespace support. Discussed starting at
4064 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
4065 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
4066 b4_namespace_close): New macros that interpret the %define variable
4067 "namespace" so its value can contain "::" to indicate nested
4068 namespaces.
4069 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
4070 the above macros.
4071 * data/lalr1.cc (b4_namespace): Likewise.
4072 * data/location.cc (b4_namespace): Likewise.
4073 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
4074 inside a new table in the general %define entry. Document `%define
4075 namespace' there as well. Point the %name-prefix entry to it since it
4076 explains it more completely in the case of C++.
4077 (C++ Bison Interface): Mention `%define namespace' instead of
4078 %name-prefix.
4079 (Table of Symbols): Remove the `%define push_pull' entry. The %define
4080 entry suffices.
4081 * tests/c++.at (Relative namespace references): New test case.
4082 (Absolute namespace references): New test case.
4083 (Syntactically invalid namespace references): New test case.
4084 * tests/input.at (C++ namespace reference errors): New test case.
4085
35b8730d
JD
40862007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
4087
4088 Add syncline support and location accessor to internal %define
4089 interfaces.
4090 * data/bison.m4 (b4_percent_define_get_loc): New.
4091 (b4_percent_define_get_syncline): New.
4092 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
4093 (b4_percent_define_default): Record defining location as line 1 rather
4094 than 0 for the sake of synchronizing #line's, and define
4095 b4_percent_define_syncline(VARIABLE).
4096 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
4097 * src/muscle_tab.c (muscle_syncline_grow): New.
4098 (muscle_code_grow): Use muscle_syncline_grow.
4099 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
4100 define b4_percent_define_syncline(VARIABLE).
4101 (muscle_percent_define_get_loc): New.
4102 (muscle_percent_define_get_syncline): New.
4103 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
4104 remove some unused variables.
4105 (muscle_percent_define_default): Record defining location as line 1
4106 rather than 0 for the sake of synchronizing #line's, and define
4107 b4_percent_define_syncline(VARIABLE).
4108 (muscle_percent_define_check_values): Use
4109 muscle_percent_define_get_loc.
4110 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
4111 (muscle_percent_define_get_syncline): Prototype.
4112 * tests/skeletons.at (%define Boolean variables: invalid skeleton
4113 defaults): Update output for location change.
4114 (Complaining during macro argument expansion): Extend to test
4115 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
4116
7dc4a694
JD
41172007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
4118
4119 Fix some error-reporting macro bugs.
4120 * data/bison.m4 (b4_cat): New.
4121 (b4_error, b4_error_at): Use b4_cat to send error directives directly
4122 to stdout so they don't become arguments to other macros. Update
4123 comments and add examples.
4124 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
4125 add examples.
4126 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
4127 after printing the error directive so that M4 doesn't report subsequent
4128 problems that are induced by this problem.
4129 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
4130 instead of just in them. Recognize @\n in both places. Both expand to
4131 the empty string. Needed by b4_cat.
4132 * tests/skeletons.at (Complaining during macro argument expansion):
4133 New test case.
4134 (Fatal errors make M4 exit immediately): New test case.
4135
d4bd2295
JD
41362007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
4137
4138 Implement --print-datadir.
4139 * src/getargs.c (usage): Mention.
4140 (PRINT_DATADIR_OPTION): New anonymous enum member.
4141 (long_options): Add entry for it.
4142 (getargs): Add case for it calling compute_pkgdatadir.
4143 * src/output.c (output_skeleton): Encapsulate data directory
4144 computation from here...
4145 (prepare): ... and from here...
4146 (compute_pkgdatadir): ... into this new function.
4147 * src/output.h (compute_pkgdatadir): Prototype.
4148
34cdeddf
JD
41492007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
4150
4151 * src/print-xml.c (escape_bufs): New static global variable
4152 replacing...
4153 (xml_escape_n): ... the static local variable buf here.
4154 (print_xml): Free memory for escape_bufs.
4155 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
4156
d782395d
JD
41572007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
4158
4159 Replace `%push-parser' and `%push-pull-parser' with
4160 `%define push_pull "push"' and `%define push_pull "both"'.
4161 `%define push_pull "pull"' is the default.
4162 * doc/bison.texinfo (Push Decl, Push Parser Function,
4163 Pull Parser Function, Parser Create Function, Parser Delete Function):
4164 Update declarations.
4165 (Decl Summary, Table of Symbols): Replace %push-parser and
4166 %push-pull-parser entries with a %define push_pull entry.
4167 * data/bison.m4 (b4_percent_define_check_values): New macro.
4168 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
4169 definitions...
4170 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
4171 definitions...
4172 * data/push.c: ... to here and compute them from the value of the
4173 %define variable push_pull.
4174 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
4175 parsing requests here...
4176 * data/yacc.c: ... hack this to switch to push.c any time
4177 b4_use_push_pull_flag or the %define variable push_pull is set. This
4178 will go away when we mv push.c yacc.c.
4179 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
4180 push parsing is not supported since unused %define variables are
4181 reported anyway.
4182 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
4183 * src/muscle_tab.h (muscle_percent_define_check_values): Update
4184 comments for consistency with b4_percent_define_check_values.
4185 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
4186 muscles.
4187 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
4188 Remove.
4189 (prologue_declaration): Remove %push-parser and %push-pull-parser
4190 rules.
4191 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
4192 * tests/calc.at: Update declarations.
4193 * tests/input.at (%define enum variables): New test case.
4194 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
4195 declaration.
4196 (Push Parsing: Multiple impure instances): Update declaration.
4197 (Push Parsing: Unsupported Skeletons): New test case.
4198 * tests/torture.at (Exploding the Stack Size with Alloca): Update
4199 declaration.
4200 (Exploding the Stack Size with Malloc): Update declaration.
4201
3f999f78
WP
42022007-09-24 Wojciech Polak <polak@gnu.org>
4203
4204 Add XSLT transformations.
4205
4206 * data/xslt/xml2dot.xsl: Transform XML into DOT.
4207 * data/xslt/xml2text.xsl: Transform XML into plain text.
4208 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
4209 * data/Makefile.am (xsltdir): New variable.
4210 (dist_xslt_DATA): Add xslt/*.xsl files.
4211
a4f75309
PE
42122007-09-23 Paul Eggert <eggert@cs.ucla.edu>
4213
4214 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
4215 Problem reported by Wojciech Polak.
4216 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
4217 (xml_printf): Undo change I made on 21 September; that is,
4218 indent 2 spaces, not 1.
4219
ad5feac4
JD
42202007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
4221
4222 Pacify ./configure --enable-gcc-warnings.
4223 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
4224 `char const *' instead of `char *'.
4225 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
4226 local variable `sep'.
4227
41d7a5f2
PE
42282007-09-21 Paul Eggert <eggert@cs.ucla.edu>
4229
4230 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
4231 elsewhere.
4232 * src/print-xml.c: Prefer "const" after types; that's more consistent.
4233 (xml_printf): Indent just 1 space for level.
4234 (e_char, xlate_char): Remove.
4235 (xml_escape_string): Rewrite to avoid undefined behavior (used
4236 storage that was freed from the stack).
4237 (xml_escape_n): Don't bother checking for subscript error.
4238
3f999f78
WP
42392007-09-21 Wojciech Polak <polak@gnu.org>
4240
4241 Add Bison XML Automaton Report.
41d7a5f2
PE
4242
4243 Add support for an -x option to generate an XML report.
4244 It is not documented yet.
4245 * src/print-xml.c: New file.
4246 * src/print-xml.h: Likewise.
4247 * lib/timevar.def (TV_XML): New var.
4248 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
4249 * src/conflicts.c: Include print-xml.h.
4250 (solved_conflicts_xml_obstack): New var.
4251 (log_resolution, conflicts_solve, conflicts_free):
4252 Add support for XML report.
4253 (conflicts_output_val): New function.
4254 * src/conflicts.h (conflicts_output_val): New decl.
4255 * src/files.c (spec_xml_file): New var.
4256 (compute_output_file_names, output_file_names_free): Add XML support.
4257 * src/files.h (spec_xml_file): New decl.
4258 * src/getargs.c (xml_flag): New var.
4259 (usage, short_options, long_options, getargs): Add XML support.
4260 * src/getargs.h (xml_flag): New decl.
4261 * src/gram.c: Include print-xml.h.
4262 (rule_lhs_print_xml, rule_rhs_print_xml):
4263 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
4264 New functions.
4265 * src/gram.h: Declare external ones.
4266 * src/main.c: Include print-xml.h.
4267 (main): Add XML support.
4268 * src/reduce.c: Include print-xml.h.
4269 (reduce_xml): New function.
4270 * src/reduce.h: Declare it.
4271 * src/state.c: Include print-xml.h.
4272 (state_new): Add XML support.
4273 (state_rule_lookahead_tokens_print_xml): New function.
4274 * src/state.h: Declare it.
4275 (struct state): New member solved_conflicts_xml.
4276 * src/symtab.c (symbol_class_get_string): New function.
4277 * src/symtab.h: Declare it.
4278
6d8e724d
PE
42792007-09-21 Paul Eggert <eggert@cs.ucla.edu>
4280
4281 * GNUmakefile: Switch to coreutils's version.
4282 * bootstrap: Likewise.
4283 * Makefile.cfg: Adjust to new GNUmakefile.
4284 * README-hacking: Likewise.
4285
4286 Import from gnulib:
4287
4288 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
4289 Bruno Haible <bruno@clisp.org>
4290
4291 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
4292 and is a script that invokes bison. Tighten the code. Add comments.
4293
922bdd7f
JD
42942007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
4295
4296 Spell "boolean" as "Boolean". Reported by Akim Demaille.
4297 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
4298 * doc/bison.texinfo (Decl Summary): Fix.
4299 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
4300 * tests/input.at (Boolean %define variables): Update output.
4301 * tests/skeletons.at (%define boolean variables: invalid skeleton
4302 defaults): Rename to...
4303 (%define Boolean variables: invalid skeleton defaults): ... this and
4304 update output.
4305
1b17b01d
JD
43062007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
4307
4308 In impure push mode, don't allow more than one yypstate to be allocated
4309 since multiple impure parsers would corrupt yynerrs.
4310 * data/push.c (yypstate_allocated): New static global variable
4311 initialized to 0.
4312 (yypull_parse): If yypstate_new returns 0, don't report it as memory
4313 exhaustion if yypstate_allocated is 1, but still return 2.
4314 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
4315 already 1. Otherwise, set it to 1.
4316 (yypstate_delete): Set it to 0.
4317 * tests/push.at (Push Parsing: Multiple impure instances): New test
4318 case.
4319
9987d1b3
JD
43202007-08-17 Bob Rossi <bob@brasko.net>
4321
4322 * doc/bison.texinfo (Push Decl): Document the push parser.
4323 (Table of Symbols): Ditto.
4324 (Pure Decl): Ditto.
4325 (Decl Summary): Ditto.
4326 (Multiple Parsers, Push Parser Function, Pull Parser Function,
4327 Parser Create Function, Parser Delete Function):
4328 Add new push parser symbols.
4329 (Table of Symbols): Document push-parser, push-pull-parser,
4330 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
4331
f16b0819
PE
43322007-08-15 Paul Eggert <eggert@cs.ucla.edu>
4333
4334 Update to GPLv3.
4335 * doc/gpl-3.0.texi: New file.
4336 * doc/gpl.texi: Remove.
4337 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
4338 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
4339 * README-hacking, TODO, bootstrap, bootstrap.conf:
4340 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
4341 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
4342 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
4343 * data/lalr1.cc, data/lalr1.java, data/location.cc:
4344 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
4345 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
4346 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
4347 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
4348 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
4349 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
4350 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
4351 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
4352 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
4353 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
4354 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
4355 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
4356 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
4357 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
4358 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
4359 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
4360 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
4361 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
4362 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
4363 * src/complain.c, src/complain.h, src/conflicts.c:
4364 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
4365 * src/files.h, src/flex-scanner.h, src/getargs.c:
4366 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
4367 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
4368 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
4369 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
4370 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
4371 * src/print.c, src/print.h, src/print_graph.c:
4372 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
4373 * src/reduce.h, src/relation.c, src/relation.h:
4374 * src/revision.h, src/scan-code.h, src/scan-code.l:
4375 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
4376 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
4377 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
4378 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
4379 * tests/Makefile.am, tests/actions.at, tests/c++.at:
4380 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
4381 * tests/existing.at, tests/glr-regression.at:
4382 * tests/headers.at, tests/input.at, tests/java.at:
4383 * tests/local.at, tests/output.at, tests/push.at:
4384 * tests/reduce.at, tests/regression.at, tests/sets.at:
4385 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
4386 * tests/torture.at:
4387 Update to GPLv3.
4388
728c4be2
JD
43892007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
4390
4391 Get rid of broken %no-parser, -n, and --no-parser implementation and
4392 documentation.
4393 * TODO: Don't mention them.
4394 * doc/bison.1: Likewise.
4395 * doc/bison.texinfo (Decl Summary): Likewise.
4396 (Bison Options): Likewise.
4397 (Option Cross Key): Likewise.
4398 * src/getargs.c (no_parser_flag): Remove global variable.
4399 (usage): Don't print description of -n and --no-parser.
4400 (long_options): Remove --no-parser entry here.
4401 (getargs): Remove -n case in the switch here.
4402 * src/getargs.h (no_parser_flag): Remove extern.
4403 * tests/regression.at (Web2c Actions): Remove comment that mentions
4404 --no-parser.
4405
5d31a216
JD
44062007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
4407
4408 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
4409 name user variables starting with `yy'. Just pass NULL instead of a
4410 dummy local &yylval to yypush_parse.
4411 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
4412 starting with `yy'.
4413
a2ea208d
JD
44142007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
4415
4416 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
4417 true since it's then always used regardless of whether yyoverflow is
4418 defined. Reported by Christian Burger at
4419 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
4420 * THANKS: Add Christian Burger.
4421
91661ebb
JD
4422 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
4423 node names: say "Decl Summary" not "Bison Declaration Summary".
4424
cbd50549
JD
44252007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
4426
4427 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
4428 determine whether this function has already complained about an invalid
4429 value for a %define boolean variable, don't check whether Bison has
4430 ever examined the value. As written, the check was a tautology.
4431 Instead, record and check for this complaint using a separate muscle.
4432
eb1b0740
JD
44332007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4434
4435 Fix push parsing memory leak reported by Brandon Lucia at
4436 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
4437 * THANKS: Add Brandon Lucia.
4438 * data/push.c (yypstate_delete): Free the stack if it was reallocated
4439 but the parse never completed and thus freed it.
4440 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
4441 * tests/testsuite.at: Include push.at.
4442 * test/push.at: New.
4443 (Push Parsing: Memory Leak for Early Deletion): New test case.
4444
9d774aff
JD
44452007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
4446
4447 Improve handling of multiple S/R conflicts in the same state and of S/R
4448 conflicts involving multiple reductions.
4449 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
4450 set for a state here or Bison will abort if it is reassigned on a
4451 later conflicted reduction in the same state.
4452 Similarly, don't finalize and assign the solved conflicts report here
4453 or it will be lost if it is reassigned on a later conflicted reduction
4454 in the same state.
4455 (set_conflicts): Instead, assign them both here after all S/R conflicts
4456 in the state have been fully examined.
4457 * src/print.c (shift_set): Rename to...
4458 (no_reduce_set): ... this.
4459 (print_reductions): Update for rename, and add %nonassoc error action
4460 tokens to no_reduce_set so that, when printing the first remaining
4461 reduction on an error action token, the reduction is enclosed in
4462 brackets.
4463 (print_results): Update for rename.
4464 * tests/conflicts.at (Solved conflicts report for multiple reductions
4465 in a state): New test case.
4466 (%nonassoc error actions for multiple reductions in a state): New test
4467 case.
4468
4469 * src/main.c (main): Don't depend on C99 features.
4470
10159d2a
JD
44712007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
4472
4473 * build-aux/.cvsignore: Add compile.
b541ffdf
JD
4474 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
4475 uniwidth.
10159d2a 4476
953b3935
JD
44772007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
4478
4479 * bootstrap (slurp): Create target directories that don't exist.
4480 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
4481
6ce2d93a
JD
44822007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
4483
4484 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
4485 than item number.
4486 * closure.c (closure): Likewise.
4487 * state.h (reductions): Comment sorting of rules.
4488 (state): Comment sorting of items.
4489
ce3448d5
JD
44902007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
4491
4492 Fix C++ test cases after recent Gnulib changes. Discussed starting at
4493 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
4494 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
4495 definition in order to avoid Gnulib headers since we don't use config.h
4496 here.
4497 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
4498 rather than AT_DATA so that config.h is included.
4499
8a86eef0
JD
45002007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
4501
4502 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
4503 instead of fprintf. Guard these functions with #if YYDEBUG instead of
4504 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
4505 and so that YYFPRINTF is guaranteed to be defined here.
4506
b1a81613
JD
45072007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
4508
4509 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
4510 with...
4511 (muscle_percent_define_check_values): ... this more helpful function.
4512 Again, it's not used yet, but it will be.
4513 * src/muscle_tab.h: Likewise.
4514
71b61d4d
JD
4515 Improve some comments in parser table construction.
4516 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
4517 (generate_states): Don't mention ruleset, which is internal to closure.
4518 * src/closure.c (closure): Explain sorting of core and itemset, which
4519 is required for this function to behave correctly.
4520 * src/closure.h (closure): Mention sorting.
4521
2a6b783d
JD
45222007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
4523
4524 * src/lalr.c (state_lookahead_tokens_count): For code readability,
4525 move the check for disabled transitions to an aver since conflict
4526 resolution hasn't happened yet.
4527
4528 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
4529 labels a state as inconsistent just because it has error transitions.
4530 The original form of this check appeared in revision 1.1 of lalr.c,
4531 which was committed on 1991-12-21. Now (at least), changing the
4532 consistency label on such a state appears to have no useful effect in
4533 any of the places it is examined, which I enumerate below. The key
4534 point to understanding each item in this enumeration is that a state
4535 with an error transition is labelled consistent in the first place only
4536 if it has no rules, so the check cannot matter for states that have
4537 rules. (1) Labelling a state as inconsistent will cause set_conflicts
4538 to try to identify its conflicts, and a state must have *rules* to have
4539 conflicts. (2) Labelling a state as inconsistent will affect how
4540 action_row sets the default *rule* for the state. (3) Labelling a
4541 state as inconsistent will cause build_relations to add lookback edges
4542 to *rules* in that state.
4543 * src/state.h (struct state): Word the comment for member consistent
4544 more carefully.
4545
14462c2b
JD
45462007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4547
4548 Don't depend on C99 features.
4549 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
4550 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
4551 * src/reader.c (check_and_convert_grammar): Fix for-loop.
4552 * src/state.c (state_mark_reachable_states): Fix for-loop.
4553 (state_remove_unreachable_states): Fix for-loop.
4554
4555 Don't widen struct state with member reachable just to temporarily
4556 record reachability. Instead, use a local bitset.
4557 * src/state.h (struct state): Remove member.
4558 * src/state.c (state_new): Don't initialize it.
4559 (state_mark_reachable_states): Rename to...
4560 (state_record_reachable_states): ... this, and use bitset.
4561 (state_remove_unreachable_states): Use bitset.
4562
5a43d418
JD
45632007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
4564
4565 * src/Makefile.am (yacc): Quote target action commands properly so
4566 that the yacc script isn't corrupt. Reported by Hans Aberg at
4567 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
4568
0c650a20
JD
4569 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
4570 the case of pure parsers. Reported by Frans Englich at
4571 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
4572 * THANKS: Add Frans Englich.
4573
61fee93e
JD
4574 * NEWS (2.3a+): In the %code entry, reference section `Bison
4575 Declaration Summary' from the manual now since the %code summary has
4576 moved there.
4577 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
4578 in the rules section must be terminated by semicolons.
4579
f124d423
JD
45802007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
4581
4582 Extend the front-end API for %define variables to more completely
4583 mirror the back-end. This will be useful in the future.
4584 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
4585 Update comments to mention the new front-end counterparts of these
4586 macros.
4587 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
4588 for muscle_string_decode and muscle_location_decode.
4589 (muscle_string_decode): New static function.
4590 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
4591 (muscle_percent_define_get, muscle_percent_define_ifdef): New
4592 functions.
4593 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
4594 muscle_percent_define_get to mimic the b4_percent_define_flag_if
4595 implementation more closely.
4596 (muscle_percent_define_invalid_value): New function.
4597 * src/muscle_tab.h (muscle_percent_define_get,
4598 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
4599 Prototype.
4600
75ad86ee
JD
46012007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
4602
4603 * NEWS (2.3a+): Mention yesterday's state-removal change.
4604 (2.3a): Remove the %language entry, which was added after 2.3a.
4605 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
4606 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
4607 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
4608 tests/existing.at: Update copyright date.
4609
5967f0cf
JD
46102007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4611
4612 If conflict resolution makes states unreachable, remove those states,
4613 report rules that are then unused, and don't report conflicts in those
4614 states.
4615 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
4616 New global function.
4617 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
4618 function.
4619 * src/main.c (main): After conflict resolution, remove the unreachable
4620 states and update all data structures that reference states by number.
4621 * src/state.c (state_new): Initialize each state's reachable member to
4622 false.
4623 (state_mark_reachable_states): New static function.
4624 (state_remove_unreachable_states): New global function.
4625 * src/state.h (struct state): Add member bool reachable.
4626 (state_remove_unreachable_states): Prototype.
4627 * tests/conflicts.at (Unreachable States After Conflict Resolution):
4628 New test case.
4629 * tests/existing.at (GNU pic Grammar): Update test case output now that
4630 an unused rule is discovered.
4631
b09f4f48
JD
46322007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4633
4634 Minor code cleanup in parser table construction.
4635 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
4636 (new_itemsets, save_reductions): Update for rename to nitemset.
4637 * src/closure.c (nritemset): Rename to...
4638 (nitemset): ... this since the "r" appears to meaningless and isn't
4639 used in the comments.
4640 (closure): Update for rename.
4641 * src/closure.h (nritemset): Update extern to...
4642 (nitemset): ... this.
4643 * src/lalr.c (LA): Fix a typo in comments.
4644 * src/print.c (print_core): Update for rename to nitemset.
4645 * src/print_graph.c (print_graph): Likewise.
4646 * src/state.h: Fix some typos in header comments.
4647
bbb44d83
PE
46482007-04-04 Paul Eggert <eggert@cs.ucla.edu>
4649
9b33de72
PE
4650 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
4651 still sticks to ASCII. Sorry!
4652
bbb44d83
PE
4653 * README-hacking: New file, taken mostly from coreutils, with changes
4654 for Bison. Contains much of the contents of:
4655 * README-cvs: Remove.
4656 * bootstrap: Sync from gnulib.
4657 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
4658 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
4659
29553547
JD
46602007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
4661
4662 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
4663 Setzer.
4664 (Java Differences): Fix some typos.
4665 * THANKS: Add Sebastian Setzer.
4666
01b477c6
PB
46672007-03-07 Paolo Bonzini <bonzini@gnu.org>
4668
730739e4
AD
4669 * data/java.m4 (b4_single_class_if): Remove.
4670 (b4_abstract_if): Look at "%define abstract".
4671 (b4_lexer_if): New.
4672 (b4_union_name): Rename...
4673 (b4_yystype): ... to this. Map to "%define stype".
4674 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
4675 b4_maybe_throws): Fix quoting.
4676 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
4677 * data/lalr1.java (Lexer interface): Always define.
4678 (Lexer interface within parser class): Remove.
4679 (YYLexer class): New, used when "%code lexer" is present.
4680 (constructor): When "%code lexer" is used, pass %lex-param
4681 to the lexer constructor.
4682 (yylex, yyparse): Remove %lex-param from method invocations
4683 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
4684
4685 * doc/bison.texinfo (Java Bison Interface): Mention "%define
4686 abstract". Rename "%define union_name" to "%define stype".
4687 Rename method names according to previous patch.
4688 (Java Scanner Interface): Describe "%code lexer" instead of
4689 "%pure-parser" and "%define single_class".
4690 (Java Differences): Mention "%code lexer".
4691
4692 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
4693 Include scanner here, using macros from tests/local.at.
4694 (AT_DATA_CALC_Y): Remove final argument.
4695 (_AT_CHECK_JAVA_CALC): Likewise.
4696 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
4697 of %locations and %error-verbose.
4698 (main): Test with and without %lex-param.
4699 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
4700 (AT_BISON_OPTION_POPDEFS): Pop it.
01b477c6 4701
122bea3a
JMG
47022007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4703
4704 DJGPP spefic issue. Inhibit the use of disallowed characters for
4705 file name genertion on Win98, WinXP, etc. These are |<>":?*\
4706 and concern testsuite case 46.
4707 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
4708 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
4709 * djgpp/config.bat: Inhibit the use of disallowed characters.
4710
9611cfa2
JD
47112007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
4712
4713 Miscellaneous %define and %code cleanup.
4714 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
4715 values are interpreted.
4716 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
4717 documentation a little more.
4718 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
4719 muscle_percent_define_insert, muscle_percent_code_grow): New
4720 functions/macros.
4721 * src/muscle_tab.h (muscle_percent_define_insert,
4722 muscle_percent_code_grow): Prototype.
4723 * src/parse-gram.y (prologue_declaration): Use
4724 muscle_percent_define_insert and muscle_percent_code_grow when parsing
4725 %define and %code directives.
4726
4727 Make it easy to share %define boolean variables between the front-end
4728 and back-end. Though not used yet, this will be useful in the future.
4729 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
4730 Bison uses of names rather than just skeleton uses of names.
4731 (b4_percent_define_get, b4_percent_define_ifdef): Rename
4732 b4_percent_define_skeleton_variables(VARIABLE) to
4733 b4_percent_define_bison_variables(VARIABLE).
4734 (b4_percent_code_get, b4_percent_code_ifdef): Rename
4735 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
4736 b4_percent_code_bison_qualifiers(QUALIFIER).
4737 (b4_check_user_names_wrap): Update for renames.
4738 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
4739 muscle_percent_define_default): New functions mimicking
4740 b4_percent_define_flag_if and b4_percent_define_default.
4741
4742 For %define variables, report locations for invalid values and
bbb44d83 4743 redefinitions.
9611cfa2
JD
4744 * data/bison.m4 (b4_percent_define_flag_if): Read
4745 b4_percent_define_loc(VARIABLE) to report the location of an invalid
4746 value for VARIABLE.
4747 (b4_percent_define_default): Save a special location in
4748 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
4749 must later be reported as invalid.
4750 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
4751 functions.
4752 (muscle_percent_define_insert): Record the location of VARIABLE in
4753 muscle percent_define_loc(VARIABLE), and use it to report the previous
4754 location for a redefinition.
4755 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
4756 (muscle_percent_define_default): Update like b4_percent_define_default.
4757 (muscle_grow_user_name_list): Rename to...
4758 (muscle_user_name_list_grow): ... this for consistency and use
4759 muscle_location_grow.
4760 * src/muscle_tab.h (muscle_location_grow): Prototype.
4761 * tests/input.at (%define errors): Update expected output.
4762 * tests/skeletons.at (%define boolean variables: invalid skeleton
4763 defaults): New test case.
4764
0bf92491
JD
47652007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
4766
4767 * src/print.c (lookahead_set, state_default_rule): Remove.
4768 (print_reductions): Replace state_default_rule invocation with
4769 equivalent use of yydefact, which was computed in token_actions in
4770 tables.c.
4771 (print_results): Don't allocate lookahead_set.
4772
d3b12988
PB
47732007-02-27 Paolo Bonzini <bonzini@gnu.org>
4774
4775 * data/lalr1.java: Prefix all private members with yy.
4776
f57a7536
JD
47772007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
4778
4779 Use YYFPRINTF instead of fprintf where appropriate. Reported by
9b33de72 4780 Sebastien Fricker at
f57a7536 4781 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
9b33de72 4782 * THANKS: Add Sebastien Fricker.
f57a7536
JD
4783 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
4784 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
4785 accept a variable number of arguments.
4786
6404a5bf
JD
47872007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
4788
4789 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
4790
e4e09639
JMG
47912007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4792
4793 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
4794 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
4795 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
4796
d7e0a1a7
PE
47972007-02-11 Paul Eggert <eggert@cs.ucla.edu>
4798
4799 Undo my 2007-02-07 change, switching back to the c-strcase module
4800 introduced in the 2007-02-03 change. Bruno Haible reported that
4801 the 2007-02-07 change would be dangerous in Turkish if we add a
4802 language whose name contains "i", since "i" is not lowercase "I"
4803 in Turkish.
4804 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
4805 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
4806 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
4807 * m4/.cvsignore: Remove strcase.m4.
4808 * src/getargs.c: Revert 2007-02-07 change, as follows.
4809 Include c-strcase.h.
4810 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
4811
deee93a1
JD
48122007-02-11 Bruno Haible <bruno@clisp.org>
4813
4814 Enable the Java related testsuite tests when the only Java compiler
4815 found is a gcj < 4.3. Discussed at
4816 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
4817 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
4818
574add85
JD
48192007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
4820
4821 * data/Makefile.am: Update copyright date.
4822 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
4823 yypstate_new returns NULL.
4824 (yypstate_new): Return NULL if malloc does.
4825 * src/reader.c (packgram): Move translation of rule actions from the
4826 beginning of packgram to...
4827 (check_and_convert_grammar): ... here right before packgram is invoked
4828 so it's easier to write more complete comments, and remove redundant
4829 code.
4830
e785ccf7
JD
48312007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
4832
4833 As in semantic actions, make @$ in %initial-action, %destructor, and
4834 %printer imply %locations.
4835 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
4836 scanning @$.
4837 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
4838 (@$ in %initial-action implies %locations,
4839 @$ in %destructor implies %locations,
4840 @$ in %printer implies %locations): ... these new test cases.
4841
1cfe1ed7
PE
48422007-02-07 Paul Eggert <eggert@cs.ucla.edu>
4843
4844 Undo most of the 2007-02-03 change, switching to the strcase module
4845 now that gnulib strcase has been fixed.
4846 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
4847 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
4848 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
4849 * m4/.cvsignore: Add strcase.m4.
4850 * src/getargs.c: Revert 2007-02-03 change, as follows.
4851 Don't include c-strcase.h.
4852 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
4853 strcasecmp has "unspecified behavior" outside the POSIX locale,
4854 but it works fine in practice if at least one argument is ASCII,
4855 as is the case in Bison.
4856
0049ec86
PB
48572007-02-07 Paolo Bonzini <bonzini@gnu.org>
4858
4859 * tests/java.at: Skip tests if only one of javac/java is present.
4860 Reported by Joel E. Denny.
4861 * tests/atlocal.in: Adjust copyright years.
4862
48632007-02-05 Paolo Bonzini <bonzini@gnu.org>
4864
4865 * data/lalr1.java (Stack): Work around old verifiers that disallow
4866 access to the private fields of an inner class, from the outer class.
4867 We can make Stack's fields public because user code doesn't have access
4868 to the instance of Stack used by parse(). Reported by Paul Eggert.
4869
2c2b7220
PE
48702007-02-03 Paul Eggert <eggert@cs.ucla.edu>
4871
4872 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
4873 the right spot for these files?
4874 * bootstrap.conf (gnulib_modules): Add c-strcase.
4875 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
4876 c-strncasecmp.c.
4877 * src/getargs.c: Include c-strcase.h.
4878 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
4879 to avoid unspecified behavior.
4880
b2b81dae
JD
48812007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
4882
4883 * doc/bison.texinfo (Decl Summary): Correct typo.
4884
c1d19e10
PB
48852007-01-30 Paolo Bonzini <bonzini@gnu.org>
4886
4887 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
4888 Complain if the value does not match empty, "true" or "false".
4889 * data/c++.m4: Adjust default definitions of %define variables.
4890 * data/java.m4: Adjust default definitions of %define variables.
4891 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
4892 to above behavior.
4893 * tests/input.at (Boolean %define variables): Test new behavior.
4894
8405b70c
PB
48952007-01-29 Paolo Bonzini <bonzini@gnu.org>
4896
4897 * NEWS: Mention java.
4898 * TODO: Remove things that are done.
4899 * bootstrap.conf: Add javacomp-script and javaexec-script.
4900 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
4901
4902 * data/Makefile.am: Add new files.
4903 * data/java-skel.m4: New.
4904 * data/java.m4: New.
4905 * data/lalr1.java: New.
4906
4907 * doc/bison.texinfo: Put "A Complete C++ Example" under
4908 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
4909 under Other Languages.
4910
4911 * src/getargs.c (valid_languages): Add Java.
4912 * src/getargs.h (struct bison_language): Update size of string fields.
4913
4914 * tests/Makefile.am: Add java.at.
4915 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
4916 * tests/java.at: New.
4917 * tests/testsuite.at: Include it.
4918
3eb82471
JD
49192007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
4920
4921 Clean up.
4922 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
4923 at_directive_argv arguments so these no longer have to be global
4924 variables. Also, update the implementation for the following changes.
4925 (fail_for_at_directive_too_many_args,
4926 fail_for_at_directive_too_few_args): Add at_directive_name argument.
4927 (at_directive_name): Remove as at_directive_argv[0] will be used for
4928 this now.
4929 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
4930 for the directive name.
4931 (at_directive_argc, at_directive_argv): Make these local within
4932 skel_lex instead of global.
4933 (INITIAL): Update directive start action for above changes.
4934 (SC_AT_DIRECTIVE_ARG): Rename to...
4935 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
4936 (SC_AT_DIRECTIVE_SKIP_WS): Update.
4937 (scan_skel): Move yylex_destroy to...
4938 (skel_scanner_free): ... here.
4939 * tests/skeletons.at (installed skeleton file name): Rename to...
4940 (installed skeleton file names): ... this.
4941
148d66d8
JD
49422007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
4943
4944 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
4945 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
4946 Summary" not "Directives".
4947 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
4948 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
4949 since the former is now the more complete one.
4950 (Prologue Alternatives): Likewise and do the same for %defines.
4951 (Table of Symbols): Add summary of %code, add summary of %define, and
4952 move full %code documentation to...
4953 (Decl Summary): ... here for consistency with other entries in these
4954 sections.
4955 Move %define entry in order to keep this list alphabetized.
4956 Reword %define entry a little to put less emphasis on the skeleton
4957 concept, which most users shouldn't have to think about.
4958
665f0c24
PE
49592007-01-26 Paul Eggert <eggert@cs.ucla.edu>
4960
4961 Adjust to recent gnulib changes.
4962 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
4963 Add string.h, string_.h, unistd_.h, wchar_.h.
4964 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
4965 * src/system.h: Don't include <stpcpy.h>; this is now done by
4966 <string.h>.
4967
592d0b1e
PB
49682007-01-23 Paolo Bonzini <bonzini@gnu.org>
4969
4970 Simplify implementation of unqualified %code, implement macros for
4971 uniform treatment of boolean %define flags. Document %define.
4972 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
4973 b4_percent_code_ifdef): New.
4974 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
4975 * data/c++.m4: Define default value for global_tokens_and_yystype.
4976 * data/glr.cc: Likewise.
4977 * data/location.cc: Use b4_percent_define_flag_if.
4978
148d66d8 4979 * doc/bison.texinfo (Decl Summary): Document %define.
592d0b1e
PB
4980
4981 * src/parse-gram.y (Unqualified %code): Change muscle name to
4982 b4_percent_code().
4983 (content.opt): Default to empty.
4984
a7867f53
JD
49852007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
4986
4987 Implement support for relative and absolute skeleton file names.
4988 Discussed starting at
4989 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
4990 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
4991 (Bison Options): Document in --skeleton entry.
4992 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
4993 full_skeleton can't necessarily hold all of pkgdatadir.
4994 If the specified skeleton file name contains a `/', don't prepend
4995 pkgdatadir.
4996 * src/parse-gram.y (prologue_declaration): If the specified skeleton
4997 file name contains a `/', prepend the grammar file directory.
4998 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
4999 * skeletons.at: New file.
5000 (relative skeleton file names): New test case.
5001 (installed skeleton file names): New test case.
5002 * tests/testsuite.at: Include skeletons.at.
5003
5004 * bootstrap: Update copyright to 2007.
5005
830c9b18
PB
50062007-01-17 Paolo Bonzini <bonzini@gnu.org>
5007
5008 * bootstrap: Remove occurrences of .#bootmp from the files.
5009
a8c2e813
AD
50102007-01-17 Akim Demaille <akim@epita.fr>
5011
5012 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
5013 nonterminals.
5014 Use per-type %printer.
5015
279cabb6
JD
50162007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
5017
5018 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
5019 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
5020 djgpp/config.site, src/files.c, src/files.h, src/main.c,
5021 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
5022 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
5023 tests/glr-regression.at, tests/input.at, tests/local.at,
5024 tests/output.at, tests/torture.at: Update copyright to 2007.
5025
bb32f4f2
AD
50262007-01-16 Akim Demaille <akim@epita.fr>
5027
5028 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
5029 error code.
5030 (Calc++ Scanner): Exit with failure if we can't open the input
5031 file.
5032 Accept "-" standing for stdin.
5033 (Calc++ Top Level): Print the result only if the parsing was
5034 successful.
5035
7cff04b5
AD
50362007-01-16 Akim Demaille <akim@epita.fr>
5037
5038 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
5039
a4e25e1d
JD
50402007-01-15 Paolo Bonzini <bonzini@gnu.org>
5041 and Joel E. Denny <jdenny@ces.clemson.edu>
5042
5043 Clean up %define and %code implementation in M4 some. Most
5044 importantly, rename all related macros to be in the b4_percent_define
5045 and b4_percent_code namespaces. Also, complete support for `.' in
5046 %define variable names and %code qualifiers.
5047 * data/bison.m4 (b4_check_user_names): Check for special
5048 "SKELETON-NAMESPACE(name)" macros instead of using two nested
5049 m4_foreach loops.
5050 (b4_get_percent_define, b4_get_percent_code): Rename to...
5051 (b4_percent_define_get, b4_percent_code_get): ... these.
5052 Extend documentation with examples.
5053 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
5054 b4_percent_define_skeleton_variables and
5055 b4_percent_code_skeleton_qualifiers.
5056 Expect any value for the %define variable `foo' to be stored in the
5057 macro named `b4_percent_define(foo)'; expect any %code blocks for the
5058 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
5059 expect any unqualified %code blocks to be stored in a macro named
5060 `b4_percent_code_unqualified'.
5061 Use m4_indir so that %define variable names and %code qualifiers can
5062 contain `.', which is allowed by the grammar parser.
5063 (b4_percent_define_default): New macro to set a default value for a
5064 %define variable.
5065 (m4_wrap): Update wrapped code, and fix some underquoting.
5066 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
5067 Expect grammar uses of %define variables and %code qualifiers to be
5068 defined in b4_percent_define_user_variables and
5069 b4_percent_code_user_qualifiers.
5070 * data/c++.m4: Use b4_percent_define_default rather than
5071 m4_define_default. Fix some underquoting. Skeleton usage of %define
5072 variable define_location_comparison now implies skeleton usage of
5073 %define variable filename_type.
5074 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
5075 data/push.c, data/yacc.c: Update macro names.
5076 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
5077 muscle names.
5078
e37c665c
JMG
50792007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5080
5081 DJGPP specific issues.
5082
5083 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
5084 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
5085
7d2d521f
JD
50862007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
5087
5088 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
5089 run parsers in all tests so that Valgrind is invoked during
5090 maintainer-check-valgrind.
5091 (Duplicate representation of merged trees): Free all semantic values.
5092 (Duplicated user destructor for lookahead): Likewise.
5093
e0ac9b4b
JD
50942007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
5095
5096 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
5097 command-line prefix.
5098 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
5099 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
5100 miss Valgrind messages.
5101 (Exploding the Stack Size with Malloc): Likewise.
5102
78143faa
JD
51032007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
5104
5105 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
5106 locals. Reported by Juan Manuel Guerrero at
5107 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
5108 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
5109 Fix some indentation also.
5110 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
5111 explaining this issue.
5112
7ecec4dd
JD
51132007-01-09 Paolo Bonzini <bonzini@gnu.org>
5114 and Joel E. Denny <jdenny@ces.clemson.edu>
5115
5116 Simplify union and prologue handling, and escape union and lex/parse
5117 params with digraphs.
5118 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
5119 values to the empty string since these are no longer guaranteed
5120 initialized by the front-end.
5121 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
5122 braces around b4_user_stype since this is no longer done by the
5123 front-end.
5124 * src/files.c, src/files.h (pre_prologue_obstack,
5125 post_prologue_obstack): Remove.
5126 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
5127 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
5128 with digraphs. This fixes lex params and parse params.
5129 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
5130 * src/output.c (prepare): Remove muscle insertion of the prologues.
5131 (output): Remove freeing of pre_prologue_obstack and
5132 post_prologue_obstack.
5133 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
5134 than prologue_augment for prologue parsing so you don't need prologue
5135 obstacks.
5c80250c
JD
5136 (grammar_declaration): For %union RHS, use `braceless' instead of
5137 "{...}" so that braces are already stripped and code is escaped with
5138 digraphs.
7ecec4dd
JD
5139 * src/reader.c (prologue_augment): Remove.
5140 (reader): Remove initialization of pre_prologue_obstack and
5141 post_prologue_obstack.
5142 * src/reader.h (prologue_augment): Remove.
5143
5144 * data/c.m4: Remove stray parenthesis.
5145
16dc6a9e
JD
51462007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5147
5148 Remove quotes from variables names in %define directives and from
5149 qualifiers in %code directives, and restrict the characters that are
5150 allowed in them to M4-friendly ones. For %define, continue to support
5151 the quoted form as a deprecated feature. Discussed starting at
5152 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
5153 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
5154 %code.
5155 * doc/bison.texinfo (Prologue Alternatives): Update.
91661ebb
JD
5156 (Decl Summary): In %defines entry, update mention of `%code requires'
5157 and `%code provides'.
16dc6a9e
JD
5158 (C++ Location Values): Update %define uses.
5159 (Calc++ Parser Interface): Likewise.
5160 (Calc++ Parser): Likewise, and update `%code requires' uses.
148d66d8 5161 (Table of Symbols): Update %code documentation.
16dc6a9e
JD
5162 * src/parse-gram.y (prologue_declaration): For %define variables, use
5163 `variable' instead of `STRING'.
5164 (grammar_declaration): For %code qualifiers, use `ID' instead of
5165 `STRING'.
5166 (variable): New nonterminal that takes an `ID' or a `STRING'.
5167 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
5168 and %define uses.
5169 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
5170 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
5171 (%define errors): Update %define uses.
5172
e9813cd4
JD
51732007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5174
5175 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
5176 instead of muscle_insert for %define values so that M4-special
5177 characters are replaced with digraphs.
5178 * tests/input.at (%define errors): Extend to check weird values.
5179
6afc30cc
JD
51802007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5181
5182 Instead of having skeletons declare all valid %define variables and
5183 %code qualifiers, provide macros that retrieve the associated values
5184 and build these lists automatically. Thus Bison will now warn when a
5185 variable or qualifier is not used by the skeleton in the current
5186 invocation regardless of whether it might sometimes be used by that
5187 skeleton in other invocations. Also, move all %define value macros to
5188 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
5189 form, which is replaced by %code.
5190 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
5191 (b4_check_user_names): ... this, and change the series of valid name
5192 arguments to a single list argument for names used in the skeleton
5193 similar to the existing list argument for names used in the grammar.
5194 Warn instead of complaining.
5195 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
5196 values and %code code, to format %code code properly, and to build
5197 lists of all %define variables and %code qualifiers used in the
5198 skeleton: b4_skeleton_percent_define_variables and
5199 b4_skeleton_percent_code_qualifiers.
5200 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
5201 Remove, and...
5202 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
5203 the skeleton names lists can finish building first. In place of
5204 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
5205 expect the lists b4_user_percent_define_variables and
5206 b4_user_percent_code_qualifiers.
5207 * data/c++.m4: Where setting default values for b4_parser_class_name,
5208 b4_location_type, b4_filename_type, b4_namespace, and
5209 b4_define_location_comparison, update their names to the
5210 b4_percent_define_ namespace.
5211 * data/glr.c: Don't use b4_check_percent_define_variables and
5212 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
5213 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
5214 (b4_parser_class_name, b4_namespace): Define these using
a4e25e1d 5215 b4_get_percent_define for parser_class_name and namespace.
6afc30cc
JD
5216 * data/location.cc: Use b4_get_percent_define.
5217 * data/push.c: Don't use b4_check_percent_define_variables and
5218 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
5219 * data/yacc.c: Likewise, and don't call m4_exit in
5220 b4_use_push_for_pull_if or m4_wrap code will never execute.
5221 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
5222 Rename to...
5223 (muscle_grow_user_name_list): ... this for consistency with the
5224 terminology used in bison.m4.
5225 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
5226 %define variable names, and rename muscle used_percent_define_variables
5227 to user_percent_define_variables.
5228 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
5229 user_percent_code_qualifiers.
5230 (content): Remove.
5231 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
5232 {CODE} form is no longer accepted.
5233 * tests/input.at (Reject bad %code qualifiers): Rename to...
5234 (Reject unused %code qualifiers): ... this, and update test output.
5235 (%define error): Update test output.
5236
7eb8a0bc
JD
52372007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
5238
5239 Check for unrecognized %define variables similar to checking for
5240 unrecognized %code qualifiers. Check for redefined %define variables.
5241 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
5242 generalizes...
5243 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
5244 (b4_check_percent_define_variables): New, also wraps it.
5245 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
5246 variables using b4_check_percent_define_variables.
5247 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
5248 all those exercised in the test suite and all those listed in the
5249 `Default values' section of c++.m4. Are there others?
5250 * data/push.c, data/yacc.c: Declare no valid %define variables.
5251 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
5252 similar to muscle_find, but it works even when the muscle stores a
5253 const value.
5254 (muscle_grow_used_name_list): New function for constructing the used
5255 name list muscles that b4_check_for_unrecognized_names requires.
5256 * src/parse-gram.y (prologue_declaration): Warn if a variable is
5257 %define'd more than once. Define the b4_used_percent_define_variables
5258 muscle with muscle_grow_used_name_list.
5259 (grammar_declaration): Abbreviate %code code with
5260 muscle_grow_used_name_list.
5261 * tests/input.at (%define errors): New.
5262
3fc65ead
JD
52632007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5264
5265 Provide warn_at, complain_at, and fatal_at function callbacks to the
5266 skeletons, and use this for %code qualifier complaints.
5267 * data/bison.m4 (b4_error_at): New, invoked by...
5268 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
5269 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
5270 @fatal_at(...@) directives.
5271 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
5272 qualifiers in b4_used_percent_code_qualifiers and to use
5273 b4_complain_at.
5274 * src/location.c, src/location.h (boundary_set_from_string): New global
5275 function.
5276 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
5277 function.
5278 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
5279 to b4_used_percent_code_qualifiers.
5280 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
5281 function.
5282 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
5283 (lineno): Rename to...
5284 (out_lineno): ... this so I don't misunderstand it again.
5285 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
5286 here; these newlines are in the input but not the output file.
5287 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
5288 (at_directive_perform): ... this new static function, and add handling
5289 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
5290 directives.
5291 * tests/input.at (Reject bad %code qualifiers): Update test output with
5292 locations and extend.
5293
5294 * tests/output.at (Output file name: [, Output file name: ]): Remove
5295 bogus comment about these tests failing.
5296
1c7b7e1d
JD
52972007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5298
5299 Clean up b4_check_percent_code_qualifiers a little.
5300 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
5301 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
5302 documentation and add examples.
5303 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
5304 qualifiers here.
5305
08af01c2
JD
53062007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
5307
5308 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
5309 unreliable -- especially when they're hidden inside another macro.
5310 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
5311 data/c.m4: Remove m4_divert(-1).
5312 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
5313 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
5314 m4_divert_push(0) and m4_divert_pop(0).
279cabb6 5315 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
08af01c2
JD
5316 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
5317 pushed and popped by m4sugar, should be first on the stack.
5318
5319 Provide warn, complain, and fatal function callbacks to the skeletons.
5320 This provides more flexibility than m4_fatal, improves the error
5321 message format, and captures messages for translation. Discussed
5322 starting at
5323 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
5324 * data/bison.m4 (b4_error): New, invoked by...
5325 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
5326 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
5327 directives. Because these M4 macros might be called when the current
5328 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
5329 the previous removal of uses of m4_divert, which caused trouble.
5330 (b4_check_percent_code_qualifiers): Use b4_complain instead of
5331 m4_fatal to report unrecognized %code qualifiers.
5332 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
5333 push parser requests.
5334 * data/glr.c: Use b4_complain instead of m4_fatal to report
5335 non-deterministic push parser requests.
5336 Update @output usage to @output(...@) form.
5337 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
5338 report missing %defines. Update @output usage to @output(...@) form.
5339 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
5340 @output(...@) form.
5341 * src/main.c (main): Invoke skel_scanner_free.
5342 * src/scan-skel.h (skel_scanner_free): Prototype new function.
5343 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
5344 obstack_for_string from flex-scanner.h.
5345 (YY_DECL): Use to declare skel_lex static.
5346 (decode_at_digraphs): Remove; now handled in the new
5347 SC_AT_DIRECTIVE_ARG start condition.
5348 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
5349 functions.
5350 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
5351 at_directive_argv): New static globals.
5352 (INITIAL): Use fail_for_invalid_at.
5353 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
5354 recognize the start of a generalized `@directive(...@)' form and
5355 start...
5356 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
5357 directive args (using the new obstack_for_string), to decode the
5358 contained @ diagraphs, and to perform the directive. It recognizes
5359 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
5360 @output(...@).
5361 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
5362 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
5363 `@,'.
5364 (scan_skel): Initialize obstack_for_string on the first call.
5365 (skel_scanner_free): New function to free obstack_for_string.
5366 * tests/input.at (Reject bad %code qualifiers): Update test output.
5367
8e0a5e9e
JD
53682007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
5369
5370 Consolidate the 4 prologue alternative directives (%code, %requires,
5371 %provides, and %code-top) into a single %code directive with an
5372 optional qualifier field. Discussed at
5373 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
5374 * NEWS (2.3a+): Rewrite the existing entry for the prologue
5375 alternatives.
5376 * doc/bison.texinfo (Prologue Alternatives): Update.
5377 (Decl Summary): Update to %code "requires" and %code "provides".
5378 (Calc++ Parser): Update to %code "requires".
148d66d8 5379 (Table of Symbols): Remove entries for %requires, %provides, and
8e0a5e9e
JD
5380 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
5381 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
5382 are replaced by b4_percent_code_provides and b4_percent_code_requires,
5383 which are skeleton-specific.
5384 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
5385 declare what %code qualifiers it supports and to complain if any other
5386 qualifiers were used in the grammar.
5387 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
5388 and b4_user_code([b4_percent_code_provides]) in place of
5389 b4_user_requires and b4_user_provides.
5390 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
5391 Add b4_user_code([b4_percent_code_top]) and
5392 b4_user_code([b4_percent_code]).
5393 Invoke b4_check_percent_code_qualifiers.
5394 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
5395 PERCENT_REQUIRES): Remove.
5396 (grammar_declaration): Remove RHS's for %code-top, %provides, and
5397 %requires. Rewrite the %code RHS as the unqualified form defining the
5398 muscle b4_percent_code. Add another RHS for the qualified %code form,
5399 which defines muscles of the form b4_percent_code_QUALIFIER and the
5400 b4_used_percent_code_qualifiers muscle.
5401 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
5402 PERCENT_REQUIRES): Remove.
5403 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
5404 %code "requires" and %code "provides".
5405 * tests/input.at (Reject bad %code qualifiers): New.
5406
95021767
JD
54072007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
5408
5409 Use the new code_props interface for destructors and printers.
5410 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
5411 printer_location members, and change the type of the destructor and
5412 printer members to code_props.
5413 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
5414 symbol_printer_get, semantic_type_destructor_set,
5415 semantic_type_printer_set, default_tagged_destructor_set,
5416 default_tagless_destructor_set, default_tagged_printer_set,
5417 default_tagless_printer_set): Use code_props in arguments and return
5418 types in place of char const * and location.
5419 (symbol_destructor_location_get, symbol_printer_location_get): Remove
5420 since the locations are now contained in the return of
5421 symbol_destructor_get and symbol_printer_get.
5422 * src/output.c (symbol_destructors_output, symbol_printers_output):
5423 Replace with...
5424 (symbol_code_props_output): ... this to eliminate duplicate code.
5425 (output_skeleton): Update to use symbol_code_props_output.
5426 * src/reader.c (symbol_should_be_used): Update use of
5427 symbol_destructor_get.
5428 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5429 Update uses of the various _destructor_set and _printer_set functions.
5430 * src/symtab.c: (default_tagged_destructor_location,
5431 default_tagless_destructor_location, default_tagged_printer_location,
5432 default_tagless_printer_location): Remove since we...
5433 (default_tagged_destructor, default_tagless_destructor,
5434 default_tagged_printer, default_tagless_printer): ... change the type
5435 of these to code_props.
5436 (symbol_new, semantic_type_new, symbol_destructor_set,
5437 semantic_type_destructor_set, symbol_destructor_get,
5438 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
5439 symbol_check_alias_consistency, default_tagged_destructor_set,
5440 default_tagless_destructor_set, default_tagged_printer_set,
5441 default_tagless_printer_set): Update.
5442 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
5443 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
5444 code_props members.
5445 (symbol_print): Use SYMBOL_CODE_PRINT.
5446
f6857bbf
JD
54472007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
5448
5449 Use the new code_props interface for rule actions.
5450 * src/symlist.h (symbol_list): Replace action, action_location, and
5451 used members with a code_props action_props member.
5452 * src/reader.c (symbol_should_be_used, grammar_rule_check,
5453 grammar_midrule_action, grammar_current_rule_merge_set,
5454 grammar_current_rule_symbol_append, packgram): Update.
5455 * src/scan-code.h (translate_rule_action): Remove, no longer used.
5456 * src/scan-code.l (handle_action_dollar): Update.
5457 (translate_rule_action): Remove, no longer used.
5458 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
5459
7c0c6181
JD
54602007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
5461
5462 Use the new code_props interface in parse-gram.y.
5463 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
5464 Update all uses of translate_* functions to use the new code_props
5465 interface and to use gram_scanner_last_string_free and
5466 code_scanner_last_string_free where possible.
5467 (grammar_declaration): symbol_list_destructor_set and
5468 symbol_list_printer_set now perform the translation, so don't do it
5469 here. Use gram_scanner_last_string_free where possible.
5470 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
5471 translate_code): Remove, no longer used.
5472 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
5473 symbol_list_printer_set): Perform code translation here rather than
5474 depending on the caller to do so.
5475
5476 * src/symlist.h (struct symbol_list): Correct some documentation typos.
5477 * src/scan-gram.h (gram_last_string): Remove declaration.
5478 * src/scan-gram.l (last_string): Declare it static.
5479
28e52c0d
JD
54802007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
5481
5482 Encapsulate code properties and related functionality for the various
5483 destructors, printers, and actions into a code_props structure and
5484 interface. This patch merely implements code_props in scan-code.h and
5485 scan-code.l. Future patches will rewrite other modules to use it.
5486 Discussed starting at
5487 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
5488 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
5489 consistently initialize const structs that have an empty location
5490 field.
5491 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
5492 to ensure consistency.
5493 * src/scan-code.h (code_props): New structure.
5494 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
5495 function, macro, and const global variable for initializing a
5496 code_props with no code.
5497 (code_props_plain_init, code_props_symbol_action_init,
5498 code_props_rule_action_init, code_props_translate_code): The rest of
5499 the new code_props functional interface. Among other things, the init
5500 functions set the code_props kind field so that
5501 code_props_translate_code will know whether to behave like
5502 translate_symbol_action, translate_rule_action, or translate_code.
5503 These old translate functions must remain until all other modules are
5504 updated to use the new code_props interface.
5505 (code_scanner_last_string_free): New function similar to
5506 gram_scanner_last_string_free.
5507 (code_scanner_free): Add documentation.
5508 * src/scan-code.l: Implement the new interface.
5509 (code_lex): Make it static, add a code_props* argument, and remove the
5510 rule argument.
5511 (last_string): New static global similar to the one in scan-gram.l.
5512 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
5513 instead of rule.
5514 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
5515 code_props since Bison may one day use this information for destructors
5516 and printers.
5517 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
5518 (handle_action_dollar): Use symbol_list_n_get and set used flag
5519 directly since symbol_list_n_used_set is removed.
5520 (translate_action): Add a code_props* argument and remove the rule,
5521 action, and location arguments. Pass the code_props* on to code_lex.
5522 (translate_rule_action, translate_symbol_action, translate_code):
5523 Rewrite as wrappers around the new code_props interface.
5524 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
5525 it would eventually need to break the encapsulation of code_props.
5526
96034983
JD
55272007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
5528
5529 * etc/.cvsignore: New.
5530
945e396c
JD
55312007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
5532
5533 Add maintainer-push-check to run maintainer-check using push parsing in
5534 place of pull parsing where available.
5535 * Makefile.am (maintainer-push-check): New.
5536 * data/bison.m4 (b4_use_push_for_pull_if): New.
5537 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
5538 appropriately based on their existing values.
5539 (yypush_parse): Don't print push-parser-specific diagnostics if push
5540 parsing is being used in place of pull parsing.
5541 * data/yacc.c: If push parsing should replace pull parsing, redirect to
5542 push.c.
5543 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
5544 variable, and insert b4_use_push_for_pull_flag into muscles.
5545 * tests/Makefile.am (maintainer-push-check): New.
5546
7d596384
JD
55472006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
5548
5549 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
5550 (whether successful or failed) so that yypush_parse can be invoked
5551 again to start a new parse using the same yypstate.
5552 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
5553 check multiple yypull_parse invocations on the same yypstate. For pull
5554 mode, extend to check multiple yyparse invocations.
5555 (Exploding the Stack Size with Alloca): Extend to try with
5556 %push-pull-parser.
5557 (Exploding the Stack Size with Malloc): Likewise.
5558
5559 * tests/calc.at (Simple LALR Calculator): Don't specify
5560 %skeleton "push.c" since %push-pull-parser implies that now.
5561 * tests/headers.at (export YYLTYPE): Don't check for the push
5562 declarations. Otherwise, this test case can't be used to see if push
5563 mode can truly emulate pull mode.
5564 * tests/input.at (Torturing the Scanner): Likewise.
5565 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
5566 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
5567 AT_YACC_IF, which now includes the case of push mode since %skeleton
5568 need not be used for push mode. This will be more intuitive once
5569 push.c is renamed to yacc.c.
5570
7172e23e
JD
55712006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
5572
5573 For push mode, convert yyparse from a macro to a function, invoke yylex
5574 instead of passing a yylexp argument to yypull_parse, and don't
5575 generate yypull_parse or yyparse unless %push-pull-parser is declared.
5576 Discussed starting at
5577 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
5578 * data/bison.m4 (b4_pull_if): New.
5579 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
5580 * data/push.c: Improve M4 quoting a little.
5581 (b4_generate_macro_args, b4_parenthesize): Remove.
5582 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
5583 any time a pull parser is requested.
5584 Don't #define this as a wrapper around yypull_parse. Instead, when
5585 both push and pull are requested, make it a function that does that
5586 same thing.
5587 (yypull_parse): If there's a b4_prefix, #define this to
5588 b4_prefix[pull_parse] when both push and pull are requested.
5589 Don't define this as a function unless both push and pull are
5590 requested.
5591 Remove the yylexp argument and hard-code yylex invocation instead.
5592 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
5593 %push-parser.
5594 * src/getargs.c (pull_parser): New global initialized to true.
5595 * getargs.h (pull_parser): extern it.
5596 * src/output.c (prepare): Insert pull_flag muscle.
5597 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
5598 (prologue_declaration): Set both push_parser and pull_parser = true for
5599 %push-pull-parser. Set push_parser = true and pull_parser = false for
5600 %push-parser.
5601 * src/scan-gram.l: Don't accept %push_parser as an alternative to
5602 %push-parser since there's no backward-compatibility concern here.
5603 Scan %push-pull-parser.
5604 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
5605 instead of %push-parser.
5606 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
5607 prototype it in the module that calls yyparse.
5608 * tests/input.at (Torturing the Scanner): Likewise.
5609 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
5610
2e7944cb
JD
56112006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
5612
5613 Update etc/bench.pl. Optimize push mode a little (the yyn change
5614 deserves most of the credit).
5615 * Makefile.am (SUBDIRS): Add etc subdirectory.
5616 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
5617 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
5618 yytoken, yyval, and yyloc declarations to...
5619 (yyparse or yypush_parse): ... here to improve performance. For
5620 yypush_parse invocations after the first, be sure to assign yyn its old
5621 value again.
5622 (yypstate_new): Don't bother initializing the yyresult field since the
5623 initial value isn't used.
5624 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
5625 remove the #define that, in push mode, set it to yyps->NAME.
5626 * etc/Makefile.am: New.
5627 * etc/bench.pl: Remove and build it instead from...
5628 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
5629 "tests/bison" from the build directory by default rather than just
5630 invoking "bison" from $PATH.
5631 (calc_grammar): Update push parser code: don't declare yylval globally,
5632 don't define yyparse_wrapper, and don't #define yyparse.
5633 (bench_grammar): Update to check all working combinations of yacc.c,
5634 push.c, impure, pure, pull, and push.
5635
c3d50342
JD
56362006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
5637
5638 For push mode, add pull wrappers around yypush_parse.
5639 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
5640 (yypull_parse): New function wrapping yypush_parse.
5641 (yyparse): New #define wrapping yypull_parse.
5642 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
5643 is declared.
5644 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
5645 prototype yylex in the module that calls yyparse, and don't prototype
5646 yyparse there. Otherwise, the yyparse expansion won't compile.
5647 * tests/input.at (Torturing the Scanner): Likewise.
5648
94ebeba5
JD
56492006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
5650
5651 Enable push parsers to operate in impure mode. Thus, %push-parser no
5652 longer implies %pure-parser. The point of this change is to move
5653 towards being able to test the push parser code by running the entire
5654 test suite as if %push-parser had been declared.
5655 * data/push.c (yypush_parse): For impure mode, remove the
5656 yypushed_char, yypushed_val, and yypushed_loc arguments.
5657 Instead, declare these as local variables initialized to the global
5658 yychar, yylval, and yylloc.
5659 For the first yypush_parse invocation only, restore the initial values
5660 of these global variables when it's time to read a token since they
5661 have been overwritten.
5662 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
5663 %push-parser.
5664 * tests/calc.at (Simple LALR(1) Calculator): Always declare
5665 %pure-parser along with %push-parser since this test case was designed
5666 for pure push parsers.
5667 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
5668 (AT_YACC_OR_PUSH_IF): New.
5669 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
5670 add a note that it's still wrong for some cases (as it has been for a
5671 while).
5672 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
5673 %push-parser no longer implies %pure-parser.
5674
a0633178
JD
56752006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5676
5677 Remove some unnecessary differences between the pull parser code and
5678 the push parser code. This patch enables yynerrs in push mode.
5679 * data/push.c: Reformat M4 a little.
5680 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
5681 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
5682 because push mode is on. Instead, if pure mode is on, move yynerrs
5683 to...
5684 (b4_declare_parser_state_variables): ... here.
5685 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
5686 to yyps->NAME so it can be used in yypush_parse.
5687 (yypush_parse): Don't omit uses of yynerrs in push mode.
5688
8646b6a3
JD
56892006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5690
5691 Fix bug such that the first pushed token's value and location are
5692 sometimes overwritten (sometimes by %initial-action) before being used.
5693 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
5694 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
5695 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
5696 more closely mimic the pull parser logic.
5697 Don't copy the pushed token to yychar, yylval, and yylloc until it's
5698 time to read a token, which is after any initialization of yylval and
5699 yylloc.
5700 (gottoken): Rename label to...
5701 (yyread_pushed_token): ... for clarity and to avoid infringing on the
5702 user namespace.
5703
9baf4d74
JD
57042006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5705
5706 Rearrange initialization of the parser state variables so that the
5707 skeleton doesn't have to have a copy for pull mode and another for push
5708 mode. This patch also fixes at least a bug such that yylloc was not
5709 initialized (with b4_location_initial_line and
5710 b4_location_initial_column) upon calling yypush_parse. However, that
5711 initialization now overwrites the first token's location;
5712 %initial-action assigning @$ already did the same thing, and both bugs
5713 will be fixed in a later patch.
5714 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
5715 (b4_declare_parser_state_variables): Remove initialization of yytoken,
5716 yyss, yyvs, yyls, and yystacksize.
5717 (yypstate_new): Remove initialization of some yypstate fields: yystate,
5718 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
5719 yylsp.
5720 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
5721 yyps->NAME so it can be used in yypush_parse.
5722 (yyparse or yypush_parse): For yypush_parse, don't print the
5723 "Starting parse" diagnostic for invocations after the first.
5724 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
5725 yypush_parse, only do it for the first invocation.
5726 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
5727 initialization to occur in yypush_parse but only on the first
5728 invocation.
5729
23522164
JD
57302006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5731
5732 * data/push.c: Add CPP guards around push parser declarations in both
5733 the header and the code file.
5734 In the code file, move the push parser declarations to the same place
5735 they appear in the header file.
5736 Clean up the M4 some, especially the inconsistent underquoting in
5737 some b4_c_function_def and b4_c_function_decl uses.
5738
bb010fe5
JD
57392006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5740
5741 Encapsulate the push parser state variables into an M4 macro so the
5742 push skeleton doesn't have to list them again for pull mode's yyparse.
5743 For push mode, remove yypush_parse's local equivalents of these
5744 variables to eliminate unnecessary copying between the two sets at
5745 run-time. This patch also fixes at least a bug related to multiple
5746 %initial-action invocations in push mode.
5747 * data/push.c (b4_declare_parser_variables): Rename to...
5748 (b4_declare_scanner_communication_variables): ... this for clarity and
5749 update both uses.
5750 (b4_declare_yyparse_variables): Remove and move its contents to the one
5751 spot where it was invoked.
5752 (b4_declare_parser_state_variables): New macro containing the parser
5753 state variables required by push mode.
5754 (struct yypstate): Replace all fields but yynew with
5755 b4_declare_parser_state_variables.
5756 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
5757 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
5758 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
5759 (yyparse or yypush_parse): For yyparse in pull mode, replace local
5760 parser state variable declarations with
5761 b4_declare_parser_state_variables.
5762 Don't initialize parser state variables when calling yypush_parse since
5763 yypstate_new already does that.
5764 Invoke the user's initial action only upon the first yypush_parse
5765 invocation.
5766 Remove all code that copies between the local parser state variables
5767 and the yypstate.
5768
2d212f8c
JD
57692006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
5770
5771 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
5772 prevent a name collision in a future patch where these names will
5773 sometimes be #define'd.
5774 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
5775 since it no longer has the same name as the existing argument.
5776 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
5777
e6e704dc
JD
57782006-12-19 Paolo Bonzini <bonzini@gnu.org>
5779 and Joel E. Denny <jdenny@ces.clemson.edu>
5780
5781 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
5782 that the argument is case-insensitive, and there's no `=' here.
5783 For the %skeleton entry, mention that %language is better.
5784 (Bison Options): Likewise for --language and --skeleton. Move the
5785 --skeleton entry so that the `Tuning the parser' section is sorted
5786 alphabetically on long options.
5787 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
5788 %language directive in detail here; cross-reference the %language
5789 documentation instead.
5790 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
5791 `%require "2.3b"' so that the example is always up-to-date.
148d66d8 5792 (Table of Symbols): Add entries for %language and %skeleton.
e6e704dc
JD
5793 * examples/extexi (normalize): Instead of replacing every %require
5794 argument with the current Bison version, just substitute for
5795 `@value{VERSION}'. This guarantees that we're testing what actually
5796 appears in the documentation.
5797 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
5798 rather than `@VERSION@'.
5799
0e021770
PE
58002006-12-18 Paul Eggert <eggert@cs.ucla.edu>
5801
fd575f05
PE
5802 * NEWS: Reword the %language news a bit, and put it earlier.
5803
0e021770
PE
5804 * src/getargs.c (skeleton_arg): Last arg is now location const *.
5805 Rewrite to simplify the logic.
5806 (language_argmatch): Likewise.
fd575f05
PE
5807 (program_name): We now own this var.
5808 * src/getargs.h (struct bison_language): Use char[] rather than
5809 const char *.
0e021770
PE
5810
5811 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
5812 Java is supported.
5813 * src/complain.c (program_name): Remove decl; no longer needed.
5814 * src/main.c (program_name): Remove; now belongs to getargs.
5815
58162006-12-18 Paolo Bonzini <bonzini@gnu.org>
5817
5818 * NEWS: Document %language.
5819
5820 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
5821
5822 * data/c-skel.m4, data/c++-skel.m4: New files.
5823 * data/glr.c: Complain on push parsers.
5824
5825 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
5826 over %skeleton.
148d66d8 5827 (Decl Summary): Document %language and %skeleton.
0e021770
PE
5828 (Command line): Document -L.
5829
5830 * examples/extexi: Rewrite %require directive.
5831 * examples/calc++/Makefile.am: Pass VERSION to extexi.
5832
5833 * src/files.c (compute_exts_from_gc): Look in language structure
5834 for .y extension.
5835 (compute_file_name_parts): Check whether .tab should be added.
5836 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
5837 (language, skeleton_arg, language_argmatch): New.
5838 (long_options): Add --language.
5839 (getargs): Use skeleton_arg, add -L/--language.
5840 * src/getargs.h: Include location.h.
5841 (struct bison_language, language, skeleton_arg, language_argmatch): New.
5842 * src/output.c (prepare): Pick default skeleton from struct language.
5843 Don't dispatch C skeletons here.
5844 * src/parse-gram.y (PERCENT_LANGUAGE): New.
5845 (prologue_declaration): Add "%language" rule, use skeleton_arg.
5846 * src/scan-gram.l ("%language"): New rule.
5847
5848 * tests/calc.at: Test %skeleton and %language.
5849 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
5850 (AT_GLR_IF): Look for %skeleton "glr.cc".
5851 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
5852 (AT_YACC_IF): Reject %language.
5853
5691bf57
PE
58542006-12-18 Paul Eggert <eggert@cs.ucla.edu>
5855
db06f0ce
PE
5856 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
5857 since it wasn't used; only the typedef name 'semantic_type' is needed.
5858 Also, omit trailing white space.
5859
5691bf57
PE
5860 * bootstrap: Sync from coreutils.
5861 (gnulib_extra_files): Add build-aux/announce.gen.
5862 (slurp): Adjust .gitignore files like .cvsignore files.
5863 * build-aux/announce-gen: Remove from CVS, since bootstrap
5864 now creates this.
5865
791934e4
JD
58662006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
5867
5868 Make %push-parser imply %pure-parser. This fixes several bugs; see
5869 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
5870 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
5871 pure_parser = true.
5872 * data/push.c: Don't bother testing b4_push_if when deciding whether
5873 to expand b4_declare_parser_variables globally.
5874 (yypush_parse): Likewise in here.
5875
5876 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
5877 (yy_reduce_print): Reformat M4 for readability.
5878
ee5abb37
JD
58792006-12-15 Bob Rossi <bob@brasko.net>
5880 and Joel Denny <jdenny@ces.clemson.edu>
5881
5882 * data/push.c (yypstate): Add typedef, and update all uses of
5883 struct yypstate to just yypstate.
5884 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
5885
16ca01f9
JD
58862006-12-14 Bob Rossi <bob@brasko.net>
5887
5888 * data/push.c (yypush_parse): Declare prototype regardless of
5889 %locations option.
5890
ab8e7e1a
JD
58912006-12-14 Bob Rossi <bob@brasko.net>
5892
5893 * data/push.c (yyparse): Remove the prototype and the #define when in
5894 push-parser mode.
5895
9bf32be3
JD
58962006-12-13 Bob Rossi <bob@brasko.net>
5897
5898 * data/push.c (yypstate_init): Rename to...
5899 (yypstate_new): ... this and use b4_c_function_def.
5900 (yypstate_delete): New.
5901 (yypush_parse): Change parameters yynval and yynlloc to be const.
5902 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
5903 yypstate_delete functions.
5904
f02e2948
JD
59052006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
5906
5907 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
5908 strange test case titles. Reported by Bob Rossi.
5909
38eb7751
PE
59102006-12-13 Paul Eggert <eggert@cs.ucla.edu>
5911
5912 * TODO: Add pointer to Sylvain Schmitz's work on static detection
5913 of potential ambiguities in GLR grammers.
5914
bd9d212b
JD
59152006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
5916
5917 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
5918 `bison ', use m4_index instead of m4_substr since chopping up a string
5919 containing M4-special characters causes problems here.
5920
5921 Fix a couple of bugs related to special characters in user-specified
5922 file names, and make it easier for skeletons to compute output file
5923 names with the same file name prefix as Bison-computed output file
5924 names.
5925 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
5926 b4_parser_file_name and b4_spec_defines_file instead of
5927 @output_parser_name@ and @output_header_name@, which are now redundant.
5928 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
5929 b4_parser_file_name, b4_spec_defines_file, and the new
5930 @basename(FILENAME@) instead of @output_parser_name@ and
5931 @output_header_name@, which inappropriately escaped the file names as
5932 C string literals.
5933 * src/files.c (all_but_ext): Remove static qualifier.
5934 (compute_output_file_names): Move `free (all_but_ext)' to...
5935 (output_file_names_free): ... here since all_but_ext is needed later.
5936 * src/files.h (all_but_ext): Extern.
5937 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
5938 exactly what MUSCLE_INSERT_STRING used to do.
5939 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
5940 characters are escaped properly.
5941 * src/output.c (prepare): Define muscle file_name_all_but_ext as
5942 all_but_ext.
5943 For pkgdatadir muscle, maintain previous functionality by using
5944 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
5945 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
5946 digraphs would never be expanded. Hopefully no one has M4-special
5947 characters in his Bison installation path.
5948 * src/scan-skel.l: Don't parse @output_header_name@ and
5949 @output_parser_name@ anymore since they're now redundant.
5950 In @output, use decode_at_digraphs.
5951 Parse a new @basename command that invokes last_component.
5952 (decode_at_digraphs): New.
5953 (BASE_QPUTS): Remove unused.
5954 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
5955 (Output file name): New tests.
5956
3f7ca628
JD
59572006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
5958
5959 Warn about output files that are generated by the skeletons and that
5960 conflict with other output files.
5961 * data/glr.c: Don't generate the header file here when glr.cc does.
5962 * src/files.c (file_names, file_names_count): New static globals.
5963 (compute_output_file_names): Invoke output_file_name_check for files
5964 not generated by the skeletons and remove existing checks.
5965 (output_file_name_check): New function that warns about conflicting
5966 output file names.
5967 (output_file_names_free): Free file_names.
5968 * src/files.h (output_file_name_check): Declare.
5969 * src/scan-skel.l: Invoke output_file_name_check for files generated by
5970 the skeletons.
5971 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
5972 (Conflicting output files): New tests.
5973
178e123e
PE
59742006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5975
5976 * doc/bison.texinfo: Fix a couple of typos.
5977
59782006-12-08 Bob Rossi <bob@brasko.net>
8def5cd0
JD
5979
5980 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
5981 Rename to...
5982 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
5983 update all uses.
5984 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
5985 (yypush_parse): Rename yypvars argument to yyps and remove redundant
5986 local pv.
5987 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
5988 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
5989
ea17f233
JD
59902006-12-07 Bob Rossi <bob@brasko.net>
5991 and Joel Denny <jdenny@ces.clemson.edu>
5992
5993 * data/push.c (yypvarsinit): Change return type from void* to struct
5994 yypvars*. No longer cast to void* on return.
5995 (struct yypvars): Remove yylen since it need not be remembered between
5996 yypushparse invocations.
5997 (yypushparse): Don't copy between yylen and pv->yylen.
5998
55a30bda
JD
59992006-12-05 Bob Rossi <bob@brasko.net>
6000
6001 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
6002 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
6003 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
6004 (struct yypvars): Remove b4_declare_parser_variables.
6005 (yypvarsinit): Remove init code for removed variables.
6006 (global scope): Do not declare b4_declare_parser_variables if
6007 push or pure mode.
6008 (yypushparse): Add b4_declare_parser_variables.
6009 Init new local variables, and remove init code for removed
6010 yypvars variables.
6011 (yyparse): Delete.
6012 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
6013 and yyparse for other modes.
6014 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
6015 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
6016 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
6017 (AT_PURE_LEX_IF): True if pure or push parser.
6018
85894313
JD
60192006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
6020
6021 Document Yacc prologue alternatives and default %destructor's and
6022 %printer's as experimental. Don't mention Java yet. Discussed at
6023 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
6024 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
6025 (2.3a): Annotate this entry to say the old forms of these features were
6026 also experimental.
6027 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
148d66d8 6028 Table of Symbols): Say they're experimental. Comment out any mention
85894313
JD
6029 of Java (we'll want this back eventually).
6030
02975b9a
JD
60312006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
6032
6033 Support a file name argument to %defines. Deprecate `=' in
6034 %file-prefix, %name-prefix, and %output. Discussed at
6035 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
6036 * NEWS (2.3a+): Mention.
148d66d8 6037 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
02975b9a
JD
6038 form of %defines, and remove `=' from entries for %file-prefix,
6039 %name-prefix, and %output.
6040 * src/parse-gram.y (prologue_declaration): Implement.
6041 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
6042 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
6043 all but one occurrence of %name-prefix.
6044 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
6045 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
6046 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
6047 occurrence of each of %file-prefix and %output. Add check for %defines
6048 with argument.
6049 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
6050 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
6051 Remove the `=' from %output.
6052
287b314e
JD
60532006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
6054
6055 Don't escape $ in test case titles since Autoconf 2.61 now does that
6056 correctly.
6057 * tests/actions.at (Default %printer and %destructor are not for error
6058 or $undefined): Here.
6059 (Default %printer and %destructor are not for $accept): Here.
6060 * tests/input.at (Invalid $n and @n): Here.
6061
3ebecc24
JD
60622006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
6063
6064 Rename <!> to <>. Discussed starting at
6065 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
6066 * NEWS (2.3a+): Update.
148d66d8 6067 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
3ebecc24
JD
6068 Update.
6069 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
6070 * src/scan-gram.l (INITIAL): Implement.
6071 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
6072 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
6073 comment.
6074 * tests/actions.at (Default tagless %printer and %destructor,
6075 Default tagged and per-type %printer and %destructor,
6076 Default %printer and %destructor are not for error or $undefined,
6077 Default %printer and %destructor are not for $accept,
6078 Default %printer and %destructor for mid-rule values): Update.
6079 * tests/input.at (Default %printer and %destructor redeclared,
6080 Unused values with default %destructor): Update.
6081
26b8a438
JD
60822006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
6083
6084 Don't let %prec take a nonterminal.
6085 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
6086 token.
6087 * tests/input.at (%prec takes a token): New test checking that %prec
6088 won't take a nonterminal.
6089
07c39ae9
JD
60902006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
6091
405d53b7
JD
6092 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
6093 it was double-quoted.
07c39ae9
JD
6094 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
6095 grammar is maintained with Bison's highest standards.
6096 * src/getargs.c: Fix some typos in Doxygen comments.
6097
580b8926
JD
60982006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
6099
6100 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
6101 later. Reported by Paul Eggert in
6102 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
6103 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
6104 * src/scan-code.l (translate_action): Don't bother invoking
6105 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
6106 (code_scanner_free): Instead of invoking
6107 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
6108 which frees more.
6109 * src/scan-gram.l (gram_scanner_free): Likewise.
6110 * src/scan-skel.l (scan_skel): Likewise.
6111
4502eadc
JD
61122006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
6113
6114 * src/files.c (tr): Change return type to void.
6115 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
6116 has been called previously for the same key.
6117 (muscle_find): Return storage instead of value so that
6118 --enable-gcc-warnings doesn't produce warnings that the return discards
6119 const. aver that the value and storage are the same since storage
6120 could potentially be NULL when value is not.
6121 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
6122 same as 0.
6123
7746c8f6
PE
61242006-11-08 Paul Eggert <eggert@cs.ucla.edu>
6125
6126 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
6127 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
6128 us a slightly cleaner distribution, and also works.
6129 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
6130 gnulib changes.
6131
eb095650
PE
61322006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
6133 and Paul Eggert <eggert@cs.ucla.edu>
6134
6135 Don't let Bison leak memory except when it complains.
6136 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
6137 (spec_defines_file, dir_prefix): Now char *, not const char *,
6138 since they are freed.
6139 * src/files.c: Likewise.
6140 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
6141 Likewise.
6142 (tr): Now operates in-place. All uses changed.
6143 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
6144 values.
6145 (compute_file_name_parts, compute_output_file_names): Don't store
6146 read-only data in variables that will be freed.
6147 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
6148 src_extension, and header_extension.
6149 (output_file_names_free): New public function to free
6150 spec_verbose_file, spec_graph_file, spec_defines_file,
6151 parser_file_name, and dir_prefix.
6152 * src/getargs.c (getargs): Don't store read-only data in variables that
6153 will be freed.
6154 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
6155 (which previously existed but was unused), and quotearg_free.
6156 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
6157 * src/muscle_tab.c: Likewise.
6158 (muscle_entry): Make the value char const *,
6159 and add a new storage member that is char * and can be freed.
6160 (muscle_entry_free): New private function.
6161 (muscle_init): Use it instead of free.
6162 (muscle_insert, muscle_grow): Update and use new storage member.
6163 (muscle_code_grow): Free the string passed to muscle_grow
6164 since it's not needed anymore.
6165 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
6166 add a new `char *code' member.
6167 ("{...}"): Declare semantic type as code.
6168 * src/scan-code.h (translate_rule_action):
6169 (translate_symbol_action, translate_code, translate_action): Return
6170 `char const *' rather than `char *' since external code should not free
6171 these strings.
6172 * src/scan-code.l: Likewise.
6173 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
6174 which is "{...}" in the parser.
6175 * tests/Makefile.am (maintainer-check-valgrind): Set
6176 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
6177 Valgrind.
6178 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
6179 complain.
6180 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
6181 expecting a non-zero exit status sets --leak-check=summary and
6182 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
6183 this case, and we don't want to hear about it.
6184
ac564be4
PE
61852006-11-08 Paul Eggert <eggert@cs.ucla.edu>
6186
6187 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
6188 instead of from the template, to simplify configuration a bit.
6189 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
6190 and m4/wint_t.m4, as they are needed with the latest gnulib.
6191
17bd8a73
JD
61922006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6193
6194 Disable unset/unused mid-rule value warnings by default, and recognize
6195 --warnings=midrule-values to enable them. Discussed starting at
6196 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
6197 * NEWS (2.3a+): Mention.
6198 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
6199 warnings): Add entry for midrule-values subargument.
6200 * src/reader.c (symbol_should_be_used): Don't return true just because
6201 the value is a set/used mid-rule value unless
6202 --warnings=midrule-values was specified.
6203 * tests/input.at (Unused values, Unused values before symbol
6204 declarations): Run tests with and without --warnings=midrule-values.
6205
6206 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
6207 than LIST_FREE directly.
6208
89eb3c76
JD
62092006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6210
6211 Finish implementing --warnings=error, which should not be implied by
6212 --warnings=all (or by its synonyms -W and --warnings without
6213 subarguments).
6214 * src/complain.c (set_warning_issued): New function to report that
6215 warnings are being treated as errors and to record an error if so.
6216 Invoke...
6217 (warn_at, warn): ... here.
6218 * src/getargs.c (warnings_args, warnings_types): Reorder so that
6219 "error - warnings are errors" does not appear above "all - all of the
6220 above".
6221 (getargs): For -W and --warnings without subarguments, don't let
6222 FLAGS_ARGMATCH set warnings_error in warnings_flag.
6223 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
6224
ba7560e2
JD
62252006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6226
6227 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
6228 empty subargument list. For example: `bison --warnings= parser.y'.
6229
31283fc3
JD
62302006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6231
6232 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
6233 the parser header file so that gcc doesn't warn.
6234
12e35840
JD
62352006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6236
6237 Split the default %destructor/%printer into two kinds: <*> and <!>.
6238 Discussed starting at
6239 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
6240 * NEWS (2.3a+): Mention.
6241 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
6242 previous change today related to mid-rules.
148d66d8 6243 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
3ebecc24 6244 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
12e35840
JD
6245 (TYPE_TAG_ANY): Add as <*>.
6246 (TYPE_TAG_NONE): Add as <!>.
6247 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
6248 for <*> and <!>.
6249 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
6250 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
6251 * src/symlist.c (symbol_list_default_new): Split into tagged and
6252 tagless versions.
6253 (symbol_list_destructor_set, symbol_list_printer_set): Split
6254 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
6255 SYMLIST_DEFAULT_TAGLESS.
6256 * src/symlist.h: Update symbol_list_default*_new prototypes.
6257 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
6258 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
6259 * src/symtab.c (default_destructor, default_destructor_location,
6260 default_printer, default_printer_location): Split each into tagged and
6261 tagless versions.
6262 (symbol_destructor_get, symbol_destructor_location_get,
6263 symbol_printer_get, symbol_printer_location_get): Implement tagged
6264 default and tagless default cases.
6265 (default_destructor_set, default_printer_set): Split each into tagged
6266 and tagless versions.
6267 * src/symtab.h: Update prototypes.
6268 * tests/actions.at (Default %printer and %destructor): Rename to...
6269 (Default tagless %printer and %destructor): ... this, and extend.
6270 (Per-type %printer and %destructor): Rename to...
6271 (Default tagged and per-type %printer and %destructor): ... this, and
6272 extend.
6273 (Default %printer and %destructor for user-defined end token): Extend.
6274 (Default %printer and %destructor are not for error or $undefined):
6275 Update.
6276 (Default %printer and %destructor are not for $accept): Update.
6277 (Default %printer and %destructor for mid-rule values): Extend.
6278 * tests/input.at (Default %printer and %destructor redeclared): Extend.
6279 (Unused values with default %destructor): Extend.
6280
f91b1629
JD
62812006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6282
6283 Don't apply the default %destructor/%printer to an unreferenced midrule
6284 value. Mentioned at
6285 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
6286 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
6287 like $@n instead of just @n so that the default %destructor/%printer
6288 logic doesn't see them as user-defined symbols.
6289 (symbol_is_dummy): Check for both forms of the name.
6290 * src/reader.c (packgram): Remove the `$' from each midrule symbol
6291 name for which the midrule value is referenced in any action.
6292 * tests/actions.at (Default %printer and %destructor for mid-rule
6293 values): New test.
6294 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
6295 for change to dummy symbol names.
6296
519d0004
JD
62972006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
6298
6299 Warn about unset midrule $$ if the corresponding $n is used.
6300 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
6301 $n usage.
6302 (packgram): Before invoking grammar_rule_check on any rule, make sure
6303 all actions have already been scanned in order to set `used' flags.
6304 Otherwise, checking that a midrule's $$ is set will not always work
6305 properly because the midrule check must forward-reference the midrule's
6306 parent rule.
6307 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
6308 warning.
6309
a501eca9
JD
63102006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
6311
6312 More improvements to the documentation of the prologue alternatives:
6313 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
6314 Bison manual.
6315 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
6316 some text to clarify the relative importance of the new directives and
6317 to show how these directives may be viewed as code labels.
6318
2cbe6b7f
JD
63192006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
6320
6321 Similar to the recently removed %before-header, add %code-top as the
6322 alternative to the pre-prologue. Mentioned at
6323 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
6324 Also, let the prologue alternatives appear in the grammar section.
6325 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
6326 (prologue_declaration): Move the existing prologue alternatives to...
6327 (grammar_declaration): ... here and add %code-top.
6328 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
6329
6330 Clean up and extend documentation for the prologue alternatives.
6331 * NEWS (2.3a+): Describe prologue alternatives.
6332 * doc/bison.texinfo (Prologue): Move discussion of prologue
6333 alternatives to...
6334 (Prologue Alternatives): ... this new section, and extend it to discuss
6335 all 4 directives in detail.
148d66d8
JD
6336 (Table of Symbols): Clean up discussion of prologue alternatives and
6337 add %code-top.
2cbe6b7f 6338
e557d3ea
JMG
63392006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6340
6341 DJGPP specific issues.
6342
6343 * djgpp/config.bat: config.hin has been moved to lib. Adjust
6344 config.bat accordingly.
6345 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
6346 * djgpp/config.site: Likewise.
6347
136a0f76
PB
63482006-10-16 Paolo Bonzini <bonzini@gnu.org>
6349
27bd5d67
PB
6350 Replace %*-header with %provides, %requires, %code. See discussion at
6351 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
6352
136a0f76
PB
6353 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
6354 (b4_user_start_header): Remove.
6355 * data/glr.c: Use new macros instead of b4_*start_header
6356 and b4_*end_header.
6357 * data/glr.cc: Likewise.
6358 * data/lalr1.cc: Likewise.
6359 * data/push.c: Likewise.
6360 * data/yacc.c: Likewise.
6361
6362 * doc/bison.texinfo: Remove %before-header, rename
6363 %{start,end,after}-header to %requires, %provides, %code.
6364
6365 * src/parse-gram.y: Likewise (also rename token names accordingly).
6366 * src/scan-gram.l: Likewise.
6367 * tests/actions.at: Likewise.
6368
10f429ef
PE
63692006-10-14 Paul Eggert <eggert@cs.ucla.edu>
6370
6371 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
6372 Problem reported by Joel E. Denny.
6373
63742006-10-14 Jim Meyering <jim@meyering.net>
6375
6376 (Sync from coreutils.)
6377 Work also when the working directory (with e.g. coreutils sources)
6378 is version controlled with git, rather than CVS.
6379 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
6380 rather than CVS.
6381 In messages and comments, say e.g., "checked-out sources",
6382 rather than "CVS sources".
6383 (version_controlled_file): New function. Work for git as well as
6384 for CVS. Don't use grep's -q option.
6385 (slurp): Call it here, in place of CVS-specific code.
6386
c4bd5bf7
JD
63872006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
6388
6389 Fix testsuite for ./configure --enable-gcc-warnings:
6390 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
6391 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
6392 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
6393 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
6394 * test/regression.at (Diagnostic that expects two alternatives):
6395 Likewise.
6396
46356ea4
PE
63972006-10-12 Paul Eggert <eggert@cs.ucla.edu>
6398
231ed89a
PE
6399 * bootstrap.conf (gnulib_modules): Add config-h.
6400 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
6401 worry about HAVE_CONFIG_H.
6402 * lib/abitset.c: Likewise.
6403 * lib/bitset.c: Likewise.
6404 * lib/bitset_stats.c: Likewise.
6405 * lib/bitsetv-print.c: Likewise.
6406 * lib/bitsetv.c: Likewise.
6407 * lib/ebitset.c: Likewise.
6408 * lib/get-errno.c: Likewise.
6409 * lib/lbitset.c: Likewise.
6410 * lib/subpipe.c: Likewise.
6411 * lib/timevar.c: Likewise.
6412 * lib/vbitset.c: Likewise.
6413 * lib/bitset.c: Include "bitset.h" first, to test interface.
6414 * lib/bitset_stats.c: Include "bitset_stats.h" first.
6415 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
6416 * lib/bitsetv.c: Include "bitsetv.h" first.
6417 * lib/get-errno.c: Include "get-errno.h" first.
6418 * m4/.cvsignore: Add config-h.m4.
6419 * tests/actions.at (Default %printer and %destructor for ...):
6420 Adjust expected line numbers in output to reflect removal of #if
6421 HAVE_CONFIG_H lines.
6422 * tests/glr-regression.at (Missed %merge type warnings when ...):
6423 Likewise.
6424 * tests/regression.at (Braced code in declaration in rules section):
6425 Likewise.
6426 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
6427 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
6428 Include <config.h> unconditionally.
6429
46356ea4
PE
6430 * bootstrap: Sync from coreutils, as follows:
6431
6432 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
6433
6434 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
6435 variable was sometimes used without being initialized. This
6436 messed up the installation of the INSTALL file in some cases.
6437
6438 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
6439
6440 * bootstrap (usage, main program, symlink_to_gnulib): Add option
6441 --copy. Inspired by a suggestion from Bruno Haible.
6442
6443 2006-10-03 Jim Meyering <jim@meyering.net>
6444
6445 * bootstrap: Undo last change to this file, since now gnulib-tool
6446 sticks with the automake default in generating dependencies.
6447
dd4bf078
PE
64482006-10-12 Paul Eggert <eggert@cs.ucla.edu>
6449
cf2a5f7c
PE
6450 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
6451 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
6452
6453 * doc/bison.1: Add copyright notice.
6454
6455 * data/glr.c: Don't include <stdarg.h>; not used.
6456
35fe0834
PE
6457 * NEWS: The -g and --graph options now output graphs in Graphviz
6458 DOT format, not VCG format.
6459 * doc/bison.1: Likewise.
6460 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
fcab4a2e
PE
6461 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
6462 of this change in
6463 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
35fe0834
PE
6464 * TODO: Remove Graphviz entry.
6465 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
6466 remove vcg.c, vcg.h, vcg_defaults.h.
6467 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
6468 * src/graphviz.c, src/graphviz.h: New files.
6469 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
6470 * src/files.h: Make comment more generic.
6471 * src/main.c (main): Likewise.
6472 * src/print_graph.h: Likewise.
6473 * src/getargs.c (usage): Make usage description more generic.
6474 * src/print_graph.c: Include graphviz.h rather than vcg.h.
6475 (static_graph, fgraph): Remove. All uses changed to pass
6476 arguments instead of sharing a static var.
6477 (print_core, print_actions, print_state, print_graph):
6478 Output graphviz format rather than VCG format.
6479 * tests/.cvsignore: Remove *.vcg; add *.dot.
6480 * tests/output.at: Expect *.dot files, not *.vcg files.
6481
dd4bf078
PE
6482 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
6483 accommodates the 2006-10-08 change.
6484
efdd7421
PE
64852006-10-11 Bob Rossi <bob@brasko.net>
6486
6487 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
6488 (b4_yyssa, b4_yyerror_range): New macros.
6489 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
6490 (yypvarsinit): Remove init of removed fields.
6491 (yypushparse): Remove use of removed fields; use new macros instead.
6492
96a1981a
PE
64932006-10-11 Paul Eggert <eggert@cs.ucla.edu>
6494
6495 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
6496 in a push parser. Reindent slightly to match yacc.c better.
6497
64982006-10-11 Bob Rossi <bob@brasko.net>
6499
46356ea4
PE
6500 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
6501 yymsg_alloc fields.
6502 (yypvarsinit, yypushparse): Remove init of removed fields.
6503 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
96a1981a 6504
c1630a8b
PE
65052006-10-09 Paul Eggert <eggert@cs.ucla.edu>
6506
6507 * THANKS: Add Paolo Bonzini and Bob Rossi.
6508
90b9908d
PB
65092006-10-08 Paolo Bonzini <bonzini@gnu.org>
6510
6511 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
6512 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
6513 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
6514 b4_define_user_cde and uses): Remove.
6515 (b4_comment, b4_prefix, b4_sync_start): New.
6516 * data/bison.m4: New file, with most of the content removed from c.m4.
6517 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
6518 * src/output.c (output_skeleton): Pass bison.m4.
6519 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
6520 only if specified.
6521
cf806753
PE
65222006-10-05 Paul Eggert <eggert@cs.ucla.edu>
6523
6524 Fix test failure reported by Tom Lane in
6525 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
6526 and try to make such failures easier to catch in the future.
6527 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
6528 that's now the caller's responsibility.
6529 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
6530 Set yychar = YYEOF if it's negative.
6531 * tests/actions.at (yylex): Abort if asked to read past EOF.
6532 * tests/conflicts.at (yylex): Likewise.
6533 * tests/cxx-type.at (yylex): Likewise.
6534 * tests/glr-regression.at (yylex): Likewise.
6535 * tests/input.at (yylex): Likewise.
6536 * tests/regression.at (yylex): Likewise.
6537 * tests/torture.at (yylex): Likewise.
6538
0e2f006a
PE
65392006-10-01 Paul Eggert <eggert@cs.ucla.edu>
6540
6541 Fix problems with translating English-language diagnostics.
6542 * bootstrap: Fix bug introduced in recent bootstrap changes, with
6543 respect to bison-runtime pot generation. The YY_ stuff
6544 wasn't being captured.
6545 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
6546 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
6547 * runtime-po/POTFILES.in: Add data/push.c.
6548
e3ddc1e3
PE
65492006-09-29 Paul Eggert <eggert@cs.ucla.edu>
6550
6551 Merge bootstrap changes from coreutils.
6552
6553 2006-09-28 Jim Meyering <jim@meyering.net>
6554
6555 Automatically generated dependencies are important even
6556 when all of the sources in a directory come from gnulib.
6557 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
6558 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
6559
6560 2006-09-23 Jim Meyering <jim@meyering.net>
6561
6562 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
6563
6564 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6565
6566 * bootstrap: Add support for --force.
6567 (usage): New function. Describe usage less tersely.
6568 (CVS_only_file): New var.
6569
01e972b3
PE
65702006-09-21 Paul Eggert <eggert@cs.ucla.edu>
6571
6572 * data/push.c (YYPUSH_MORE): Make it an enum instead.
6573 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
6574 Adjust white space and comments to match GNU style better.
6575
c63d3e90
PE
65762006-09-20 Bob Rossi <bob@brasko.net>
6577
6578 * data/push.c (yyresult_get): Remove function.
6579 (YYPUSH_MORE): Add #define.
6580 (yypushparse): Modify return value.
6581
e70f46d1
PE
65822006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6583
6584 * stamp-h.in: Remove; no longer needed.
6585 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
6586 Remove config.h, config.hin, intl (no longer created).
6587 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
6588 stamp-h1.
6589
6590 Sync bootstrap from coreutils, as follows:
6591
6592 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
6593
6594 * bootstrap (symlink_to_gnulib): New function.
6595 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
6596 to copies-of-gnulib.
6597 (cp_mark_as_generated, slurp, gnulib_files):
6598 Avoid making a copy if it's the same as the old version.
6599 (gnulib_files): Add support for this variable (used by Bison).
6600
a92be413
PE
66012006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6602
6603 * src/getargs.c (usage): Rework to use conventions similar to
6604 coreutils, to make translation a bit easier and the code a bit
6605 smaller. Problem reported by Tim Van Holder.
6606
4f82b42a
PE
66072006-09-15 Paul Eggert <eggert@cs.ucla.edu>
6608
3b2942e6
PE
6609 Use some of gnulib's new modules, taken from coreutils.
6610
6611 * bootstrap: Sync from coreutils, except add support for gnulib_files.
6612 * bootstrap.conf: New file.
6613 (gnulib_modules): Add configmake, inttypes, unistd.
6614 (XGETTEXT_OPTIONS): Add complain, complain_at,
6615 fatal, fatal_at, warn, warn_at, unexpected_end.
6616 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
6617 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
6618 (gl_EARLY): Add.
6619 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
6620 (gl_INIT): Add
6621 (GNULIB_AUTOCONF_SNIPPET): Remove.
6622 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
6623 the pickiest.
6624 * lib/.cvsignore: Add inttypes_.h.
6625 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
6626 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
6627 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
6628 no-longer-necessary initializations.
6629 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
6630 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
6631 use the unistd module.
6632 * src/system.h: Likewise.
6633 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
6634 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
6635 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
6636 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
6637 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
6638 * src/system.h: Include inttypes.h unconditionally, now that we
6639 use the inttypes module. Don't bother to include stdint.h, since
6640 inttypes.h now does that for us.
6641 (LOCALEDIR): Remove, now that we use the configmake module.
6642 * src/getargs.c: Include configmake.h.
6643 * src/main.c: Likewise.
6644 * src/output.c: Likewise.
6645 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
6646 not from $abs_top_builddir, since config.h moved.
6647
6648
4f82b42a
PE
6649 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
6650 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
6651
6652 * src/parse-gram.y (symbol_declaration): Don't put statements
6653 before declarations; it's not portable to C89.
6654 * src/scan-code.l (handle_action_at): Likewise.
6655
6656 * src/scan-code.l: Always initialize braces_level; the old code
6657 left it uninitialized and therefore had undefined behavior.
6658
6659 Don't attempt to redefine 'assert', since it runs afoul of
6660 systems where standard headers (mistakenly) include <assert.h>.
6661 Instead, define and use our own alternative, called 'aver'.
6662 * src/reader.c: Don't include assert.h, since we no longer
6663 use assert.
6664 * src/scan-code.l: Likewise.
6665 * src/system.h (assert): Remove, replacing with....
6666 (aver): New function, taking a bool arg. All uses changed.
6667 * src/tables.c (pack_vector): Ensure that aver arg is bool,
6668 not merely an integer.
6669
31c10e38
PE
66702006-09-15 Bob Rossi <bob@brasko.net>
6671
e5926647
JD
6672 Add support for push parsing. Based on the original work of
6673 Odd Arild Olsen <oao@fibula.no>.
31c10e38
PE
6674 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
6675 * data/c.m4 (YYPUSH): New.
6676 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
e5926647 6677 * data/push.c: New file.
31c10e38
PE
6678 * src/getargs.c (push_parser): New var.
6679 * src/getargs.h (push_parser): New declaration.
6680 * src/output.c (prepare): Add macro insertion of `push_flag'.
6681 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
6682 (prologue_declaration): Parse %push-parser.
6683 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
6684 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
6685 list of removed lines from the traces observed.
6686 (AT_CHECK_CALC_LALR): Added push parser tests.
6687
fa7b79c0
PE
66882006-09-13 Paul Eggert <eggert@cs.ucla.edu>
6689
21fe08ca
PE
6690 * NEWS: Version 2.3a.
6691 * configure.ac (AC_INIT): Likewise.
6692
e8ec4d9b
PE
6693 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
6694 "#define YYSTYPE int" that caused "make maintainer-check" to fail
6695 due to header ordering dependencies. I don't know why the #define
6696 was there.
6697
fa7b79c0
PE
6698 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
6699 runtime cost when YYDEBUG is not defined, and so that some tests
6700 that used to fail now work. Problem and initial suggestion by
6701 Paolo Bonzini.
6702 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
6703 * data/glr.cc (b4_parser_class_name):
6704 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
6705 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
6706 (yydebug_) [YYDEBUG]: New member.
6707 (yycdebug_): Now defined only if YYDEBUG.
6708 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
6709 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
6710 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
6711 if YYYDEBUG.
6712 (debug_stream, set_debug_stream, debug_level, set_debug_level):
6713 Define only if YYDEBUG.
6714 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
6715 set_debug_level.
6716 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
6717 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
6718 AT_CHECK_CALC_GLR_CC that are working now.
6719
4ec13d60
PE
67202006-09-12 Paul Eggert <eggert@cs.ucla.edu>
6721
6722 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
6723 We don't need them in glr.cc, and glr.c defines them.
6724 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
6725 assumes that defining it to anything is the same as defining
6726 it to 1. Problem reported by Paolo Bonzini.
6727
8e1687ae
PE
67282006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
6729
6730 * data/c.m4 (b4_null, b4_case): Define.
6731 * src/output.c (prepare_symbols): Use b4_null.
6732 (user_actions_output): Use b4_case.
6733
3dc5e96b
PE
67342006-09-11 Paul Eggert <eggert@cs.ucla.edu>
6735
aef3da86
PE
6736 * data/glr.c (b4_shared_declarations): Put start-header first,
6737 before any #includes that we generate, so that feature-test
6738 macros work. Problem reported by Michael Deutschmann in
6739 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
6740 * data/lalr1.cc: Likewise.
6741 * doc/bison.texinfo (Prologue): Document that feature-test macros
6742 should be defined before any Bison declarations.
6743 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
6744 that depend on location.hh after, not before, Bison decls, since
6745 we now include location.hh after the first user prologue.
6746
3dc5e96b
PE
6747 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
6748 Sander Brandenburg in
6749 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
6750 Also, fix minor white space and comment issues.
aef3da86
PE
6751 (Prologue): Mention that it's better to define feature-test macros
6752 before Bison declarations. Problem reported by Michael Deutschmann.
6753
6754 * README-cvs: Fix typo: "&" should be "&&". Problem reported
6755 by Jim Meyering.
6756 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
6757 This adjusts to recent gnulib changes.
3dc5e96b 6758
b2a0b7ca
JD
67592006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
6760
6761 Finish implementation of per-type %destructor/%printer. Discussed
6762 starting at
6763 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
6764 and
6765 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
6766 * NEWS (2.3+): Add a description of this feature to the default
6767 %destructor/%printer description.
6768 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
6769 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
6770 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
6771 list node contains a semantic type.
6772 * src/symtab.c, src/symtab.h: Extend with a table that associates
6773 semantic types with their %destructor's and %printer's.
6774 (semantic_type_from_uniqstr, semantic_type_get,
6775 semantic_type_destructor_set, semantic_type_printer_set): New functions
6776 composing the public interface of that table.
6777 (symbol_destructor_get, symbol_destructor_location_get,
6778 symbol_printer_get, symbol_printer_location_get): If there's no
6779 per-symbol %destructor/%printer, look up the per-type before trying
6780 the default.
6781 * tests/actions.at (Per-type %printer and %destructor): New test case.
6782 * tests/input.at (Default %printer and %destructor redeclared):
6783 Extend to check that multiple occurrences of %symbol-default in a
6784 single %destructor/%printer declaration is an error.
6785 (Per-type %printer and %destructor redeclared, Unused values with
6786 per-type %destructor): New test cases.
6787
3be03b13
JD
67882006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
6789
6790 Require default %destructor/%printer to be declared using
6791 %symbol-default instead of an empty symbol list, and start working on
6792 new per-type %destructor/%printer. Discussed at
6793 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
6794 * NEWS (2.3+): Add %symbol-default to example.
6795 * bison.texinfo (Freeing Discarded Symbols): Likewise.
148d66d8 6796 (Table of Symbols): Add entry for %symbol-default.
3be03b13
JD
6797 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
6798 (generic_symlist, generic_symlist_item): New nonterminals for creating
6799 a list in which each item is a symbol, semantic type, or
6800 %symbol-default.
6801 (grammar_declaration): Use generic_symlist in %destructor and %printer
6802 declarations instead of symbols.1 or an empty list.
6803 (symbol_declaration, precedence_declaration, symbols.1): Update actions
6804 for changes to symbol_list.
6805 * src/reader.c: Update for changes to symbol_list.
6806 * src/scan-code.l: Likewise.
6807 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
6808 * src/symlist.c, src/symlist.h: Extend such that a list node may
6809 represent a semantic type or a %symbol-default in addition to just an
6810 ordinary symbol. Add switched functions for setting %destructor's and
6811 %printer's.
6812 * tests/actions.at, tests/input.at: Add %symbol-default to all default
6813 %destructor/%printer declarations.
6814
3508ce36
JD
68152006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
6816
6817 Whether the default %destructor/%printer applies to a particular symbol
6818 isn't a question of whether the user *declares* that symbol (in %token,
6819 for example). It's a question of whether the user by any means
6820 *defines* the symbol at all (by simply using a char token, for
6821 example). $end is defined by Bison whereas any other token with token
6822 number 0 is defined by the user. The error token is always defined by
6823 Bison regardless of whether the user declares it with %token, but we
6824 may one day let the user define error as a nonterminal instead.
6825 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
6826 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
6827 the meaning of "user-defined".
6828 * tests/actions.at (Default %printer and %destructor for user-declared
6829 end token): Rename to...
6830 (Default %printer and %destructor for user-defined end token): ...
6831 this.
6832
6833 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
6834 computation of whether to apply the default, don't maintain a list of
6835 every Bison-defined symbol. Instead, just check for a first character
6836 of '$', which a user symbol cannot have, and check for the error token.
6837
9350499c
JD
68382006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
6839
6840 Don't apply the default %destructor or %printer to the error token,
6841 $undefined, or $accept. This change fits the general rule that the
6842 default %destructor and %printer are only for user-declared symbols,
6843 and it solves several difficulties that are described in the new test
6844 cases listed below.
6845 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
6846 * tests/actions.at (Default %printer and %destructor are not for error
6847 or $undefined, Default %printer and %destructor are not for $accept):
6848 New test cases.
6849
4d7370cb
JD
68502006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
6851
6852 Allow %start after the first rule.
6853 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
6854 when parsing the first rule.
6855 (check_and_convert_grammar): Search for it here after all grammar
6856 declarations have been parsed. Skip midrules, which have dummy LHS
6857 nonterminals.
6858 * src/symtab.c (symbol_is_dummy): New function.
6859 * src/symtab.h (symbol_is_dummy): Declare it.
6860 * tests/input.at (%start after first rule): New test.
6861
6d0ef4ec
JD
68622006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
6863
6864 Redo some of the previous commit: add back the ability to use
6865 non-aliased/undeclared string literals since it might be useful to
6866 those declaring %token-table.
6867 * src/reader.c (check_and_convert_grammar): Undo changes in previous
6868 commit: don't worry about complaints from symbols_pack.
6869 * src/symtab.c (symbol_new, symbol_class_set,
6870 symbol_check_alias_consistency): Undo changes in previous commit: count
6871 each string literal as a new symbol and token, assign it a symbol
6872 number, and don't complain about non-aliased string literals.
6873 (symbols_pack): Since symbol_make_alias still does not decrement symbol
6874 and token counts but does still set aliased tokens to the same number,
6875 symbol_pack_processor now leaves empty slots in the symbols array.
6876 Remove those slots.
6877 * tests/regression.at (Undeclared string literal): Remove test case
6878 added in previous commit since non-aliased string literals are allowed
6879 again.
6880 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
6881 remove unnecessary string literal declarations.
6882 * tests/sets.at (Firsts): Likewise.
6883
965537bc
JD
68842006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
6885
6886 Don't allow an undeclared string literal, but allow a string literal to
6887 be used before its declaration.
6888 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
6889 symbols_pack complained.
6890 * src/symtab.c (symbol_new): Don't count a string literal as a new
6891 symbol.
6892 (symbol_class_set): Don't count a string literal as a new token, and
6893 don't assign it a symbol number since symbol_make_alias does that.
6894 (symbol_make_alias): It's not necessary to decrement the symbol and
6895 token counts anymore. Don't assume that an alias declaration occurs
6896 before any uses of the identifier or string, and thus don't assert that
6897 one of them has the highest symbol number so far.
6898 (symbol_check_alias_consistency): Complain if there's a string literal
6899 that wasn't declared as an alias.
6900 (symbols_pack): Bail if symbol_check_alias_consistency failed since
6901 symbol_pack asserts that every token has been assigned a symbol number
6902 although undeclared string literals have not.
6903 * tests/regression.at (String alias declared after use, Undeclared
6d0ef4ec 6904 string literal): New test cases.
965537bc
JD
6905 (Characters Escapes, Web2c Actions): Declare string literals as
6906 aliases.
6907 * tests/sets.at (Firsts): Likewise.
6908
47aee066
JD
69092006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
6910
6911 In the grammar scanner, STRING_FINISH unclosed constructs and return
6912 them to the parser in order to improve error messages.
6913 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
6914 SC_BRACED_CODE, SC_PROLOGUE): Implement.
6915 * tests/input.at (Unclosed constructs): New test case.
6916 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
6917 seen.
6918
6919 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
6920 unused global.
6921
1f6b3679
JD
69222006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
6923
6924 Handle string aliases for character tokens correctly.
6925 * src/symtab.c (symbol_user_token_number_set): If the token has an
6926 alias, check and set its alias's user token number instead of its own,
6927 which is set to indicate the alias. Previously, every occurrence of
6928 the character token in the grammar overwrote that alias indicator with
6929 the character code.
6930 * tests/input.at (String aliases for character tokens): New test.
6931
219741d8
JD
69322006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
6933
6934 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
6935
11daa4e7
PE
69362006-08-11 Paul Eggert <eggert@cs.ucla.edu>
6937
6938 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
6939 to prevent failures when building on older platforms.
6940 Check for autopoint failure.
6941 Set XGETTEXT_OPTIONS to values that check for C format strings,
6942 so that translators are warned about them (this also helps
6943 prevent core dumps).
6944
6945 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
6946 function, since it simplifies our code a bit.
6947
6948 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
6949 rather than -W, so we don't get bogus warnings about sign comparisons.
6950 Add -Wpointer-arith, since that warning is useful (it reports code
6951 that does not conform to C89 and that some compilers reject).
6952 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
6953 since it's no longer needed.
6954
f9bfc42a
JD
69552006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
6956
6957 Clean up scanners a bit.
6958 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
6959 definitions so gcc won't warn when obstack_for_string is unused.
6960 * src/scan-code.l: config.h and system.h are already #include'd by
6961 scan-code-c.c, so get rid of them here.
6962 * src/scan-gram.l: Likewise.
6963 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
6964 definitions rather than duplicating the rest of it.
6965 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
6966
06e8700a
JD
69672006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
6968
6969 Suppress signed/unsigned comparison warnings for yycheck.
6970 * data/c.m4 (b4_safest_int_type): New macro.
6971 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
6972 a signed int type, cast it to b4_safest_int_type first.
6973 * data/yacc.c: Likewise.
6974 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
6975 also overwritten.
6976
9c437126
PE
69772006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
6978
6979 * doc/bison.texinfo: Fix some typos.
6980
284d8a13
PE
69812006-08-02 Paul Eggert <eggert@cs.ucla.edu>
6982
6983 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
6984 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
6985
6986 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
6987 the latest gnulib does this a different way.
6988 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
6989 translation was patched, so stop omitting it.
6990
ec5479ce
JD
69912006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
6992
6993 Enable declaration of default %printer/%destructor. Make the parser
6994 use these for all user-declared grammar symbols for which the user does
6995 not declare a specific %printer/%destructor. Thus, the parser uses it
6996 for token 0 if the user declares it but not if Bison generates it as
6997 $end. Discussed starting at
6998 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
6999 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
7000 and
7001 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
7002 * NEWS (2.3+): Mention.
7003 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
7004 declare a %destructor for a mid-rule's semantic value. It's just
7005 impossible to declare one specific to it.
7006 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
7007 code. Describe default %destructor form.
7008 * src/parse-gram.y (grammar_declaration): Parse default
7009 %printer/%destructor declarations.
7010 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
7011 and symbol_destructor_location_get rather than accessing the destructor
7012 and destructor_location members of struct symbol.
7013 (symbol_printers_output): Likewise but for %printer's.
7014 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
7015 again.
7016 * src/symtab.c (default_destructor, default_destructor_location,
7017 default_printer, default_printer_location): New static global
7018 variables to record the default %destructor and %printer.
7019 (symbol_destructor_get, symbol_destructor_location_get,
7020 symbol_printer_get, symbol_printer_location_get): New functions to
7021 compute the appropriate %destructor and %printer for a symbol.
7022 (default_destructor_set, default_printer_set): New functions to set the
7023 default %destructor and %printer.
7024 * src/symtab.h: Prototype all those new functions.
7025 * tests/actions.at (Default %printer and %destructor): New test to
7026 check that the right %printer and %destructor are called, that they're
7027 not called for $end, and that $$ and @$ work correctly.
7028 (Default %printer and %destructor for user-declared end token): New
7029 test to check that the default %printer and %destructor are called for
7030 a user-declared end token.
7031 * tests/input.at (Default %printer and %destructor redeclared, Unused
7032 values with default %destructor): New tests to check related grammar
7033 warnings and errors.
7034
868d2d96
JD
70352006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
7036
7037 Clean up handling of %destructor for the end token (token 0).
7038 Discussed starting at
7039 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
7040 and
7041 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
7042
7043 Make the skeletons consistent in how they pop the end token and invoke
7044 its %destructor.
7045 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
7046 state, which has token number 0, since this would invoke the
7047 %destructor for the end token.
7048 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
7049 until after shifting the end token, or else it won't be popped.
7050 * data/yacc.c (yyparse): Likewise.
7051
7052 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
7053 it's the end token. Upon termination, destroy an unshifted lookahead
7054 even when it's the end token.
7055 * data/lalr1.cc (yy::parser::parse): Likewise.
7056 * data/yacc.c (yyparse): Likewise.
7057
7058 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
7059 value warnings for the end token when the user gives the end token a
7060 %destructor.
7061
7062 * tests/actions.at (Printers and Destructors): Test all the above.
7063
62a9592d
PE
70642006-07-24 Paul Eggert <eggert@cs.ucla.edu>
7065
7066 Update to latest gnulib and gettext versions.
7067 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
7068 Add fopen-safer.
7069 (gnulib_files): Add m4/warning.m4. Don't worry about files
7070 overwritten by autopoint.
7071 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
7072 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
7073 rejects them.
7074 Don't use autoreconf; instead, invoke autopoint etc. by hand,
7075 so that we can remove the intl files at a better time.
7076 (intl_files_to_remove): Remove aclocal.m4, since it gets
7077 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
7078 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
7079 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
7080 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
7081 Remove datarootdir hack; no longer needed.
7082 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
7083 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
7084 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
7085 strdup.h.
7086 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
7087 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
7088
10d6970f
PE
70892006-07-20 Paul Eggert <eggert@cs.ucla.edu>
7090
7091 * bootstrap: Adjust to today's change to gnulib-tool by invoking
7092 it with --assume-autoconf='latest-stable'.
7093
50a33993
JD
70942006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
7095
7096 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
7097 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
7098 YYSTYPE' and `{'.
7099 * src/muscle_tab.h (muscle_grow): Replace the header comments with
7100 those from muscle_tab.c since the old ones are misleading.
7101
2ce4ed68
AD
71022006-07-13 Akim Demaille <akim@epita.fr>
7103
7104 Support %define "KEY" {VALUE}.
7105 * src/scan-code.h, src/scan-code.l (translate_action)
7106 (translate_rule_action, translate_symbol_action, translate_code):
7107 Return char *, not const char *.
7108 * src/parse-gram.y (declaration): Rename as...
7109 (prologue_declaration): this.
7110 (string_content): Remove this nonterminal, use STRING.
7111 (braceless, content, content.opt): New nonterminal.
7112 Use them.
7113 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
7114 as value.
7115 * src/scan-gram.l (getargs.h): Don't include it.
7116
db7e5eb5
PE
71172006-07-12 Paul Eggert <eggert@cs.ucla.edu>
7118
7119 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
7120 rather than a for-loop that declares a local bool variable. This
7121 should work around a compatibility problem with a Cray x1e C++
7122 compiler reported by Hung Nguyen in
7123 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
7124 The for-loop was introduced in the 2004-11-17 change but I don't
7125 know why it was needed.
7126
a5d80ba5
AD
71272006-07-12 Akim Demaille <akim@epita.fr>
7128
7129 * data/c.m4: Comment changes.
7130
23eb2a69
AD
71312006-07-10 Akim Demaille <akim@lrde.epita.fr>
7132
7133 * src/complain.c (error_message, ERROR_MESSAGE): New.
7134 To factor...
7135 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
7136 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
7137
ddc8ede1
PE
71382006-07-09 Paul Eggert <eggert@cs.ucla.edu>
7139
7140 * NEWS: Instead of %union, you can define and use your own union type
7141 YYSTYPE if your grammar contains at least one <type> tag.
7142 Your YYSTYPE need not be a macro; it can be a typedef.
7143 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
7144 (Union Decl, Decl Summary): Document this.
7145 * data/glr.c (YYSTYPE): Implement this.
7146 * data/glr.cc (YYSTYPE): Likewise.
7147 * data/lalr1.cc (YYSTYPE): Likewise.
7148 * data/yacc.c (YYSTYPE): Likewise.
7149 * src/output.c (prepare): Output tag_seen_flag.
7150 * src/parse-gram.y (declaration, grammar_declaration):
7151 Use 'union_seen' rather than 'typed' to determine whether
7152 %union has been seen, since grammars can now be typed without
7153 %union.
7154 (symbol_declaration, type.opt, symbol_def):
7155 Keep track of whether a tag has been seen.
7156 * src/reader.c (union_seen, tag_seen): New vars.
7157 (typed): remove.
7158 * src/reader.h (union_seen, tag_seen, typed): Likewise.
7159 * src/scan-code.l (untyped_var_seen): New variable.
7160 (handle_action_dollar): Adjust to above changes.
7161 (handle_action_dollar, handle_action_at):
7162 Improve overflow checking for outlandish numbers.
7163 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
7164 avoid new diagnostics generated by above changes.
7165 * tests/regression.at (YYSTYPE typedef): Add test to check
7166 for type tags without %union.
7167
7168 * src/symlist.c (symbol_list_length): Return int, not unsigned
7169 int, since callers expect int. This may need to get revisited
7170 once we have proper integer overflow checking.
7171
7172 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
7173 object is now static.
7174
7175 * src/getargs.c (flags_argmatch): Return void, not int,
7176 to pacify ./configure --enable-gcc-warnings.
7177
7178 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
7179 since last_string is already defined to FLEX_PREFIX (last_string).
7180
7b42569e
AD
71812006-07-09 Akim Demaille <akim@lrde.epita.fr>
7182
7183 Implement --warnings/-W.
7184 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
7185 replaced by...
7186 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
7187 Adjust callers.
7188 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
7189 (warnings_args, warnings_types): New.
7190 (getargs, short_options, long_options): Accept -W/--warnings.
7191 Sort the options by alphabetical order, upper case letter right
7192 before its lower case.
7193
3b452f4e
JD
71942006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
7195
7196 Change %merge result type clash warnings to errors. Discussed at
7197 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
7198 * src/reader.c (record_merge_function_type): Use complain_at.
7199 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7200 declared later): Update test case results.
7201
b8a41559
AD
72022006-07-09 Akim Demaille <akim@lrde.epita.fr>
7203
7204 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
7205 to be in alphabetical order.
7206 (trace_args): Spelling fixes.
7207
cd9e1ba2
PE
72082006-07-09 Paul Eggert <eggert@cs.ucla.edu>
7209
7210 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
7211 so they don't collide with user-defined macros.
7212 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
7213 this was never guaranteed, and now that we're using gnulib stdint,
7214 which defines int_fast16_t to long int, the problem is exposed.
7215
cb48f191
PE
72162006-07-08 Paul Eggert <eggert@cs.ucla.edu>
7217
b8445a15
PE
7218 * data/c.m4 (b4_basename): Simplify a bit, since we don't
7219 need the full POSIX semantics (and weren't implementing them
7220 anyway).
7221
cb48f191
PE
7222 Adjust to Autoconf 2.60 and today's gnulib.
7223 * bootstrap (gnulib_modules): Add stdint.
7224 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
7225 no longer copies it.
7226 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
7227 since stdint needs the former and wcwidth (which is now required
7228 by mbswidth) needs the latter.
7229 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
7230 work around a compatibility glitch between gettext 0.14.6 and
7231 Autoconf 2.60.
7232 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
7233 Do not check for uintptr_t, since new stdint module does the right
7234 thing.
7235 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
7236 Add stdint.h, stdint_.h, wcwidth.h.
7237 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
7238 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
7239 stdint.m4, wchar_t.m4, wcwidth.m4.
7240 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
7241 usual order for ../lib/*.h files.
7242 (file_name_split): Use last_component, not base_name, to adjust
7243 to gnulib changes.
7244 * src/parse-gram.h: Include <strverscmp.h> in the usual order
7245 for ../lib/*.h files.
7246 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
7247 Define unconditionally, since we now assume the stdint module.
7248 * src/scan-skel.l: Include <dirname.h>.
7249 (BASE_QPUTS): Use last_component, not base_name.
7250 * src/system.h: Include <unlocked-io.h> in the usual order
7251 for ../lib/*.h files. Include <stdint.h> unconditionally,
7252 since we now use the stdint module.
7253 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
7254 HAVE_UINTPTR_T, since we now use the stdint module.
7255 (base_name): Remove decl, since files now include <dirname.h>
7256 to get the decl.
7257
cd48d21d
AD
72582006-07-08 Akim Demaille <akim@lrde.epita.fr>
7259
7260 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
7261 New, default to 1.
7262 * data/yacc.c, data/glr.c, data/location.cc: Use them.
7263 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
7264 default.
7265 * tests/calc.at: Adjust.
7266
8ec0a172
AD
72672006-07-08 Akim Demaille <akim@lrde.epita.fr>
7268
b8445a15 7269 * data/c.m4 (b4_basename): New.
8ec0a172
AD
7270 (b4_syncline): Also output the location of its invocation (from
7271 the skeleton).
7272 (b4_user_action, b4_define_user_action, b4_user_actions)
7273 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
7274 (b4_user_stype): New.
7275 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
7276
4a678af8
JD
72772006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
7278
7279 In the grammar file, the first column is 1 not 0 on the first line as
7280 on every other line.
7281 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
7282 * tests/input.at (Torturing the Scanner): Update output.
7283
7284 * src/scan-gram.l (scanner_cursor): Declare it static.
7285
dd60572a
JD
72862006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
7287
7288 In warnings, say "previous declaration" rather than "first
7289 declaration".
7290 * src/symtab.c (redeclaration): Do that here.
7291 * src/reader.c (record_merge_function_type): In the case of a result
7292 type clash, report the previous declaration rather than the very first
7293 one in the grammar file.
7294 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7295 declared later): Add a third declaration to check this behavior.
7296 * tests/input.at (Incompatible Aliases): Update output.
7297
2073e1b6
AD
72982006-06-27 Akim Demaille <akim@epita.fr>
7299
7300 * doc/Doxyfile.in: New.
7301 * doc/Makefile.am: Use it.
7302 * src/lalr.h, src/symtab.h: Initial doxygenation.
7303
8ee5b538
JD
73042006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7305
7306 Don't miss %merge result type warnings just because the LHS types are
fab044e6
JD
7307 declared after the %merge. This continues the effort of the previous
7308 patch.
8ee5b538
JD
7309 * src/reader.c (get_merge_function): Don't set the merger type yet.
7310 (record_merge_function_type): New function for setting the merger type
7311 and checking for clashes.
7312 (grammar_current_rule_merge_set): Set the location of the %merge for
7313 the current rule.
7314 (packgram): Invoke record_merge_function_type for each rule now that
7315 all symbol type declarations have been parsed.
7316 * src/reader.h (merger_list.type_declaration_location): New member
7317 storing the location of the first %merge from which the type for this
7318 merging function was derived.
7319 * src/symlist.h (symbol_list.merger_declaration_location): New member
7320 storing the location of a rule's %merge, if any.
7321 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7322 declared later): New test to catch the error fixed by the above patch.
7323
ffa4ba3a
JD
73242006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7325
7326 Get action warnings (grammar_rule_check) right even when symbol
fab044e6
JD
7327 declarations appear after the rules. Discussed at
7328 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
7329 and
7330 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
7331 Don't mistake the type of $$ in a midrule to be that of its parent
7332 rule's $$.
ffa4ba3a
JD
7333 * src/reader.c (grammar_current_rule_end): Don't invoke
7334 grammar_rule_check yet since not all symbol declarations may have been
7335 parsed yet.
7336 (grammar_midrule_action): Likewise.
7337 Don't record whether the midrule's $$ has been used yet since actions
7338 haven't been translated yet.
7339 Record the midrule's parent rule and its RHS index within the parent
7340 rule.
7341 (grammar_current_rule_action_append): Don't translate the action yet
7342 since not all symbol declarations may have been parsed yet and, thus,
7343 warnings about types for $$, $n, @$, and @n can't be reported yet.
7344 (packgram): Translate the action and invoke grammar_rule_check now that
7345 all symbol declarations have been parsed.
7346 * src/scan-code.l (handle_action_dollar): Now that this is invoked
7347 after parsing the entire grammar file, the symbol list here in the case
7348 of a midrule is actually the midrule's empty RHS, so reference its
7349 parent rule's RHS where necessary.
7350 On the other hand, now that you can already know it's a midrule, you
7351 aren't forced to think $$ has the same type as its parent rule's $$.
7352 (handle_action_at): In the case of a midrule, reference the parent rule
7353 where necessary.
7354 * src/symlist.c (symbol_list_new): Initialize new midrule-related
7355 members.
7356 (symbol_list_length): Now that this is invoked after all rules have
7357 been parsed, a NULL symbol (rather than a NULL symbol list node)
7358 terminates a rule. symbol_list_print already does this correctly.
7359 * src/symlist.h (symbol_list.midrule_parent_rule,
7360 symbol_list.midrule_parent_rhs_index): New members so that midrules can
7361 remember their relationships with their parents.
7362 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
7363 fixed by the above patch.
7364 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
7365 implementing...
7366 (Unused values): ... this old test case and...
7367 (Unused values before symbol declarations): ... this new test case.
7368 This one is the same as `Unused values' except that all symbol
7369 declarations appear after the rules in order to catch the rest of the
7370 errors fixed by the above patch.
7371
e256e17f
JD
73722006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7373
300a1930
JD
7374 More cleanup.
7375 * src/reader.c (current_rule): Declare it static since it's no longer
7376 used outside this file.
7377 (grammar_current_rule_action_append): Remove redundant arguments from
7378 translate_rule_action invocation.
7379 * src/reader.h (current_rule): Remove this unused extern.
7380 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
7381 * src/scan-code.l (translate_rule_action): Likewise.
e256e17f 7382
381ecb06
JD
73832006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
7384
7385 Clean up yesterday's patch.
7386 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
7387 to...
7388 * src/reader.c (grammar_current_rule_action_append): ... here for
7389 consistency with grammar_current_rule_symbol_append.
7390 * tests/regression.at (Braced code in declaration in rules section):
7391 Make yyerror and yylex static as usual.
7392
4210cd0b
JD
73932006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
7394
7395 Fix bug that mistakes braced code in a declaration in the rules section
7396 to be a rule action. Mentioned at
7397 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
7398 * src/scan-gram.l: Move midrule action detection from the start of the
7399 scanning of any braced code to...
7400 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
7401 action. For readability, use $2 and @2 rather than the equivalent
7402 global variables.
7403 * tests/regression.at (Braced code in declaration in rules section):
7404 New test to catch the error fixed by the above patch.
7405
7406 Work on code readability some.
7407 * src/scan-code.l (current_rule): Get rid of this misleading and
7408 redundant declaration: it's actually extern'ed in reader.h.
7409 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
7410 translate_action): Add a rule argument and use it instead of the global
7411 current_rule.
7412 (translate_rule_action): This already receives current_rule through an
7413 argument, so pass it on to translate_action instead of assigning
7414 current_rule to current_rule.
7415 (translate_symbol_action, translate_code): Pass rule = NULL to
7416 translate_action.
7417
34f98f46
JD
74182006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
7419
7420 Rename %before-definitions to %start-header and %after-definitions to
7421 %end-header. Don't use these declarations to separate pre-prologue
7422 blocks from post-prologue blocks. Add new order-independent
7423 declarations %before-header and %after-header as alternatives to the
7424 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
7425 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
7426 * NEWS (2.3+): Update for these changes.
7427 * data/glr.c (b4_before_definitions): Update to...
7428 (b4_start_header): ... this.
7429 (b4_after_definitions): Update to...
7430 (b4_end_header): ... this.
7431 * data/glr.cc: Likewise.
7432 * data/lalr1.cc: Likewise.
7433 * data/yacc.c: Likewise.
7434 * doc/bison.texinfo (The prologue): Update names, and replace remaining
7435 prologue blocks with %*-header declarations.
7436 (Calc++ Parser): Likewise.
91661ebb 7437 (Decl Summary): Update names.
148d66d8 7438 (Table of Symbols): Update description.
34f98f46
JD
7439 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
7440 (PERCENT_END_HEADER): ... this.
7441 (PERCENT_BEFORE_DEFINITIONS): Update to...
7442 (PERCENT_START_HEADER): ... this.
7443 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
7444 (declaration): Update token names and m4 macro names.
7445 When parsing %end-header and %start-header, invoke translate_code
7446 before muscle_code_grow, and no longer set global booleans to remember
7447 whether these declarations have been seen.
7448 Parse new %after-header and %before-header.
7449 * src/reader.c (before_definitions, after_definitions): Remove.
7450 (prologue_augment): Accept a new bool argument to specify whether to
7451 augment the pre-prologue or post-prologue.
7452 * src/reader.h (before_definitions, after_definitions): Remove these
7453 extern's.
7454 (prologue_augment): Add new bool argument.
7455 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
7456 (PERCENT_END_HEADER): ... this.
7457 (PERCENT_BEFORE_DEFINITIONS): Update to...
7458 (PERCENT_START_HEADER): ... this.
7459 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
7460 * tests/actions.at (Printers and Destructors): Update names.
7461
31b2b07e
JD
74622006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
7463
7464 Add comparison operators for C++ location classes. Discussed at
7465 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
7466 * data/c++.m4 (b4_define_location_comparison): New boolean %define
7467 declaration indicating whether filename_type has an operator==. If
7468 filename_type is `std::string', it defaults to `1', `0' otherwise.
7469 * data/location.cc: Iff b4_define_location_comparison is `1', add
7470 operator== and operator!= for class position and for class location.
7471
7472 Some minor fixes.
7473 * src/scan-action.l: Remove unused file.
7474 * src/symtab.c (symbol_printer_set): Use printer_location not
7475 destructor_location.
7476 * src/symtab.h (struct symbol): Replace incorrect source comment for
7477 printer members.
7478 * tests/input.at (Incompatible Aliases): Update output with correct
7479 printer location.
7480
9bc0dd67
JD
74812006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
7482
7483 Don't put the pre-prologue in the header file. For the yacc.c code
7484 file and the glr.c header and code files, move the pre-prologue before
7485 the token definitions. Add new %before-definitions and
7486 %after-definitions to declare code that will go in both the header file
7487 and code file. Discussed at
7488 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
7489 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
7490 and
7491 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
7492 * NEWS (2.3+): Describe these changes.
7493 * data/glr.c (b4_pre_prologue): Move from within to before...
7494 (b4_shared_declarations): ... this.
7495 Add new b4_before_definitions before b4_token_enums.
7496 Add new b4_after_definitions at the end.
7497 * data/glr.cc (b4_pre_prologue): Replace with...
7498 (b4_before_definitions): ... this in the header file.
7499 (b4_after_definitions): New near the end of the header file.
7500 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
7501 code file right before including the header file.
7502 (b4_before_definitions): New in the previous position of
7503 b4_pre_prologue in the header file.
7504 (b4_after_definitions): New near the end of the header file.
7505 * data/yacc.c: Clean up some m4 quoting especially in the header file.
7506 (b4_token_enums_defines): In the code file, move to right before
7507 YYSTYPE for consistency with the header file.
7508 (b4_before_definitions): New right before b4_token_enums_defines in
7509 both the header and code file.
7510 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
7511 header and code file.
7512 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
7513 of prologues for %union dependencies.
91661ebb
JD
7514 (Decl Summary): In %defines description, mention the effect of
7515 %before-definitions and %after-definitions on the header file.
9bc0dd67
JD
7516 (Calc++ Parser): Forward declare driver in a %before-definitions rather
7517 than in the pre-prologue so that make check succeeds.
148d66d8 7518 (Table of Symbols): Add entries for %before-definitions and
9bc0dd67
JD
7519 %after-definitions.
7520 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
7521 %before-definitions.
7522 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
7523 (declaration): Parse those declarations and append to
7524 b4_before_definitions and b4_after_definitions, respectively.
7525 * src/reader.c (before_definitions, after_definitions): New bools to
7526 track whether those declarations have been seen.
7527 (prologue_augment): Add to the post-prologue if %union,
7528 %before-definitions, or %after-definitions has been seen.
7529 * src/reader.h (before_definitions, after_definitions): New extern's.
7530 * src/scan-gram.l: Scan the new declarations.
7531 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
7532 prologue block in a %before-definitions or a %after-definitions based
7533 on whether the %union is declared.
7534 * tests/regression.at (Early token definitions with --yacc, Early token
7535 definitions without --yacc): Move tests for token definitions into the
7536 post-prologue since token names are no longer defined in the
7537 pre-prologue.
7538
203b9274
AD
75392006-06-20 Akim Demaille <akim@epita.fr>
7540
7541 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
7542 (symbol_get): Use it.
7543 * src/parse-gram.y: Use it.
7544
a7ee59cf
JD
75452006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
7546
7547 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
7548 build succeeds when configured with --enable-gcc-warnings.
7549
5a2baae7
PE
75502006-06-19 Paul Eggert <eggert@cs.ucla.edu>
7551
33ad1a9c
PE
7552 * src/parse-gram.y (char_name): New function.
7553 (CHAR, STRING, string_content): For %printer, properly escape.
7554 (ID): Prefer fputs to fprintf.
7555 (id): Reindent to be consistent with other rules.
7556 Properly quote char.
7557
5a2baae7
PE
7558 The Translation Project changed its way of publishing translations
7559 to maintainers. I haven't received any responses to my request
7560 for supporting the old way, or for documenting the new way. I
7561 have modified 'bootstrap' to use screen scraping
7562 (in this case, HTML scraping). This is unreliable and inelegant,
7563 but I don't see any better way. Yuck.
7564 * bootstrap (TP_URL, WGET_COMMAND): New vars.
7565 (get_translations): New function, which uses HTML scraping to
7566 deduce locations of latest translations.
7567 Use this function to grab both bison and bison-runtime .po files.
7568 Don't bother priming the pump for the runtime-po domain any more,
7569 as it's now translated better than bison is.
7570
58d7a1a1
AD
75712006-06-19 Akim Demaille <akim@epita.fr>
7572
7573 * src/scan-gram.l: No longer "parse" things after `%union' until
7574 `{'. Rather, return a single "%union" token.
7575 No longer make symbols: return strings, and leave the conversion
7576 to symbols to the parser.
7577 (SC_PRE_CODE, token_type): Remove.
7578 * src/parse-gram.y (%union): New field `character'.
7579 Sort tokens.
7580 (CHAR): New token.
7581 (ID, ID_COLON): Now that the scanner no longer makes them
7582 identifiers, adjust all uses to invoke symbol_get.
7583 (id_colon): New, wraps the conversion from string to symbol.
7584 (%union): Accept a possible union_name.
7585 (symbol): Now can be a char.
7586 * data/c.m4 (b4_union_name): Leave a default value.
7587 * data/glr.c, data/yacc.c: Use it.
7588
b931235e
JD
75892006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
7590
7591 For associating token numbers with token names for "yacc.c", don't use
7592 #define statements unless `--yacc' is specified; always use enum
7593 yytokentype. Most important discussions start at:
7594 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
7595 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
7596 and
7597 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
7598 * NEWS (2.3+): Mention.
7599 * data/c.m4 (b4_yacc_if): New.
7600 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
7601 token #define's.
7602 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
7603 on token name definitions.
7604 * src/getargs.c (usage): Capitalize `Yacc' in English.
7605 * src/output.c (prepare): Define b4_yacc_flag.
7606 * tests/regression.at (Early token definitions): Test that tokens names
7607 are defined before the pre-prologue not just before the post-prologue.
7608 Remove this test case and copy to...
7609 (Early token definitions with --yacc): ... this to test #define's.
7610 (Early token definitions without --yacc): ... and this to test enums.
7611
9e6e7ed2
PE
76122006-06-11 Paul Eggert <eggert@cs.ucla.edu>
7613
7614 * NEWS: Reword the post-2.3 change to not be so optimistic about
7615 removing the old "look-ahead" spelling.
7616 Update previous look-ahead/lookahead change reports.
7617 * REFERENCES: look-ahead -> lookahead (since that's
7618 what he actually wrote).
7619 * doc/refcard.tex: look ahead -> lookahead,
7620 look-ahead -> lookahead
7621
742e4900
JD
76222006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
7623
7624 For consistency, use `lookahead' instead of `look-ahead' or
7625 `look_ahead'. Discussed starting at
7626 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
7627 and then at
7628 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
7629 * NEWS: For the next release, note the change to `--report'.
7630 * TODO, doc/bison.1: Update English.
7631 * doc/bison.texinfo: Update English.
7632 (Understanding Your Parser, Bison Options): Document as
7633 `--report=lookahead' rather than `--report=look-ahead'.
7634 * src/conflicts.c: Update English in comments.
7635 (lookahead_set): Rename from look_ahead_set.
7636 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
7637 (resolve_sr_conflict): Rename local look_ahead_tokens to
7638 lookahead_tokens, and update other uses.
7639 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
7640 count_rr_conflicts, conflicts_free): Update uses.
7641 * src/getargs.c (report_args): Move "lookahead" before alternate
7642 spellings.
7643 (report_types): Update uses.
7644 (usage): For `--report' usage description, state `lookahead' spelling
7645 rather than `look-ahead'.
7646 * src/getargs.h (report.report_lookahead_tokens): Rename from
7647 report_look_ahead_tokens.
7648 * src/lalr.c: Update English in comments.
7649 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
7650 (state_lookahead_tokens_count): Rename from
7651 state_look_ahead_tokens_count.
7652 Rename local n_look_ahead_tokens to n_lookahead_tokens.
7653 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
7654 Rename local n_look_ahead_tokens to n_lookahead_tokens.
7655 Update other uses.
7656 Update English in output.
7657 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
7658 * src/print.c: Update English in comments.
7659 (lookahead_set): Rename from look_ahead_set.
7660 (print_reduction): Rename argument lookahead_token from
7661 look_ahead_token.
7662 (print_core, state_default_rule, print_reductions, print_results):
7663 Update uses.
7664 * src/print_graph.c: Update English in comments.
7665 (print_core): Update uses.
7666 * src/state.c: Update English in comments.
7667 (reductions_new): Update uses.
7668 (state_rule_lookahead_tokens_print): Rename from
7669 state_rule_look_ahead_tokens_print, and update other uses.
7670 * src/state.h: Update English in comments.
7671 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
7672 (state_rule_lookahead_tokens_print): Rename from
7673 state_rule_look_ahead_tokens_print.
7674 * src/tables.c: Update English in comments.
7675 (conflict_row, action_row): Update uses.
7676 * tests/glr-regression.at
7677 (Incorrect lookahead during deterministic GLR,
7678 Incorrect lookahead during nondeterministic GLR): Rename
7679 print_look_ahead to print_lookahead.
7680 * tests/torture.at: Update English in comments.
7681 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
7682 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
7683 (Many lookahead tokens): Update uses.
7684 * data/glr.c: Update English in comments.
7685 * lalr1.cc: Likewise.
7686 * yacc.c: Likewise.
7687 * src/conflicts.h: Likewise.
7688 * src/lalr.h: Likewise.
7689 * src/main.c: Likewise.
7690 * src/output.c: Likewise.
7691 * src/parse-gram.c: Likewise.
7692 * src/tables.h: Likewise.
7693 * tests/calc.at: Likewise.
7694
3c40d0b5
JD
76952006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
7696
7697 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
7698
5d278082
PE
76992006-06-07 Paul Eggert <eggert@cs.ucla.edu>
7700
7701 * TODO: Add request from Nelson H. F. Beebe to be able to install
7702 Bison without installing the yacc script.
7703
9e668899
JD
77042006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
7705
7706 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
7707 and yytext if they're already #define'd.
7708 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
7709 * src/scan-code-c.c: ... here.
7710 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
7711 <config.h>.
7712
0c8e079f
JD
77132006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
7714
7715 Get Bison to build again when configured with --enable-gcc-warnings.
7716 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
7717 missing #include's.
7718 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
7719 loc argument as it shadows a global.
7720 * src/scan-gram.l: Remove stray comma that prevents boundary_set
7721 invocation.
7722
7723 * src/.cvsignore: Add scan-code.c.
7724
2346344a
AD
77252006-06-07 Akim Demaille <akim@epita.fr>
7726
7727 * src/scan-gram.l: Move the "add a trailing ; to actions" code
7728 to...
7729 * src/scan-code.l: here.
7730 * tests/input.at (Torturing the Scanner): Fix another location
7731 error.
7732
4862bdfd
AD
77332006-06-07 Akim Demaille <akim@epita.fr>
7734
7735 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
7736
e9071366
AD
77372006-06-06 Akim Demaille <akim@epita.fr>
7738
7739 Extract the parsing of user actions from the grammar scanner.
7740 As a consequence, the relation between the grammar scanner and
7741 parser is much simpler. We can also split "composite tokens" back
7742 into simple tokens.
7743 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
7744 * src/scan-gram.l (add_column_width, adjust_location): Move to and
7745 rename as...
7746 * src/location.h, src/location.c (add_column_width)
7747 (location_compute): these.
7748 Fix the column count: the initial column is 0.
7749 (location_print): Be robust to ending column being 0.
7750 * src/location.h (boundary_set): New.
7751 * src/main.c: Adjust to scanner_free being renamed as
7752 gram_scanner_free.
7753 * src/output.c: Include scan-code.h.
7754 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
7755 Use boundary_set.
7756 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
7757 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
7758 which is now, again, a separate token.
7759 Adjust all dependencies.
7760 Whereever actions with $ and @ are used, use translate_code.
7761 (action): Remove this nonterminal which is now useless.
7762 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
7763 (grammar_current_rule_action_append): Use translate_code.
7764 (packgram): Bound check ruleno, itemno, and rule_length.
7765 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
7766 (last_string, last_braced_code_loc, max_left_semantic_context)
7767 (scanner_initialize, scanner_free, scanner_last_string_free)
7768 (gram_out, gram_lineno, YY_DECL_): Move to...
7769 * src/scan-gram.h: this new file.
7770 (YY_DECL): Rename as...
7771 (GRAM_DECL): this.
7772 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
7773 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
7774 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
7775 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
7776 Move these declarations, and...
7777 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
7778 these to...
7779 * src/flex-scanner.h: this new file.
7780 * src/scan-gram.l (rule_length, rule_length_overflow)
7781 (increment_rule_length): Remove.
7782 (last_braced_code_loc): Rename as...
7783 (gram_last_braced_code_loc): this.
7784 Adjust to the changes of the parser.
7785 Move all the handling of $ and @ into...
7786 * src/scan-code.l: here.
7787 * src/scan-gram.l (handle_dollar, handle_at): Remove.
7788 (handle_action_dollar, handle_action_at): Move to...
7789 * src/scan-code.l: here.
7790 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
7791 scan-code.h, scan-code-c.c, scan-gram.h.
7792 (EXTRA_bison_SOURCES): Add scan-code.l.
7793 (BUILT_SOURCES): Add scan-code.c.
7794 (yacc): Be robust to white spaces.
7795
7796 * tests/conflicts.at, tests/input.at, tests/reduce.at,
7797 * tests/regression.at: Adjust the column numbers.
7798 * tests/regression.at: Adjust the error message.
7891a7c4 7799
184e42f0
JD
78002006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
7801
7802 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
7803 Use Akim's wording from
7804 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
7805
7891a7c4
JD
78062006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
7807
7808 Between Bison releases, manually append `+' to the previous Bison
7809 release number, and use that as a signal to automatically print the
7810 ChangeLog's CVS Id keyword from --version. Discussed starting at
7811 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
7812 * ChangeLog: Add Id header.
7813 * configure.ac (AC_INIT): Append `+' to `2.3'.
7814 * src/.cvsignore: Add revision.c.
7815 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
7816 (BUILT_SOURCES): Add revision.c.
7817 (revision.c): New target rule. This file defines a new global variable
7818 named revision. It initializes it with either the Id from ChangeLog
7819 or, if VERSION doesn't contain `+', with the empty string.
7820 * src/getargs.c (version): Print the value of revision.
7821 * src/revision.h: Extern revision.
7822
4ad3ed84
PE
78232006-06-05 Paul Eggert <eggert@cs.ucla.edu>
7824
7825 * NEWS: Version 2.3.
7826 * configure.ac (AC_INIT): Likewise.
7827
02103984
PE
78282006-05-30 Paul Eggert <eggert@cs.ucla.edu>
7829
7830 * data/glr.c (YYRECOVERING): Define to be a function-like macro
7831 with no arguments, not as an object-like macro. This is for
7832 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
7833 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
7834 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
7835 Document this.
7836
2c08afa5
JD
78372006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
7838
7839 * src/getargs.c (usage): Back out yesterday's modification of the
7840 --help output so that we don't have to wait for translation before
7841 releasing 2.3.
7842
6077da58
PE
78432006-05-29 Paul Eggert <eggert@cs.ucla.edu>
7844
7845 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
7846 Problem reported by Akim Demaille.
7847
2a26b6c2
JD
78482006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
7849
7850 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
7851
aefef0d6
PE
78522006-05-26 Paul Eggert <eggert@cs.ucla.edu>
7853
7854 * data/yacc.c (yy_reduce_print): Omit trailing white space in
7855 generated source code. Problem reported by Frans Englich in
7856 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
7857
fcd8e201
PE
78582006-05-22 Paul Eggert <eggert@cs.ucla.edu>
7859
7860 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
7861 shell, not within 'make', so that 'make' by an ordinary builder
7862 (using GNU make) does not worry about configuring gzip. This also
7863 works around a bug reported independently by Keith Thompson and by
7864 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
7865 stderr rather than stdout, messing up the build logs.
7866
7b5cdcbd
JD
78672006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
7868
7869 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
7870 to make sure that YYID will never be unused. This fixes a 'make
7871 maintainer-check' failure caused by the recent changes to the 'Trivial
7872 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
7873 not used.
7874 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
7875
5ad0a449
JD
78762006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
7877
7878 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
7879 state before an empty RHS is always resolved here. Only the location
7880 of that state is guaranteed to be resolved, and that's enough. This
7881 fixes the remaining bug reported by Derek M. Jones in
7882 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
7883 * tests/glr-regression.at (Uninitialized location when reporting
7884 ambiguity): Test the above case.
7885 Also, the embedded comments in this test case claim it checks the case
7886 of an empty RHS that has inherited the initial location. However, the
7887 corresponding LHS was already resolved, so yyresolveLocations didn't
7888 actually have reason to modify it. Fix this by forcing
7889 nondeterministic operation at the beginning of the parse.
7890
50cce58e
PE
78912006-05-20 Paul Eggert <eggert@cs.ucla.edu>
7892
7893 * data/c.m4 (b4_yy_symbol_print_generate):
7894 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
7895 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
7896 of the bugs reported today by Derek M Jones in
7897 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
7898 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
7899 defined to be a type name without parens or brackets.
7900 (Location Type): Similarly for YYLTYPE.
7901 * tests/regression.at (Trivial grammars): Put in a test for this
7902 bug that will be caught by 'make maintainer-check' (though not,
7903 alas, by 'make check' unless your compiler is picky).
7904
ab8d9dc5
PE
79052006-05-19 Paul Eggert <eggert@cs.ucla.edu>
7906
0d2c8934 7907 * NEWS: Version 2.2.
ab8d9dc5
PE
7908 * configure.ac (AC_INIT): Likewise.
7909
9138c575
JD
79102006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
7911
7912 * data/glr.c (yyreportTree): Make room in yystates for the state
7913 preceding the RHS. This fixes the segmentation fault reported by Derek
7914 M. Jones in
7915 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
7916 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
7917 to the user. Reported for yyreportTree by Derek M. Jones later in the
7918 same thread.
7919 * THANKS: Add Derek M. Jones.
7920 Update my email address.
7921 Fix typo in Steve Murphy's name.
7922
276f48df
PE
79232006-05-14 Paul Eggert <eggert@cs.ucla.edu>
7924
d6645148
PE
7925 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
7926 checking against YYLAST that caused the parser to miss a potential
7927 alternative in its diagnostic.
7928 Problem reported by Maria Jose Moron Fernandez in
7929 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
7930 * data/lalr1.cc (yysyntax_error_): Likewise.
7931 * data/yacc.c (yysyntax_error): Likewise.
7932 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
7933 tokens, in case we run into an older C compiler.
7934 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
7935 Use them to check for the off-by-one error fixed above.
7936
276f48df
PE
7937 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
7938 YYSIZE_T, not size_t.
7939 * tests/regression.at (Trivial grammars): New test, to catch
7940 the error fixed by the above patch.
7941
cd8b5791
AD
79422006-05-14 Akim Demaille <akim@lrde.epita.fr>
7943
7944 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
7945 scheme.
7946 Reported by Steve Murphy.
7947
34376418
AD
79482006-05-14 Akim Demaille <akim@lrde.epita.fr>
7949
7950 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
7951 * data/glr.cc: b4_location_flag is now b4_locations_flag.
7952
327afc7c
AD
79532006-05-14 Akim Demaille <akim@lrde.epita.fr>
7954
7955 Implement --trace=m4.
7956 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
7957 * src/output.c (output_skeleton): When set, pass -dV to m4.
7958
7959 Factor the handling of flags in m4.
7960 * src/output.c (prepare): Rename the muscle names debug, defines,
7961 error_verbose to debug_flag, defines_flag, error_verbose_flag.
7962 * data/c.m4: Adjust.
7963 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
7964 Use b4_define_flag_if to define other b4_FLAG_if macros.
7965 (b4_location_if): As a consequence, rename as...
7966 (b4_locations_if): this, for consistency.
7967 Adjust all the skeletons.
7968
ba9ecd19
AD
79692006-05-14 Akim Demaille <akim@lrde.epita.fr>
7970
7971 * etc/bench.pm: Shorten bench names.
7972
4e83ea15
AD
79732006-05-14 Akim Demaille <akim@lrde.epita.fr>
7974
7975 * src/output.h, src/output.c (error_verbose): Move to...
7976 * src/getargs.h, src/getargs.c: here.
7977 Sort the flags.
7978 Adjust dependencies.
7979
6e93d810
PE
79802006-05-13 Paul Eggert <eggert@cs.ucla.edu>
7981
7982 * data/c.m4 (b4_copyright): Put the special exception for Bison
7983 skeletons here, so we don't have to put it in each skeleton. All
b15296ff
PE
7984 uses changed. Suggested by Akim Demaille. Also, wrap the
7985 copyright notice, in case it is longer than 80 columns. Replace
7986 comma by newline after title.
6e93d810 7987
eaea13f5
PE
79882006-05-11 Paul Eggert <eggert@cs.ucla.edu>
7989
7990 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
7991 incompatibility, not a bug. Mention that it wasn't fixed as of
7992 flex 2.5.33.
7993
3cf084ec
AD
79942006-05-11 Akim Demaille <akim@lrde.epita.fr>
7995
7996 * examples/extexi: Enforce the precedence of concatenation over
7997 >>.
0a9f1c7d 7998 Reported by Tommy Nordgren.
3cf084ec 7999
32c96bd7
AD
80002006-05-11 Akim Demaille <akim@lrde.epita.fr>
8001
8002 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
8003 with the member "token".
f94705b2 8004 Reported by Martin Nylin.
32c96bd7 8005
eaea13f5
PE
80062006-05-08 Paul Eggert <eggert@cs.ucla.edu>
8007
8008 * data/glr.c: Switch to Bison 2.2 special-exception language in
8009 the copyright notice. Use more-regular format for titles and
8010 copyright notices.
8011 * data/glr.cc: Likewise.
8012 * data/location.cc: Likewise.
8013 * data/yacc.cc: Likewise.
8014 * doc/bison.texinfo (Conditions): Document this.
8015 * NEWS: likewise. Upgrade version to 2.2.
8016
6e2d1146
AD
80172006-04-27 Akim Demaille <akim@lrde.epita.fr>
8018
8019 * data/glr.cc: Remove dead code.
8020
47671055
PE
80212006-04-25 Paul Eggert <eggert@cs.ucla.edu>
8022
8023 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
8024 that variable and the line breaks the bootstrap. Problem reported
8025 by Juan M. Guerrero.
8026
ed2e6384
AD
80272006-04-24 Akim Demaille <akim@lrde.epita.fr>
8028
8029 * doc/bison.texinfo (Multiple start-symbols): New.
8030
3cedc2dc
AD
80312006-04-24 Akim Demaille <akim@lrde.epita.fr>
8032
8033 * etc/README, etc/bench.pl: New.
8034
b2ddc3f3
AD
80352006-04-03 Akim Demaille <akim@lrde.epita.fr>
8036
8037 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
8038 rule.
8039 Reported by Mickael Labau.
8040 * tests/input.at (Torturing the Scanner): Test it.
8041
91e3ac9a
PE
80422006-03-16 Paul Eggert <eggert@cs.ucla.edu>
8043
8044 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
8045 Problem reported by Bob Rossi.
8046
80472006-03-13 Paul Eggert <eggert@cs.ucla.edu>
8048
8049 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
8050 and didn't really work.
8051 For the index, use @ifnotinfo, not @iftex.
8052 Minor cleanups of spacing and terminology.
8053
5cf61e93
AD
80542006-03-12 Akim Demaille <akim@lrde.epita.fr>
8055
8056 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
8057 of AT_NAME_PREFIX when %name-prefix is not used.
8058
aa08666d
AD
80592006-03-12 Akim Demaille <akim@lrde.epita.fr>
8060
8061 Apply --prefix to C++ skeletons too: they change the namespace.
8062 The test suite already exercize these cases.
8063 * data/c++.m4 (b4_namespace): New.
8064 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
8065 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
8066 * data/yacc.c, data/glr.c: Remove a useless `[]'.
8067 * doc/bison.texinfo: Document it.
8068 (Option Cross Key): Use @multitable in all formats. It looks
8069 nicer, even in TeX outputs.
8070 (Rules): Use the same code whatever the output type is.
8071 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
8072 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
8073 * tests/calc.at: Use it, instead of hard coding `yy'.
91e3ac9a 8074
45567173
AD
80752006-03-10 Akim Demaille <akim@lrde.epita.fr>
8076
8077 * TODO: Remove dead items.
8078
e9d8f881 80792006-03-10 Akim Demaille <akim@lrde.epita.fr>
55ba27be
AD
8080
8081 * doc/FAQ: Remove, merged into...
8082 * doc/bison.texinfo (FAQ): this.
8083 * doc/Makefile.am (EXTRA_DIST): Adjust.
8084
c095d689
AD
80852006-03-10 Akim Demaille <akim@lrde.epita.fr>
8086
8087 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
8088 even if empty.
8089 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
8090 * doc/bison.texinfo (Calc++ Scanner): Use it.
8091
6e0f8287
PE
80922006-03-09 Paul Eggert <eggert@cs.ucla.edu>
8093
8094 Fix two nits reported by twlevo, plus one more that I discovered.
8095
8096 * src/assoc.h (assoc_to_string): Give a name to the arg, as
8097 this is the usual Bison style.
8098 * src/location.h (location_print): Likewise.
8099
8100 * src/reader.h (token_name): Likewise.
8101
d6b771c3
PE
81022006-03-08 Paul Eggert <eggert@cs.ucla.edu>
8103
8104 Fix some nits reported by twlevo.
8105 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
8106 and "POSIX". Use more-modern syntax for URLs. Mention C++
8107 and ask for Java. Don't hardwire OS version numbers. Add
8108 copyright notice.
8109 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
8110 * src/conflicts.c (solved_conflicts_obstack): Now static.
8111
1e137b71
JD
81122006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
8113
8114 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
8115 page. Say "you can use it" not "you may use it" as on the web page;
8116 we're describing capabilities not granting permission.
8117
73f2e47e
PE
81182006-03-06 Paul Eggert <eggert@cs.ucla.edu>
8119
6d05403d
PE
8120 * data/glr.c (yyresolveLocations): Rename local variables to avoid
8121 shadowing warnings. Use usual patter for iterating through RHS.
8122 * tests/glr-regression.at
8123 (Uninitialized location when reporting ambiguity):
8124 Modify yylex so that it uses its argument, rather than trying
8125 to rely on ARGSUSED (which doesn't work for gcc with warnings).
8126 const char -> char const.
8127
73f2e47e
PE
8128 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
8129 Don't use tabs inside commands; it messes up 'ps'.
8130 Problem reported by twlevo.
8131
8710fc41
JD
81322006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
8133
8134 * tests/glr-regression.at (Uninitialized location when reporting
8135 ambiguity): New test case.
8136 * data/glr.c (yyresolveLocations): New function, which uses
8137 YYLLOC_DEFAULT.
8138 (yyresolveValue): Invoke yyresolveLocations before reporting an
8139 ambiguity.
8140 * doc/bison.texinfo (Default Action for Locations): Note
8141 YYLLOC_DEFAULT's usage for ambiguity locations.
8142 (GLR Semantic Actions): Cross-reference those notes.
8143
ae952af2
JD
81442006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
8145
8146 * tests/glr-regression.at (Leaked semantic values when reporting
8147 ambiguity): Remove unnecessary union and type declarations.
8148 (Leaked lookahead after nondeterministic parse syntax error): New test
8149 case.
8150 * data/glr.c (yyparse): Check for zero stacks remaining before
8151 attempting to shift the lookahead so that you don't lose it.
8152
35ee866a
JD
81532006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
8154
8155 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
8156 * tests/glr-regression.at (Leaked semantic values when reporting
8157 ambiguity): New test case.
8158 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
8159 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
8160 now unnecessary yystackp parameter.
8161 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
8162 destructors can be called.
8163
8164 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
8165 in existing testcases.
8166
520181ab
JD
81672006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
8168
8169 Don't leak semantic values for parent RHS when a user action cuts the
8170 parser, and clean up related code a bit.
8171 * tests/glr-regression.at (Leaked merged semantic value if user action
35ee866a
JD
8172 cuts parse): Rename to...
8173 (Leaked semantic values if user action cuts parse): ... this. Add check
520181ab
JD
8174 for leaked parent RHS values.
8175 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
8176 between an unresolved state (non-empty chain of semantic options) and
8177 an incomplete one (signaled by an empty chain).
ae952af2 8178 (yyresolveStates): Document the interface. Move all manipulation of a
520181ab
JD
8179 successfully or unsuccessfully resolved yyGLRState to...
8180 (yyresolveValue): ... here so that yyresolveValue always leaves a
8181 yyGLRState with consistent data and thus is easier to understand.
8182 Remove the yyvalp and yylocp parameters since they are always just
8183 taken from the yys parameter. When reporting a discarded merged value
8184 in debugging output, note that it is incompletely merged. Document the
8185 interface.
8186 (yyresolveAction): If resolving any of the RHS states fails, destroy
8187 them all rather than leaking them. Thus, as long as user actions are
8188 written to clean up the RHS correctly, yyresolveAction always cleans up
8189 the RHS of a semantic option. Document the interface.
8190
18d9185c
PE
81912006-02-27 Paul Eggert <eggert@cs.ucla.edu>
8192
8193 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
8194 led to a segmentation fault in GNU Pascal. Problem reported
8195 by Waldek Hebisch.
8196
841a7737
JD
81972006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
8198
8199 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
8200 mid-rule action inside a nonterminal symbol in order to declare a
8201 destructor for its semantic value.
8202
fc3f467f
PE
82032006-02-16 Paul Eggert <eggert@cs.ucla.edu>
8204
8205 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
8206 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
8207 __cplusplus && ! defined _STDLIB_H && !
8208 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
8209 defined free))]: Include <stdlib.h> rather than rolling our own
8210 declarations of malloc and free, to avoid problems with
8211 incompatible declarations (using 'throw') C++'s stdlib.h. This
8212 should fix Debian bug 340012
8213 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
8214 reported by Guillaume Melquiond.
8215
a3af26dd
PE
82162006-02-13 Paul Eggert <eggert@cs.ucla.edu>
8217
4d7bc38c
PE
8218 * NEWS: Clarify symbols versus types in unused-value warnings.
8219
a3af26dd
PE
8220 * configure.ac (AC_INIT): Bump version number.
8221
4e26c69e
PE
82222006-02-13 Paul Eggert <eggert@cs.ucla.edu>
8223
8224 * NEWS: Version 2.1a.
8225 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
8226 since C99 requires this.
8227
498e897c
PE
82282006-02-11 Paul Eggert <eggert@cs.ucla.edu>
8229
8230 * m4/c-working.m4: New file.
8231 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
8232
57bb17ca
PE
82332006-02-10 Paul Eggert <eggert@cs.ucla.edu>
8234
8235 * Makefile.maint: Merge from coreutils.
8236
0be105dc
PE
82372006-02-09 Paul Eggert <eggert@cs.ucla.edu>
8238
8239 More portability fixes for problems summarized by Nelson H. F. Beebe.
8240
8241 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
8242 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
8243 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
8244 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
8245 messes up because C++ code is compiled in 32-bit mode but linked
8246 in 64-bit mode.
8247
6fc0c024
PE
82482006-02-08 Paul Eggert <eggert@cs.ucla.edu>
8249
8250 More portability fixes for problems summarized by Nelson H. F. Beebe.
8251
7870f699
PE
8252 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
8253 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
8254
6fc0c024
PE
8255 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
8256 nodist_PROGRAMS, since we don't need to actually compile the
8257 example if we're just doing a plain 'make'. This avoids bothering
8258 the installer unnecessarily about problems due to weird C++
8259 compilers.
8260
fe6c2fde
PE
82612006-02-06 Paul Eggert <eggert@cs.ucla.edu>
8262
8263 More portability fixes for problems summarized by Nelson H. F. Beebe.
8264
8265 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
8266 than #include "...", and compile with -I'.'. The old method was
8267 not portable, according to Posix and the C standard, and it does
8268 not work with Sun C 5.7, where previous #line directives affect
8269 the working directory used in later #include "..." directives.
8270
927b425b
JMG
82712006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8272
8273 Various DJGGP specific issues in /djgpp
8274
d9735e9e
PE
82752006-02-02 Paul Eggert <eggert@cs.ucla.edu>
8276
8277 More portability fixes for problems summarized by Nelson H. F. Beebe.
8278
8279 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
8280 '#include <map>' works and that you can apply ++ to iterators.
8281
5a6755af
PE
82822006-02-01 Paul Eggert <eggert@cs.ucla.edu>
8283
67a0dc4f
PE
8284 Work around portability problems summarized by Nelson H. F. Beebe in
8285 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
8286
8c86f0ef
PE
8287 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
8288 that '#include <string>' works.
8289
de35dd59
PE
8290 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
8291 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
8292 "warning: sorry: semantics of inline function static data `const
8293 unsigned char translate_table[262]' are wrong (you'll wind up with
8294 multiple copies)".
8295
67a0dc4f
PE
8296 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
8297 or, xor to not_, and_, or_, and xor_, respectively. This works
8298 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
8299 random system header somewhere that includes the equivalent of
8300 <iso646.h>.
8301
5a6755af
PE
8302 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
8303 -E" works; it apparently doesn't work with PathScale EKO Compiler
67a0dc4f 8304 Suite Version 2.0.
5a6755af 8305
3f001415
JD
83062006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
8307
8308 During deterministic GLR operation, user actions should be able to
8309 influence the parse by changing yychar. To make this easier to fix and
8310 to make glr.c easier to evolve in general, don't maintain yytoken in
8311 parallel with yychar; just compute yytoken when needed.
8312 * tests/glr-regression.at (Incorrect lookahead during deterministic
8313 GLR): Check that setting yychar in a user action has the intended
8314 effect.
8315 * data/glr.c (yyGLRStack): Remove yytokenp member.
8316 (yyclearin): Don't set *yytokenp.
8317 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
8318 yychar rather than *yytokenp to determine the current lookahead.
8319 Compute yytoken locally when needed.
8320 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
8321 point to.
8322
8323 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
8324 after `--report' documentation.
8325
e2a8c0f5
PE
83262006-01-30 Paul Eggert <eggert@cs.ucla.edu>
8327
8328 * src/parse-gram.y (grammar_declaration): Location of printer
8329 symbol is @1, not list->location. Bug reported by twlevo.
8330 * tests/input.at (Incompatible Aliases): Adjust to above change.
8331
6b702268
PE
83322006-01-29 Paul Eggert <eggert@cs.ucla.edu>
8333
27622431
PE
8334 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
8335 all the test at once. This makes the output easier to read in the
8336 normal case.
8337
6b702268
PE
8338 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
8339 got from <http://bro-ids.org/download.html>. The bug is that
8340 when two actions appeared in succession, the second one was
8341 scanned before the first one was added to the grammar rule
8342 as a midrule action. Bison then output the incorrect warning
8343 "parse.y:905.17-906.36: warning: unused value: $3".
8344 * src/parse-gram.y (BRACED_CODE, action): These are no longer
8345 associated with a value.
8346 (rhs): Don't invoke grammar_current_rule_action_append.
8347 (action): Invoke it here instead.
8348 * src/reader.c (grammar_midrule_action): Now extern.
8349 (grammar_current_rule_action_append): Don't invoke
8350 grammar_midrule_action; that is now the scanner's job.
8351 * src/reader.h (last_string, last_braced_code_loc):
8352 (grammar_midrule_action): New decls.
8353 * src/scan-gram.l (last_string): Now extern, sigh.
8354 (last_braced_code_loc): New extern variable.
8355 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
8356 rule already has an action.
8357 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
8358 * tests/input.at (AT_CHECK_UNUSED_VALUES):
8359 Add some tests to check that the above changes fixed the bug.
8360
d40ba6c2
PE
83612006-01-27 Paul Eggert <eggert@cs.ucla.edu>
8362
8363 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
8364 All used changed. Check whether the symbol has a destructor,
8365 not whether it is typed.
8366 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
8367 that the values are still reported as unused. All line numbers
8368 adjusted.
8369
401aace6
PE
83702006-01-23 Paul Eggert <eggert@cs.ucla.edu>
8371
8372 Work around a bug in bro 0.8, which underparenthesizes its
8373 definition of YYLLOC_DEFAULT.
8374 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
8375 their arguments.
8376 * data/lalr1.cc: Likewise.
8377 * data/yacc.cc: Likewise.
8378
06f01bc4
PE
83792006-01-22 Paul Eggert <eggert@cs.ucla.edu>
8380
401aace6
PE
8381 Work around a bug in Pike 7.0, and give the Pike folks a
8382 better way to override the usual int widths.
8383 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
8384 user can override the types.
8385 (short): #undef, to work around a bug in Pike 7.0.
8386 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
8387 (union yyalloc.yyss): Use yytype_int16 rather than short.
8388 All uses changed.
8389 (yysigned_char): Remove.
8390 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
8391 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
8392 * tests/regression.at (Web2c Actions): Adjust to above changes.
8393
8394 * src/reader.c (check_and_convert_grammar): New function.
8395 (reader): Close the input file even if something went wrong during
8396 parsing. Minor file descriptor leak reported by twlevo.
8397
06f01bc4
PE
8398 * src/assoc.c (assoc_to_string): Use a default: abort (); case
8399 to pacify gcc -Wswitch-default.
8400 * src/scan-gram.l (adjust_location): Use a default: break; case
8401 to pacify gcc -Wswitch-default.
8402 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
8403 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8404 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8405 Move these decls to scan-skel.l, since they don't need to be
8406 visible elsewhere.
8407 * src/scan-skel.l: Accept the above decls.
8408 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
8409 is used.
8410
02650b7f
PE
84112006-01-21 Paul Eggert <eggert@cs.ucla.edu>
8412
8413 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
8414 since we don't want to insist on a version number at the start
8415 of the changelog every time.
8416 * Makefile.maint: Sync from coreutils a bit better.
8417 (sc_trailing_blank): Renamed from sc_trailing_space.
8418 All uses changed.
8419 (sc_no_if_have_config_h, sc_require_config_h):
8420 (sc_prohibit_assert_without_use): New rules.
8421 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
8422 (sc_dd_max_sym_length): Fix leading spaces in rule.
8423 (sc_system_h_headers): Prefix with @.
8424 (sc_useless_cpp_parens, m4-check): Output line numbers.
8425 (changelog-check): Allow version only in head.
8426 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
8427 satisfy new Makefile.maint rule.
8428 * data/glr.c: Likewise.
8429 * data/glr.cc: Likewise.
8430 * data/lalr1.cc: Likewise.
8431 * data/yacc.c: Likewise.
8432 * lib/ebitsetv.c: Likewise.
8433 * lib/lbitset.c: Likewise.
8434 * lib/subpipe.c: Likewise.
8435 * lib/timevar.c: Likewise.
8436 * src/system.h: Likewise.
8437 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
8438 * djgpp/Makefile.maint: Add copyright notice.
8439 * djgpp/README.in: Likewise.
8440 * djgpp/config.bat: Likewise.
8441 * djgpp/config.site: Likewise.
8442 * djgpp/config_h.sed: Likewise.
8443 * djgpp/djunpack.bat: Likewise.
8444 * djgpp/config.sed: Fix copyright notice to match standard format.
8445 * djgpp/subpipe.h: Likewise.
8446 * lib/bitsetv-print.c: Likewise.
8447 * lib/bitsetv.c: Likewise.
8448 * lib/subpipe.h: Likewise.
8449 * lib/timevar.c: Likewise.
8450 * lib/timevar.h: Likewise.
8451 * djgpp/subpipe.c: Use standard recipe for config.h.
8452 * lib/abitset.c: Likewise.
8453 * lib/bitset.c: Likewise.
8454 * lib/bitset_stats.c: Likewise.
8455 * lib/bitsetv-print.c: Likewise.
8456 * lib/bitsetv.c: Likewise.
8457 * lib/ebitsetv.c: Likewise.
8458 * lib/get-errno.c: Likewise.
8459 * lib/lbitset.c: Likewise.
8460 * lib/subpipe.c: Likewise.
8461 * lib/timevar.c: Likewise.
8462 * lib/vbitset.c: Likewise.
8463 * tests/local.at: Likewise.
8464 * src/scan-gram.l: Don't include verify.h, since system.h does
8465 that for us.
8466 * .x-sc_require_config_h: New file.
8467 * .x-sc_unmarked_diagnostics: New file.
8468
287c78f6
PE
84692006-01-20 Paul Eggert <eggert@cs.ucla.edu>
8470
287c78f6
PE
8471 Be a bit more systematic about using 'abort'.
8472 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
8473 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
8474 Put 'default: abort ();' before some other case, to satisfy older
8475 pedantic compilers.
8476 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8477 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
8478 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
8479 * src/conflicts.c (resolve_sr_conflict): Likewise.
68cae94e
PE
8480 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
8481 (get_decision_str, get_orientation_str, get_node_alignment_str):
8482 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
8483 (get_linestyle_str, get_arrowstyle_str): Likewise.
8484 * src/conflicts.c (resolve_sr_conflict):
8485 Use a default case rather than one for the one remaining enum
8486 value, to catch invalid enum values as well.
8487 * src/lalr.c (set_goto_map, map_goto):
8488 Prefer "assert (FOO);" to "if (!FOO) abort ();".
8489 * src/nullable.c (nullable_compute, token_definitions_output):
8490 Likewise.
8491 * src/reader.c (packgram, reader): Likewise.
8492 * src/state.c (transitions_to, state_new, state_reduction_find):
8493 Likewise.
8494 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
8495 (symbol_pack): Likewise.
8496 * src/tables.c (conflict_row, pack_vector): Likewise.
287c78f6
PE
8497 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
8498 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
68cae94e
PE
8499 * src/system.h: Don't include <assert.h>.
8500 (assert): New macro.
8501
8502 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
8503 (Destructor Decl, Parser Function, Pure Calling):
8504 Describe rules for braces inside C code more carefully.
287c78f6 8505
c66dfadd
PE
85062006-01-19 Paul Eggert <eggert@cs.ucla.edu>
8507
c21493b8
PE
8508 Fix some porting glitches found by Nelson H. F. Beebe.
8509 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
8510 compilers that don't understand that abort () does not return.
8511 * src/state.c (transitions_to): Likewise.
8512 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
8513 that '#include <cstdlib>' works.
8514 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
8515 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
8516 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
8517 for the benefit of some pre-C99 compilers.
8518
b6e3facf
PE
8519 * bootstrap: Undo changes to gnulib files that autoreconf made.
8520
c66dfadd
PE
8521 Minor fixups to get 'make maintainer-check' to work.
8522 * configure.ac: Don't use -Wnested-externs, as it's incompatible
8523 with the new verify.h implementation.
8524 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
8525 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
8526 * data/yacc.c (YYUSE): Likewise.
8527 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
8528 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
8529 * src/parse-gram.y (declaration): Don't pass a string constant
8530 to a function that expects char *, since GCC might complain
8531 about the constant value.
8532 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
8533 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
8534 before #defining them.
8535 * tests/glr-regression.at
8536 (Incorrectly initialized location for empty right-hand side in GLR):
8537 In yyerror, use the msg arg.
8538 (Corrupted semantic options if user action cuts parse):
8539 (Incorrect lookahead during deterministic GLR):
8540 (Incorrect lookahead during nondeterministic GLR):
8541 Don't name a local var 'index'; it shadows string.h's 'index'.
8542
ed94ef2a
AD
85432006-01-19 Akim Demaille <akim@epita.fr>
8544
8545 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
8546 location, not just parts of it.
8547
e9ad4aec
PE
85482006-01-18 Paul Eggert <eggert@cs.ucla.edu>
8549
d6ca7905
PE
8550 * NEWS: Document the fact that multiple %unions are now allowed.
8551 * doc/bison.texinfo (Union Decl): Likewise.
51cbef6f
PE
8552 * TODO: This feature is now implemented, so remove it from
8553 the wishlist.
d6ca7905 8554
ef1b70e0
PE
8555 * Makefile.maint: Merge with coreutils Makefile.maint.
8556 (CVS_LIST): Use build-aux version if available.
8557 (VERSION_REGEXP): New macro.
8558 (syntax-check-rules): Add sc_no_if_have_config_h,
8559 sc_prohibit_assert_without_use, sc_require_config_h,
8560 sc_useless_cpp_parens.
8561 (sc_obsolete_symbols): Check for O_NDELAY.
8562 (sc_dd_max_sym_length): Track coreutils.
8563 (sc_unmarked_diagnostics): Look in all files, not just *.c.
8564 (sc_useless_cpp_parens): New rule.
8565 (news-date-check): Look for version or today's date.
8566 (changelog-check): Don't require version number near head.
8567 (copyright-check): Use current year instead of hardwiring 2005.
8568 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
8569 (announcement): Add --gpg-key-ID.
8570
8571 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
8572 with "file system".
8573
2073ce56 8574 Avoid undefined behavior that addressed just before the start of an
e9ad4aec
PE
8575 array. Problem reported by twlevo.
8576 * src/reader.c (packgram): Prepend a new sentinel before ritem.
8577 * src/lalr.c (build_relations): Rely on new sentinel.
8578 * src/gram.c (gram_free): Adjust to new sentinel.
8579
b7691f15
JD
85802006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
8581
8582 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
8583 yylookaheadNeeds. All uses updated.
8584 (yysplitStack): Rename local yynewLookaheadStatuses to
8585 yynewLookaheadNeeds.
8586 * data/glr-regression.at (Incorrect lookahead during nondeterministic
8587 GLR): In comments, change `lookahead status' to `lookahead need'.
8588
ddee1b06
PH
85892006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8590
8591 * data/glr.c (yysplitStack): A little stylistic rewrite.
8592
12f4614d
PH
85932006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8594
8595 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
8596
32c29292
JD
85972006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
8598
8599 * doc/bison.texinfo: Fix some typos.
8600 (GLR Semantic Actions): New subsection discussing special
8601 considerations because GLR semantic actions might be deferred.
8602 (Actions): Mention look-ahead usage of yylval.
8603 (Actions and Locations): Mention look-ahead usage of yylloc.
8604 (Special Features for Use in Actions): Add YYEOF entry and mention it
8605 in the yychar entry.
8606 In the yychar entry, remove mention of the local yychar case (pure
8607 parser) since this is irrelevant information when writing semantic
148d66d8 8608 actions and since it's already discussed in `Table of Symbols' where
32c29292
JD
8609 yychar is otherwise described as an external variable.
8610 In the yychar entry, don't call it the `current' look-ahead since it
8611 isn't when semantic actions are deferred.
8612 In the yychar and yyclearin entries, add note about deferred semantic
8613 actions.
8614 Add yylloc and yylval entries discussing look-ahead usage.
8615 (Look-Ahead Tokens): When discussing yychar, don't call it the
8616 `current' look-ahead, and do mention yylval and yylloc.
8617 (Error Recovery): Cross-reference `Action Features' when mentioning
8618 yyclearin.
148d66d8 8619 (Table of Symbols): In the yychar entry, don't call it the `current'
32c29292
JD
8620 look-ahead.
8621 In the yylloc and yylval entries, mention look-ahead usage.
8622
de366a2f 86232006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
2781dbd1
JD
8624
8625 * tests/glr-regression.at: Update copyright year to 2006.
8626
bf70fa87
JD
86272006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8628
8629 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
8630 use during nondeterministic operation to track which stacks have
8631 actually needed the current lookahead.
8632 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
8633 Allocate, deallocate, resize, and otherwise shuffle space for
8634 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
8635 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
8636 appropriately during nondeterministic operation.
8637 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
8638 members to store the current lookahead to be used by the deferred
8639 user action.
8640 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
8641 from which the RHS is taken. Set the lookahead members of the new
8642 yySemanticOption according to the lookahead status for stack yyk.
8643 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
8644 yyaddDeferredAction.
8645 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
8646 members of yySemanticOption before invoking yyuserAction, and then set
8647 them back to their current values afterward.
8648 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
8649 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
8650 * tests/glr-regression.at: Remove `.' from the ends of recent test case
8651 titles for consistency.
8652 (Leaked merged semantic value if user action cuts parse): In order to
8653 suppress lint warnings, use arguments in merge function, and assign
8654 char value < 128 in main.
8655 (Incorrect lookahead during deterministic GLR): New test case.
8656 (Incorrect lookahead during nondeterministic GLR): New test case.
8657
05449a2c
JD
86582006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8659
de366a2f 8660 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
05449a2c
JD
8661 !yyvaluep as signal that no semantic value is available to print.
8662 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
8663 to print a semantic value.
8664
4158e0a1 86652006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
fd2493f7 8666
4158e0a1
JD
8667 * tests/glr-regression.at: For consistency with my newer test cases,
8668 don't thank myself.
8669
d659304d
JD
86702006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
8671
8672 * data/glr.c (yyresolveValue): When merging semantic options, if at
8673 least one user action succeeds but a later one cuts the parse, then
8674 destroy the semantic value before returning rather than leaking it.
8675 (yyresolveStates): If a user action cuts the parse and thus
8676 yyresolveValue fails, ignore the (unset) semantic value rather than
8677 corrupting the yyGLRState, and empty the semantic options list since
8678 the user actions should have called all necessary destructors.
8679 Simplify code with YYCHK.
8680 * tests/glr-regression.at (Corrupted semantic options if user action
8681 cuts parse): New test case.
8682 (Undesirable destructors if user action cuts parse): New test case.
8683 Before applying any of this patch, this test case never actually failed
8684 for me... but only because the corrupted semantic options usually
8685 masked this bug.
8686 (Leaked merged semantic value if user action cuts parse): New test
8687 case.
8688
6ec2c0f2
AD
86892006-01-05 Akim Demaille <akim@epita.fr>
8690
8691 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
8692
1b9c21fb
PE
86932006-01-04 Paul Eggert <eggert@cs.ucla.edu>
8694
8695 * data/c.m4 (b4_c_modern): New macro, with a new provision for
8696 _MSC_VER. Problem reported by Cenzato Marco.
8697 (b4_c_function_def): Use it.
8698 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
8699 b4_c_modern.
8700 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
8701 than rolling our own.
8702
84866159
AD
87032006-01-04 Akim Demaille <akim@epita.fr>
8704
8705 Also warn about non-used mid-rule values.
8706 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
8707 member.
8708 (symbol_list_new): Adjust.
8709 * src/reader.c (symbol_typed_p): New.
8710 (grammar_rule_check): Use it.
8711 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
8712 Check its rule.
8713 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
8714 Use it.
8715 * tests/actions.at (Exotic Dollars): Adjust.
8716
378f4bd8
AD
87172006-01-04 Akim Demaille <akim@epita.fr>
8718
8719 * src/reader.c (grammar_midrule_action): If $$ is set in a
8720 mid-rule, move the `used' bit to its lhs.
8721 * tests/input.at (Unused values): New.
8722 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
8723
e2a21b6f
PE
87242006-01-03 Paul Eggert <eggert@cs.ucla.edu>
8725
54662697
PE
8726 * doc/bison.texinfo (Bison Options): Say more accurately what
8727 --yacc does.
8728 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
8729 about declarations in the grammar when in Yacc mode, as POSIX does
8730 not require a diagnostic when the grammar uses extensions.
8731
8732 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
8733
073f9288
PE
8734 Warn about dubious constructions like "%token T T".
8735 Reported by twlevo.
8736 * src/symtab.h (struct symbol.declared): New member.
8737 * src/symtab.c (symbol_new): Initialize it to false.
8738 (symbol_class_set): New arg DECLARING, specifying whether
8739 this is a declaration that we want to warn about, if there
8740 is more than one of them. All uses changed.
8741
1221b78a
PE
8742 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
8743 Allow multiple %union directives, whose contents concatenate.
8744 * src/parse-gram.y (grammar_declaration): Likewise.
8745 Use muscle_code_grow, so that we don't need stype_line any more.
8746 All uses changed.
8747
8748 * src/muscle_tab.c (muscle_grow): Fix comment.
8749
e2a21b6f
PE
8750 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
8751 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
8752 Update copyright year to 2006.
8753
8f7e3cf9
AD
87542006-01-03 Akim Demaille <akim@epita.fr>
8755
8756 Have glr.cc pass (some of) the calc.at tests.
8757 * data/glr.cc (b4_parse_param_orig): New.
8758 (b4_parse_param): Improve its definition, and bound it more
8759 clearly in the skeleton.
8760 (b4_epilogue): Append, instead of prepending, in order to keep
8761 #line consistency.
8762 Simplify the generation of auxiliary functions: locations and
8763 purity are mandated.
8764 (b4_global_tokens_and_yystype): Honor it.
8765 * data/location.cc (c++.m4): Don't include it.
8766 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
8767 and AT_SKEL_CC_IF.
8768 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
8769 AT_LALR1_CC_IF.
8770 Be sure to initialize the first position's filename.
8771 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
8772 mandated anyway.
8773 (AT_CHECK_CALC_GLR_CC): New.
8774 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
8775
3953ed88
AD
87762006-01-02 Akim Demaille <akim@epita.fr>
8777
8778 * src/output.c (output_skeleton): Don't hard wire the inclusion of
8779 c.m4.
0a96ba81 8780 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
3953ed88
AD
8781 * data/glr.cc: Do not include stack.hh.
8782
9ecafbbf
AD
87832006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
8784
8785 * data/glr.c: Reformat whitespace with tabs.
8786 (b4_lpure_formals): Remove this unused m4 macro.
8787 * tests/cxx-type.at: Reformat whitespace with tabs.
8788 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
8789 since it's a member. Rename type to isNterm for clarity.
8790
c4d497a0
AD
87912005-12-29 Akim <akim@sulaco.local>
8792
8793 Let glr.cc catch up with symbol_value_print.
8794 * data/glr.cc (b4_yysymprint_generate): Replace by...
8795 (b4_yy_symbol_print_generate): this.
8796 (yy_symbol_print, yy_symbol_value_print): Declare them.
8797
4517da37
PE
87982005-12-28 Paul Eggert <eggert@cs.ucla.edu>
8799
8800 * src/location.h (boundary): Note that a line or column equal
8801 to INT_MAX indicates an overflow.
8802 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
8803 (rule_length_overflow, increment_rule_length, add_column_width):
8804 New functions.
8805 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
8806 (<SC_BRACED_CODE>"}"):
8807 Use increment_rule_length rather than incrementing it by hand.
8808 (adjust_location, handle_syncline): Diagnose overflow.
8809 (handle_action_dollar, handle_action_at):
8810 Fix bug with monstrosities like $-2147483648.
8811 Remove now-unnecessary checks.
8812 (scan_integer): Verify assumptions and remove now-unnecessary checks.
8813 (convert_ucn_to_byte): Verify assumptions.
8814 (handle_syncline): New arg LOC. All callers changed.
8815 Don't store through a value derived from char const * pointer.
8816
8817 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
8818 GCC warnings.
8819
e3233bf6
PE
88202005-12-27 Paul Eggert <eggert@cs.ucla.edu>
8821
8822 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
8823 Remove unnecessary forward static decls.
8824
8f3596a6
AD
88252005-12-27 Akim Demaille <akim@epita.fr>
8826
8827 * src/reader.c (grammar_current_rule_check): Also check that $$
8828 is used.
8829 Take the rule to check as argument, hence rename as...
8830 (grammar_rule_check): this.
8831 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
8832 Rename as...
8833 (grammar_rule_begin, grammar_rule_end): these, for consistency.
8834 (grammar_midrule_action, grammar_symbol_append): Now static.
8835 * tests/torture.at (input): Don't rely on the default action
8836 being always performed.
8837 * tests/calc.at: "Set" $$ even when the action is "cut" with
8838 YYERROR or other.
8839 * tests/actions.at (Exotic Dollars): Instead of using unused
8840 values, check that the warning is issued.
8841
721be13c
PE
88422005-12-22 Paul Eggert <eggert@cs.ucla.edu>
8843
8844 * NEWS: Improve wording for unused-value warnings.
8845
a0af42fc
AD
88462005-12-22 Akim Demaille <akim@epita.fr>
8847
8848 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
8849 (b4_yysymprint_generate): Rename as...
8850 (b4_yy_symbol_print_generate): this.
8851 Generate yy_symbol_print instead of yysymprint.
8852 Generate also yy_symbol_value_print, and use it.
8853
affac613
AD
88542005-12-22 Akim Demaille <akim@epita.fr>
8855
721be13c 8856 * NEWS: Warn about unused values.
affac613
AD
8857 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
8858 a `used' member.
8859 (symbol_list_n_get, symbol_list_n_used_set): New.
8860 (symbol_list_n_type_name_get): Use symbol_list_n_get.
8861 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
8862 * src/reader.c (grammar_current_rule_check): Check that values are
8863 used.
8864 * src/symtab.c (symbol_print): Accept 0.
8865 * tests/existing.at: Remove the type information.
8866 Empty the actions.
8867 Remove useless actions (beware of mid-rule actions: perl -000
8868 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
8869 * tests/actions.at (Exotic Dollars): Use unused values.
8870 * tests/calc.at: Likewise.
8871 * tests/glr-regression.at (No users destructors if stack 0 deleted):
8872 Likewise.
8873
8874 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
8875 rule_useful_p.
8876
9d9b8b70
PE
88772005-12-21 Paul Eggert <eggert@cs.ucla.edu>
8878
8bb4c753
PE
8879 Undo 2005-12-01 tentative license wording change. The wording is
8880 still being reviewed by the lawyers, and we don't want to wait for
8881 them before publishing a test release. For now, revert to the
8882 previous wording.
8883 * NEWS: Undo 2005-12-01 change.
8884 * data/glr.c: Revert to previous license wording.
8885 * data/glr.cc: Likewise.
8886 * data/lalr1.cc: Likewise.
8887 * data/location.cc: Likewise.
8888 * data/yacc.c: Likewise.
8889
9d9b8b70
PE
8890 * NEWS: Reword %destructor vs YYABORT etc.
8891 * data/glr.c: Use American spacing, for consistency.
8892 * data/glr.cc: Likewise.
8893 * data/lalr1.cc: Likewise.
8894 * data/yacc.c: Likewise.
8895 * data/yacc.c: Reformat comments slightly.
8896 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
8897 for consistency. Fix some spelling errors and reword recently-included
8898 text slightly.
8899 * tests/cxx-type.at: Cast results of malloc, for C++.
8900
2c3b392a
AD
89012005-12-21 Joel E. Denny <address@hidden>
8902
8903 * tests/cxx-type.at: Construct a tree, count the parents of shared
8904 nodes, and free each node once and only once. Previously, the memory
8905 for semantic values was leaked instead.
8906
d6cff4dc
AD
89072005-12-21 Joel E. Denny <address@hidden>
8908
8909 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
8910 (yylval, yylloc): If pure, #define to yystackp->yyval and
8911 yystackp->yyloc similar to yychar and yynerrs.
8912 (yyparse): If pure, remove local yylval and yylloc. Add local
8913 yystackp to accommodate pure definitions of yylval and yylloc.
8914 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
8915 yylvalp and yyllocp to &yylval and &yylloc.
8916 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
8917 namespace. Previously, nerrs and char were missing, but lval and lloc
8918 weren't necessary.
8919 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
8920 yylvalp and yyllocp parameters since, if pure, these are now always
8921 accessible through yystackp. If not pure, they are still accessible
8922 globally.
8923 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
8924 `if (YYID (N))' to pacify lint.
8925
a85284cf
AD
89262005-12-21 Akim Demaille <akim@epita.fr>
8927
8928 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
8929 destroy the RHS symbols of a rule.
8930 * data/yacc.c (yylen): Initialize to 0.
8931 Keep its value to the number of items to possibly shift.
8932 In particular, a regular successful parse that ends on YYFINAL by
8933 a (internal) YYACCEPT must not have yylen != 0.
8934 (yyerrorlab, yyreturn): Pop the RHS.
8935 Reorder a bit to emphasize the `shifting' bits of code.
8936 (YYPOPSTACK): Now accept a number of items to pop.
8937 * data/lalr1.cc: Likewise.
8938 * data/glr.c: Formatting changes.
8939 Use goto instead of fall through.
8940 * doc/bison.texinfo (Destructor Decl): Complete.
8941
d508c281
JMG
89422005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8943
8944 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
8945 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
8946 * djgpp/config.bat: Replace every occurence of the file name
8947 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
8948 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
8949 * djgpp/config.sed: Replace every occurence of the file name
8950 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
8951 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
8952 * djgpp/djunpack.bat: DJGPP specific file.
8953 * djgpp/fnchange.lst: DJGPP specific file.
8954 * djgpp/README.in: Add new information about how to unpack the bison
8955 source on MSDOS and other systems which have 8.3 file name restrictions
8956 using djunpack.bat and fnchange.lst.
8957
3e7a2cd9
PE
89582005-12-12 Paul Eggert <eggert@cs.ucla.edu>
8959
8960 * bootstrap (build_cvs_prefix): Remove; unused.
8961 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
8962 when getting gnulib.
8963
89642005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
8965
8966 * data/glr.c: Reorder typedef declarations for structs to match order
8967 of struct declarations.
8968 Rename yystack everywhere to yystackp except in yyparse where it's not
8969 a pointer.
8970 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
8971 consistency.
8972 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
8973 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
8974 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
8975 lint.
8976
877519f8
PE
89772005-12-09 Paul Eggert <eggert@cs.ucla.edu>
8978
0eca5a39
PE
8979 * tests/sets.at (Accept): Fix typos in regular expression used to
8980 sed out the final state number.
8981
2cec9080
PE
8982 Work around portability problem on Solaris 10: flex-generated
8983 files include <stdio.h> before <config.h>, which messes up
8984 because the latter defines __EXTENSIONS__. Address the problem
8985 by creating two new little files that include <config.h> first,
8986 then include the flex-generated files. Rewrite everyone else
8987 to include <config.h> first, as well.
8988 * lib/timevar.c: Always include "config.h".
8989 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
8990 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
8991 (EXTRA_bison_SOURCES): New macro.
8992 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
8993 * src/system.h: Don't include config.h.
8994 * src/LR0.c: Include <config.h> first.
8995 * src/assoc.c: Likewise.
8996 * src/closure.c: Likewise.
8997 * src/complain.c: Likewise.
8998 * src/conflicts.c: Likewise.
8999 * src/derives.c: Likewise.
9000 * src/files.c: Likewise.
9001 * src/getargs.c: Likewise.
9002 * src/gram.c: Likewise.
9003 * src/lalr.c: Likewise.
9004 * src/location.c: Likewise.
9005 * src/main.c: Likewise.
9006 * src/muscle_tab.c: Likewise.
9007 * src/nullable.c: Likewise.
9008 * src/output.c: Likewise.
9009 * src/parse-gram.y: Likewise.
9010 * src/print.c: Likewise.
9011 * src/print_graph.c: Likewise.
9012 * src/reader.c: Likewise.
9013 * src/reduce.c: Likewise.
9014 * src/relation.c: Likewise.
9015 * src/state.c: Likewise.
9016 * src/symlist.c: Likewise.
9017 * src/symtab.c: Likewise.
9018 * src/tables.c: Likewise.
9019 * src/uniqstr.c: Likewise.
9020 * src/vcg.c: Likewise.
9021
877519f8
PE
9022 * src/parse-gram.y: Fix minor problems uncovered by lint.
9023 (current_lhs, current_lhs_location): Now static.
9024 (current_assoc): Remove unused variable.
9025
9026 Cleanups so that Bison-generated parsers have less lint.
9027 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
9028 Prepend /*ARGSUSED*/, for lint's sake.
9029 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
9030 definition if 'lint' is defined.
9031 (YYID): New macro (or function, if lint).
9032 All uses of /*CONSTCOND*/0 replaced by YYID(0).
9033 * data/yacc.c: Likewise.
9034 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
9035 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
9036 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
9037 is C++ only.
9038 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
9039 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
9040 Use YYID(0) rather than 0, for lint.
9041 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
9042 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
9043
f5228370
PE
90442005-12-07 Paul Eggert <eggert@cs.ucla.edu>
9045
9046 * tests/glr-regression.at
9047 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
9048 Close memory leak reported by twlevo.
9049
69ce078b
PE
90502005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
9051
6ff99711
PE
9052 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
9053 all stacks.
9054 (yyparse): Iterate another stack in order to call user destructors.
69ce078b
PE
9055 * tests/glr-regression.at (No users destructors if stack 0 deleted):
9056 New test case.
9057 (Duplicated user destructor for lookahead): This test now is expected
9058 to succeed.
9059
af3412cd
PE
90602005-12-01 Paul Eggert <eggert@cs.ucla.edu>
9061
32b5b719 9062 * NEWS: Document the following change.
af3412cd
PE
9063 * data/yacc.c: Say "parser skeleton" rather than "file", since
9064 it's no longer just a file.
9065 * data/glr.c: Grant a special exception for C GLR parsers, that
9066 reads like the already-existing exception for C LALR(1) parsers.
9067 * data/glr.cc: Likewise.
9068 * data/lalr1.cc: Likewise.
9069 * data/location.cc: Likewise.
9070 * data/yacc.c: Reword the "written by" statement to clarify that
9071 it was the parser skeleton, not the entire output file.
9072 * data/glr.c: Written by Paul Hilfinger.
9073 * data/glr.cc: Written by Akim Demaille.
9074 * data/lalr1.cc: Likewise.
9075
035aa4a0
PE
90762005-11-18 Paul Eggert <eggert@cs.ucla.edu>
9077
d9963c85
PE
9078 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
9079 Fix typos in previous change that broke 'make check'.
9080 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
9081 supported in C.
9082 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
9083 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
9084 We can revert this once things settle down.
9085
035aa4a0
PE
9086 * src/conflicts.c (conflicts_print): Don't print file name twice
9087 when %expect fails because there were no conflicts.
9088 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
9089 change.
9090 * tests/conflicts.at (%expect not enough, %expect too much):
9091 (%expect with reduce conflicts): Adjust to new behavior.
9092
90932005-11-18 Akim Demaille <akim@epita.fr>
9094
9095 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
9096 errors.
9097 * NEWS: Document this.
9098 * doc/bison.texinfo (Expect Decl): Likewise.
9099
d1ff7a7c
AD
91002005-11-16 Akim Demaille <akim@epita.fr>
9101
9102 Generalize the display of semantic values and locations in traces.
9103 * data/glr.c (yy_reduce_print): Fix indices (again).
9104 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
9105 literal integers.
9106 * data/lalr1.cc (yyreduce_print): Rename as...
9107 (yy_reduce_print): this.
9108 Display values and locations.
9109 * data/yacc.c (yy_reduce_print): Likewise.
9110 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
9111 (yysymprint): Move higher to be visible from yy_reduce_print).
9112 (yyparse): Adjust.
9113 * tests/calc.at: Adjust the expected length of the traces.
9114
6de5398d
AD
91152005-11-14 Akim Demaille <akim@epita.fr>
9116
9117 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
9118 from 1 to N, while values and location start at 0.
9119 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
9120
a1373f55
AD
91212005-11-14 Akim Demaille <akim@epita.fr>
9122
9123 * data/glr.c (yy_reduce_print): Fix the $ number.
9124
613d8952
AD
91252005-11-14 Akim Demaille <akim@epita.fr>
9126
9127 "Use" parse parameters.
9128 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
9129 * data/glr.c, data/glr.cc: Use them.
9130 * data/glr.c (YYUSE): Have a C++ definition that supports
9131 non-pointer types.
9132
b2741627
AD
91332005-11-14 Akim Demaille <akim@epita.fr>
9134
9135 * data/glr.c (yyexpandGLRStack): Declare only if defined.
9136
5059b5c8
AD
91372005-11-14 Akim Demaille <akim@epita.fr>
9138
42249483
AD
9139 * data/glr.cc: New.
9140 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
5059b5c8 9141
4626a15d
AD
91422005-11-12 Akim Demaille <akim@epita.fr>
9143
9144 Let position and location be PODs.
9145 * data/location.cc (position::initialize, location::initialize): New.
9146 (position::position, location::location): Define only if
9147 b4_location_constructors is defined.
9148 * data/lalr1.cc (b4_location_constructors): Define it for backward
9149 compatibility.
9150 * doc/bison.texinfo (Initial Action Decl): Use initialize.
9151
91522005-11-12 Akim Demaille <akim@epita.fr>
98ae9643
AD
9153
9154 * data/lalr1.cc: Move the body of the ctor and dtor into the
9155 parser file (instead of the header).
9156 Wrap the implementations in a "namespace yy".
9157
91582005-11-12 Akim Demaille <akim@epita.fr>
9159
9160 Have glr.c include its header file when created.
9161 * data/glr.c (b4_shared_declarations): New.
9162 Output them verbatim in the parser if !%defines, otherwise
9163 output then in the header file, and include it instead.
9164
1989d947
AD
91652005-11-11 Akim Demaille <akim@epita.fr>
9166
9167 * data/glr.c: Comment changes.
9168
91692005-11-11 Akim Demaille <akim@epita.fr>
62b08cfc
AD
9170
9171 When yydebug, report semantic and location values for reductions.
9172 * data/glr.c (yy_reduce_print): Report the semantic values and the
9173 locations.
9174 (YY_REDUCE_PRINT): Adjust.
9175 (yyglrReduce): Use them.
9176 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
9177 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
9178 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
9179 traces.
9180
02998094
AD
91812005-11-10 Akim Demaille <akim@epita.fr>
9182
9183 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
9184 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
9185 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
9186
5210672f
PE
91872005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
9188
9189 * m4/cxx.m4, examples/Makefile.am: Don't build
9190 examples/calc++ if no C++ compiler is available. (trivial change)
9191
a8991a1d
AD
91922005-11-09 Akim Demaille <akim@epita.fr>
9193
9194 * src/scan-skel.l: Use a couple of asserts.
9195
36b5e963
AD
91962005-11-03 Akim Demaille <akim@epita.fr>
9197
9198 In some (weird) cases, the final state number is incorrect.
9199 Reported by Alexandre Duret-Lutz.
9200 * src/LR0.c (state_list_append): Remove the computation of
9201 final_state.
9202 (save_reductions): Do it here.
9203 (get_state): Alpha conversion.
9204 (generate_states): Use a for loop.
9205 * src/gram.h (item_number_is_rule_number)
9206 (item_number_is_symbol_number): New.
9207 * src/state.c: Use assert.
9208 * src/system.h: Include assert.h.
9209 * tests/sets.at (Accept): New.
9210
44e7ead1
PH
92112005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9212
9213 * data/glr.c (yyfill): Adjust comment.
36b5e963 9214 (yyresolveAction): Initialize default location properly
44e7ead1
PH
9215 for empty right-hand sides.
9216 (yydoAction): Ditto.
9217 Add comment explaining apparently dead code.
36b5e963
AD
9218 * tests/glr-regression.at
9219 (Incorrectly initialized location for empty right-hand side in GLR):
44e7ead1 9220 New test.
36b5e963 9221
e10a80ee
PE
92222005-10-30 Paul Eggert <eggert@cs.ucla.edu>
9223
9224 * bootstrap (cleanup_gnulib): New function. Use it to clean up
9225 gnulib when interrupted. This fixes some race conditions and
9226 works around some portability problems (one noted by Paul
9227 Hilfinger).
9228
067b32ee
AD
92292005-10-22 Akim <akim@epita.fr>
9230
9231 * Makefile.cfg: Adjust to config -> build-aux.
9232 Reported by twledo.
9233
4b367315
AD
92342005-10-21 Akim Demaille <akim@epita.fr>
9235
9236 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
9237 the %parse-params.
9238 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
9239 * data/yacc.c (b4_Pure_if): Rename as...
9240 (b4_yacc_pure_if): this.
9241 (YY_SYMBOL_PRINT, yyparse): Adjust.
9242 * doc/bison.texinfo: Formatting changes.
9243
24cc23d9
AD
92442005-10-21 Akim Demaille <akim@epita.fr>
9245
9246 Finish the transition config -> build-aux.
9247 * configure.ac, Makefile.am: Use build-aux.
9248 * config/prev-version, config/announce-gen, config/Makefile.am:
9249 Move to...
9250 * build-aux/prev-version, build-aux/announce-gen,
9251 * build-aux/Makefile.am: here.
9252
d4476375
AD
92532005-10-14 Akim Demaille <akim@epita.fr>
9254
9255 * examples/calc++/test: Use set -x only when VERBOSE.
9256
302c0aee
PE
92572005-10-13 Paul Eggert <eggert@cs.ucla.edu>
9258
9259 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
9260 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
9261
7625ec2c
AD
92622005-10-13 Akim Demaille <akim@epita.fr>
9263
9264 * src/scan-skel.l: Output the base name parts of the parser and
9265 header file names.
302c0aee 9266 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7625ec2c
AD
9267 additional checks.
9268 Use this to exercise C++ outputs in subdirs.
9269 Reported by Oleg Smolsky.
9270
ba0fe3c7
PE
92712005-10-12 Paul Eggert <eggert@cs.ucla.edu>
9272
9273 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
9274 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
9275 Problem reported by John P. Hartmann.
9276 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
9277 already defined it.
9278
9b8a5ce0
AD
92792005-10-12 Akim Demaille <akim@epita.fr>
9280
9281 * src/parse-gram.y (version_check): Exit 63 to please missing
9282 (stands for "version mismatch).
9283 * tests/input.at, doc/bison.texinfo: Adjust.
9284
4f6e011e
PE
92852005-10-10 Paul Eggert <eggert@cs.ucla.edu>
9286
9287 Work around portability problems with Visual Age C compiler
9288 (xlc and xlC_r) reported by John P. Hartmann.
9289 * data/location.cc (initial_column, initial_line): Remove.
9290 All uses replaced by 0 and 1.
9291 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
9292 that xlc complains about.
9293 * src/scan-skel.l (skel_wrap): Likewise.
4d7aa45e 9294 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
ba0fe3c7 9295 as __STDC__.
4d7aa45e
PE
9296 * data/yacc.c (YYMODERN_C): New macro, which also looks at
9297 __STDC_VERSION__. Use it everywhere instead of looking at
9298 __STDC__ and __cplusplus.
4f6e011e 9299
a1b3bf8c
AD
93002005-10-10 Akim Demaille <akim@epita.fr>
9301
9302 * examples/calc++/test: Be quiet unless VERBOSE.
9303
412e44aa
PE
93042005-10-05 Paul Eggert <eggert@cs.ucla.edu>
9305
2a4647a3
PE
9306 * data/c.m4 (yydestruct, yysymprint):
9307 Use YYUSE instead of casting to void.
9308 * data/glr.c (YYUSE): New macro.
9309 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
9310 Use it instead of rolling our own.
9311 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
9312 (YYCHK1):
9313 Use /*CONSTCOND*/ to suppress lint warnings.
9314 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
9315 (YY_STACK_PRINT): Use 'false' not '0'.
9316 (YYUSE): New macro.
9317 (yysymprint_, yydestruct_): Use it instead of rolling our own.
9318 * data/yacc.c (YYUSE): New macro.
9319 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
9320 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
9321 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
9322
9323
412e44aa
PE
9324 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
9325 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
9326
88c6637f
PE
93272005-10-04 Paul Eggert <eggert@cs.ucla.edu>
9328
2f4f028d
PE
9329 Undo the parts of the unlocked-I/O change that substituted
9330 putc or puts for printf. This might hurt performance a bit,
9331 but some people prefer the printf style.
9332 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
9333 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
9334 All uses replaced by YYFPRINTF and YYDPRINTF.
9335 * data/yacc.c: Likewise.
9336 * lib/bitset.c (bitset_print): Likewise.
9337 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
9338 putc and puts.
9339 * lib/lbitset.c (debug_lbitset): Likewise.
9340 * src/closure.c (print_firsts, print_fderives): Likewise.
9341 * src/gram.c (grammar_dump): Likewise.
9342 * src/lalr.c (look_ahead_tokens_print): Likewise.
9343 * src/output.c (escaped_output): Likewise.
9344 (user_actions_output): Break apart two printfs.
9345 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
9346 * src/reduce.c (reduce_print): Likewise.
9347 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
9348 * src/system.h: Include unlocked-io.h rathe than stdio.h.
9349
88c6637f
PE
9350 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
9351 Use assignments rather than casts-to-void to suppress
9352 unused-variable warnings. This pacifies 'lint'.
9353 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
9354 unused-variable warnings.
9355
fb32e373
JMG
93562005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9357
9358 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
9359
edb8f44f
PE
93602005-10-02 Paul Eggert <eggert@cs.ucla.edu>
9361
fb9c0b33
PE
9362 Use unlocked I/O for a minor performance improvement on hosts like
9363 GNU/Linux and Solaris that support unlocked I/O. The basic idea
9364 is to use the gnlib unlocked-io module, and to prefer putc and
9365 puts to printf when either will work (since the latter doesn't
9366 come in an unlocked flavor).
9367 * bootstrap (gnulib_modules): Add unlocked-io.
9368 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
9369 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
9370 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
9371 and similarly for puts and putc and printf.
9372 * data/yacc.c: Likewise.
9373 * lib/bitset.c (bitset_print): Likewise.
9374 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
9375 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
9376 to printf.
9377 * lib/lbitset.c (debug_lbitset): Likewise.
9378 * src/closure.c (print_firsts, print_fderives): Likewise.
9379 * src/gram.c (grammar_dump): Likewise.
9380 * src/lalr.c (look_ahead_tokens_print): Likewise.
9381 * src/output.c (escaped_output): Likewise.
9382 (user_actions_output): Coalesce two printfs.
2f4f028d 9383 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
fb9c0b33
PE
9384 * src/reduce.c (reduce_print): Likewise.
9385 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
2f4f028d 9386 * src/system.h: Include unlocked-io.h rather than stdio.h.
fb9c0b33 9387
edb8f44f
PE
9388 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
9389 this confuses xgettext.
9390
b50d2359
AD
93912005-10-02 Akim Demaille <akim@epita.fr>
9392
9393 * bootstrap (gnulib_modules): Add strverscmp.
9394 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
9395 * m4/.cvsignore: Add strverscmp.m4.
9396 * src/parse-gram.y (%require): New token, new rule.
9397 (version_check): New.
9398 * src/scan-gram.l (%require): Adjust.
9399 * tests/input.at (AT_REQUIRE): New.
9400 Use it.
9401 * doc/bison.texinfo (Require Decl): New.
9402 (Calc++ Parser): Use %require.
9403
21667f64
AD
94042005-10-02 Akim Demaille <akim@epita.fr>
9405
9406 * data/location.cc: New.
9407
2b81e969
AD
94082005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
9409 Akim Demaille <akim@epita.fr>
9410
9411 Make sure -odir/foo.cc creates dir/location.hh etc.
9412 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
9413 (spec_file_prefix, spec_verbose_file, spec_graph_file)
9414 (spec_defines_file): Now const.
9415 (dir_prefix): New.
9416 (short_base_name): Remove.
9417 * src/files.c: Adjust.
9418 (dirname.h): Include.
9419 (base_name): Don't prototype it.
9420 (finput): Remove, duplicates gram_in.
9421 (full_base_name, short_base_name): Replace by...
9422 (all_but_ext, all_but_tab_ext): these.
9423 (compute_base_names): Rename as...
9424 (compute_file_name_parts): this.
9425 Update to compute the new variables, including dir_prefix.
9426 Adjust dependencies.
9427 * src/output.c (prepare): Output them.
9428 * src/reader.c: Adjust to use gram_in, not finput.
9429 * src/scan-skel.l (@dir_prefix@): New.
9430
ad6a9b97
JMG
94312005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9432
9433 * lib/subpipe.c: New function end_of_output_subpipe() added
9434 to allow support for non-posix systems. This is a no-op function
9435 for posix systems.
9436
9437 * lib/subpipe.h: New function end_of_output_subpipe() added
9438 to allow support for non-posix systems. This is a no-op function
9439 for posix systems.
9440
9441 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
9442 handle the lack of pipe/fork functionality on non-posix systems.
9443
9444 * djgpp/Makefile.maint: DJGPP specific file.
9445
9446 * djgpp/README.in: DJGPP specific file.
9447
9448 * djgpp/config.bat: DJGPP specific configuration file.
9449
9450 * djgpp/config.sed: DJGPP specific configuration file.
9451
9452 * djgpp/config.site: DJGPP specific configuration file.
9453
9454 * djgpp/config_h.sed: DJGPP specific configuration file.
9455
9456 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
9457
9458 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
9459
fc695704
AD
94602005-10-02 Akim Demaille <akim@epita.fr>
9461
9462 * data/location.cc: New, extract from...
9463 * data/lalr1.cc: here.
9464 (location.hh): Include it after the user prologue, in case the
9465 filename type is defined by the user.
9466 Forward declation location and position before the pre-prologue.
9467 (yyresult_): Rename as...
9468 (yyresult): this, it's a local variable, not an attribute.
9469 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
9470
94712005-10-01 Akim Demaille <akim@epita.fr>
5215c87f
AD
9472
9473 * examples/extexi: Restore the #line generation.
9474
fb9712a9
AD
94752005-09-30 Akim Demaille <akim@epita.fr>,
9476 Alexandre Duret-Lutz <adl@gnu.org>
9477
9478 Move the token type and YYSTYPE in the parser class.
9479 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
9480 (parser::token): New, from the moved free definition of tokens.
9481 (parser::semantic_value): Now a full definition instead of an
9482 indirection to YYSTYPE.
9483 (b4_post_prologue): No longer included in the header file, but
9484 in the implementation file.
9485 * doc/bison.texi (C+ Language Interface): Update.
9486 * src/parse-gram.y: Support unary %define.
9487 * tests/actions.at: Define global_tokens_and_yystype for backward
9488 compatibility until we update the tests.
9489 * tests/calc.at: Idem.
9490 (first_line, first_column, last_line, last_column): Define for lalr1.cc
9491 to simplify the code.
9492
55f0c7b1
PE
94932005-09-29 Paul Eggert <eggert@cs.ucla.edu>
9494
9495 Port to SunOS 4.1.4, which lacks strtoul and strerror.
9496 Ah, the good old days! Problem reported by Peter Klein.
9497 * bootstrap (gnulib_modules): Add strerror, strtoul.
9498 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
9499 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
9500
fb9712a9 95012005-09-29 Akim Demaille <akim@epita.fr>
d4fb5e3c
AD
9502
9503 * data/c.m4 (b4_error_verbose_if): New.
9504 * data/lalr1.cc: Use it.
9505 (YYERROR_VERBOSE_IF): Remove.
9506 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
9507 parser members, replaced by...
9508 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
9509 local variables.
9510 (yysyntax_error_): Takes the state number as argument.
9511 (yyreduce_print_): Use the argument yyrule, not the former
9512 attribute yyn_.
9513
8a6f72f3
PE
95142005-09-26 Paul Eggert <eggert@cs.ucla.edu>
9515
9516 * bootstrap (gnulib_modules): Add verify.
9517 * lib/.cvsignore: Add verify.h.
9518 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
9519 * src/system.h (verify): Remove.
9520 Include verify.h instead.
9521 * src/tables.c (tables_generate): Use new API for 'verify'.
9522
0d50976f
PE
95232005-09-21 Paul Eggert <eggert@cs.ucla.edu>
9524
ebc3737e
PE
9525 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
9526 local variables whose names begin with 'yy'.
9527 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
9528 Trivial changes from Joel E. Denny.
9529
0d50976f
PE
9530 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
9531 it itself.
9532 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
9533 don't use alloca any more.
9534
9535 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
9536 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
62c4328e 9537 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
0d50976f
PE
9538 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
9539 to match yacc.c, to test more hosts.
9540
a05b79df
PE
95412005-09-20 Paul Eggert <eggert@cs.ucla.edu>
9542
55289366
PE
9543 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
9544 doesn't affect behavior.
9545 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
9546 Solaris, AIX, MSC.
9547 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
9548 This works a bit better with glibc, if user code has already included
9549 stdlib.h.
9550 * doc/bison.texinfo (Bison Parser): Document that users can't
9551 arbitrarily use malloc and free for other purposes. Document
9552 that <alloca.h> and <malloc.h> might be included.
9553 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
9554 user must declare alloca.
9555
a05b79df
PE
9556 * HACKING (release): Forwarn the Translation Project about
9557 stable releses.
9558
3ab2ca22
AD
95592005-09-20 Akim Demaille <akim@epita.fr>
9560
9561 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
9562
a9739e7c
PE
95632005-09-19 Paul Eggert <eggert@cs.ucla.edu>
9564
a702593e
PE
9565 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
9566 (YYSTACK_ALLOC_MAXIMUM): Use it.
9567 (yysyntax_error): New function.
9568 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
9569 multiple syntax errors are reported, and alloca is being used.
9570 Instead, reallocate buffers twice as big each time, so that
9571 we waste at most half the allocated memory. Start with a small
9572 (128-byte) buffer that will suffice in most cases anyway.
9573 Use yysyntax_error to do most of the work.
9574
9575 * doc/bison.texinfo (Error Reporting, Table of Symbols):
9576 yynerrs is the number of errors reported, not the number of
9577 errors encountered.
9578
a9739e7c
PE
9579 * tests/glr-regression.at (Duplicated user destructor for lookahead):
9580 Mark it as expected to fail.
9581 Cast result of malloc; problem reported by twlevo@xs4all.nl.
9582 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
9583 Don't start user-code symbols with "yy", to avoid name space problems.
9584
f479c6c6
AD
95852005-09-19 Akim Demaille <akim@epita.fr>
9586
9587 Remove the traits, failed experiment.
9588 It never proved useful, and anyway because of the current
9589 definition, it was not possible to have several specialization of
9590 this traits, making it useless.
9591 * data/lalr1.cc (yy:traits): Remove.
9592 Inline its definitions in the parser class.
9593
e2586f82
AD
95942005-09-19 Akim Demaille <akim@epita.fr>
9595
9596 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
9597 least Mac OSX with a /usr/local install of gettext.
9598
2e8cf949
AD
95992005-09-19 Akim Demaille <akim@epita.fr>
9600
9601 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
9602 and yytoken for similarity with the other skeletons.
9603
c7fb0b90
AD
96042005-09-19 Akim Demaille <akim@epita.fr>
9605
4e26c69e 9606 * NEWS, configure.ac: update version number to 2.1a.
c7fb0b90 9607
1bd0deda
PE
96082005-09-16 Paul Eggert <eggert@cs.ucla.edu>
9609
9610 * NEWS: Version 2.1.
9611
9612 * NEWS: Remove notice of yytname change, since it was never in an
9613 official release.
9614 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
9615 diagnostic.
9616 * src/output.c (prepare): Likewise.
9617 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
9618 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
9619 is not defined. This is an awful hack, but it's enough for now.
9620 All callers changed.
9621 * tests/glr-regression-at (make_value): Args are const pointers now,
9622 to avoid GCC warning.
9623 (Duplicated user destructor for lookahead): New test. Currently
9624 skipped. It fails on my host but I'm not sure it'll always fail.
9625
96262005-09-16 Akim Demaille <akim@epita.fr>
c1432f65
AD
9627
9628 * src/symtab.h (struct symbol): Declare the printer and destructor
9629 as const, to avoid accidental calls to free.
9630 (symbol_destructor_set, symbol_printer_set): Adjust.
9631 * src/symtab.c: Adjust.
9632
1bd0deda 96332005-09-16 Akim Demaille <akim@epita.fr>
cf147260
AD
9634
9635 * data/c.m4 (b4_token_enums): New.
9636 (b4_token_defines): Rename as...
9637 (b4_token_enums_defines): this.
9638 (b4_token_defines): New, output only the #defines.
9639 * data/yacc.c, data/glr.c: Adjust.
9640 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
9641 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
9642 as default values.
9643
dbcdae2d
AD
96442005-09-16 Akim Demaille <akim@epita.fr>
9645
9646 * data/lalr1.cc (yylex_): Remove, inline its code.
9647 (yyreport_syntax_error_): Remove, replaced by...
9648 (yysyntax_error_): this which returns a string and leaves to the
9649 caller the call to the users' error function.
9650 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
9651 Move from members of the parser object...
9652 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
9653 to local variables of the parse function.
9654
70d8f291
AD
96552005-09-16 Akim Demaille <akim@epita.fr>
9656
9657 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
9658 since it's in Bison's name space.
9659
b47dbebe
PE
96602005-09-15 Paul Eggert <eggert@cs.ucla.edu>
9661
ae199bf1
PE
9662 * data/glr.c (yyresolveValue): Add default case to pacify
9663 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
9664
b47dbebe
PE
9665 * NEWS: Document when yyparse started to return 2.
9666 * doc/bison.texinfo (Parser Function): Document when yyparse
9667 returns 2.
9668
9669 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
9670 (b4_filename_type): Renamed back from b4_file_name_type. All uses
9671 changed.
9672 (class position): file_name -> filename (reverting). All uses changed.
9673
96742005-09-14 Paul Eggert <eggert@cs.ucla.edu>
9675
9676 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
9677 do anything if $@ exists. This reverts part of the 2005-07-07
9678 patch.
9679
00292f66
PE
96802005-09-11 Paul Eggert <eggert@cs.ucla.edu>
9681
9682 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
9683 contains obsolete information and isn't worth distributing as a
9684 separate file anyway.
9685 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
9686 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
9687 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
9688 (yyparse): Abort if user code uses longjmp to throw an unexpected
9689 value.
9690
a420f962
PE
96912005-09-09 Paul Eggert <eggert@cs.ucla.edu>
9692
00292f66
PE
9693 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
9694 Suggested by twlevo@xs4all.nl.
9695
127287e9
PE
9696 * data/glr.c (YYCHK1): Do not assume YYE is in range.
9697 This avoids a diagnostic from gcc -Wswitch-enum.
9698 Problem reported by twlevo@xs4all.nl.
9699
a420f962
PE
9700 * doc/bison.texinfo: Don't use "filename", as per GNU coding
9701 standards. Use "file name" or "file" or "name", depending on
9702 the context.
9703 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
9704 not to hack/foo.tab.c.
9705 (Calc++ Top Level): 2nd arg of main is not const.
48b16bbc
PE
9706 * data/glr.c: b4_filename -> b4_file_name.
9707 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
9708 All uses changed.
9709 (class position): filename -> file_name. All uses changed.
9710 * data/yacc.c: b4_filename -> b4_file_name.
9711 * lib/bitset.h: filename -> file_name in local vars.
9712 * lib/bitset_stats.c: Likewise.
9713 * src/files.c: Likewise.
9714 * src/scan-skel.l ("@output ".*\n): Likewise.
9715 * src/files.c (file_name_split): Renamed from filename_split.
9716 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
a420f962
PE
9717
97182005-09-08 Paul Eggert <eggert@cs.ucla.edu>
9719
9720 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
9721 to accommodate latest gnulib.
9722
9723 * tests/glr-regression.at (Duplicate representation of merged trees):
9724 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
9725
9726 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
9727 needed.
9728
42a6501d
PE
97292005-08-26 Paul Eggert <eggert@cs.ucla.edu>
9730
9731 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
9732 All uses changed. Invoke user destructor after an error during a
9733 split parse (trivial change from Joel E. Denny).
9734
9735 * tests/glr-regression.at
9736 (User destructor after an error during a split parse): New test case.
9737 Problem reported by Joel E. Denny in:
9738 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
9739
ef9a1faf
PE
97402005-08-25 Paul Eggert <eggert@cs.ucla.edu>
9741
5b4aaf78
PE
9742 * README-cvs: Give URLs for recommended tools.
9743 Mention Gzip version problem, and bootstrapping issues.
9744 Remove troubleshooting section, as it's somewhat obsolete.
9745
b5240ba5
PE
9746 * bootstrap (no_cache): New var, to accommodate different wget
9747 variants. Use it instead of '-C off'. Problem reported by
9748 twlevo@xs4all.nl.
9749
ef9a1faf
PE
9750 * data/glr.c (yydestroyStackItem): New function.
9751 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
9752 debugging information. Problem reported by Joel E. Denny.
9753
e6efa9da
AD
97542005-08-25 Akim Demaille <akim@epita.fr>
9755
9756 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
9757
adc90f13
PE
97582005-08-24 Paul Eggert <eggert@cs.ucla.edu>
9759
9760 * data/glr.c (yyrecoverSyntaxError, yyreturn):
9761 Don't invoke destructor on unresolved entries.
9762 * tests/glr-regression.at
9763 (User destructor for unresolved GLR semantic value): New test case.
9764 Problem reported by Joel E. Denny in:
9765 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
9766
f9315de5
PE
97672005-08-21 Paul Eggert <eggert@cs.ucla.edu>
9768
15d29c1f
PE
9769 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
9770 Add strnlen.c.
9771 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
9772 lib-prefix.m4, po.m4.
9773
dd5f2af2
PE
9774 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
9775 in yydestruct diagnostic, since it might not be an error.
9776 Problem reported by Joel Denny near end of
9777 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
6250acbd 9778 * data/lalr1.cc (yyerturn): Likewise.
dd5f2af2
PE
9779 * data/yacc.c (yyreturn): Likewise.
9780 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
9781
9782 * src/files.c: Remove obsolete FIXME comment.
9783
9784 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
9785 with the other templates, and to fix bogus run-on messages such
9786 as the one reported at the end of
9787 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
9788 All callers changed to avoid the newline.
9789 (yyprocessOneStack): Output two lines rather than one, to accommodate
9790 the above change. This changes the debug output format slightly.
9791
f9315de5
PE
9792 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
9793 reported by Joel E. Denny in
9794 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
9795 (trivial change).
9796 * tests/glr-regression.at (Duplicate representation of merged trees):
9797 New test, from Joel E. Denny in:
9798 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
9799 * THANKS: Add Joel E. Denny.
9800
9801 * configure.ac (AC_INIT): Bump to 2.0c.
9802
04098407
PE
98032005-07-24 Paul Eggert <eggert@cs.ucla.edu>
9804
9805 * NEWS: Version 2.0b.
9806
ca5d2013
PE
9807 * Makefile.am (SUBDIRS): Put examples before tests, so that
9808 "make check" doesn't finish with "All 1 tests passed".
9809
3d54b576
PE
9810 * tests/regression.at (Token definitions): Don't rely on
9811 AT_PARSER_CHECK for data that contains backslashes. It currently
9812 uses 'echo', and 'echo' isn't portable if its argument contains
9813 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
9814 that the byte '\0xff' is not printable in the C locale; it is,
9815 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
9816 not printable, so use '\0x81' to test.
9817
d53ae497
PE
9818 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
9819 version of GCC, since the macro is used with non-GCC compilers.
9820
fc01665e
PE
9821 Fix core dump reported by Pablo De Napoli in
9822 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
9823 * tests/regression.at (Invalid inputs with {}): New test.
9824 * src/parse-gram.y (token_name): Translate type before using
9825 it as an index.
9826
04098407
PE
9827 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
9828 the user's name space. All uses changed to __attribute__
9829 ((__unused__)).
9830 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
9831 Add __attribute__ ((__noreturn__)).
9832
9833 * etc/clcommit: Remove. We weren't using it, and it failed
9834 "make maintainer-distcheck".
9835 * Makefile.maint: Merge from coreutils.
9836 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
9837 (syntax-check-rules): Change list of rules as described below.
9838 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
9839 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
9840 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
9841 (sc_trailing_space): New rules.
9842 (sc_xalloc_h_in_src): Remove.
9843 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
9844 (sc_space_tab, sc_error_exit_success, sc_changelog):
9845 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
9846 (makefile-check, po-check, author_mark_check):
9847 (makefile_path_separator_check, copyright-check):
9848 Use grep -n, to make it easier to find violations.
9849 Use CVS_LIST and CVS_LIST_EXCEPT.
9850 (header_regexp, h_re): Remove.
9851 (dd_c): New macro.
9852 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
9853 (my-distcheck): Use more-modern GCC flags.
9854 (signatures, %.asc): Remove.
9855 (rel-files, announcement): Remove signatures.
9856 Restore old updating code, even though we don't use it, so
9857 that we're the same as coreutils.
9858 (alpha, beta, major): Depend on news-date-check.
9859 Make the upload commands.
9860
9861 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
9862 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
9863 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
9864 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
9865 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
9866 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
9867 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
9868 * tests/sets.at: Likewise.
9869
9870 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
9871 we comment out the Autoconf version number.
9872 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
9873 it's error-prone and "make maintainer-distcheck" rejects it.
9874
9875 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
9876 Indent calls to "error" to pacify "make maintainer-distcheck",
9877 when the calls are not intended to be translated.
9878 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
9879
9880 * src/Makefile.am (DEFS): Use +=, to pacify
9881 "make maintainer-distcheck".
9882 (bison_SOURCES): Add scan-skel.h.
9883 (sc_tight_scope): New rule, from coreutils.
9884
9885 * src/files.c (src_extension, header_extension):
9886 Now static, not extern.
9887 * src/getargs.c (short_options): Likewise.
9888 * src/muscle_tab.c (muscle_table): Likewise.
9889 * src/parse-gram.y (current_class, current_type, current_prec):
9890 Likewise.
9891 * src/reader.c (grammar_end, previous_rule_end): Likewise.
9892 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
9893 * src/main.c (main): Cast bindtextdomain and textdomain calls to
9894 void, to avoid warning when NLS is disabled.
9895 * src/output.c: Include scan-skel.h.
9896 (scan_skel): Remove decl, since scan-skel.h does this.
9897 (output_skeleton):
9898 Indent calls to "error" to pacify "make maintainer-distcheck".
9899 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
9900 * src/reader.h (gram_end, gram_lineno): New decls to pacify
9901 "make maintainer-distcheck".
9902 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
9903 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
9904 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
9905 (skel_lex_destroy, scan_skel): Move these decls to...
9906 * src/scan-skel.h: New file.
9907 * src/uniqstr.c (uniqstr_assert):
9908 Indent calls to "error" to pacify "make maintainer-distcheck".
9909
9910 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
9911 not @VAR@.
9912
9913 * tests/torture.at: Revamp to avoid misuse of atoi that
9914 "make maintainer-distcheck" complained about.
9915
9916 * examples/extexi (message): Don't print a message more than once,
9917 and omit line-number decoration that makes Emacs compile think
9918 that informative messages are worth worrying about.
9919
99202005-07-22 Paul Eggert <eggert@cs.ucla.edu>
9921
9922 * configure.ac: Update version number.
9923
9924 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
9925 accidentally.
9926 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
9927 autogenerated by the maintainer.
9928 * examples/calc++/.cvsignore: Add *.yy.
9929
9930 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
9931 * lib/bitset_stats.c (bitset_stats_init): Likewise.
9932 * lib/bitsetv.c (bitsetv_alloc): Likewise.
9933
9934 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
9935
9936 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
9937 from maintainer-distcheck about casting the argument of 'free'.
9938
9939 * NEWS: Mention recent yytname changes.
9940 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
9941
9942 * bootstrap: For translations that have not yet been upgraded to
9943 the new runtime-po domain, prime the pump by extracting the
9944 relevant strings from the obsolete translations. This code can be
9945 removed once the bison-runtime domain has been translated by each
9946 team.
9947
9948 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
9949 now that token names are already quoted.
9950
9951 Fix problem reported by Anthony Heading.
9952 * data/glr.c (YYTOKEN_TABLE): New macro.
9953 (yytname): Define if YYTOKEN_TABLE.
9954 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
9955 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
9956 (YYERROR_VERBOSE): Define the same way the other skeletons do.
9957 * src/output.c (prepare_symbols): Output token_table_flag.
9958
0ffda363
PE
99592005-07-21 Paul Eggert <eggert@cs.ucla.edu>
9960
9961 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
9962 again if the first call fails.
9963
9964 * data/glr.c (yytnamerr): New function.
9965 (yyreportSyntaxError): Use it to dequote most string literals.
9966 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
9967 with other skeletons. All uses changed.
9968 (yytnameerr_): New function.
9969 (yyreport_syntax_error): Use it to dequote most string literals.
9970 * data/yacc.c (yytnamerr): New function.
9971 (yyerrlab): Use it to decode most string literals.
9972 * doc/bison.texinfo (Decl Summary, Calling Convention):
9973 Clarify quoting convention of yytname.
9974 * src/output.c (prepare_symbols): Quote all names. This undoes
9975 the 2005-04-17 change, which is now accomplished (mostly) via
9976 changes in the parsers as described above.
9977 * tests/regression.at (Token definitions, Web2c Actions):
9978 Undo most 2005-04-17 change here, too.
9979
99802005-07-20 Paul Eggert <eggert@cs.ucla.edu>
9981
9982 Fix more problems reported by twlevo@xs4all.nl.
9983 * tests/cxx-type.at: Don't pipe output of ./types through sed to
9984 remove trailing spaces. This loses the exit status of ./types,
9985 and isn't needed since ./types shouldn't be emitting trailing
9986 spaces.
9987 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
9988 as the stack isn't valid in that case.
9989
9990 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
9991 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
9992 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
9993 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
9994 is used.
9995 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
9996 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
9997 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
9998 Likewise.
9999
10000 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
10001 overly-picky compilers that reject 'char *foo = "bar";'.
10002
10003 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
10004 to FILE * parameter, not to stderr. This fixes a typo introduced
10005 in the 2005-07-12 change.
10006
10007 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
10008 warnings from GCC 4.
10009
10010 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
10011 (yyglrShiftDefer, yysplitStack):
10012 Remove unused parameters b4_pure_formals. All uses changed.
10013 (yyglrShift): Remove unused parameters b4_user_formals.
10014 All uses changed.
10015 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
10016
6100a9aa
PE
100172005-07-18 Paul Eggert <eggert@cs.ucla.edu>
10018
258b75ca
PE
10019 Destructor cleanups and regularization among the three skeletons.
10020 * NEWS: Document the behavior changes.
10021 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
10022 stack before failing, as the cleanup code will do it for us now.
10023 * data/lalr1.cc (yyerrlab): Likewise.
10024 * data/glr.c (yyparse): Pop everything off the stack before
10025 freeing it, so that destructors get called properly.
10026 * data/lalr1.cc (yyreturn): Likewise.
10027 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
10028 This is more consistent.
10029 * doc/bison.texinfo (Destructor Decl): Mention more reasons
10030 why destructors might be called. 1.875 -> 2.1.
10031 (Destructor Decl, Decl Summary, Table of Symbols):
10032 Some English-language cleanups for %destructor.
10033 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
10034 Add output line for destructor of start symbol.
10035 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
10036 because of that same extra output line.
10037
1a059451
PE
10038 * NEWS: Document minor wording changes in diagnostics of
10039 Bison-generated parsers.
10040 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
10041 Remove unused formals. All uses changed.
10042 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
10043 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
10044 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
10045 Rename yyoverflowab to yyexhaustedlab.
10046 When memory exhaustion occurs during syntax-error reporting,
10047 report it separately rather than in a single diagnostic; this
10048 eases translation.
10049 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
10050 (Memory Exhausted): Renamed from Parser Stack Overflow.
10051 Revamp wording slightly to prefer "memory exhaustion".
10052 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
10053
97460c78
PE
10054 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
10055
30757c8c
PE
10056 Add i18n support to the GLR skeleton. Partially fix the C++
10057 skeleton; a C++ expert needs to finish this. Remove debugging
10058 msgids; there's little point to having them translated, since they
10059 can be understood only by someone who can read the
10060 (English-language) source code.
10061
10062 Generate runtime-po/bison-runtime.pot automatically, so that we
10063 don't have to worry about garbage getting in that file. We'll
10064 make sure after the next official release that old msgids don't
10065 get lost. See
10066 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
10067
10068 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
10069 Now auto-generated.
10070 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
10071 Fix typos in explanations of the runtime file.
10072 * bootstrap: Change gettext keyword from YYI18N to YY_.
10073 Use standard Makefile.in.in in runtime-po, since we'll arrange
10074 for backward-compatible bison-runtime.po files in a different way.
10075 * data/glr.c (YY_): New macro, from yacc.c.
10076 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
10077 Translate messages intended for users.
10078 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
10079 the wording in the other skeletons. We don't know that the memory
10080 is virtual.
10081 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
10082 Use same method that yacc.c uses.
10083 Don't translate debugging messages.
10084 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
10085 it doesn't work (yet), and requires C++ expertise to fix.
10086 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
10087 Move defn to a more logical place, to be consistent with other
10088 skeletons.
10089 Don't translate debugging messages.
10090 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
10091 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
10092 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
10093 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
10094
ac8c5689
PE
10095 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
10096 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
10097 void, not int.
10098 * tests/glr-regression.at (Badly Collapsed GLR States):
10099 Likewise.
10100 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
10101 yylex should return 0 at EOF rather than aborting.
10102
6100a9aa
PE
10103 Improve tests for stack overflow in GLR parser.
10104 Problem reported by twlevo@xs4all.nl.
10105 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
10106 All uses removed.
10107 (yyStackOverflow): Just longjmp, but with value 2 so that caller
10108 can handle the problem.
10109 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
10110 (yyparse): New local variable yyresult to record the result.
10111 Use result of setjmp to set it, rather than storing itinto
10112 struct.
10113 (yyDone): Remove label.
10114 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
10115 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
10116 if YYABORT is used).
10117 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
10118 yyparse status; put status > 1 into diagnostic.
10119 Check that status==2 works.
10120 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
10121 Use exit status 3 for failure to open (which shouldn't happen).
10122
15f40952
PE
101232005-07-17 Paul Eggert <eggert@cs.ucla.edu>
10124
67fd79c4
PE
10125 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
10126 1 on syntax error; just let yyparse do its thing.
10127 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
10128 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
10129 (Exploding the Stack Size with Alloca):
10130 (Exploding the Stack Size with Malloc):
10131 Expect exit status 2, not 1, since the parser is supposed to blow
10132 its stack. Problem reported by twlevo@xs4all.nl.
10133
15f40952
PE
10134 * data/glr.c (yyparse): Don't assume that the initial calls
10135 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
10136 Print a stack-overflow message and fail instead.
10137 Initialize the line-number information before creating the stack,
10138 so that the stack-overflow message can report line zero safely.
10139
f32c66b5
PE
101402005-07-14 Paul Eggert <eggert@cs.ucla.edu>
10141
a22ff96f 10142 Fix problems reported by twlevo@xs4all.nl.
e2688cd9
PE
10143 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
10144 (yyuserMerge): Provide a default case if b4_mergers is empty.
10145 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
10146 * tests/glr-regression.at
10147 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
c70fdfcd 10148 Add casts to pacify C++ compilers.
1beb0b24
PE
10149 * tests/glr-regression.at (Improper merging of GLR delayed action
10150 sets): Declare yylex before using it.
f32c66b5 10151 * tests/Makefile.am (maintainer-check-g++): Fix a stray
a22ff96f
PE
10152 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
10153 test for valgrind; valgrind is independent of g++.
10154 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
10155 for compatibility with POSIX 1003.1-2001 (if running coreutils).
10156 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
10157 Use a destructor, so that we can expand the stack. Change
10158 YYSTYPE to char * so that we can free it. Cast result of malloc.
f32c66b5 10159
d741bd1b
PE
101602005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10161
10162 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
10163 a valgrind failure. Problem reported by twlevo@xs4all.nl.
10164
0410a6e0
PE
101652005-07-13 Paul Eggert <eggert@cs.ucla.edu>
10166
10167 * PACKAGING: New file, suggested by Bruno Haible and taken from
10168 similar wording in gettext's PACKAGING file.
10169 * NEWS: Mention PACKAGING.
10170 * Makefile.am (EXTRA_DIST): Add PACKAGING.
10171
f7ab6a50
PE
101722005-07-12 Paul Eggert <eggert@cs.ucla.edu>
10173
baf785db 10174 * NEWS: Document recent i18n improvements.
f7ab6a50
PE
10175 * bootstrap: Get runtime translations into runtime-po.
10176 Create runtime-po files automatically, if possible.
10177 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
10178 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
10179 does not infringe on the user's name space.
10180 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
10181 * doc/bison.texinfo (Internationalization): Revamp the English
10182 and Texinfo syntax a bit, to try to make it clearer.
10183 (Bison Options, Option Cross Key): Mention --print-localedir.
10184 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
10185 YYENABLE_NLS. Quote a bit more.
10186 * runtime-po/.cvsignore: New file.
10187 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
10188 * runtime-po/Rules-quot: Remove; now created by bootstrap.
10189 * runtime-po/quot.sed: Likewise.
10190 * runtime-po/boldquot.sed: Likewise.
10191 * runtime-po/en@quot.header: Likewise.
10192 * runtime-po/en@boldquot.header: Likewise.
10193 * runtime-po/insert-header.sin: Likewise.
10194 * runtime-po/remove-potcdate.sin: Likewise.
10195 * runtime-po/Makevars: Likewise.
10196 * runtime-po/LINGUAS: Likewise.
10197 * runtime-po/de.po: Likewise; we will rely on the translation project
10198 to maintain this, so "bootstrap" should get it.
0410a6e0 10199 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
f7ab6a50
PE
10200 its value.
10201 * src/main.c (main): Bind the bison-runtime domain, too.
10202
102032005-07-12 Bruno Haible <bruno@clisp.org>
10204
10205 * data/yacc.c: Include <libintl.h> when NLS is enabled.
10206 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
10207 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
10208 * runtime-po: New directory.
10209 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
10210 $(DOMAIN).pot-update rule, so that old messages are never dropped.
10211 * runtime-po/Rules-quot: New file, copied from po/.
10212 * runtime-po/quot.sed: Likewise.
10213 * runtime-po/boldquot.sed: Likewise.
10214 * runtime-po/en@quot.header: Likewise.
10215 * runtime-po/en@boldquot.header: Likewise.
10216 * runtime-po/insert-header.sin: Likewise.
10217 * runtime-po/remove-potcdate.sin: Likewise.
10218 * runtime-po/Makevars: New file.
10219 * runtime-po/POTFILES.in: New file.
10220 * runtime-po/LINGUAS: New file.
10221 * runtime-po/bison-runtime.pot: New file.
10222 * runtime-po/de.po: New file.
10223 * m4/bison.m4: New file.
10224 * Makefile.am (SUBDIRS): Add runtime-po.
10225 (aclocaldir, aclocal_DATA): New variables.
10226 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
10227 Define aclocaldir.
10228 * src/getargs.c (usage): Document --print-localedir option.
10229 (PRINT_LOCALEDIR_OPTION): New enum item.
10230 (long_options): Add --print-localedir option.
10231 (getargs): Handle --print-localedir option.
10232 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
10233 (Internationalization): New section.
10234
22dda0f0
AD
102352005-07-12 Akim Demaille <akim@epita.fr>
10236
10237 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
10238 for consistency with the rest of the code.
10239 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
10240 Add separators.
10241
82b248ad
AD
102422005-07-12 Akim Demaille <akim@epita.fr>
10243
10244 * src/parse-gram.y: Use %printer instead of YYPRINT.
10245
fa0e9314
AD
102462005-07-12 Akim Demaille <akim@epita.fr>
10247
867a3e00
AD
10248 * src/symtab.h, src/symtab.c (symbol_print): New.
10249 * src/symlist.h, src/symlist.c (symbol_list_print): New.
10250 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
10251
102522005-07-12 Akim Demaille <akim@epita.fr>
10253
10254 * data/glr.c (b4_syncline): Fix (swap) the definitions of
fa0e9314
AD
10255 b4_at_dollar and b4_dollar_dollar.
10256
e054b190
PE
102572005-07-11 Paul Eggert <eggert@cs.ucla.edu>
10258
10259 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
10260 and Pennello's paper.
10261
34160ec4
PE
102622005-07-09 Paul Eggert <eggert@cs.ucla.edu>
10263
407d4a75
PE
10264 * data/yacc.c (yyparse): Undo previous patch. Instead,
10265 set yylsp[0] and yyvsp[0] only if the initial action
10266 sets yylloc and yylval, respectively.
10267
34160ec4
PE
10268 * data/yacc.c (yyparse): In the initial action, set
10269 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
10270 This avoids the use of undefined variables if the initial
10271 action does not set yylloc and/or yylval.
10272
c3d5a4a7
PE
102732005-07-07 Paul Eggert <eggert@cs.ucla.edu>
10274
b34d96c1
PE
10275 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
10276 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
10277 Remove from CVS. These files are automatically generated.
10278 * examples/extexi: Clarify that this file is now part of Bison,
10279 not GNU M4, and that it works with any POSIX-compatible Awk.
10280 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
10281 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
10282 so that we also get calc++-parser.yy. Geneate it.
10283 Use $(AWK), not gawk, since any conforming Awk will do.
10284 Put comment before action, since older 'make' can't handle comment
10285 in action.
10286 $(BUILT_SOURCES): List all built sources, not just some of them.
10287 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
10288 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
10289 $($(calc_sources_generated)): Remove unnecessary test for existence
10290 of target. (This had a shell syntax error anyway; a stray "x".)
10291 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
10292 calc++-parser.yy.
10293 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
10294
c3d5a4a7
PE
10295 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
10296 implied by the other modules.
10297
828c373b
AD
102982005-07-06 Akim Demaille <akim@epita.fr>
10299
10300 Bind examples/calc++ to the package.
10301 * examples/calc++/Makefile: Remove, replaced by...
10302 * examples/calc++/Makefile.am: ... this new file.
10303 * examples/calc++/test: Remove input.
10304 * examples/calc++/compile: Remove.
10305 * examples/Makefile.am: New.
10306 * configure.ac, Makefile.am: Adjust.
10307 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
10308
63cb01d6
PE
103092005-07-05 Paul Eggert <eggert@cs.ucla.edu>
10310
fd2df2ed
PE
10311 * data/glr.c (yyFail): Drastically simplify; since the format argument
10312 never had any % directives, we can simply pass it to yyerror.
10313 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
10314 be modified later, as that is the usual style in glr.c.
10315 Problems reported by Paul Hilfinger.
10316
63cb01d6
PE
10317 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
10318 and size overflow errors.
10319 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
10320 in case the user prolog sets feature-test macros like _GNU_SOURCE.
10321 (YYSIZEMAX): New macro.
10322 (yystpcpy): New function, taken from yacc.c.
10323 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
10324 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
10325 so that we don't have to maintain their signatures.
10326 (yyFail): Check for buffer overflow, by using vsnprintf rather
10327 than vsprintf. Allocate a bigger buffer if possible.
10328 Report an error if buffer allocation fails.
10329 (yyStackOverflow): New function.
10330 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
10331 the initialization was successful. It might fail if storage was
10332 exhausted.
10333 (yyexpandGLRStack): Add more checks for storage allocation failure.
10334 Use yyStackOverflow to report failures.
10335 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
10336 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
10337 Don't assume stack number fits in int.
10338 (yysplitStack): Check for storage allocation failure.
10339 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
10340 can print diagnostics on storage allocation failure. All callers
10341 changed.
10342 (yyresolveValue): Use yybool for boolean.
10343 (yyreportSyntaxError): Check for size-calculation overflow.
10344 This code is taken from yacc.c.
10345 (yyparse): Check for storage allocation errors when allocating
10346 the initial stack.
10347
1c59e0a1
AD
103482005-07-05 Akim Demaille <akim@epita.fr>
10349
10350 Extract calc++ from the documentation.
10351 * doc/bison.texinfo (Calc++): Add the extraction marks.
10352 * examples/extexi: New, from the aborted GNU Programming 2E.
10353 Separate the different paragraph of a file with empty lines.
10354 * examples/Makefile: Use it to extract the whole calc++ example.
10355
8a0adb01
AD
103562005-06-24 Akim Demaille <akim@epita.fr>
10357
10358 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
10359 class typedefs.
10360
12545799
AD
103612005-06-22 Akim Demaille <akim@epita.fr>
10362
10363 * doc/bison.texinfo (C++ Language Interface): First stab.
10364 (C++ Parsers): Remove.
10365
99be0235
AD
103662005-06-22 Akim Demaille <akim@epita.fr>
10367
10368 * data/lalr1.cc (yylex_): Honor %lex-param.
10369
0ffd4fd1
AD
103702005-06-22 Akim Demaille <akim@epita.fr>
10371
10372 Start a set of simple examples.
10373 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
10374 * examples/calc++/calc++-driver.hh,
10375 * examples/calc++/calc++-parser.yy,
10376 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
10377 * examples/calc++/compile, examples/calc++/test: New.
10378
0925ebb4
PE
103792005-06-09 Paul Eggert <eggert@cs.ucla.edu>
10380
10381 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
10382 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
10383 which stems from the 2005-05-27 patch.
10384
43d3b664
PH
103852005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10386
10387 * data/glr.c: Modify treatment of unused parameters to permit use
10388 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
10389
3062864d
PE
103902005-05-30 Paul Eggert <eggert@cs.ucla.edu>
10391
10392 Fix infringement on user name space reported by Janos Zoltan Szabo.
10393 * data/yacc.c (yyparse): strlen -> yystrlen.
10394
989b5b8e
AD
103952005-05-30 Akim Demaille <akim@epita.fr>
10396
10397 * data/lalr1.cc (_): New.
10398 Translate the various messages.
10399
bedf57f5
PE
104002005-05-27 Paul Eggert <eggert@cs.ucla.edu>
10401
10402 Fix infringement on user name space reported by Bruno Haible.
10403 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
10404 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
10405 the user's name space.
10406 (alloca): Include <stdlib.h> to get it, if it's not built in.
10407 (YYMALLOC, YYFREE): Define only if needed.
10408 (malloc, free): Declare, but only if needed, as this infringes on
10409 the user name space.
10410
4d1801f1
PE
104112005-05-25 Paul Eggert <eggert@cs.ucla.edu>
10412
10413 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
10414 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
10415 with %d format.
10416 * lib/ebitset.c (min, max): Undef before defining.
10417 * lib/vbitset.c (min, max): Likewise.
10418 * lib/subpipe.c (create_subpipe): Save local variables in case
10419 vfork clobbers them.
10420
104212005-05-24 Bruno Haible <bruno@clisp.org>
10422
10423 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
10424 error message syntax used by gcc-4.0.
10425
b94a9e1e
PE
104262005-05-23 Paul Eggert <eggert@cs.ucla.edu>
10427
85ac3861
PE
10428 * README: Mention m4 1.4.3. Remove obsolete advice about
10429 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
10430
b94a9e1e
PE
10431 * bootstrap: Remove workaround for problem I encountered with
10432 gettext 0.14.1; it seems to be fixed now.
10433
51c30d21
PE
104342005-05-22 Paul Eggert <eggert@cs.ucla.edu>
10435
009ce67d
PE
10436 * NEWS: Version 2.0a.
10437
f2a97c62
PE
10438 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
10439 the previous change.
10440
c8775f93
PE
10441 Various maintainer cleanups.
10442 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
10443 conftest*, for benefit of CVS commands run at the same time as
10444 "configure". Add build-aux, since "bootstrap" now creates it and
10445 its subfiles.
10446 * Makefile.cfg (move_if_change): Remove.
10447 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
10448 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
10449 (po_repo, do-po-update, po-update, wget_files, get-targets):
10450 (config.guess-url_prefix, config.sub-url_prefix):
10451 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
10452 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
10453 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
10454 Remove.
10455 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
10456 this is now the recommended name.
10457 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
10458 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
10459 ylwrap. These files now go into build-aux.
10460 * config/move-if-change: Remove.
10461 * config/prev-version.txt: Bump from 1.75 to 2.0.
10462
3ea5f0ec
PE
10463 * bootstrap: Add stdio-safer, unistd-safer modules.
10464 Remove m4/glibc2.m4 (introduced by latest gnulib, but
10465 we don't need it).
10466 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
10467 fopen-safer.c, stdio-safer.h, unistd-safer.h.
10468 * lib/subpipe.c: Include "unistd-safer.h".
10469 (create_subpipe): Make sure all the newly-created
10470 file descriptors are > 2, so that diagnostics don't
10471 get sent down them (which might cause Bison to hang, in theory).
10472 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
10473 * src/files.c (xfopen): Use fopen_safer, not fopen.
10474
51c30d21
PE
10475 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
10476 yesterday's yacc.c fix.
10477
cea1469d
PE
104782005-05-21 Paul Eggert <eggert@cs.ucla.edu>
10479
3ea5f0ec
PE
10480 * data/glr.c, data/lalr1.cc: Update copyright date.
10481
cea1469d
PE
10482 Fix a destructor bug reported by Wolfgang Spraul in
10483 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
10484 * data/yacc.c (yyabortlab): Don't call destructor, and
10485 don't set yychar to EMPTY.
10486 (yyoverflowlab): Don't call destructor.
10487 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
10488 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
10489 since we no longer output the message "discarding lookahead token
10490 end of input ()".
10491
5e6f62f2
PH
104922005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10493
10494 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
10495 fix a small glitch in debugging output.
10496 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
10497 after YY_SYMBOL_PRINT where needed.
10498
10499 (struct yyGLRState): Add some comments.
10500 (struct yySemanticOption): Add some comments.
10501 (union yyGLRStackItem): Add comment.
10502
10503 (yymergeOptionSets): Correct this to properly perform the union,
10504 avoiding infinite reported by Michael Rosien.
10505 Update comment.
10506
10507 * tests/glr-regression.at: Add test for GLR merging error reported
10508 by M. Rosien.
cea1469d 10509
0fb669f9
PE
105102005-05-13 Paul Eggert <eggert@cs.ucla.edu>
10511
10512 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
10513 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
10514 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
10515 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
10516 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
10517 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
10518 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
10519 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
10520 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
10521 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
10522 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
10523 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
10524 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
10525 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
10526 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
10527 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
10528 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
10529 src/derives.h, src/files.c, src/files.h, src/getargs.c,
10530 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
10531 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
10532 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
10533 src/output.h, src/parse-gram.c, src/parse-gram.h,
10534 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
10535 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
10536 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
10537 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
10538 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
10539 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
10540 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
10541 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
10542 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
10543 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
10544 tests/reduce.at, tests/regression.at, tests/sets.at,
10545 tests/synclines.at, tests/testsuite.at, tests/torture.at:
10546 Update FSF postal mail address.
10547
51f4735e
PE
105482005-05-11 Paul Eggert <eggert@cs.ucla.edu>
10549
10550 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
10551 Problem reported by Ralf Menzel.
10552
80ce3401
PE
105532005-05-01 Paul Eggert <eggert@cs.ucla.edu>
10554
10555 * tests/actions.at: Test that stack overflow invokes destructors.
10556 From Marcus Holland-Moritz.
10557 * data/yacc.c (yyerrlab): Move the code that destroys the stack
10558 from here....
10559 (yyreturn): to here. That way, destructors are called properly
10560 even if the stack overflows, or the user calls YYACCEPT or
10561 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
10562 (yyoverflowlab): Destroy the lookahead.
10563
105642005-04-24 Paul Eggert <eggert@cs.ucla.edu>
10565
10566 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
10567
72f000b0
PE
105682005-04-17 Paul Eggert <eggert@cs.ucla.edu>
10569
10570 * NEWS: Bison-generated C parsers no longer quote literal strings
10571 associated with tokens.
10572 * src/output.c (prepare_symbols): Don't escape strings,
10573 since users don't want to see C escapes.
10574 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
10575 in diagnostics.
c19683bb 10576 * tests/input.at (Torturing the Scanner): Likewise.
72f000b0
PE
10577 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
10578
1094323f
PE
105792005-04-16 Paul Eggert <eggert@cs.ucla.edu>
10580
10581 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
10582 the data size is known to be too small and we can't increase it.
10583 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
10584
ca407bdf
PE
105852005-04-15 Paul Eggert <eggert@cs.ucla.edu>
10586
10587 * src/parse-gram.y: Include quotearg.h.
10588 (string_as_id): Quote $1 before using it as a key, since the
10589 lexer no longer quotes it for us.
10590 (string_content): Don't strip quotes, since lexer no longer
10591 quotes it for us.
10592 * src/scan-gram.l: Include quotearg.h.
10593 ("\""): Omit quote.
10594 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
10595 a key, since the rest of the lexer doesn't quote it.
10596 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
10597 * tests/regression.at (Token definitions): Check for backslashes
10598 in token strings.
10599
10600 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
10601 (YYSIZE_T): Define to unsigned long int when using an older compiler.
10602 (yyparse): Revamp code to generate long syntax error message, to
10603 make it easier to translate, and to avoid problems with arithmetic
10604 overflow. Change "virtual memory" to "memory" in diagnostic, since
10605 we don't know whether the memory is virtual.
10606
1ce59070
PE
106072005-04-13 Paul Eggert <eggert@cs.ucla.edu>
10608
10609 * NEWS: Bison-generated C parsers now use the _ macro to
10610 translate strings.
10611 * data/yacc.c (_) [!defined _]: New macro.
10612 All English strings wrapped inside this macro.
10613 * doc/bison.texinfo (Bison Parser): Document _.
10614 * po/POTFILES.in: Include src/parse-gram.c, since it now
10615 includes translateable strings that parse-gram.y doesn't.
10616
a749a695
PE
106172005-04-12 Paul Eggert <eggert@cs.ucla.edu>
10618
10619 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
10620 reverting the 2004-10-11 change to this function.
10621 (symbol_check_alias_consistency): Don't call symbol_type_set
10622 if the type name is already correct.
10623 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
10624
8fb1053b
PE
106252005-03-25 Paul Eggert <eggert@cs.ucla.edu>
10626
10627 * tests/regression.at (Token definitions): Don't use a token named
10628 c, as that generates a "#define c ..." that runs afoul of buggy
10629 stdlib.h that uses the identifier c as a member of struct
10630 drand48_data. Problem reported by Horst Wente.
10631
ff498c4a
PE
106322005-03-21 Paul Eggert <eggert@cs.ucla.edu>
10633
10634 * bootstrap: Change translation URL from
10635 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
10636 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
10637 redirection glitches. Problem reported by twlevo@xs4all.nl.
10638
65211d70
PE
106392005-03-20 Paul Eggert <eggert@cs.ucla.edu>
10640
10641 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
10642 after operands; POSIX says this isn't portable for the c99 command.
10643
9577fb1f
PE
106442005-03-18 Paul Eggert <eggert@cs.ucla.edu>
10645
10646 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
10647 immediately if a data overrun has occurred; this may help us track
10648 down what may be a spurious failure on MacOS.
10649
78b178f7
PE
106502005-03-17 Paul Eggert <eggert@cs.ucla.edu>
10651
a2599d0f
PE
10652 Respond to problems reported by twlevo@xs4all.nl.
10653
10654 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
10655
78b178f7
PE
10656 * src/vcg.h: Comment fix.
10657 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
10658 (G_CMAX): Change to -1 instead of INT_MAX.
10659
10660 * data/yacc.c (yyparse): Omit spaces before #line.
78b178f7 10661
7296e729
PE
106622005-03-15 Paul Eggert <eggert@cs.ucla.edu>
10663
10664 * src/tables.c (state_number_to_vector_number): Put it inside an
10665 "#if 0", since it's not currently used. Problem reported by
10666 Roland McGrath.
10667
05ac60f3
PE
106682005-03-06 Paul Eggert <eggert@cs.ucla.edu>
10669
10670 * src/output.c (escaped_output): Renamed from
10671 escaped_file_name_output, since we now use it for symbol tags as
10672 well. All uses changed.
10673 (symbol_destructors_output, symbol_printers_output):
10674 Escape symbol tags too.
10675 Problem reported by Matyas Forstner in
10676 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
10677
10678 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
10679 not needed.
10680 * src/output.c (user_actions_output, token_definitions_output,
10681 symbol_destructors_output, symbol_printers_output): Likewise.
10682 * src/reader.c (prologue_augment): Likewise.
10683 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
10684
10685 * src/vcg.c (output_edge): Don't quote linestyle arg.
10686 Problem reported by twlevo@xs4all.nl.
10687
7eb453ac
PE
106882005-02-28 Paul Eggert <eggert@cs.ucla.edu>
10689
10690 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
10691 example, reported by Derek M Jones. Also, make the example even
10692 more outrageous, to better illustrate how bad the problem is.
10693
4c04c52a
PE
106942005-02-24 Paul Eggert <eggert@cs.ucla.edu>
10695
10696 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
10697 putsym. Typo reported by Sebastian Piping.
10698
a61e1620
PE
106992005-02-23 Paul Eggert <eggert@cs.ucla.edu>
10700
10701 * doc/bison.texinfo (Language and Grammar): some -> same
10702 (Epilogue): int he -> in the
10703 Typos reported by Sebastian Piping via Justin Pence.
10704
9ec93868
PE
107052005-02-07 Paul Eggert <eggert@cs.ucla.edu>
10706
10707 * tests/glr-regression.at (Improper handling of embedded actions
10708 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
10709 embedded actions and $-N in GLR parsers", work around an Autoconf bug
10710 with dollar signs in test names.
10711 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
10712 for a similar reason.
10713
73ce7e7e
PE
107142005-01-28 Paul Eggert <eggert@cs.ucla.edu>
10715
10716 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
10717 wants to redefine G_VIEW.
10718
2e72b98e
PE
107192005-01-27 Paul Eggert <eggert@cs.ucla.edu>
10720
10721 * src/vcg.c (get_view_str): Remove case for normal_view.
10722 Problem reported by twlevo@xs4all.nl.
10723
e0d634e5
PE
107242005-01-24 Paul Eggert <eggert@cs.ucla.edu>
10725
ccf830a4
PE
10726 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
10727 Problem reported by twlevo@xs4all.nl.
10728
e0d634e5
PE
10729 * doc/bison.texinfo: Change @dircategory from "GNU programming
10730 tools" to "Software development". Requested by Richard Stallman
10731 via Karl Berry.
10732
7bbc8cb0
PE
107332005-01-23 Paul Eggert <eggert@cs.ucla.edu>
10734
10735 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
10736 Problem reported by twlevo@xs4all.nl.
10737
08b770bc
PE
107382005-01-21 Paul Eggert <eggert@cs.ucla.edu>
10739
10740 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
10741 keyword; it's not needed with modern compilers, and it doesn't
10742 affect correctness with older compilers. Suggested by
10743 twlevo@xs4all.nl.
10744
95f22ad2
PE
107452005-01-17 Paul Eggert <eggert@cs.ucla.edu>
10746
10747 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
10748 gcc -Wswitch-default.
10749 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
10750 * data/yacc.c (yyparse): Likewise.
10751
d229d15c
PE
107522005-01-12 Paul Eggert <eggert@cs.ucla.edu>
10753
10754 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
10755 already. Let config.h define any nonstandard values.
10756
ecadd90f
PE
107572005-01-10 Paul Eggert <eggert@cs.ucla.edu>
10758
10759 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
10760 for the benefit of slower hosts. Problem reported by
10761 Nelson H. F. Beebe.
10762
213744b5
PE
107632005-01-07 Paul Eggert <eggert@cs.ucla.edu>
10764
10765 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
10766 being defined and not used.
10767 * data/lalr1.cc (yyparse): Likewise.
10768 Use "if (false)" rather than "if (0)".
10769
249d3236
PE
107702005-01-05 Paul Eggert <eggert@cs.ucla.edu>
10771
10772 * TODO: Mention that we should allow NUL bytes in tokens.
10773
987cc1fb
PE
107742005-01-02 Paul Eggert <eggert@cs.ucla.edu>
10775
10776 * src/scan-skel.l (<<EOF>>): Don't close standard output.
10777 Problem reported by Hans Aberg.
10778
08fe02d9
PE
107792005-01-01 Paul Eggert <eggert@cs.ucla.edu>
10780
10781 * src/getargs.c (version): Happy new year; update overall
10782 program copyright date from 2004 to 2005.
10783
10784 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
10785 Problem reported by Hans Aberg.
10786 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
10787 (Output file names.): Add a test for the case when standard output
10788 is closed.
10789
010c0266
PE
107902004-12-26 Paul Eggert <eggert@cs.ucla.edu>
10791
10792 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
10793 to fix an oversight in the Bison 2.0 manual.
10794
da12206a
PE
107952004-12-25 Paul Eggert <eggert@cs.ucla.edu>
10796
10797 * NEWS: Version 2.0. Reformat the existing news items since
10798 1.875, so that related items are grouped together.
3a4734aa 10799 * configure.ac (AC_INIT): Bump version to 2.0.
da12206a
PE
10800 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
10801
c935d934
PE
10802 * tests/torture.at (Exploding the Stack Size with Alloca): Set
10803 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
10804 otherwise, we're not testing alloca. Unfortunately there's no
10805 simple way to consult HAVE_ALLOCA here.
10806
da12206a
PE
10807 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
10808 for yymsg, too.
10809
10810 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
10811 hand. This avoids a warning about comparing int to size_t when
10812 GCC warnings are enabled.
10813
0a2c5137
PE
108142004-12-22 Paul Eggert <eggert@cs.ucla.edu>
10815
d7e14fc0
PE
10816 * NEWS: Bison-generated parsers no longer default to using the
10817 alloca function (when available) to extend the parser stack, due
10818 to widespread problems in unchecked stack-overflow detection.
10819 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
10820 responsibility to set it to a positive value. This lets the user
10821 specify a value that is not a preprocessor constant.
10822 * data/yacc.c (YYMAXDEPTH): Likewise.
10823 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
10824 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
10825 to be a compile-time constant. However, explain the constraints on it.
10826 Also, explain the constraints on YYINITDEPTH.
10827 (Table of Symbols): Explain that alloca is no longer the default.
10828 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
10829 to 1.
10830
0a2c5137
PE
10831 * doc/bison.texinfo (Location Default Action): Mention that n must
10832 be zero when k is zero. Suggested by Frank Heckenbach.
10833
e019c247
AD
108342004-12-22 Akim Demaille <akim@epita.fr>
10835
10836 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
10837 (parser::state_type, parser::semantic_type, parser::location_type):
10838 Private, not public.
10839 (parser::parse): Return ints, not bool.
10840 Returning a bool introduces a problem: 0 corresponds to false, and
10841 it seems weird to return false on success. Returning true changes
10842 the conventions for yyparse.
10843 Alternatively we could return void and send an exception.
10844 There is no clear consensus (yet?).
10845 (state_stack, semantic_stack, location_stack): Rename as...
10846 (state_stack_type, semantic_stack_type, location_stack_type): these.
10847 Private, not public.
10848 * tests/c++.at: New.
10849 * tests/testsuite.at, tests/Makefile.am: Adjust.
10850
72731bb7
AD
108512004-12-21 Akim Demaille <akim@epita.fr>
10852
10853 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
10854
9a0d8bec
AD
108552004-12-21 Akim Demaille <akim@epita.fr>
10856
10857 Don't impose std::string for filenames.
10858
10859 * data/lalr1.cc (b4_filename_type): New.
10860 (position::filename): Use it.
10861 (parser.hh): Move the inclusion of stack.hh and location.hh below
10862 the user code, so that needed headers for the filename type can be
10863 included first.
72731bb7
AD
10864 Forward declare them before the user code.
10865 * tests/Makefile.am (check-local, installcheck-local): Pass
10866 TESTSUITEFLAGS to the TESTSUITE.
9a0d8bec 10867
99880de5
AD
108682004-12-20 Akim Demaille <akim@epita.fr>
10869
10870 Use more STL like names: my_class instead of MyClass.
10871
10872 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
10873 (SemanticStack, SemanticType, StateStack, StateType)
10874 (TokenNumberType, Stack, Slice, Traits, Parser::location)
10875 (Parser::value): Rename as...
10876 (location_stack, location_type, rhs_number_type, semantic_stack)
10877 (semantic_type, state_stack, state_type, token_number_type, stack)
10878 (slice, traits, parser::yylloc, parser::yylval): these.
10879
10880 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
10881
9bec482e
PE
108822004-12-19 Paul Eggert <eggert@cs.ucla.edu>
10883
10884 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
10885 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
10886
f6fbd3da
PE
108872004-12-17 Paul Eggert <eggert@cs.ucla.edu>
10888
10889 Remove uses of 'short int' and 'unsigned short int'. This raises
10890 some arbitrary limits. It uses more memory but nowadays that's
10891 not much of an issue.
10892
10893 This change does not affect the generated parsers; that's a different
10894 task, as some users will want to conserve memory there.
10895
10896 Ideally we should use size_t to represent all object counts, and
10897 something like ptrdiff_t to represent signed differences of object
10898 counts; but that will require more code-cleanup than I have the
10899 time to do right now.
10900
10901 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
10902 Use size_t, not int or short int, to count objects.
10903 * src/closure.c (nritemset, closure): Likewise.
10904 * src/closure.h (nritemset, closure): Likewise.
10905 * src/nullable.c (nullable_compute): Likewise.
10906 * src/print.c (print_core): Likewise.
10907 * src/print_graph.c (print_core): Likewise.
10908 * src/state.c (state_compare, state_hash): Likewise.
10909 * src/state.h (struct state): Likewise.
10910 * src/tables.c (default_goto, goto_actions): Likewise.
10911
10912 * src/gram.h (rule_number, rule): Use int, not short int.
10913 * src/output.c (prepare_rules): Likewise.
10914 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
10915 errs, reductions): Likewise.
10916 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
10917 Likewise.
10918 * src/tables.c (vector_number, tally, action_number,
10919 ACTION_NUMBER_MINIMUM): Likewise.
10920 * src/output.c (muscle_insert_short_int_table): Remove.
10921
efeed023
AD
109222004-12-17 Akim Demaille <akim@epita.fr>
10923
10924 * data/lalr1.cc: Extensive Doxygenation.
10925 (error_): Rename as...
10926 (error): this, since it is visible to the user.
10927 Adjust callers.
10928 (Parser::message): Now an automatic variable from...
10929 (Parser::yyreport_syntax_error_): here.
10930 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
10931 Parser::error.
10932 * tests/input.at: Escape $.
10933
bc82c5a5
PE
109342004-12-16 Paul Eggert <eggert@cs.ucla.edu>
10935
10936 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
10937 Parenthesize rhs to avoid obscure problems with mistakes like
10938 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
10939 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
10940 b4_rhs_location): Likewise.
10941 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
10942 b4_rhs_location): Likewise.
10943
fd19f271
AD
109442004-12-16 Akim Demaille <akim@epita.fr>
10945
10946 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
10947 yacc.c: be sure to stay within yycheck_.
10948 * tests/actions.at: Re-enable C++ tests.
10949
10454ea4
AD
109502004-12-16 Akim Demaille <akim@epita.fr>
10951
10952 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
10953 real.
10954
c5b95ccf
AD
109552004-12-16 Akim Demaille <akim@epita.fr>
10956
10957 Use #define to handle the %name-prefix.
10958
10959 * data/glr.c, data/yacc.c: Comment changes.
10960 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
10961 so that one can refer to yylex in the parser file, and have it
10962 renamed, as is the case with other skeletons.
10963
617a8f12
AD
109642004-12-16 Akim Demaille <akim@epita.fr>
10965
10966 Move lalr1.cc internals into yy*.
10967
10968 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
10969 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
10970 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
10971 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
10972 (empty_, final_, terror_, errcode_, ntokens_)
10973 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
10974 (looka_, ilooka_, error_range_, nerrs_):
10975 Rename as...
10976 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
10977 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
10978 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
10979 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
10980 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
10981 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
10982 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
10983 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
10984 these.
10985
1e547e6e
PE
109862004-12-15 Paul Eggert <eggert@cs.ucla.edu>
10987
10988 Fix some problems reported by twlevo at xs4all.
10989 * src/symtab.c (symbol_new): Report an error if the input grammar
10990 contains too many symbols. This is better than calling abort() later.
10991 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
10992 (struct node, struct graph):
10993 Rename member expand to stretch. All uses changed.
10994 (struct graph): Remove member layoutalgorithm. All uses removed.
10995 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
10996 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
10997 All uses changed.
10998 (N_STRETCH): Rename from N_EXPAND. All uses changed.
10999
735d6bd4
AD
110002004-12-15 Akim Demaille <akim@epita.fr>
11001
11002 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
11003 Add more Doxygen comments.
11004 (symprint_, stack_print_, reduce_print_, destruct_, pop)
11005 (report_syntax_error_, translate_): Rename as...
11006 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
11007 (yypop_, yyreport_syntax_error_, yytranslate_): this.
11008
2e1f5829
AD
110092004-12-15 Akim Demaille <akim@epita.fr>
11010
11011 * data/lalr1.cc (lex_): Rename as...
11012 (yylex_): this.
11013 Move the trace here.
11014 Take the %name-prefix into account.
11015 Reported by Alexandre Duret-Lutz.
11016
a3cb6248
AD
110172004-12-15 Akim Demaille <akim@epita.fr>
11018
11019 Simplify the C++ parser constructor.
11020
11021 * data/lalr1.cc (debug_): Rename as...
11022 (yydebug_): so that the parser's internals are always in the yy*
11023 pseudo namespace.
11024 Adjust uses.
11025 (b4_parse_param_decl): Remove the leading comma as it is now only
11026 called as unique argument list.
11027 (Parser::Parser): Remove the constructor accepting a location and
11028 an initial debugging level.
11029 Remove from the other ctor the argument for the debugging level.
11030 (debug_level_type, debug_level, set_debug_level): New.
11031
11032 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
11033 constructor calls.
11034
07fed891
AD
110352004-12-15 Akim Demaille <akim@epita.fr>
11036
11037 Remove b4_root related material: failure experiment
a3cb6248 11038 (which goal was to allow to derive from a class).
07fed891
AD
11039
11040 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
11041 definitions and uses.
11042
e603eaa5
PE
110432004-12-14 Paul Eggert <eggert@cs.ucla.edu>
11044
11045 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
11046 not 2, since it's not portable to subtract 1 from the start of an
11047 array. The new item 0 is never set or used. All uses changed.
11048
11049 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
11050 the default definition of YYLLOC_DEFAULT. Problem reported
11051 by Frank Heckenbach.
11052
fafb007d
PE
110532004-12-12 Paul Eggert <eggert@cs.ucla.edu>
11054
11055 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
11056 the normal case and one for the error case. Just use the
11057 first one uniformly. Problem reported by Frank Heckenbach.
11058 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
11059 use exactly the same macro in both places.
11060 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
11061 so that the normal-case YYRHSLOC works for the error case too.
11062 All uses changed.
11063 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
11064 (YYLLOC_DEFAULT): Use the same macro as glr.c.
11065 * doc/bison.texinfo (Location Default Action): Don't claim that
11066 we have an array of locations. Use the same macro for both glr
11067 and lalr parsers. Mention YYRHSLOC. Mention what happens when
11068 the index is 0.
11069
48814dcd
PE
110702004-12-10 Paul Eggert <eggert@cs.ucla.edu>
11071
a4e1a53b
PE
11072 * HACKING: Update email addresses to send announcements to.
11073
48814dcd
PE
11074 * configure.ac (AC_INIT): Bump version to 1.875f.
11075
337116ba
PE
110762004-12-10 Paul Eggert <eggert@cs.ucla.edu>
11077
11078 * NEWS: Version 1.875e.
11079 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
11080
11081 * src/scan-skel.l: Include "complain.h", for "fatal".
11082
11083 * src/relation.h (relation_print, relation_digraph):
11084 Relation sizes are of type relation_node, not size_t (this is
11085 merely a doc fix, since the two types are equivalent).
11086 (relation_transpose): Relation sizes are of type relation_node,
11087 not int.
11088 * src/relation.c: Likewise.
11089 (top, infinity): Now of type relation_node, not int.
11090 (traverse, relation_transpose): Use relation_node, not int.
11091
11092 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
11093 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
11094 (yyparse): Remove unused local introduced in 2004-10-25 patch.
11095
11096 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
68b082af 11097 specifying whether the test should be skipped. Use it tp
337116ba 11098 specify that the [%defines %skeleton "lalr1.cc"] tests currently
68b082af 11099 fail on some hosts, and should be skipped.
337116ba 11100
da2a7671
PE
111012004-12-08 Paul Eggert <eggert@cs.ucla.edu>
11102
11103 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
11104 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
11105 unless otherwise specified below.
11106
11107 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
11108 to allocate kernel_base, kernel_items, kernel_size, since
11109 they needn't be initialized to 0.
11110 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
11111 * src/closure.c (new_closure): Likewise, for itemset.
11112 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
11113 * src/lalr.c (set_goto_map): Likewise, for temp_map.
11114 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
11115 (build_relations): Likewise for edge, states1, includes.
11116 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
11117 * src/reader.c (packgram): Likewise, for ritem, rules.
11118 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
11119 * src/relation.c (relation_digraph): Likewise for VERTICES.
11120 (relation_transpose): Likewise for new_R, end_R.
11121 * src/symtab.c (symbols_token_translations_init): Likewise for
11122 token_translations.
11123 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
11124 (token_actions): Likewise for yydefact, actrow, conflrow,
11125 conflict_list.
11126 (save_column): Likewise for froms[symno], tos[symno].
11127 (goto_actions): Likewise for state_count.
11128 (pack_table): Likewise for base, pos, check.
11129 (tables_generate): Likewise for width.
11130
11131 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
11132 for initial core. Just have a separate core, so we needn't worry
11133 about whether kernel_size and kernel_base are initialized.
11134
11135 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
11136 kernel_size, kernel_items): Remove unnecessary initialization.
11137 * src/conflicts.c (conflicts): Likewise.
11138 * src/derives.c (derives): Likewise.
11139 * src/muscle_tablc (muscle_insert): Likewise.
11140 * src/relation.c (relation_digraph): Likewise.
11141 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
11142 conflrow, conflict_table, conflict_list, table, check):
11143 Likewise.
11144
11145 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
11146 This is because all callers pass unsigned int.
11147 * src/closure.h (new_closure): Likewise.
11148
11149 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
11150 (build_relations): Initialize includes[i] in all cases.
11151 * src/reader.c (packgram): Always initialize rules[ruleno].prec
11152 and rules[ruleno].precsym. Initialize members in order.
11153 * src/relation.c (relation_transpose): Always initialize new_R[i]
11154 and end_R[i].
11155 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
11156
11157 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
11158 conflict_list[0] was always 0, but now it isn't initialized.
11159
11160 * src/table.c (table_grow): When conflict_table grew, the grown
11161 area wasn't cleared. Fix this.
11162
11163 * lib/.cvsignore: Add strdup.c, strdup.h.
11164 * m4/.cvsignore: Add strdup.m4.
11165
00baeeac
PE
111662004-12-07 Paul Eggert <eggert@cs.ucla.edu>
11167
11168 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
11169 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
11170 GOTO_NUMBER_MAXIMUM, since we occasionally compute
11171 ngotos + 1 without checking for overflow.
11172 (build_relations): Use END_NODE, not -1, to denote end of edges.
11173 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
11174 build_relations): Use goto_number, not int, for goto numbers.
11175 * src/tables.c (save_column, default_goto): Likewise.
11176
be3d9d42
AD
111772004-11-23 Akim Demaille <akim@epita.fr>
11178
11179 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
11180 of #defining from yystype.
11181 Don't typedef yystype, C++ does not need it.
11182 This lets it possible to forward declare it as union.
11183
78e526d5
PE
111842004-11-23 Paul Eggert <eggert@cs.ucla.edu>
11185
11186 * bootstrap (gnulib_modules): Add extensions.
11187 Problem reported by Jim Meyering.
11188
afbb696d
PE
111892004-11-22 Paul Eggert <eggert@cs.ucla.edu>
11190
11191 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
11192 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
11193 src/system.h, src/tables.c: XFREE -> free, to accommodate
11194 recent change to gnulib xalloc.h.
78e526d5 11195 Problem reported by Jim Meyering.
afbb696d 11196
c1f8f16a
AD
111972004-11-17 Akim Demaille <akim@epita.fr>
11198
11199 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
11200
db7e5eb5 112012004-11-17 Akim Demaille <akim@epita.fr>,
9a1e9989
AD
11202 Alexandre Duret-Lutz <adl@gnu.org>
11203
11204 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
11205 changes.
11206 (YYCDEBUG): Adjust.
11207 Use it instead of cdebug_.
11208 (Parser::debug_stream, Parser::set_debug_stream): New.
11209 (Parser::symprint_): Define cdebug_ for temporary backward
11210 compatibility.
11211 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
11212 debug_stream ().
11213
68e11668
AD
112142004-11-17 Akim Demaille <akim@epita.fr>
11215
11216 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
11217 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
11218 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
11219 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
11220
97cbc73e
PE
112212004-10-27 Paul Eggert <eggert@cs.ucla.edu>
11222
11223 * data/glr.c (yyloc_default): Remove; not used.
11224 Problem reported by Frank Heckenbach.
11225
e342c3be
AD
112262004-10-25 Akim Demaille <akim@epita.fr>
11227
11228 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
11229 Introduce another definition to address simple location arrays.
11230 (yyGLRStack): New member: yyerror_range.
11231 (yyrecoverSyntaxError, yyparse): Update it.
11232 (yyrecoverSyntaxError): Use it when shifting the error token to
11233 have an accurate range, equivalent to the one computed by both
11234 yacc.c and lalr1.cc.
11235 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
11236 that column numbers start at column 0, as per GNU Coding
11237 Standards, the others tests, and the doc.
11238 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
11239 Adjust to the above change (first column is 0).
11240 And adjust the location of the "<error>", now covering the whole
11241 line.
11242
93602feb 112432004-10-22 Akim Demaille <akim@epita.fr>
04098407 11244 and Paul Eggert <eggert@cs.ucla.edu>
93602feb
PE
11245
11246 Remove some arbitrary limits on goto numbers and relations.
11247 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
11248 initial values, since they're never used.
11249 (set_goto_map): ngotos is now unsigned, so test for overflow
11250 by seeing whether it wraps around to zero.
11251 * src/lalr.h (goto_number): Now size_t, not short int.
11252 (GOTO_NUMBER_MAXIMUM): Remove.
11253 * src/relation.c (relation_print, traverse, relation_transpose):
11254 Check for END_NODE rather than looking at sign.
11255 * src/relation.h (END_NODE): New macro.
11256 (relation_node): Now size_t, not short int.
11257
dba08b04
PE
112582004-10-22 Paul Eggert <eggert@cs.ucla.edu>
11259
11260 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
11261 keyword, not an identifier. Problem reported by Baron Schwartz in
11262 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
11263
df09ef2e
AD
112642004-10-11 Akim Demaille <akim@epita.fr>
11265
11266 * src/symtab.c (symbol_check_alias_consistency): Also check
11267 type names, destructors, and printers.
11268 Reported by Alexandre Duret-Lutz.
11269 Recode the handling of associativity and precedence in terms
11270 of symbol_precedence_set.
11271 Accept no redeclaration at all, not even equal to the previous
11272 value.
11273 (redeclaration): New.
11274 Use it to factor redeclaration complaints.
11275 (symbol_make_alias): Don't set the type of the alias, let
11276 symbol_check_alias_consistency do it as for other features.
11277 * src/symtab.h (symbol): Add new member prec_location, and
11278 type_location.
11279 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
11280 * tests/input.at (Incompatible Aliases): New.
11281
146bc99d
PE
112822004-10-09 Paul Eggert <eggert@cs.ucla.edu>
11283
11284 .cvsignore fixes to accommodate gnulib changes,
11285 and the practice of naming build directories "_build".
11286 * .cvsignore: Add "_*". Sort.
11287 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
11288 * m4/.cvsignore: Add "*_gl.m4".
11289
e503aa60
AD
112902004-10-06 Akim Demaille <akim@epita.fr>
11291
11292 * src/parse-gram.y (add_param): Fix the truncation of trailing
11293 spaces.
11294
b4a20338
AD
112952004-10-05 Akim Demaille <akim@epita.fr>
11296
11297 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
11298 whether the reducion was empty or not. This leaves room to
11299 improve the use of YYLLOC_DEFAULT in such a case.
11300 lalr1.cc is still experimental, so changing this is acceptable.
11301 And finally, there are probably not many users who changed the
11302 handling of locations in GLR, so changing is admissible too.
11303
11304 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
11305 empty reduction, set @$ to an empty location ending the previously
11306 stacked symbol.
11307 Adjust uses to make sure the code is triggered on empty
11308 reductions.
11309 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
11310 expected output: empty reductions have empty locations.
11311
f85a5e6f
AD
113122004-09-29 Akim Demaille <akim@epita.fr>
11313
11314 * data/lalr1.cc: Move towards a more standard C++ coding style
11315 for templates: Class < T > -> Class<T>.
11316
b203fc2c
AD
113172004-09-29 Akim Demaille <akim@epita.fr>
11318
11319 * data/lalr1.cc: Reinstall the former ctor, for sake of
11320 compatibility, but warn it will be removed.
11321 Move towards a more standard C++ coding style (i.e., type *var ->
11322 type* var).
11323
5b7e1e73
PE
113242004-09-27 Paul Eggert <eggert@cs.ucla.edu>
11325
3fee967f
PE
11326 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
11327 since it's less likely to work if NULs are involved in the future.
5b7e1e73 11328
0dcca5c2
AD
113292004-09-27 Akim Demaille <akim@epita.fr>
11330
11331 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
11332
6dde1c82
AD
113332004-09-27 Akim Demaille <akim@epita.fr>
11334
11335 * data/lalr1.cc (b4_parse_param_decl_1): New.
b203fc2c 11336 (b4_parse_param_decl): Use it to have different names between attribute
6dde1c82
AD
11337 and argument names.
11338 (b4_cc_constructor_call): Likewise.
11339
b233d555
AD
113402004-09-24 Akim Demaille <akim@epita.fr>
11341
11342 * src/parse-gram.y (add_param): Strip the leading and trailing
11343 blanks from a formal argument declaration.
11344 (YY_LOCATION_PRINT): New.
11345
619404e3
AD
113462004-09-24 Akim Demaille <akim@epita.fr>
11347
11348 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
11349 after the location.
11350
dd8d9022
AD
113512004-09-24 Akim Demaille <akim@epita.fr>
11352
11353 * doc/bison.texinfo (Table of Symbols): Sort.
11354
0092f063
AD
113552004-09-21 Akim Demaille <akim@epita.fr>
11356
11357 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
11358 the useless parentheses.
11359 Suggested by Paul Eggert.
11360
451364ed
AD
113612004-09-20 Akim Demaille <akim@epita.fr>
11362
11363 Let the initial-action act on the look-ahead, and use it for the
11364 "initial push" (corresponding to an hypothetical beginning-of-file).
11365 And let lalr1.cc honor %initial-action.
11366
11367 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
11368 example.
11369 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
11370 (Parser::Parser): Remove the ctor that used to initialize it.
11371 (Parser::parse): Like in the other skeletons, issue the "starting
11372 parse" message before any action.
11373 Honor %initial-action.
11374 Initialize the stacks with the lookahead.
11375 * data/yacc.c: Let $$ and @$ in %initial-action designate the
11376 look-ahead.
11377 Push them in the stacks.
11378 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
11379
18d192f0
AD
113802004-09-20 Akim Demaille <akim@epita.fr>
11381
11382 * doc/bison.texinfo (Initial Action Decl): New.
11383
b8458aa5
AD
113842004-09-20 Akim Demaille <akim@epita.fr>
11385
11386 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
11387 clearer criterion to define it.
11388 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
11389 When reducing on an empty RHS, use the latest stacked location as
11390 location.
11391 yylloc is not always available.
11392 * data/glr.c: Likewise.
11393 Also, honor initial-actions.
11394
3fc16193
AD
113952004-09-20 Akim Demaille <akim@epita.fr>
11396
11397 * data/yacc.c (YY_LOCATION_PRINT): New.
11398 Define when we know YYLTYPE's structure, i.e., when the default
11399 YYLLOC_DEFAULT is used.
11400 * data/c.m4 (b4_yysymprint_generate): Use it.
11401 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
11402 value of the result.
11403 (error_start_): Replace with...
11404 (error_range_): this location array.
11405 This allows to replace code relying on the implementation of
11406 locations by portable code.
11407 * data/yacc.c (yylerrsp): Replace with...
11408 (yyerror_range): this.
11409 Every time a token is popped, update yyerror_range[0], to have an
11410 accurate location for the error token.
11411 * data/glr.c (YY_LOCATION_PRINT): New.
11412 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
11413 deference a pointer.
11414 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
11415 report the location in %printers.
11416
11417 * src/scan-skel.l: Instead of abort, report error messages to ease
11418 understanding skeleton scanning failures.
11419
ecfe33e7
AD
114202004-09-16 Akim Demaille <akim@epita.fr>
11421
11422 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
11423 (iterator, const_iterator): these, to be more in the C++ spirit.
11424 Also, return reverse iterators so that when displaying the stack
11425 we display its bottom first.
11426 (Parser::stack_print_, Parser::reduce_print_): Match the messages
11427 from yacc.c.
11428 We should probably use vector here though.
11429
1576d44d
AD
114302004-09-16 Akim Demaille <akim@epita.fr>
11431
11432 Have more complete shift traces.
11433
11434 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
11435 to report Shifts instead of ad hoc YYDPRINTF invocations,
11436 including for the error token.
11437 * data/lalr1.cc (symprint_): Output the location.
11438 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
11439 output the location within the %printer.
11440 Activate GLR tests, at least to make sure they compile properly.
11441 They still don't pass though.
11442 * tests/calc.at: Adjust expect verbose output, since now "Entering
11443 state..." is on a different line than the "Shifting" message.
11444
9c66f418
AD
114452004-09-08 Akim Demaille <akim@epita.fr>
11446
11447 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
11448 Bison directive from the Bison file to the invocation of this
11449 macro, so that these directives are passed to
11450 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
11451 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
11452 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
11453 the extra Bison directives instead of the whole series.
11454 Change the grammar so that there are recoverable errors, and
11455 unrecoverable errors. Now we can have the parser give up before
11456 consuming the whole input. As a result we now can observe that
11457 the lookahead is freed when needed.
11458 Change the parser source to parse argv[1] instead of a hard coded
11459 string.
11460 Simplify yylex, and give a value and location to EOF.
11461 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
11462 passed directives already coded in the file.
11463 Add some tests to check the location of "error".
11464 For some tests, the C++ parser is correct, and not yacc.c.
11465 For other tests, they provide different, but unsatisfying, values,
11466 so keep the C++ value so that at least one parser is "correct"
11467 according to the test suite.
11468 (Actions after errors): Remove, this is subsumed by the
11469 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
11470
52d5733f
AD
114712004-09-06 Akim Demaille <akim@epita.fr>
11472
11473 * data/lalr1.cc: Adjust the indentation of the labels.
04098407 11474 (Parser::pop): New.
52d5733f
AD
11475 Use it.
11476
a0e68930
AD
114772004-09-06 Akim Demaille <akim@epita.fr>
11478
11479 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
11480 argument, an informative message.
11481 Call YY_SYMBOL_PRINT.
11482 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
11483 * data/lalr1.cc (destruct_): Likewise.
11484 In addition, no longer depend on b4_yysymprint_generate and
11485 b4_yydestruct_generate to generate these functions, do it "by
11486 hand".
11487
e757bb10
AD
114882004-09-03 Akim Demaille <akim@epita.fr>
11489
11490 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
11491 invoked, yydestruct the lookahead.
11492 * tests/calc.at (Calculator $1): Update the expected lengths of
11493 traces: there is an added line for the discarded lookahead.
11494 * doc/bison.texinfo (Destructor Decl): Some rewording.
11495 Define "discarded" symbols.
11496
0fe1f06d
AD
114972004-09-02 Akim Demaille <akim@epita.fr>
11498
11499 * data/lalr1.cc (translate_, destruct_): No reason to be static.
11500
284acc8b
AD
115012004-09-02 Akim Demaille <akim@epita.fr>
11502
11503 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
11504 (YYDSYMPRINTF): Rename as...
11505 (YY_SYMBOL_PRINT): this.
11506 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
11507 two.
11508 Use it instead of direct symprint_ calls.
11509 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
11510 one.
11511
a5eb1ed2
AD
115122004-09-02 Akim Demaille <akim@epita.fr>
11513
b7c72fe1
AD
11514 * data/lalr1.cc (b4_yysymprint_generate): New.
11515 (symprint_): New member function, defined when YYDEBUG.
11516 Use it consistently instead of token/nterm debugging output by
11517 hand.
a5eb1ed2
AD
11518 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
11519 %printer calls to use cdebug_ when using lalr1.cc.
11520
417141dd
AD
115212004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
11522
11523 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
11524 with #ifdef YYDEBUG.
11525
2fa09258
AD
115262004-08-26 Akim Demaille <akim@epita.fr>
11527
11528 * doc/bison.texinfo (Implementing Loops): Rename as...
11529 (Implementing Gotos/Loops): this.
11530
9378b508
PE
115312004-08-13 Paul Eggert <eggert@cs.ucla.edu>
11532
11533 Adjust to latest gnulib.
11534 * bootstrap (gnulib_modules): Add xalloc-die.
11535 Set LC_ALL=C so that file names sort consistently.
11536 Prefer the gnulib copies of gettext.m4, glibc21.m4,
11537 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
11538 uintmax_t.m4, ulonglong.m4.
11539 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
11540 po.m4 since we are now using _gl.m4 instead.
11541
87a8ad5c
PE
115422004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
11543
11544 * src/scan-action.l: Remove. Scanning of semantic actions is
11545 handled in scan-gram.l.
11546
dca81a78
PE
115472004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
11548
11549 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
11550
11551 * src/location.h (struct): The file member is a uniqstr.
11552 (equal_boundaries): Use UNIQSTR_EQ for comparison.
11553
c9cbf7c5
PE
115542004-07-22 Paul Eggert <eggert@cs.ucla.edu>
11555
11556 Fix bug with non-%union parsers that have printers or destructors,
11557 which led to a Bison core dump. Reported by Peter Fales in
11558 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
2fa09258 11559
c9cbf7c5
PE
11560 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
11561 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
11562 not to our own type.
11563 * src/output.c (symbol_destructors_output, symbol_printers_output):
11564 Don't assume %union.
11565 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
11566 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
11567 UNION-FLAG. All callers changed.
11568 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
11569 Use type char, not unsigned int, when declaring an array of char;
11570 this lets us remove a cast.
11571 (Printers and Destructors): Add non-%union test cases.
11572
fa7e68c3
PE
115732004-06-21 Paul Eggert <eggert@cs.ucla.edu>
11574
11575 * doc/bison.texinfo: Minor editorial changes, mostly to the new
11576 GLR writeups. E.g., avoid frenchspacing and the future tense,
11577 change "lookahead" to "look-ahead", and change "wrt" to "with
11578 respect to".
2fa09258 11579
fa7e68c3
PE
115802004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11581
11582 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
11583 New sections, split off from the GLR Parsers section. Put the new
11584 Simple GLR Parser near the start of the GLR section, for clarity.
11585 Rewrite connective text.
11586
99a9344e
PE
115872004-06-21 Frank Heckenbach <frank@g-n-u.de>
11588
11589 * doc/bison.texinfo (Simple GLR Parsers): New section.
11590
8dd162d3
PE
115912004-06-21 Paul Eggert <eggert@cs.ucla.edu>
11592
11593 * NEWS, TODO, doc/bison.texinfo:
11594 Use "look-ahead" instead of "lookahead", to be consistent.
11595 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
11596 while we're fixing "look-ahead".
11597 * src/conflicts.c (shift_set): Renamed from shiftset.
11598 (look_ahead_set): Renamed from lookaheadset.
11599 * src/print.c: Likewise.
11600 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
11601 name for "lookahead".
11602 (report_types, usage): Likewise.
11603 * src/getargs.h (report_look_ahead_tokens): Renamed from
11604 report_lookaheads.
11605 * src/lalr.c (compute_look_ahead_tokens): Renamed from
11606 compute_lookaheads.
11607 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
11608 (look_ahead_tokens_print): Renamed from lookaheads_print.
11609 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
11610 state_rule_lookaheads_print.
11611 * src/state.h: Likewise.
11612 (reductions.look_ahead_tokens): Renamed from lookaheads.
11613 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
11614 AT_DATA_LOOKAHEADS_GRAMMAR.
11615
57a90331
PE
116162004-06-03 Paul Eggert <eggert@cs.ucla.edu>
11617
11618 * README: Update location of patched M4 distribution.
11619
8ed3234a
PE
116202004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
11621
11622 Don't assume the C++ compiler takes the same arguments as the C compiler
11623 (trivial change).
11624 * configure.ac (O0CXXFLAGS): New var.
11625 * tests/atlocal.in (CXXFLAGS): Use it.
11626
07971983
PE
116272004-05-29 Paul Eggert <eggert@cs.ucla.edu>
11628
11629 Fix some "make check" problems with C++ reported by
11630 Albert Chin-A-Young for Tru64 C++ in this thread:
11631 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
11632
11633 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
11634 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11635 Output to a .cc file for C++, not to a .c file.
11636 * tests/calc.at (AT_CHECK_CALC): Likewise.
11637 * tests/regression.at (AT_CHECK_DANCER): Likewise.
11638 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
11639
29058652
PE
116402004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
11641
11642 * tests/calc.at, tests/actions.at: Workaround for SGI
11643 C++ compiler. (trivial change)
11644
62cb8a99
PE
116452004-05-27 Paul Eggert <eggert@cs.ucla.edu>
11646
fd418816
PE
11647 Spent a few hours checking out which prerequisite versions the
11648 current sources actually require. I went all the way back to
11649 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
11650 a seemingly endless set of combinations of versions more recent
11651 than that. The bottom line is that the current sources require
11652 fairly recent versions of the build tools, and it'll be some work
11653 to change this.
11654 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
11655 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
11656 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
11657 Add comments explaining why those particular versions are
11658 currently needed.
2fa09258 11659
62cb8a99
PE
11660 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
11661 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
161a71f3 11662 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
62cb8a99
PE
11663
11664 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
11665 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
11666
caa52c10
PE
116672004-05-26 Paul Eggert <eggert@cs.ucla.edu>
11668
11669 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
11670 0.11.5. Suggested by Bruno Haible.
11671 * bootstrap: Remove gettext version checking.
11672
11673 * doc/bison.texinfo (Decl Summary): Also mention that %union
11674 can depend on prerequisite types. Problem reported by Tim
11675 Van Holder.
11676
4bfd5e4e
PE
116772004-05-25 Paul Eggert <eggert@cs.ucla.edu>
11678
2cef3017
PE
11679 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
11680 * README-alpha: Don't tell people not to package this.
11681
b9c85d5c
PE
11682 * bootstrap: Don't assume $(...) works; use `...` instead.
11683 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
11684 gettext better.
11685
4bfd5e4e
PE
11686 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
11687 put into the -d output file, and mention what to do if YYSTYPE is
11688 defined as a macro.
11689
6a36ff94
PE
116902004-05-24 Paul Eggert <eggert@cs.ucla.edu>
11691
6712933e
PE
11692 Undo change made earlier today: it caused autopoint to not bring
11693 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
11694 autopoint's.
11695
11696 * bootstrap: Check that gettext version matches what's in
11697 configure.ac. Warn users to ignore robots.txt ERROR 404.
11698 * bootstrap: Undo today's earlier change (logged below).
11699 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
b9c85d5c 11700
6a36ff94
PE
11701 The gettext version checking is causing more trouble than it's
11702 curing; remove it. Problem reported by Paul Hilfinger.
11703
11704 * bootstrap: Issue a warning that one can expect a message
11705 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
11706 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
11707
209ea708
PE
117082004-05-23 Paul Eggert <eggert@cs.ucla.edu>
11709
11710 Ensure that the C++ compiler used for testing actually works on a
11711 simple test program; if not, skip the C++-related tests. Problem
11712 reported by Vin Shelton in:
161a71f3 11713 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
209ea708
PE
11714
11715 * m4/cxx.m4: New file.
11716 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
11717 * tests/atlocal.in (BISON_CXX_WORKS): Add.
11718 * tests/local.at (AT_COMPILE_CXX): Use it.
11719
41ca2549
PE
117202004-05-21 Paul Eggert <eggert@cs.ucla.edu>
11721
383e69dc
PE
11722 * data/glr.c (yylloc): Output this macro even if locations are not
11723 being generated, as the GLR parser needs it even in that case.
11724 Problem reported by Troy A. Johnson
11725 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
11726
41ca2549
PE
11727 * configure.ac (AC_INIT): Update to 1.875e.
11728
e476c87d
PE
117292004-05-21 Paul Eggert <eggert@cs.ucla.edu>
11730
11731 * NEWS: Version 1.875d.
11732 * configure.ac (AC_INIT): Likewise.
11733 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
11734
11735 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
11736 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
11737 lalr1.cc runs afoul of the first, and the last two are no longer
11738 supported by GCC 3.4.0.
11739 * README: Mention GNU m4 1.4 or later; mention m4 patches.
11740 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
11741
233a88ad
PE
117422004-05-06 Paul Eggert <eggert@cs.ucla.edu>
11743
11744 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
11745 unsigned int, for compatibility with latest gnulib hash module.
11746 * src/state.c (state_hash, state_hasher): Likewise.
11747 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
11748 * src/uniqstr.c (hash_uniqstr): Likewise.
e476c87d 11749
12ffdd28
PE
117502004-05-03 Paul Eggert <eggert@cs.ucla.edu>
11751
11752 * NEWS: Unescaped newlines are no longer allowed in char & strings.
11753
11754 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
11755 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
11756 character and string literals.
11757 (unexpected_end): New function.
11758 (unexpected_eof): Use it.
11759 (unexpected_newline): New function.
11760 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
11761 actions.
e476c87d 11762
12ffdd28
PE
11763 * NEWS: Document %expect-rr.
11764
11765 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
11766 Fix typo by replacing $1 with $option.
11767 Remove more 'intl'-related files.
9668e2be 11768 Don't DEFUN AM_INTL_SUBDIR twice.
12ffdd28
PE
11769
11770 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
11771 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
11772 strtoul.c.
11773 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
11774 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
11775 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
11776 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
11777 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
11778 * src/.cvsignore: Add *.output.
11779
11780 * src/parse-gram.y: Put copyright notice inside %{ %} so it
11781 gets copied to the output file.
e476c87d 11782
1f65350a
PE
117832004-04-28 Paul Eggert <eggert@twinsun.com>
11784
11785 Get files from the gnulib and po repositories, instead of relying
11786 on them being in our CVS. Upgrade to latest versions of gnulib
11787 and Automake.
11788
11789 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
11790 * bootstrap: Bootstrap from gnulib and po repositories.
11791 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
11792 * README-cvs: Document these changes. Remove version numbers from
11793 mentions of build tools, since they change so often. Mention Flex.
11794
11795 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
11796 (gl_USE_SYSTEM_EXTENSIONS): Add.
12ffdd28
PE
11797 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
11798 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
1f65350a 11799 does this for us.
12ffdd28
PE
11800 (AC_ISC_POSIX): Remove; we no longer support this
11801 ancient OS, as it gets in the way of latest Autoconf & gnulib.
1f65350a
PE
11802 (AC_HEADER_STDC): Remove: we now assume C89 or better.
11803 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
11804 Do not check for C89 headers, except for locale.h which is used
11805 by the Yacc library and must port to K&R hosts.
11806 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
11807 Do not check for C89 functions, except for setlocale which is
11808 used by the Yacc library.
11809 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
11810 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
11811 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
11812 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
11813 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
11814 AM_GNU_GETTEXT): Remove; now done by:
11815 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
11816 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
11817 for us.
11818
11819 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
11820 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
11821 Define to empty, as gnulib.mk will do the rest for us.
11822 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
11823 for us.
11824 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
11825 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
11826
11827 * src/files.c: Include gnulib's xstrndup.h.
11828
11829 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
11830 (REALLOC): Use xnrealloc, for likewise.
11831 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
11832 (strnlen, memrchr): Remove decls; functions no longer used.
11833 Include <stpcpy.h>.
11834
11835 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
11836 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
11837 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
11838 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
11839 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
11840 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
11841 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
11842 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
11843 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
11844 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
11845 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
11846 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
11847 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
11848 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
11849 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
11850 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
11851 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
11852 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
11853 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
11854 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
11855 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
11856 Remove, as these files are now generated automatically
11857 by bootstrap or automake.
11858
11859 * po/ChangeLog: Remove: all but one entry was a duplicate
11860 of this file, and I moved that 2000-11-02 entry here.
11861
11862 * config/.cvsignore: Add Makefile, depcomp, install-sh.
11863 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
11864 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
11865 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
11866 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
11867 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
11868 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
11869 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
11870 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
11871 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
11872 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
11873 xstrndup.h.
11874 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
11875 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
11876 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
11877 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
11878 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
11879 * src/.cvsignore: Remove *_.c.
11880
11881
11882 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
11883 support it. (The latest stable gzip doesn't.)
11884
118852004-04-27 Paul Eggert <eggert@twinsun.com>
11886
11887 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
11888 case, as stos_ is now used by destructors due to the 2004-02-09
11889 change.
11890
11891 Remove more K&R C support.
11892 * lib/libiberty.y (PARAMS): Remove. All uses removed.
11893 * lib/subpipe.c (errno): Remove decl.
11894 Include <stdlib.h> unconditionally.
11895 (EXIT_FAILURE): Remove macro.
11896 * src/complain.c (vfprintf, strerror): Remove.
11897 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
11898 unconditionally.
11899 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
11900 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
11901 (strchr, strspn, memchr): Remove decls.
11902 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
11903 unconditionally. Do not declare perror.
11904 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
11905 unconditionally.
11906
11907 * src/complain.c (_): Remove useless defn, as system.h defines this.
11908
11909 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
11910 with latest obstack.h.
11911 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
11912 to procedure types, as obstack.h now does that for us.
11913 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
11914
11915 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
11916 so that this include file can stand alone.
11917 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
11918 does this now. Include subpipe.h first after config.h, to
11919 test whether it can stand alone.
11920
11921 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
11922 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
11923 unused declaration.
11924
11925 * tests/synclines.at (%union synch line): Put a dummy member in
11926 the union, because empty unions aren't allowed in C. Caught
11927 by GCC 3.4.0.
11928
4f16766c
PE
119292004-04-13 Jim Meyering <jim@meyering.net>
11930
11931 * src/conflicts.c (conflicts_print): Correct format string typo:
11932 use `%%' to produce literal `%'. (trivial change)
11933
779e7ceb
PE
119342004-03-30 Paul Eggert <eggert@twinsun.com>
11935
11936 * src/getargs.c (version): Update copyright year to 2004.
11937
11938 * data/c.m4 (b4_int_type): Use 'short int' rather than
11939 'short', and similarly for 'long', 'unsigned', etc.
11940 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
11941 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
11942 yy_yypstack, yydumpstack): Likewise.
11943 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
11944 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
11945 Likewise.
11946 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
11947 yy_stack_print, yyparse): Likewise.
11948 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
11949 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
11950 * lib/bitset.c (bitset_print): Likewise.
11951 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
11952 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
11953 * lib/bitsetv.c (bitsetv_dump): Likewise.
11954 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
11955 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
11956 Likewise.
11957 * src/LR0.c (allocate_itemsets): Likewise.
11958 * src/gram.h (rule_number, rule): Likewise.
11959 * src/lalr.h (goto_number): Likewise.
11960 * src/nullable.c (nullable_compute): Likewise.
11961 * src/output.c (prepare_rules): Likewise.
11962 * src/relation.c (relation_print, relation_digraph): Likewise.
11963 * src/relation.h (relation_node): Likewise.
11964 * src/state.h (state_number, transitions, errs, reductions,
11965 struct state): Likewise.
11966 * src/symtab.h (symbol_number, struct symbol): Likewise.
11967 * src/tables.c (vector_number, tally, action_number,
11968 default_goto, goto_actions): Likewise.
11969 * tests/existing.at (GNU Cim Grammar): Likewise.
11970 * tests/regression.at (Web2c Actions): Likewise.
11971
11972 * src/output.c (muscle_insert_short_int_table): Renamed from
11973 muscle_insert_short_table. All uses changed.
11974
d6328241
PH
119752004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
11976
11977 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
11978 (declaration): Replace expected_conflicts with expected_sr_conflicts.
11979 Add %expect-rr rule.
4f16766c 11980
d6328241
PH
11981 * src/scan-gram.l: Recognize %expect-rr.
11982
4f16766c 11983 * src/conflicts.h (expected_sr_conflicts): Rename from
d6328241 11984 expected_conflicts.
4f16766c 11985 (expected_rr_conflicts): Declare.
d6328241
PH
11986
11987 * src/conflicts.c (expected_sr_conflicts): Rename from
11988 expected_conflicts.
11989 (expected_rr_conflicts): Define.
11990 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
11991 for GLR parsers.
11992 Use expected_sr_conflicts in place of expected_conflicts.
11993 Warn if expected_rr_conflicts used in non-GLR parser.
4f16766c 11994
d6328241 11995 * doc/bison.texinfo: Add documentation for %expect-rr.
4f16766c 11996
1452af69
PE
119972004-03-08 Paul Eggert <eggert@gnu.org>
11998
11999 Add support for hex token numbers. Suggested by Odd Arild Olsen in
161a71f3 12000 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
1452af69
PE
12001
12002 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
12003 in lalr1.cc.
12004 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
12005 * src/scan-gram.l (scan_integer): New function.
12006 ({int}): Use it.
12007 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
12008 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
12009 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
12010 Say "long int", not "long", for uniformity with GNU style.
12011
006d217d
PE
120122004-02-25 Paul Eggert <eggert@twinsun.com>
12013
12014 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
12015 compilers. This fixes a problem with Intel's C++ compiler being
12016 chatty, reported by Guido Trentalancia in
161a71f3 12017 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
006d217d 12018
c2729758
ADL
120192004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
12020
12021 Support %destructor and merge error locations in lalr1.cc.
12022
12023 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
12024 (Parser::stos_): Define unconditionally.
12025 (Parser::destruct_): New method. Generate its body with
12026 b4_yydestruct_generate.
12027 (Parser::error_start_): New attribute.
12028 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
12029 token which are discarded.
12030 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
12031 error_start_ when erroneous token are discarded.
12032 (Parser::parse) <yyerrlab1>: Compute the location of the error
12033 token so that it covers all the discarded tokens.
12034 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
12035 it can be called with `%skeleton "lalr1.cc"', and do that.
12036
dd0e0635
PE
120372004-02-02 Paul Eggert <eggert@twinsun.com>
12038
12039 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
12040 $(top_srcdir)/lib and ../lib. This fixes a bug reported
12041 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
12042 There's no need to mention top_builddir since Automake does that
12043 for us.
12044 (INCLUDES): Remove, as Automake says it's obsolescent.
12045 Contents migrated into AM_CPPFLAGS as described above.
12046 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
12047
120482004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
12049
12050 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
12051 (yyreportSyntaxError): Handle case where lookahead token is
12052 YYEMPTY.
12053
be16239b
PH
120542004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12055
12056 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
12057 resulting parsers are compilable with C++.
12058
5fa90832
PE
120592003-12-23 Paul Eggert <eggert@twinsun.com>
12060
12061 * config/depcomp, config/install-sh: Sync with Automake 1.8.
12062 * src/output.c (output_skeleton): Rename local var.
12063 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
12064 Bison tokens, as this runs afoul of the 2003-10-07 change that
12065 disallowed NUL bytes in character constants or string literals.
12066
12067 * tests/local.at: Require Autoconf 2.59's Autotest.
12068 * tests/testsuite.at: Don't include local.at, since we now assume
12069 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
12070 including it.
12071 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
12072 multiple inclusion warnings.
dd0e0635 12073
b165c324
AD
120742003-12-02 Akim Demaille <akim@epita.fr>
12075
12076 * doc/bison.texinfo (How Can I Reset the Parser): More about start
12077 conditions.
12078 From Bruno Haible.
12079
26e06a21
ADL
120802003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
12081
12082 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
12083
92ac3705
PE
120842003-10-07 Paul Eggert <eggert@twinsun.com>
12085
6a5ecb38
PE
12086 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
12087 if testsuite doesn't exist.
12088
92ac3705
PE
12089 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
12090 literals, unfortunately.
12091 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
12092 Complain about NUL bytes in character constants or string literals.
12093
91d2c560
PE
120942003-10-05 Paul Eggert <eggert@twinsun.com>
12095
12096 * NEWS: Don't document %no-default-prec, as it's still
12097 too experimental.
12098 * doc/bison.texinfo: Document %no-default-prec only if
12099 the defaultprec flag is set. Normally it's not.
12100
0cc3da3a
PE
121012003-10-04 Paul Eggert <eggert@twinsun.com>
12102
12103 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
12104 non-modifiable lvalue, instead of a modifiable one.
12105 * doc/bison.texinfo (Actions): Document that $$ can
12106 be assigned to. Do not claim that $$ and $N are
12107 array element references: user code should not rely on this.
12108
22fccf95
PE
121092003-10-01 Paul Eggert <eggert@twinsun.com>
12110
12111 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
12112 (grammar_declaration): Use it.
12113 * src/scan-gram.l: New token %no-default-prec.
12114 * tests/conflicts.at: Revamp tests to use %no-default-prec.
12115 * NEWS, doc/bison.texinfo: Document the above.
12116
fc8f2965
AD
121172003-10-01 Akim Demaille <akim@epita.fr>
12118
12119 VCG no longer supports long_straight_phase.
12120
12121 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
12122 * src/print_graph.c (print_graph): Adjust.
12123
39a06c25
PE
121242003-09-30 Frank Heckenbach <frank@g-n-u.de>
12125 and Paul Eggert <eggert@twinsun.com>
12126
12127 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
12128 Table of Symbols): Document %default-prec.
12129 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
12130 (grammar_declaration): Set default_prec on %default-prec.
12131 * src/scan-gram.l (%default-prec): New token.
12132 * src/reader.h (default_prec): New flag.
12133 * src/reader.c: Likewise.
12134 (packgram): Handle it.
12135 * tests/conflicts.at (%default-prec without %prec,
12136 %default-prec with %prec, %default-prec 1): New tests.
fc8f2965 12137
39a06c25
PE
121382003-09-30 Paul Eggert <eggert@twinsun.com>
12139
12140 * tests/testsuite.at: Include local.at, not input.at, fixing
12141 a typo in the 2003-08-25 patch.
12142
62b6aef9
AD
121432003-08-27 Akim Demaille <akim@epita.fr>
12144
12145 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
12146 GCC warnings.
12147
89e1cc61
AD
121482003-08-26 Akim Demaille <akim@epita.fr>
12149
12150 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
12151 "<\#" to avoid magic from Gnus when posting parts of this script.
12152
a08460b0
AD
121532003-08-26 Akim Demaille <akim@epita.fr>
12154
12155 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
12156 (Parser::parse): here.
12157 Adjust: nerrs and errstatus is now replaced by...
12158 (Parser::nerrs_, Parser::errstatus_): New.
12159
603f1cfd
AD
121602003-08-25 Akim Demaille <akim@epita.fr>
12161
12162 * config/announce-gen, Makefile.cfg: New.
12163 * Makefile.am: Adjust.
12164 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
12165 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
12166
cd3684cf
AD
121672003-08-25 Akim Demaille <akim@epita.fr>
12168
12169 When reducing initial empty rules, Bison parser read an initial
12170 location that is not defined. This results in garbage, and that
12171 affects Bison's own parser. Therefore we need (i) to extend Bison
12172 to support a means to initialize this location, and (ii) to use
12173 this CVS Bison to fix CVS Bison's parser.
12174
12175 * src/reader.h, reader.c (epilogue_augment): Remove, replace
12176 with...
12177 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
12178 * src/parse-gram.y: Adjust.
12179 (%initial-action): New.
12180 (%error-verbose): Since we require CVS Bison, there is no reason
12181 not to use it.
12182 * src/scan-gram.l: Adjust.
12183 * src/Makefile.am (YACC): New, to make sure we use our own parser.
12184 * data/yacc.c (yyparse): Use b4_initial_action.
12185
4e03e201
AD
121862003-08-25 Akim Demaille <akim@epita.fr>
12187
12188 * doc/bison.texinfo: Don't promote stdout for error messages.
12189
8c182d05
AD
121902003-08-25 Akim Demaille <akim@epita.fr>
12191
12192 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
12193 From Alexandre Duret-Lutz.
12194
6a60c4cf
PE
121952003-08-25 Akim Demaille <akim@epita.fr>
12196
12197 Version 1.875c.
12198
25f66e1a
AD
121992003-08-25 Akim Demaille <akim@epita.fr>
12200
12201 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
12202 Use them.
12203
5348bfbe
AD
122042003-08-25 Akim Demaille <akim@epita.fr>
12205
12206 * data/lalr1.cc (Parser::reduce_print_): New.
12207 Use it.
12208
47301314
AD
122092003-08-25 Akim Demaille <akim@epita.fr>
12210
12211 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
12212 error recovery loops. This patch is based on
161a71f3 12213 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
47301314
AD
12214 Also, augment the similarity between lalr1.cc and yacc.c.
12215 Note: the locations of error recovery rules are not correct yet.
12216
12217 * data/lalr1.cc: Comment changes to augment the similarity between
12218 lalr1.cc and yacc.c.
12219 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
12220 (yyerrlab1): Remove, but where it used to be (now the bottom part of
12221 yyerrlab), when hitting EOF, pop the whole stack here instead of
12222 merely falling thru the default error handling mechanism.
12223 (yyerrorlab): New label, with the old contents of YYERROR,
12224 plus the following change: pop the stack of rhs corresponding
12225 to the production that invoked YYERROR. That is how Yacc
12226 behaves (required by POSIX).
12227 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
12228 fail.
12229
1f7a61ff
AD
122302003-08-25 Akim Demaille <akim@epita.fr>
12231
12232 Tune local.at so that people can "autom4te -l autotest calc.at -o
12233 calc" for instance, to extract a sub test suite.
12234
12235 * tests/testsuite.at: Move the initialization, Autotest version
12236 requirement, and AT_TESTED invocation into...
12237 * tests/local.at: here.
12238 * tests/testsuite.at: Include it for compatibility with Autoconf
12239 2.57.
12240 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
12241 be ignore.
12242
327b5b56
PE
122432003-08-04 Paul Eggert <eggert@twinsun.com>
12244
12245 Rework code slightly to avoid gcc -Wtraditional warnings.
12246 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
12247 The returned value is now stored in *YY0. All callers changed.
12248 * src/output.c (merge_output): Adjust to the above change.
12249
0051e3ed
PE
122502003-07-26 Paul Eggert <eggert@twinsun.com>
12251
12252 * data/glr.c (YYASSERT): New macro.
12253 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
12254 yyresolveStates, yyprocessOneStack):
12255 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
12256 Derived from a suggestion by Frank Heckenbach.
1f7a61ff 12257
137437c6
PE
122582003-07-25 Paul Eggert <eggert@twinsun.com>
12259
5b620e06
PE
12260 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
12261 for portability to K&R C (after ansi2knr, presumably). See
161a71f3 12262 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
5b620e06
PE
12263 by Frank Heckenbach, though I have omitted the structure-initialization
12264 part of his glr-knr.diff patch since I recall that the Portable
12265 C Compiler didn't require that change.
12266
137437c6
PE
12267 Let the user specify how to allocate and free memory.
12268 Derived from a suggestion by Frank Heckenbach in
161a71f3 12269 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
137437c6
PE
12270 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
12271 All uses of free, malloc, realloc changed to use these macros,
12272 and unnecessary casts removed.
12273 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
12274
ddb85ca5
PE
122752003-07-06 Matthias Mann <MatthiasMann@gmx.de>
12276
12277 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
12278 use s.empty() rather than s == "" to test for empty string; see
161a71f3 12279 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
ddb85ca5
PE
12280 (trivial change)
12281
39910e09
AD
122822003-06-25 Akim Demaille <akim@epita.fr>
12283
12284 * config/depcomp, config/install-sh: Update from masters.
12285
0ae99356
PE
122862003-06-20 Paul Eggert <eggert@twinsun.com>
12287
12288 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
12289 and return properly parenthesized result.
12290 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
12291 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
12292 Remove unnecessary parentheses from uses.
12293 * doc/bison.texinfo (Location Default Action): Describe the
12294 conventions for parentheses.
12295
cd05d13c
PE
122962003-06-19 Paul Eggert <eggert@twinsun.com>
12297
81fd08ca
PE
12298 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
12299 yyreportTree): Do not assume that size_t is the same width as int,
12300 when printing sizes. Print sizes using an unsigned format.
12301 Problem reported by Frank Heckenbach in
161a71f3 12302 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
4dcf140b 12303
cd05d13c
PE
12304 Port to Forte Developer 7 C compiler.
12305 * data/glr.c (struct YYLTYPE): If locations are not being used,
12306 declare a single dummy member, as empty structs do not conform
12307 to the C standard.
12308 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
12309 the Forte Developer 7 C compiler complains that end-of-loop
12310 code is not reached.
12311
4dcf140b
PE
123122003-06-17 Paul Eggert <eggert@twinsun.com>
12313
12314 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
12315 avoid warnings from picky compilers about redefinition of PARAMS.
12316
8dd76bee
PE
123172003-06-17 Paul Eggert <eggert@twinsun.com>
12318
12319 Version 1.875b.
12320
12321 * NEWS: Document 1.875b.
12322
12323 * lib/bbitset.h: Do not include config.h; that's the includer's job.
12324 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
12325 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
12326 Don't use 'index' in comments, as it's a builtin fn on some hosts.
12327 * lib/bitset_stats.c: Include gettext.h unconditionally, as
12328 per recent gettext manual's suggestion.
12329 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
12330 Use prototypes, not old-style definitions.
12331 * lib/lbitset.c (lbitset_unused_clear): Likewise.
12332 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
12333 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
12334 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
12335 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
12336 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
12337 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
12338 vbitset_or_and_cmp, vbitset_copy): Likewise.
12339
12340 * lib/libiberty.h: Do not include config.h; that's the includer's job.
12341 Do not include <stdlib.h>.
12342 (PARAMS): Define unconditionally for C89.
12343 (ATTRIBUTE_NORETURN): Remove.
12344 (ATTRIBUTE_UNUSED): Define unconditionally.
12345
12346 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
161a71f3 12347 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
8dd76bee
PE
12348 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
12349 * lib/vbitset.c, lib/vbitset.h: New files.
12350 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
12351 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
12352 from libbitset.
12353
12354 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
12355 `How Can I Reset @code{yyparse}', since texinfo does not allow
12356 arbitrary @ in node names.
12357
12358 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
12359 shouldn't be needed according to the gettext 0.12.1 documentation
12360 but which seem to be needed anyway: codeset.m4 glibc21.m4
f8e8262e 12361 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
8dd76bee 12362 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
f8e8262e 12363 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
cd05d13c 12364
8dd76bee
PE
12365 * lib/.cvsignore: Add stdbool.h.
12366 * m4/.cvsignore: Add nls.m4, po.m4.
12367
12368 Upgrade to CVS gnulib.
12369 * stdbool_.h: File renamed from stdbool.h.in.
12370 * configure.ac (AM_STDBOOL_H): Invoke this instead of
12371 AC_HEADER_STDBOOL.
12372 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
12373 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
12374 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
12375 (MOSTLYCLEANFILES): New var.
12376 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
12377 (stdbool.h): New rule.
12378 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
12379 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
12380 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
12381 m4/quote.m4: Upgrade to today's gnulib.
12382
12383 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
12384 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
12385 the tests right now.
12386 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
12387 yyerror are declared before use; C99 requires this.
12388
25005f6a
PH
123892003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12390
12391 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
12392 first.
12393 (yyrecoverSyntaxError): Correct the logic for setting and testing
12394 yyerrState.
12395 Correct comment on handling EOF.
12396 Allow states with only a default reduction, rather than failing
8dd76bee 12397 (I can't quite reconstruct why these were not allowed before).
25005f6a 12398
137437c6 12399 Fixes to avoid problem that $-N rules in GLR parsers can cause
25005f6a 12400 buffer overruns, corrupting state.
8dd76bee
PE
12401
12402 * src/output.c (prepare_rules): Output max_left_semantic_context
25005f6a
PH
12403 definition.
12404 * src/reader.h (max_left_semantic_context): New variable declaration.
12405 * src/scan-gram.l (max_left_semantic_context): Define.
12406 (handle_action_dollar): Update max_left_semantic_context.
12407 * data/glr.c (YYMAXLEFT): New definition.
12408 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
12409 (yyresolveAction): Ditto.
12410
12411 Fixes to problems with location handling in GLR parsers reported by
12412 Frank Heckenbach (2003/06/05).
12413
12414 * data/glr.c (YYLTYPE): Make trivial if locations not used.
12415 (YYRHSLOC): Add parentheses, and define only if locations used.
12416 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
12417 locations not used.
12418 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
12419 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
8dd76bee 12420
25005f6a
PH
12421 * tests/cxx-type.at: Exercise location information; update tests
12422 to differentiate output with and without locations.
8dd76bee 12423 Remove forward declarations of yylex and yyerror---caused errors
25005f6a
PH
12424 because default YYLTYPE not yet defined.
12425 Change semantic actions to compute strings, rather than printing
12426 them directly (to test proper passing of semantics values). Change
12427 output to prefix notation and update test data and expected results.
12428 (yylex): Track locations.
12429 (stmtMerge): Return value rather than printing, and include arguments
12430 in value.
8dd76bee 12431
711f40b7
PE
124322003-06-03 Paul Eggert <eggert@twinsun.com>
12433
12434 Avoid warnings generated by GCC 2.95.4 when Bison is
12435 configured with --enable-gcc-warnings.
12436 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
12437 yy::]b4_parser_class_name[::translate_,
12438 yy::Stack::operator[] (unsigned),
12439 yy::Stack::operator[] (unsigned) const,
12440 yy::Slice::operator[] (unsigned),
12441 yy::Slice::operator[] (unsigned) const):
12442 Rename local vars to avoid warnings.
12443 * tests/glr-regression.at (Improper handling of embedded actions
12444 and $-N in GLR parsers): Remove unused local variable from yylex.
12445 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
12446 (void) as arg when not pure, since we now assume C89 when building
12447 Bison. Pacify GCC by using parameter.
12448
ac695f7d
PE
124492003-06-02 Paul Eggert <eggert@twinsun.com>
12450
12451 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
12452 yy::Location::lines, yy::Location::columns): Rename arguments
12453 to avoid shadowing; this removes a warning generated by GCC 3.3.
12454
26ec81e0
PE
124552003-06-01 Paul Eggert <eggert@twinsun.com>
12456
12457 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
12458 to g++, as GCC 3.3 complains if you do it.
12459 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
12460 everything that WARNING_CFLAGS has, except omit warnings
12461 not suitable for C++.
12462 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
12463 * tests/atlocal.in (CXXFLAGS): New var.
12464 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
12465
12466 Fix a GLR parser bug I reported in February; see
161a71f3 12467 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
26ec81e0
PE
12468 The problem was that GLR parsers did not conform to the C standard,
12469 because actions like { $1 = $2 + $3; } expanded to expressions
12470 that invoked YYFILL in separate subexpressions, and YYFILL assigned
12471 to a local variable. The C standard says that expressions
12472 like (var = f ()) + (var = f ()) have undefined behavior.
12473 Another problem was that GCC sometimes issues warnings that
12474 yyfill and its parameters are unused.
12475
12476 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
12477 as possibly unused.
12478 (yyfill): New function.
12479 (YYFILL): Use it.
12480 (yyuserAction): Change type of yynormal to bool, so that it matches
12481 the new yyfill signature. Mark it as possibly unused.
12482
12483
12484 Follow up on a bug I reported in February, where a Bison-generated
12485 parser can loop. Provide a test case and a fix for yacc.c. I
12486 don't have a fix for lalr1.cc or for glr.c, unfortunately.
12487 The original bug report is in:
161a71f3 12488 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
26ec81e0
PE
12489
12490 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
12491 macro's size was becoming unwieldy.
12492 (yyerrlab): Do not discard an empty lookahead symbol, as this
12493 might destroy garbage.
12494 (yyerrorlab): New label, with the old contents of YYERROR,
12495 plus the following change: pop the stack of rhs corresponding
12496 to the production that invoked YYERROR. That is how Yacc
12497 behaves, and POSIX requires this behavior.
12498 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
12499 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
12500 Define 'alarm' to do nothing if unistd.h is not available.
12501 Add a new rule "exp: '-' error;" to test the above change to
12502 data/yacc.c. Use 'alarm' to abort any test taking longer than
12503 10 seconds, as it's probably looping.
12504 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
12505 Also, the new yacc.c generates two fewer diagnostics for an
12506 existing test.
12507
d0829076
PE
125082003-05-24 Paul Eggert <eggert@twinsun.com>
12509
c6ae27df
PE
12510 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
12511 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
12512 This fixes a problem reported by John Bowman when the Compaq/HP
12513 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
12514 -ansi -Wall -gall).
12515 * data/yacc.c (union yyalloc): Likewise.
12516 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
26ec81e0 12517
d0829076
PE
12518 Switch from 'int' to 'bool' where that makes sense.
12519
12520 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
12521 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
12522 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
12523 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
12524 Return or accept bool, not int. All callers changed.
12525 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
12526 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
12527 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
12528 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
12529 bitset_or_and_cmp_): Likewise.
12530 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
12531 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
12532 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
12533 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
12534 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
12535 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
12536 bitset_stats_or_and_cmp): Likewise.
12537 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
12538 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
12539 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
12540 ebitset_xor_cmp): Likewise.
12541 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
12542 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
12543 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
12544 lbitset_xor_cmp): Likewise.
12545 * lib/bbitset.h: Include <stdbool.h>.
12546 (struct bitset_vtable): The following members now return bool, not
12547 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
12548 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
12549 or_and_cmp).
12550 * src/conflicts.c (count_rr_conflicts): Likewise.
12551 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
12552 All uses changed.
12553 * lib/ebitset.c (ebitset_obstack_init): Likewise.
12554 * lib/lbitset.c (lbitset_obstack_init): Likewise.
12555 * src/getargs.c (debug_flag, defines_flag, locations_flag,
12556 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
12557 graph_flag): Likewise.
12558 * src/getargs.h (debug_flag, defines_flag, locations_flag,
12559 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
12560 graph_flag): Likewise.
12561 * src/output.c (error_verbose): Likewise.
12562 * src/output.h (error_verbose): Likewise.
12563 * src/reader.c (start_flag, typed): Likewise.
12564 * src/reader.h (typed): Likewise.
12565 * src/getargs.c (LOCATIONS_OPTION): New constant.
12566 (long_options, getargs): Use it.
12567 * src/lalr.c (build_relations): Use bool, not int.
12568 * src/nullable.c (nullable_compute): Likewise.
12569 * src/print.c (print_reductions): Likewise.
12570 * src/tables.c (action_row, pack_vector): Likewise.
12571 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
12572 * src/output.c (prepare): Use it.
12573 * src/output.c (token_definitions_output,
12574 symbol_destructors_output, symbol_destructors_output): Use string,
12575 not boolean integer, to keep track of whether to output separator.
12576 * src/print_graph.c (print_core): Likewise.
12577 * src/state.c (state_rule_lookaheads_print): Likewise.
12578
12579 * config/install-sh: Sync from automake 1.7.5.
12580
6b2584b7
PE
125812003-05-14 Paul Eggert <eggert@twinsun.com>
12582
12583 * src/parse-gram.y (rules_or_grammar_declaration): Require a
12584 semicolon after a grammar declaration, in the interest of possible
12585 future changes to the Bison input language.
12586 Do not allow a stray semicolon at the start of the grammar.
12587 (rhses.1): Allow one or more semicolons after any rule, including
12588 just before "|" as required by POSIX.
12589 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
12590 grammar.
12591
caf37a36
ADL
125922003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
12593
12594 %parse-param support for lalr1.cc.
12595
12596 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
12597 b4_cc_constructor_calls, b4_cc_constructor_call,
12598 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
12599 definitions.
12600 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
12601 parse-param arguments.
12602 (yy::b4_parser_class_name): Declare instance variables to
12603 hold parse-param arguments.
12604 * tests/calc.at: s/value/semantic_value/ because value clashes
12605 with a member of yy::b4_parser_class_name. Adjust C++ code
12606 to handle %parse-param. Enable %parse-param test in C++.
12607
3ab37077
PE
126082003-05-12 Paul Eggert <eggert@twinsun.com>
12609
12610 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
12611 English a bit. Fix fclose typo. Change "const char" to "char
12612 const", and use ANSI C rather than K&R for "main". Suggest
12613 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
12614 and suggest yy_switch_to_buffer.
12615
126162003-05-05 Paul Eggert <eggert@twinsun.com>
163ab321
PE
12617
12618 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
12619 C89. This avoids a diagnostic on compilers that define __STDC__
12620 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
161a71f3 12621 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
163ab321 12622
e743727f
PE
126232003-05-03 Paul Eggert <eggert@twinsun.com>
12624
12625 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
12626 Do not overrun array bounds.
12627 This should fix a bug reported today by Olatunji Oluwabukunmi in
161a71f3 12628 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
e743727f 12629
916708d5
AD
126302003-04-29 Akim Demaille <akim@epita.fr>
12631
12632 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
12633 * src/getargs.c, src/getargs.h: here, as bool, not int.
12634 (nondeterministic_parser): New.
12635 * src/parse-gram.y, src/scan-gram.l: Support
12636 %nondeterministic-parser.
12637 * src/output.c (prepare): Use nondeterministic_parser instead
12638 of glr_parser where appropriate.
12639 * src/tables.c (conflict_row, action_row, save_row)
12640 (token_actions, token_actions, pack_vector): Ditto.
12641
a06ea4aa
AD
126422003-04-29 Akim Demaille <akim@epita.fr>
12643
12644 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
12645
211074ca
AD
126462003-04-29 Akim Demaille <akim@epita.fr>
12647
12648 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
12649 with %pure-parser and %locations to exercise the patch from Yakov
12650 Markovitch below.
12651
6175ffe3
PE
126522003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
12653
12654 * data/yacc.c: (b4_lex_param): Corrected for the case where
12655 %lex-param is provided and %pure-parser isn't.
12656
b1e95857
PE
126572003-04-27 Paul Eggert <eggert@twinsun.com>
12658
12659 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
161a71f3 12660 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
b1e95857
PE
12661 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
12662 if it is not defined.
12663 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
12664
acda9df6
PE
126652003-04-26 Paul Eggert <eggert@twinsun.com>
12666
3470c57b
PE
12667 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
12668 Declare to be of type suitable for the ninf value itself, not of
12669 type suitable for the corresponding table, since the latter might
12670 be unsigned but the ninf value might be negative. This fixes a
12671 bug reported by Alexandre Duret-Lutz in
161a71f3 12672 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
3470c57b 12673
acda9df6
PE
12674 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
12675 invokes it. We shouldn't invoke it twice because it will attempt
12676 to put error.o in the archive twice. This fixes a glitch reported
12677 by Martin Mokrejs in
161a71f3 12678 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
acda9df6 12679
b5250f26
PE
126802003-04-21 Paul Eggert <eggert@twinsun.com>
12681
12682 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
12683 to gnulib.
12684
089ac0f1
PE
126852003-04-21 Yakov Markovitch <Markovitch@iso.ru>
12686
12687 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
12688 Fix obvious typo that results in uncompilable GLR parsers
12689 when both %pure-parser and %locations are used. (trivial change)
12690
5ededac6
PE
126912003-04-17 Paul Eggert <eggert@twinsun.com>
12692
1b8f2fff
PE
12693 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
12694 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
12695 Do not insert the expected token via unput, as this runs afoul
12696 of a POSIX-compatibility bug in flex 2.5.31.
12697 All uses changed to BEGIN the parent state,
12698 since we no longer insert the expected token via unput.
12699 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
12700 that is no longer emitted after the above change.
12701
5ededac6
PE
12702 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
12703 the first one. This change is from Paul Hilfinger, and it fixes
12704 regression reported by Werner Lemberg in
161a71f3 12705 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5ededac6
PE
12706
12707 (resolve_sr_conflict): Don't invoke state_errs_set
12708 unless one or more tokens have been explicitly made errors.
12709 Otherwise, the above change causes Bison to abort.
12710
12711 * tests/existing.at (GNU pic Grammar): New test case, taken from
12712 Lemberg's email.
12713
b8be9132
AD
127142003-03-31 Akim Demaille <akim@epita.fr>
12715
12716 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
12717
d423d460
AD
127182003-03-31 Akim Demaille <akim@epita.fr>
12719
12720 * src/output.c (prepare_symbols): Avoid trailing spaces in the
12721 output.
12722
c7e441b4
AD
127232003-03-31 Akim Demaille <akim@epita.fr>
12724
12725 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
12726 From Paul Hilfinger.
12727
231897ad
AD
127282003-03-29 Akim Demaille <akim@epita.fr>
12729
12730 * m4/error.m4: Do not put under dynamic conditions some code which
12731 expansion is under static control.
12732
5b066063
AD
127332003-03-29 Akim Demaille <akim@epita.fr>
12734
12735 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
12736
22a74fec
AD
127372003-03-29 Akim Demaille <akim@epita.fr>
12738
12739 * doc/bison.texinfo (Strings are Destroyed): New.
12740
0eee27e7
PE
127412003-03-13 Paul Eggert <eggert@twinsun.com>
12742
12743 * .cvsignore: Add configure.lineno.
12744 * src/.cvsignore: Add yacc.
12745 * tests/.cvsignore: Add testsuite.log.
12746 * doc/fdl.texi: Sync with latest FSF version.
12747
f61aad93
PE
127482003-03-12 Paul Eggert <eggert@twinsun.com>
12749
537636c7
PE
12750 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
12751 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
12752 cursor, instead of leaving it undefined. This fixes a bug
12753 reported by Tim Van Holder in
161a71f3 12754 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
537636c7
PE
12755 * tests/input.at (Torturing the Scanner): Test the scanner on
12756 an empty input file, which was Tim Van Holder's test case.
12757
12758 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
12759 <sys/resource.h> can be included, include sys/time.h and
12760 sys/times.h first, if available. This works around the SunOS
12761 4.1.4 porting bug reported by Bruce Becker in
161a71f3 12762 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
537636c7
PE
12763
12764 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
12765 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
12766 AC_HEADER_SYS_WAIT.
12767
f61aad93
PE
12768 Merge changes from gnulib. This was prompted because the CVS
12769 snapshot didn't build on Solaris 7 due to strnlen problems.
12770
12771 These changes need to be merged back into gnulib:
12772 * lib/hash.c: Include <stdbool.h> unconditionally.
12773 * m4/onceonly.m4 (m4_quote): New macro.
12774 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
12775 Quote AC_FOREACH variable-expansions properly.
12776 The 2003-01-03 obstack.h change also needs merging.
12777 {end of changes requiring merging}
5b066063 12778
f61aad93
PE
12779 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
12780 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
12781 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
12782 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
12783 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
12784 New files, imported from gnulib.
12785 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
12786 above.
12787
12788 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
12789 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
12790 gnulib sources.
12791
12792 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
12793 Add.
12794 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
12795 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
12796 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
12797 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
12798 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
12799 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
12800 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
12801 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
12802 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
12803 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
12804 (jm_PREREQ_ARGMATCH): Remove.
12805 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
12806 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
12807
12808 * src/system.h: Include <stdbool.h> unconditionally.
12809
12810 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
12811 assuming at least C89 in the bitset code for some time now.
12812
d2ffe116
AD
128132003-03-03 Akim Demaille <akim@epita.fr>
12814
12815 * ro.po: New.
12816
052826fd
AD
128172003-03-02 Akim Demaille <akim@epita.fr>
12818
12819 * doc/bison.texinfo (Table of Symbols): Reactivate the
12820 documentation for %lex-param, and %parse-param.
12821
c4749565
AD
128222003-03-02 Akim Demaille <akim@epita.fr>
12823
12824 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
12825 generate verbose error messages.
12826 Use the number of tokens as an upper bound in yytname, as it
12827 cannot be a non terminal.
12828
d5286af1
AD
128292003-03-02 Akim Demaille <akim@epita.fr>
12830
12831 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
12832 message.
12833
22e304a6
AD
128342003-03-02 Akim Demaille <akim@epita.fr>
12835
22e304a6
AD
12836 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
12837 Use them to exercise yycheck overrun.
12838 Based on Andrew Suffield's grammar.
12839
67a25fed
AD
128402003-03-02 Akim Demaille <akim@epita.fr>
12841
12842 Create tests/local.at for Bison generic testing macros.
12843
12844 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
12845 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
12846 This new file.
12847 * tests/calc.at (AT_CHECK_CALC): Adjust.
12848 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
12849 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
12850 * tests/local.at: here.
12851 (AT_COMPILE_CXX): Tags the tests using it as c++.
12852 Ignore the test if CXX is not functional.
12853
9c2b381f
PE
128542003-03-01 Paul Eggert <eggert@twinsun.com>
12855
12856 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
12857 not loc->end, since loc->end might contain garbage and this leads
12858 to undefined behavior on some platforms.
12859 (id_loc, token_start): Use (IF_LINTed) initial values that do not
12860 depend on *loc, so that the reader doesn't give the the false
12861 impression that *loc is initialized.
12862 (<INITIAL>"%%"): Do not bother setting code_start, since its value
12863 does not survive the return.
12864
0433ba88
AD
128652003-03-01 Akim Demaille <akim@epita.fr>
12866
12867 * src/scan-gram.l (code_start): Always initialize it when entering
12868 into yylex, as SC_EPILOGUE is activated *before* the corresponding
12869 yylex invocation. An alternative would be making it static, but
12870 then it starts with the second %%'s beginning, instead of its end.
12871
b305ea69
PE
128722003-02-28 Paul Eggert <eggert@twinsun.com>
12873
12874 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
12875 around a UnixWare 7.1.1 porting bug reported by John Hughes in
161a71f3 12876 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
b305ea69 12877
c3d25e01
PE
128782003-02-26 Paul Eggert <eggert@twinsun.com>
12879
12880 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
12881 Remove Sequent/Pyramid discussion (nobody uses them any more).
12882 Merge VMS and MS-DOS discussion; these ports may well be dead
12883 but let's keep mentioning them for now. Put <> around email
12884 addresses. Add copyright notice.
12885
c267ffbc
PE
128862003-02-24 Paul Eggert <eggert@twinsun.com>
12887
12888 * data/glr.c (yy_reduce_print): yylineno -> yylno,
12889 to avoid collision with flex use of yylineno.
12890 Problem reported by Bruce Lilly in
161a71f3 12891 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
c267ffbc
PE
12892 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
12893 * data/yacc.c (yy_reduce_print): Likewise.
12894
12895 * config/depcomp: Sync with Automake 1.7.3.
12896
f939fc12
AD
128972003-02-21 Akim Demaille <akim@epita.fr>
12898
12899 * data/lalr1.cc: Use temporary variables instead of casts to
12900 change integer types.
12901 Suggested by Paul Eggert.
12902
95923bd6
AD
129032003-02-21 Akim Demaille <akim@epita.fr>
12904
12905 * doc/bison.texinfo: Use "location" consistently to refer to @n,
12906 to avoid confusions with lalr1.cc's notion of Position.
12907 Suggested by Paul Eggert.
12908
2cdc240e
AD
129092003-02-20 Akim Demaille <akim@epita.fr>
12910
12911 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
12912 before initial_columns.
12913 (location.hh): Use consistent variable names when defining the
12914 operator<<.
12915 Use "last" so that we subtract from Positions, not from unsigned.
12916
5d003116
AD
129172003-02-20 Akim Demaille <akim@epita.fr>
12918
12919 * data/lalr1.cc (position.hh): New subfile, including the extended
12920 and Doxygen'ed documentation of class Position.
12921 (location.hh): Use it.
12922 Document a` la Doxygen.
ba1ecc07 12923 With the help of Benoit Perrot.
5d003116 12924
d02b25f9
AD
129252003-02-20 Akim Demaille <akim@epita.fr>
12926
12927 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
12928 AT_YACC_IF.
12929 Redefine AT_YYERROR_SEES_LOC_IF using it.
12930 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
12931 not defined.
12932 Don't use the location in yy::Parser::error_ and
12933 yy::Parser::print_ when not %locations.
12934 Activate more lalr1.cc tests.
12935
0d1c3a04
AD
129362003-02-19 Akim Demaille <akim@epita.fr>
12937
12938 * data/lalr1.cc: When displaying a line number, be sure to make it
12939 an int.
12940
60a777aa
AD
129412003-02-19 Akim Demaille <akim@epita.fr>
12942
12943 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
12944 Remove, useless.
12945 (YYABORT, YYACCEPT, YYERROR): New.
12946 * tests/calc.at: Renable the lalr1.cc test.
12947
0b86fc41
AD
129482003-02-19 Akim Demaille <akim@epita.fr>
12949
12950 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
12951 error recovery, mixing with/without pops and discarding of the
12952 lookahead.
12953 Exercise YYERROR.
12954 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
12955
da99a5dc
PE
129562003-02-17 Paul Eggert <eggert@twinsun.com>
12957
12958 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
12959 * tests/testsuite.at (AT_COMPILE): Use them.
12960 This fixes the testsuite problem reported by Robert Lentz in
161a71f3 12961 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
da99a5dc 12962
93b8c255
PE
129632003-02-12 Paul Eggert <eggert@twinsun.com>
12964
12965 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
12966 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
161a71f3 12967 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
93b8c255
PE
12968 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
12969 Check for malloc failure, for consistency with yacc.c.
12970 (yytname_size): Remove, for consistency with yacc.c.
12971
12972 The bug still remains in data/lalr1.cc, as I didn't have time
12973 to fix it there.
12974
7548fed2
AD
129752003-02-06 Akim Demaille <akim@epita.fr>
12976
12977 * configure.ac (GXX): Rename as...
12978 (CXX): this, to keep the original Autoconf semantics.
12979 Require 2.57.
12980 * data/lalr1.cc: Fix b4_copyright invocations.
12981 If YYDEBUG is not defined, don't depend upon name_ being defined.
12982 (location.hh): Include string and iostream.
12983 (Position::filename): New member.
12984 (Position::Position ()): New.
12985 (operator<< (Position)): New.
12986 (operator- (Position, int)): New.
12987 (Location::first, Location::last): Rename as...
12988 (Location::begin, Location::end): these, to mock the conventional
12989 iterator names.
12990 (operator<< (Location)): New.
12991 * tests/atlocal.in (CXX): New.
12992 * tests/testsuite.at (AT_COMPILE_CXX): New.
12993 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
12994 locations in a more synthetic way.
12995 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
12996 lalr1.cc is used.
12997 Adjust the C locations to match those from Emacs: first column is
12998 column 0.
12999 Change all the expected results.
13000 Conform to the GCS: simplify the locations when applicable.
13001 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
13002 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
13003 these CPP macros with the m4 macros new defined by...
13004 (AT_CHECK_PUSHDEFS): this, i.e.:
13005 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
d02b25f9 13006 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
7548fed2
AD
13007 New macros.
13008 (AT_CHECK_POPDEFS): Undefine them.
13009 (AT_CHECK_CALC_LALR1_CC): New.
13010 Use it for the first lalr1.cc test.
13011
43a176ef
AD
130122003-02-04 Akim Demaille <akim@epita.fr>
13013
13014 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
13015 Location as is defined.
13016
fc049e9c
AD
130172003-02-04 Akim Demaille <akim@epita.fr>
13018
13019 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
13020 name_ being defined.
13021
a737b216
PE
130222003-02-03 Paul Eggert <eggert@twinsun.com>
13023
13024 * src/gram.h (start_symbol): Remove unused decl.
13025
13026 Use more-consistent naming conventions for local vars.
13027
13028 * src/derives.c (derives_compute): Change type of local var from
13029 int to rule_number.
13030 * src/gram.c (grammar_rules_partial_print): Likewise.
13031 * src/print.c (print_core): Likewise.
13032 * src/reduce.c (reduce_grammar_tables): Likewise.
13033
13034 * src/gram.c (grammar_dump): Change name of item_number *
13035 local var from r to rp.
13036 * src/nullable.c (nullable_compute): Likewise.
13037
13038 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
13039
13040 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
13041 for symbol or symbol_number var.
13042 * src/reader.c (grammar_start_symbol_set): Likewise.
13043 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
13044 Likewise.
13045 * src/state.c (transitions_to): Likewise.
13046 * src/state.h: Likewise.
13047 * src/tables.c (symbol_number_to_vector_number): Likewise.
13048
13049 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
13050 char * var.
13051
13052 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
13053 var.
13054
13055 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
13056 var.
13057
13058 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
13059 Use str, not s, for char * var. Use ch, not c, for character var.
13060 Use size for size var.
13061
13062 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
13063 char * var.
13064 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
13065 uniqstr var.
13066 * src/uniqstr.h: Likewise.
13067
13068 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
13069 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
13070 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
13071 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
13072 param to have same name as that of enum, so that we don't use
13073 "s" to stand for a non-state.
13074
68e93ad5
AD
130752003-02-02 Akim Demaille <akim@epita.fr>
13076
13077 * src/scan-skel.l: Scan more than one inert character per yylex
13078 invocation.
13079
92898986
PE
130802003-02-01 Paul Eggert <eggert@twinsun.com>
13081
13082 Version 1.875a.
13083
1d9d5d71
PE
13084 * po/LINGUAS: Add ms.
13085
0435d061
AD
130862003-01-30 Akim Demaille <akim@epita.fr>
13087
13088 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
13089
6029a57f
PH
130902003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13091
13092 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
13093 of $1.
0435d061
AD
13094
13095 Changes in response to error report by S. Eken: GLR mode does not
6029a57f 13096 handle negative $ indices or $ indices in embedded rules correctly.
161a71f3 13097 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
0435d061 13098
6029a57f
PH
13099 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
13100 (b4_rhs_location): Ditto.
0435d061 13101 (yyfill): New function to copy from stack tree into array
6029a57f 13102 incrementally.
0435d061
AD
13103 (yyuserAction): Modify to allow incremental move of semantic values
13104 to rhs array when in GLR mode.
13105 Define YYFILL to use in user-defined actions to fill semantic array
6029a57f
PH
13106 as needed.
13107 Remove dummy use of yystack, as there is now a guaranteed use.
13108 (yydoAction): Modify to allow incremental move of semantic values
13109 to rhs array when in GLR mode.
13110 (yyresolveAction): Ditto.
13111 (yyglrShiftDefer): Update comment.
0435d061 13112 (yyresolveStates): Use X == NULL for pointers, not !X.
6029a57f
PH
13113 (yyglrReduce): Ditto.
13114 (yydoAction): Ditto
0435d061 13115
6029a57f
PH
13116 * tests/glr-regr1.at: Rename to ...
13117 * tests/glr-regression.at: Add new regression test for the problems
13118 described above (adapted from S. Eken).
13119 Update copyright notice.
13120 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
13121 * tests/Makefile.am: Ditto.
13122
6cee6297
PE
131232003-01-28 Paul Eggert <eggert@twinsun.com>
13124
13125 * data/lalr1.cc: Do not use @output_header_name@ unless
13126 b4_defines_flag is set. This fixes two bugs reported by
13127 Tim Van Holder in
161a71f3
PE
13128 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
13129 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
6cee6297 13130
b2a836b5
PE
131312003-01-21 Paul Eggert <eggert@twinsun.com>
13132
13133 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
13134 we don't need to worry about yyerrlab1 being reported as an
13135 "unused label" by non-GCC C compilers. The downside is that if
13136 locations are used then a couple of statements are duplicated each
13137 time YYERROR is invoked, but the upside is that the warnings
13138 should vanish.
13139 (yyerrlab1): Move code to YERROR.
13140 (yyerrlab2): Remove. Change uses back to yyerrlab1.
13141 This reverts some of the 2002-12-27 change.
13142
4196b931
PE
131432003-01-17 Paul Eggert <eggert@twinsun.com>
13144
13145 * src/output.c (symbol_printers_output): Fix typo that led
13146 to core dump. Problem reported by Antonio Rus in
161a71f3 13147 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
4196b931 13148
3ae831b4
AD
131492003-01-13 Akim Demaille <akim@epita.fr>,
13150 Quoc Peyrot <chojin@lrde.epita.fr>,
13151 Robert Anisko <anisko_r@lrde.epita.fr>
13152
13153 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
13154 when the stacks contain one element, as the loop would otherwise
13155 free the last state, and then use the top state (the one we just
13156 popped). This means that the initial elements will not be freed
13157 explicitly, as is the case in yacc.c; it is not a problem, as
13158 these elements have fake values.
13159
e3aa65c5
PE
131602003-01-11 Paul Eggert <eggert@twinsun.com>
13161
13162 * NEWS: %expect-violations are now just warnings, reverting
13163 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
13164 bootstrapping problem reported by Matthias Klose; see
161a71f3 13165 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
e3aa65c5
PE
13166 * src/conflicts.c (conflicts_print): Likewise.
13167 * tests/conflicts.at (%expect not enough, %expect too much,
13168 %expect with reduce conflicts): Likewise.
13169 * doc/bison.texinfo (Expect Decl): Document this. Also mention
13170 that the warning is enabled if the number of conflicts changes
13171 (not necessarily increases).
13172
13173 * src/getargs.c (version): Update copyright year.
13174
f0057011
AD
131752003-01-09 Akim Demaille <akim@epita.fr>
13176
13177 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
13178
1ee6d2a0
PE
131792003-01-08 Paul Eggert <eggert@twinsun.com>
13180
13181 * Makefile.maint (WGETFLAGS):
13182 New macro, containing "-C off" to disable proxy caches.
13183 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
13184 (rel-check): Use $(WGET) instead of wget.
13185
d4fd77c4
PE
131862003-01-06 Paul Eggert <eggert@twinsun.com>
13187
13188 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
13189 the GLR paper of Scott, Johnstone and Hussain.
13190
464c6927
PE
131912003-01-04 Paul Eggert <eggert@twinsun.com>
13192
d600ee67
PE
13193 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
13194 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
13195 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
13196 (EXTRA_LIBRARIES): New var, for liby.a.
13197 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
13198 (EXTRA_SCRIPTS): New var, for yacc.
13199
464c6927
PE
13200 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
13201 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
13202 Problem reported by Nelson H. F. Beebe.
13203
132042003-01-03 Paul Eggert <eggert@twinsun.com>
13205
13206 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
13207 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
13208 when compiling Bison 1.875's `bitset bset = obstack_alloc
13209 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
13210
13211 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
13212 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
13213 grow to a huge size with typical invocation.
d600ee67 13214
464c6927
PE
13215 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
13216 Use the pattern recommended by Autoconf 2.57, except also protect
13217 against double-definition.
13218 * src/system.h: Likewise.
13219 Portability issues reported by Nelson H. F. Beebe.
d600ee67 13220
464c6927
PE
13221 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
13222 All uses changed. Provide a definition in both C and C++.
13223 (yytrue, yyfalse): Define even if defined (__cplusplus).
13224
13225 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
13226 Reported by Nelson H. F. Beebe.
d600ee67 13227
464c6927
PE
13228 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
13229
0f42c7d5
PE
132302003-01-02 Paul Eggert <eggert@twinsun.com>
13231
13232 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
13233 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
13234 Bug reported by Nelson H. F. Beebe.
13235
dc546b0f
PE
132362003-01-01 Paul Eggert <eggert@twinsun.com>
13237
13238 * Version 1.875.
13239
2c09b6a7
PE
132402002-12-30 Paul Eggert <eggert@twinsun.com>
13241
13242 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
13243 Moved here from...
13244 (<INITIAL>","): Here. This causes stray "," to be treated
13245 more uniformly.
13246
dc546b0f 13247 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
2c09b6a7
PE
13248 last brace in braced code when not in Yacc mode, for compatibility
13249 with Bison 1.35. This resurrects the 2001-12-15 patch to
13250 src/reader.c.
13251
13252 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
13253 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
13254
535c0f63
PE
132552002-12-28 Paul Eggert <eggert@twinsun.com>
13256
13257 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
13258 that of SYM's type. This fixes Debian bug 168069, reported by
13259 Thomas Olsson.
d600ee67 13260
963fcc17
PE
132612002-12-28 Paul Eggert <eggert@twinsun.com>
13262
13263 Version 1.75f.
13264
13265 Switch back to the Yacc style of conflict reports, undoing some
13266 of the 2002-07-30 change.
13267 * doc/bison.texinfo (Understanding): Use Yacc style for
13268 conflict reports. Also, use new way of locating rules.
13269 * src/conflicts.c (conflict_report):
13270 Renamed from conflict_report_yacc, removing the old
13271 'conflict_report'. Translate the entire conflict report at once,
13272 so that we don't assume that "," has the same interpretation in
13273 all languages.
13274 (conflicts_output): Use Yacc-style conflict report for each state,
13275 instead of our more-complicated style.
13276 (conflicts_print): Use Yacc-style conflict report, except print
13277 the input file name when not emulating Yacc.
13278 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
13279 Conflicted Reduction, %expect not enough, %expect too much,
13280 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
13281 * tests/existing.at (GNU Cim Grammar): Likewise.
13282 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
13283
13284 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
13285 fatal): Don't invoke fflush; it's not needed and it might even be
13286 harmful for stdout, as stdout might not be open.
13287 * src/reduce.c (reduce_print): Likewise.
13288
b1efe548
PE
132892002-12-27 Paul Eggert <eggert@twinsun.com>
13290
13291 Fix a bug where error locations were not being recorded correctly.
13292 This problem was originally reported by Paul Hilfinger in
161a71f3 13293 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
b1efe548
PE
13294
13295 * data/yacc.c (yyparse): New local var yylerrsp, to record the
13296 top of the location stack's error locations.
13297 (yyerrlab): Set it. When discarding a token, push its location
13298 onto yylerrsp so that we don't lose track of the error's end.
13299 (yyerrlab1): Now is only the target of YYERROR, so that we can
13300 properly record the location of the action that failed. For GCC
13301 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
13302 GCC warning about yyerrlab1 being unused if YYERROR is unused.
13303 (yyerrlab2): New label, which yyerrlab now falls through to.
13304 Compute the error's location by applying YYLLOC_DEFAULT to
13305 the locations of all the symbols that went into the error.
13306 * doc/bison.texinfo (Location Default Action): Mention that
13307 YYLLOC_DEFAULT is also invoked for syntax errors.
13308 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
13309 Error locations include the locations of all the tokens that were
13310 discarded, not just the last token.
d600ee67 13311
983c5c2c
PE
133122002-12-26 Paul Eggert <eggert@twinsun.com>
13313
b1efe548
PE
13314 * src/files.c: Include quote.h.
13315 (compute_output_file_names): Warn if we detect conflicting
13316 outputs to the same file. This should catch the misunderstanding
13317 exemplified by Debian Bug 165349, reported by Bruce Stephens..
13318
13319 * src/conflicts.c (conflicts_print): If the user specifies
13320 "%expect N", report an error if there are any reduce/reduce
13321 conflicts. This is what the manual says should happen.
13322 This fixes Debian bug 130890, reported by Anthony DeRobertis.
13323 * tests/conflicts.at (%expect with reduce conflicts): New test.
13324
983c5c2c
PE
13325 Don't use m4_include on relative file names, as it doesn't work as
13326 desired if there happens to be a file with that name under ".".
d600ee67 13327
983c5c2c
PE
13328 * m4sugar/version.m4: Remove; it was included but it wasn't used.
13329 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
13330 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
13331 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
13332 * src/output.c (output_skeleton): Use full path names when
13333 specifying a file to include; don't rely on include path, as
13334 it's unreliable when the working file contains a file with
13335 that name.
d600ee67 13336
983c5c2c
PE
133372002-12-25 Paul Eggert <eggert@twinsun.com>
13338
13339 Remove obsolete references to bison.simple and bison.hairy.
13340 Problem mentioned by Aubin Mahe in
161a71f3 13341 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
983c5c2c
PE
13342 * data/glr.c: Comment fix.
13343 * doc/bison.1: Remove references. Also, mention "yacc".
13344
13345 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
13346 with -g option.
13347
13348 * src/parse-gram.y (declaration): Use enum "report_states" rather
13349 than its numeric value 1.
13350
13351 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
13352 opening a new one. This fixes Debian bug 165349, reported by
13353 Bruce Stephens.
13354
23f2d9dc
PE
133552002-12-24 Paul Eggert <eggert@twinsun.com>
13356
13357 Version 1.75e.
13358
13359 * Makefile.maint (cvs-update): Don't assume that the shell
13360 supports $(...), as Solaris sh doesn't.
13361
13362 * src/parse-gram.y (lloc_default): Remove test for empty
13363 nonterminals at the end, since it didn't change the result.
13364
133652002-12-24 Paul Eggert <eggert@twinsun.com>
33167b8b
PE
13366
13367 If the user does not define YYSTYPE as a macro, Bison now declares it
13368 using typedef instead of defining it as a macro. POSIX requires this.
13369 For consistency, YYLTYPE is also declared instead of defined.
13370
13371 %union directives can now have a tag before the `{', e.g., the
13372 directive `%union foo {...}' now generates the C code
13373 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
13374 The default union tag is `YYSTYPE', for compatibility with Solaris 9
13375 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
13376 instead of `yyltype'.
13377
13378 `yystype' and `yyltype' are now obsolescent macros instead of being
13379 typedefs or tags; they are no longer documented and will be
13380 withdrawn in a future release.
13381
13382 * data/glr.c (b4_location_type): Remove.
13383 (YYSTYPE): Renamed from yystype.
13384 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
13385 (struct YYLTYPE): Renamed from struct yyltype.
13386 (YYLTYPE): Renamed from yyltype.
13387 (yyltype, yystype): New (and obsolescent) macros,
13388 for backward compatibility.
13389 * data/yacc.c: Likewise.
13390
13391 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
13392 does not specify a union tag. This is for compatibility with
13393 Solaris 9 yacc.
13394
13395 * src/parse-gram.y (add_param): 2nd arg is now char * not char
13396 const *, since it is now modified by stripping surrounding { }.
13397 (current_braced_code): Remove.
13398 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
13399 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
13400 trailing " {...}". Now of type <chars>.
13401 (grammar_declaration): Adjust to bundled tokens.
13402 (code_content): Remove; stripping is now done by add_param.
13403 (print_token_value): Print contents of bundled tokens.
13404 (token_name): New function.
13405
13406 * src/reader.h (braced_code, current_braced_code): Remove.
13407 (token_name): New decl.
13408
13409 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
13410 token_type, not braced_code code_kind. All uses changed.
13411 (SC_PRE_CODE): New state, for scanning after a keyword that
13412 has (or usually has) an immediately-following braced code.
13413 (token_type): New local var, to keep track of which token type
13414 to return when scanning braced code.
13415 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
dc546b0f 13416 <INITIAL>"%parse-param", <INITIAL>"%printer",
33167b8b
PE
13417 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
13418 instead of returning a token type immediately.
13419 (<INITIAL>"{"): Set token type.
13420 (<SC_BRACED_CODE>"}"): Use it.
13421 (handle_action_dollar, handle_action_at): Now returns bool
13422 indicating success. Fail if ! current_rule; this prevents a core dump.
13423 (handle_symbol_code_dollar, handle_symbol_code_at):
13424 Remove; merge body into caller.
13425 (handle_dollar, handle_at): Complain in invalid contexts.
13426
13427 * NEWS, doc/bison.texinfo: Document the above.
13428 * NEWS: Fix years and program names in copyright notice.
13429
879ca4f8
PE
134302002-12-17 Paul Eggert <eggert@twinsun.com>
13431
13432 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
13433 Reporting, Table of Symbols): Omit mentions of %lex-param and
13434 %parse-param from the documentation for now.
13435
1c5fe69d
PE
134362002-12-15 Paul Eggert <eggert@twinsun.com>
13437
13438 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
13439 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
13440 lookahead symbol, and which sets yychar in parser actions) and it
7ea9026a
PE
13441 disagreed with the Bison documentation. Bug
13442 reported by Andrew Walrond.
d600ee67 13443
1c5fe69d
PE
13444 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
13445 as the caller now does that.
13446 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
13447 (YYEMPTY): Parenthesize right hand side, since others use it.
13448 (yyparse): Don't assume that our generated code is the only code
13449 that sets yychar.
13450
d1de5372
PE
134512002-12-13 Paul Eggert <eggert@twinsun.com>
13452
13453 Version 1.75d.
13454
13455 POSIX requires a "yacc" command.
13456 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
13457 (MOSTLYCLEANFILES): Add yacc.
13458 (yacc): New rule.
1c5fe69d 13459 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
d1de5372
PE
13460 as an alias for bison y.
13461
13462 * po/LINGUAS: Add da.
d600ee67 13463
d1de5372
PE
13464 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
13465 problem with latest <getopt.h>.
13466 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
13467
13468 * doc/fdl.texi: Upgrade to 1.2.
13469 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
13470 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
13471 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
13472 gnulib.
13473 * config/install-sh: Sync with autotools.
13474
13475 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
161a71f3 13476 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
d1de5372
PE
13477 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
13478 locations are requested.
13479 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
13480 locations are requested.
13481
d0f3fe23
PE
134822002-12-12 Paul Eggert <eggert@twinsun.com>
13483
13484 Remove unportable casts and storage allocation tricks.
13485 While we're at it, remove almost all casts, since they
13486 usually aren't needed and are a sign of trouble.
13487
13488 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
13489
13490 * src/derives.c (derives_compute): Do not subtract NTOKENS from
13491 the pointer DSET returned by malloc; this isn't portable.
13492 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
13493 Similarly for DERIVES.
13494 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
13495 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
13496 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
13497
13498 * src/derives.c (derives_compute): Do not bother invoking
13499 int_of_rule_number, since rule numbers are integers.
13500
13501 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
13502 rather than XMALLOC (char, N).
13503
13504 * src/files.c (filename_split): Rewrite to avoid cast.
13505
13506 * src/gram.h (symbol_number_as_item_number,
13507 item_number_as_symbol_number, rule_number_as_item_number,
13508 item_number_as_rule_number):
13509 Now inline functions rather than macros, to avoid casts.
13510 * src/state.h (state_number_as_int): Likewise.
13511 * src/tables.c (state_number_to_vector_number,
13512 symbol_number_to_vector_number): Likewise.
13513
13514 * src/gram.h (int_of_rule_number): Remove; no longer used.
13515
13516 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
13517 since the resulting storage is always stored into.
13518
13519 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
13520 where it's needed.
13521
13522 * src/muscle_tab.c (muscle_m4_output):
13523 Now inline. Return bool, not int.
13524 * src/state.c (state_compare): Likewise.
13525 * src/symtab.c (symbol_check_defined,
13526 symbol_check_alias_consistency, symbol_pack, symbol_translation,
13527 hash_compare_symbol, hash_symbol):
13528 Likewise.
13529 * src/uniqstr.c (uniqstr_print): Likewise.
13530 * src/muscle_tab.c (muscle_m4_output_processor):
13531 New function, to avoid casts.
13532 * src/state.c (state_comparator, stage_hasher): Likewise.
13533 * src/symtab.c (symbol_check_defined_processor,
13534 symbol_check_alias_consistency_processor, symbol_pack_processor,
13535 symbol_translation_processor, hash_symbol_comparator,
13536 hash_symbol_hasher): Likewise.
13537 * src/uniqstr.c (uniqstr_print_processor): Likewise.
13538 * src/muscle_tab.c (muscles_m4_output):
13539 Use new functions instead of casting old functions unportably.
13540 * src/state.c (state_hash_new): Likewise.
13541 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
13542 symbols_token_translations_init):
13543 Likewise.
13544 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
13545
13546 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
13547 var instead of casting to long, to avoid casts.
13548 (prepare_states): Use MALLOC rather than alloca, so that we don't
13549 have to worry about alloca.
13550 * src/state.c (state_hash_lookup): Likewise.
13551
13552 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
13553 local var instead of casting to unsigned char, to avoid casts.
13554
13555 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
13556 STATE_ALLOC): Remove.
13557 (transitions_new, errs_new, reductions_new, state_new): Use malloc
13558 rather than calloc, and use offsetof to avoid allocating slightly
13559 too much storage.
13560 (state_new): Initialize all members.
13561
13562 * src/state.c (state_hash): Use unsigned accumulator, not signed.
13563
13564 * src/symtab.c (symbol_free): Remove; unused.
13565 (symbol_get): Remove cast in lhs of assignment.
13566 (symbols_do): Now static. Accept generic arguments, not
13567 hashing-related ones.
13568
13569 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
13570 (symbol_processor): Remove.
13571 (symbols_do): Remove decl; now static.
13572
13573 * src/system.h (alloca): Remove; decl no longer needed.
13574 (<stddef.h>): Include, for offsetof.
13575 (<inttypes.>, <stdint.h>): Include if available.
13576 (uintptr_t): New type, if system lacks it.
13577 (CALLOC, MALLOC, REALLOC): New macros.
13578 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
13579 new macros.
13580
13581 * src/tables.c (table_size): Now int, to pacify GCC.
13582 (table_grow, table_ninf_remap): Use signed table size.
13583 (save_row): Don't bother initializing locals when not needed.
13584 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
13585 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
13586
13587 * src/vcg.h: Correct misspellings.
13588
13589 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
13590
13591
13592 * src/getargs.c (getargs): Don't assume EOF == -1.
13593
26b4a969
PE
135942002-12-09 Paul Eggert <eggert@twinsun.com>
13595
13596 Change identifier spellings to avoid collisions with names
13597 that are reserved by POSIX.
13598
13599 Don't use names ending in _t, since POSIX reserves them.
13600 For consistency, remove _e and _s endings -- they're weren't
13601 needed to remove ambiguity. All uses changed.
13602 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
13603 turn was just renamed from struniq_t.
13604 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
13605 which in turn was just renamed from struniq_processor_t.
13606 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
13607 in turn was renamed from hash_compare_struniq_t.
13608 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
13609 (state_list): Renamed from state_list_t.
13610 * src/assoc.h (assoc): Renamed from assoc_t.
13611 * src/conflicts.c (enum conflict_resolution): Renamed from
13612 enum conflict_resolution_e.
13613 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
13614 (rule_list): Renamed from rule_list_t.
13615 * src/getargs.h (enum trace): Renamed from enum trace_e.
13616 (enum report): Renamed from enum report_e.
13617 * src/gram.h (item_number): Renamed from item_number_t.
13618 (rule_number): Renamed from rule_number_t.
13619 (struct rule_s): Remove the "rule_s" part; not used.
13620 (rule): Renamed from rule_t.
13621 (rule_filter): Renamed from rule_filter_t.
13622 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
13623 (goto_list): Renamed from goto_list_t.
13624 * src/lalr.h (goto_number): Renamed from goto_number_t.
13625 * src/location.h (location): Renamed from location_t.
13626 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
13627 and moved here from:
13628 * src/muscle_tab.h (muscle_entry_t): here.
13629 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
13630 (rule_list): Renamed from rule_list_t.
13631 * src/print_graph.c (static_graph): Renamed from graph.
13632 * src/reader.h (braced_code): Renamed from braced_code_t.
13633 Remove brace_code_e tag.
13634 * src/relation.h (relation_node): Renamed from relation_node_t.
13635 (relation_nodes): Renamed from relation_nodes_t.
13636 (relation): Renamed from relation_t.
13637 * src/state.h (state_number): Renamed from state_number_t.
13638 (struct state): Renamed from struct state_s.
13639 (state): Renamed from state_t.
13640 (transitions): Renamed from transitions_t. Unused (and
13641 misspelled) transtion_s tag removed.
13642 (errs): Renamed from errs_t. Unused errs_s tag removed.
13643 (reductions): Renamed from reductions_t. Unused tag
13644 reductions_s removed.
13645 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
13646 (struct symbol_list): Renamed from struct symbol_list_s.
13647 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
13648 (struct symbol): Renamed from struct symbol_s.
13649 (symbol): Renamed from symbol_t.
13650 * src/tables.c (vector_number): Renamed from vector_number_t.
13651 (action_number): Renamed from action_t.
13652 * src/tables.h (base_number): Renamed from base_t.
13653 * src/vcg.h (enum color): Renamed from enum color_e.
13654 (enum textmode): Renamed from enum textmode_e.
13655 (enum shape): Renamed from enum shape_e.
13656 (struct colorentry): Renamed from struct colorentry_s.
13657 (struct classname): Renamed from struct classname_s.
13658 (struct infoname): Renamed from struct infoname_s.
13659 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
13660 (enum decision): Renamed from enum decision_e.
13661 (enum orientation): Renamed from enum orientation_e.
13662 (enum alignment): Renamed from enum alignment_e.
13663 (enum arrow_mode): Renamed from enum arrow_mode_e.
13664 (enum crossing_type): Renamed from enum crossing_type_e.
13665 (enum view): Renamed from enum view_e.
13666 (struct node): Renamed from struct node_s.
13667 (node): Renamed from node_t.
13668 (enum linestyle): Renamed from enum linestyle_e.
13669 (enum arrowstyle): Renamed from enum arrowstyle_e.
13670 (struct edge): Renamed from struct edge.
13671 (edge): Renamed from edge_t.
13672 (struct graph): Renamed from struct graph_s.
13673 (graph): Renamed from graph_t.
13674 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
13675 Rename value_t -> value.
13676 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
13677 value_t_as_yystype -> value_as_yystype.
13678
13679 Don't include <errno.h> in the mainstream code, since it
13680 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
13681 * lib/get-errno.c, lib/get-errno.h: New files.
13682 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
13683 get-errno.c.
13684 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
13685 * src/output.c (output_skeleton): Likewise.
13686 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
13687 instead of errno.
13688 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
13689 Likewise.
13690 (handle_action_dollar, handle_action_at): Likewise.
13691 * src/system.h: Do not include <errno.h>.
13692 (TAB_EXT): Renamed from EXT_TAB.
13693 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
13694
13695 Avoid str[a-z]*, since <string.h> reserves that name space.
13696 Change all instances of "struniq" in names to "uniqstr", and
13697 likewise for "STRUNIQ" and "UNIQSTR".
13698 * src/uniqstr.c: Renamed from src/struniq.c.
13699 * src/uniqstr.h: Renamed from src/struniq.h.
13700 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
13701 * src/files.c (strsuffix): Remove; unused.
13702 (concat2): Renamed from stringappend. Now static.
13703 * src/files.h (strsuffix, stringappend): Remove; unused.
13704 * src/parse-gram.y (<chars>): Renamed from <string>.
13705 (<uniqstr>): Renamed from <struniq>.
13706 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
13707 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
13708 (struct graph_s.expand): Renamed from struct graph_s.stretch.
13709 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
13710 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
13711 (N_EXPAND): Renamed from N_STRETCH.
13712
13713 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
13714 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
13715 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
13716 Remove; unused.
13717 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
13718 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
13719 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
13720 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
13721 (BASE_MAXIMUM): Renamed from BASE_MAX.
13722 (BASE_MINIMUM): Renamed from BASE_MIN.
13723 (ACTION_MAX): Remove; unused.
13724 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
13725 Unnecessary casts removed from above defines.
13726
13727
13728 Fix misspelling in names.
13729 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
13730 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
13731 G_NODE_ALIGNEMENT.
13732
13733
13734 * lib/timevar.c (timevar_report): Renamed from time_report,
13735 for consistency with other names.
13736 * lib/timevar.h (timevar_report): New decl.
13737 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
13738
13739
13740 Sort include-file uses.
13741
13742 Reorder all include files under src to be in the order "system.h".
13743 then the ../lib include files in angle brackets (alphabetized),
13744 then the . include files in double-quotes (alphabetized). Fix
13745 dependency breakages encountered in this process, as follows:
13746 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
13747 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
13748 * src/state.h: Include "symtab.h".
13749
996b1c7e
PE
137502002-12-08 Paul Eggert <eggert@twinsun.com>
13751
13752 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
13753 since this causes problems when __file__ contains character
13754 sequences like "@" that are treated specially by src/scan-skel.l.
13755 Instead, just use the file's basename. This fixes the bug
13756 reported by Martin Mokrejs in
161a71f3 13757 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
996b1c7e 13758
e19c4e5d
PE
137592002-12-06 Paul Eggert <eggert@twinsun.com>
13760
13761 Add support for rules that do not have trailing semicolons, as
13762 POSIX requires. Improve the quality of locations in Bison
13763 diagnostics.
26b4a969 13764
e19c4e5d
PE
13765 * src/location.c: Include <quotearg.h>.
13766 (empty_location): Now const.
13767 (location_print): New function. Follow the recommendation of the
13768 GNU Coding Standards for locations that span file boundaries.
13769 * src/location.h: Do not include <quotearg.h>; no longer needed.
13770 (boundary): New type.
13771 (location_t): Use it. This allows locations to span file boundaries.
13772 All member uses changed: file -> start.file or end.file (as needed),
13773 first_line -> start.line, first_column -> start.column,
13774 last_line -> end.line, last_column -> end.column.
13775 (equal_boundaries): New function.
13776 (LOCATION_RESET, LOCATION_STEP): Remove.
13777 (LOCATION_PRINT): Remove. All callers changed to use location_print.
13778 (empty_location): Now const.
13779 (location_print): New decl.
13780 * src/parse-gram.y (lloc_default): New function, which handles
13781 empty locations more accurately.
13782 (YYLLOC_DEFAULT): Use it.
13783 (%token COLON): Remove.
13784 (%token ID_COLON): New token.
26b4a969 13785 (rules): Use it.
e19c4e5d
PE
13786 (declarations, rules): Remove trailing semicolon.
13787 (declaration, rules_or_grammar_declaration):
13788 Allow empty (";") declaration.
13789 (symbol_def): Remove empty actions; no longer needed.
13790 (rules_or_grammar_declaration): Remove trailing semicolon.
13791 (semi_colon.opt): Remove.
13792 * src/reader.h: Include location.h.
13793 (scanner_cursor): New decl.
13794 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
13795 rolling our own.
13796 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
13797 of *loc.
13798 (STEP): Remove. No longer needed, now that adjust_location does
13799 the work. All uses removed.
13800 (scanner_cursor): New var.
13801 (adjust_location): Renamed from extend_location. It now sets
13802 *loc and adjusts the scanner cursor. All uses changed.
13803 Don't bother testing for CR.
13804 (handle_syncline): Remove location arg; now updates scanner cursor.
13805 All callers changed.
13806 (unexpected_end_of_file): Now accepts start boundary of token or
13807 comment, not location. All callers changed. Update scanner cursor,
13808 not the location.
13809 (SC_AFTER_IDENTIFIER): New state.
13810 (context_state): Renamed from c_context. All uses changed.
13811 (id_loc, code_start, token_start): New local vars.
13812 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
13813 processing of Yacc white space and equivalents here.
13814 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
13815 instead of returning ID immediately, since we need to search for
13816 a subsequent colon.
13817 (<INITIAL>"'", "\""): Save token_start.
13818 (<INITIAL>"%{", "{", "%%"): Save code_start.
13819 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
13820 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
13821 BEGIN context_state at end, not INITIAL.
13822 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
13823 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
13824 Return correct token start.
13825 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
13826 the start of a character, string or multiline comment is found.
13827 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
13828 Reduction): Adjust reported locations to match the more-precise
13829 results now expected.
13830 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
13831 * tests/reduce.at (Useless Rules, Reduced Automaton,
13832 Underivable Rules): Likewise.
13833 * tests/regression.at (Invalid inputs): No longer `expecting ";"
13834 or "|"' now that so many other tokens are allowed by the new grammar.
13835
13836 * src/complain.h (current_file): Remove duplicate decl;
13837 current_file is now owned by files.h.
13838 * src/complain.c, src/scan-gram.l: Include files.h.
13839
138402002-12-06 Paul Eggert <eggert@twinsun.com>
26b4a969 13841
e19c4e5d
PE
13842 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
13843 promotes to int; it might be unsigned int.
13844 * data/yacc.c (yy_reduce_print): Likewise.
13845
13846 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
13847 be #defined in the prologue, not in the Bison declarations.
13848 This fixes Debian Bug 102878, reported by Shaul Karl.
26b4a969 13849
b64755e3
PE
138502002-12-02 Paul Eggert <eggert@twinsun.com>
13851
13852 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
13853 * lib/strtoul.c: New file, from gnulib.
13854 This fixes a porting bug reported by Peter Klein in
161a71f3 13855 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
b64755e3 13856
6e746484
PE
138572002-11-30 Paul Eggert <eggert@twinsun.com>
13858
b64755e3
PE
13859 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
13860 and put only a forward declaration in the prologue. This is for
13861 consistency with the other scanner helper functions.
13862
6ba55592
PE
13863 Type clashes now generate warnings, not errors, since it
13864 appears that POSIX may allow some grammars with type clashes.
13865 * src/reader.c (grammar_current_rule_check): Warn about
13866 type clashes instead of complaining.
13867 * tests/input.at (Type Clashes): Expect warnings, not complaints.
13868
6e746484
PE
13869 Add Yacc library, since POSIX requires it.
13870 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
13871 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
13872 * lib/main.c, lib/yyerror.c: New files.
13873
13874 gram_error can be static; it need not be extern.
13875 * src/reader.h (gram_error): Remove decl.
13876 * src/parse-gram.y (gram_error): Now static. Add static decl.
13877 (print_token_value): Omit parameter names from forward decl,
13878 for consistency.
13879
88510f9c
PE
138802002-11-29 Paul Eggert <eggert@twinsun.com>
13881
6e746484
PE
13882 * doc/bison.texinfo: Emphasize that yylex and yyerror must
13883 be declared before being used. E.g., one should typically
13884 declare them in the prologue. Use GNU coding style in examples.
13885 Put "const" consistently after the type it modifies. Mention
13886 that C99 supports "inline". Mention that yyerror traditionally
13887 returns "int".
13888
88510f9c
PE
13889 %parse-param and %lex-param now take just one argument, the
13890 declaration; the argument name is deduced from the declaration.
13891
13892 * doc/bison.texinfo (Parser Function, Pure Calling, Error
13893 Reporting, Table of Symbols): Document this.
13894 * src/parse-gram.y (add_param): New function.
13895 (COMMA): Remove.
13896 (declaration): Implement new rule for %parse-param and %lex-param.
13897 * src/scan-gram.l: "," now elicits a warning, rather than being
13898 a token; this is more compatible with byacc.
13899 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
13900
bb92250c
PE
139012002-11-27 Paul Eggert <eggert@twinsun.com>
13902
13903 Rename identifiers to avoid real and potential collisions.
13904
13905 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
13906 to avoid collision with lex macro described by Bruce Lilly in
161a71f3 13907 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
bb92250c
PE
13908 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
13909 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
13910 * src/parse-gram.y (print_token_value): Renamed from yyprint.
13911 All uses changed.
13912 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
13913 The name "yycontrol" violates the name space rules, and this stuff
13914 wasn't being used anyway.
13915 (input): Remove action; this stuff wasn't being used.
13916 (gram_error): Rename local variable yylloc -> loc.
13917 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
13918 (YY_DECL): Don't use "yy" at start of local variables.
13919 All uses changed, e.g., yylloc -> loc.
13920 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
13921 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
13922 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
13923 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
13924
13925 * src/parse-gram.y (gram_error): loc is now const *.
13926 * src/reader.h (gram_error): Likewise.
13927
3af4feb2
PE
139282002-11-24 Paul Eggert <eggert@twinsun.com>
13929
13930 Version 1.75c.
13931
13932 * tests/actions.at (Actions after errors): Use an output format
13933 more similar to that of the Printers and Destructors test.
13934 Test the position of the ';' token too.
13935 (Printers and Destructors): Likewise.
13936 (Printers and Destructors: %glr-parser): Remove for now, to avoid
13937 unnecessarily alarming people when the test fails.
13938
13939 * data/yacc.c (yyerrlab1): Move this label down, so that the
13940 parser does not discard the lookahead token if the user code
13941 invokes YYERROR. This change is required for POSIX conformance.
13942
13943 * lib/error.c: Sync with gnulib.
13944
139452002-11-22 Paul Eggert <eggert@twinsun.com>
13946
13947 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
13948 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
13949 * lib/xmalloc.c: Likewise.
26b4a969 13950
58004308
PE
139512002-11-20 Paul Eggert <eggert@twinsun.com>
13952
13953 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
13954
139552002-11-20 Paul Eggert <eggert@twinsun.com>
26b4a969 13956
58004308
PE
13957 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
13958 should use `if (! x) abort ();' rather than `assert (x);', and
13959 anyway it's one less thing to worry about configuring.
13960
13961 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
13962 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
13963 and replace all instances of assert with abort.
13964 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
13965 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
13966
13967 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
13968 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
13969 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
13970 hash_find_entry, hash_rehash, hash_insert): Likewise.
13971 * src/conflicts.c (resolve_sr_conflict): Likewise.
13972 * src/lalr.c (set_goto_map, map_goto): Likewise.
13973 * src/nullable.c (nullable_compute): Likewise.
13974 * src/output.c (prepare_rules, token_definitions_output): Likewise.
13975 * src/reader.c (packgram, reader): Likewise.
13976 * src/state.c (state_new, state_free, state_transitions_set,
13977 state_reduction_find): Likewise.
13978 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
13979 symbol_pack): Likewise.
13980 * src/tables.c (conflict_row, pack_vector): Likewise.
13981 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
13982 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
13983 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
13984 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
13985
13986 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
13987 (ARGMATCH_CONSTRAINT): New macro.
13988 (ARGMATCH_ASSERT): Use it.
13989
13990 * src/system.h (verify): New macro.
13991 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
13992 rather than assert.
13993 * src/tables.c (tables_generate): Likewise.
13994
13995 * src/struniq.c (struniq_assert): Now returns void, and aborts
13996 if the assertion is false.
13997 (struniq_assert_p): Remove.
13998 * src/struniq.h: Likewise.
13999
76ae8198
PE
140002002-11-18 Paul Eggert <eggert@twinsun.com>
14001
14002 * data/glr.c (yygetLRActions): Replace `yyindex' with
14003 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
14004 This fixes the regression with Sun ONE Studio 7 cc that I reported in
161a71f3 14005 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
76ae8198 14006
d3c4e709
AD
140072002-11-18 Akim Demaille <akim@epita.fr>
14008
14009 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
14010 space.
14011 From Tim Van Holder.
14012
8d8a7238
PE
140132002-11-17 Paul Eggert <eggert@twinsun.com>
14014
14015 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
14016 to "SyntaxError" for consistency with my 2002-11-15 change.
14017
14018 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
14019 not define to {}, since this breaks the common use of `YYDPRINTF
14020 ((...));' if a single statement is desired (e.g. before `else').
14021 Work around GCC warnings by surrounding corresponding calls with
14022 {} if needed.
14023 (yyhasResolvedValue): Remove unused function.
14024 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
14025 loop body.
14026 (yyreportSyntaxError): Renamed from yyreportParseError.
14027 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
14028 All uses changed.
14029 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
14030 extern when possible. Remove unused initializations.
14031
b0937b22
AD
140322002-11-16 Akim Demaille <akim@epita.fr>
14033
14034 Augment the similarity between GLR and LALR traces.
14035
14036 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
14037 (YY_REDUCE_PRINT): New.
14038 (yyparse): Use them.
14039 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
14040 YYDPRINT here.
14041 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
14042 state reached after the reduction/recovery, since...
14043 (yyparse, yyprocessOneStack): Report the state we are entering in.
14044
c5e3e510
AD
140452002-11-16 Akim Demaille <akim@epita.fr>
14046
14047 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
14048 Add support for --trace=skeleton.
14049 * src/scan-skel.l: %option debug.
14050 Scan strings of non-@ or \n instead of character by character.
14051 (scan_skel): Handle trace_skeleton.
14052 (QPUTS): New.
14053 (@output_parser_name@, @output_header_name@): ``Restore'' their
14054 support (used to be M4 macros).
14055 * data/yacc.c: Quote larger chunks, a la glr.c.
14056 * data/lalr1.cc: Likewise.
14057 The header guards are no longer available, so use some other
14058 string than `YYLSP_NEEDED'.
14059
4c6cc1db
AD
140602002-11-16 Akim Demaille <akim@epita.fr>
14061
14062 Make the ``Printers and Destructors'' test more verbose, taking
14063 `yacc.c''s behavior as (possibly wrong) reference.
14064
14065 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
14066 instead of fprint on stdout.
14067 Set and report the last_line of the symbols.
14068 Consistently display values and locations.
14069
6d9e8019
PE
140702002-11-16 Paul Eggert <eggert@twinsun.com>
14071
14072 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
14073
6e649e65
PE
140742002-11-15 Paul Eggert <eggert@twinsun.com>
14075
b25d88f6
PE
14076 * tests/actions.at (Actions after errors): New test case.
14077
6e649e65
PE
14078 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
14079 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
14080 tests/action.at, tests/calc.at, tests/conflicts.at,
14081 tests/cxx-type.at, tests/regression.at:
14082 "parse error" -> "syntax error" for POSIX compatibility.
14083 "parsing stack overflow..." -> "parser stack overflow" so
14084 that code matches Bison documentation.
14085
0f39aab9
AD
140862002-11-15 Akim Demaille <akim@epita.fr>
14087
14088 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
14089 take two BRACED_CODE, not two string_content.
14090 Free the scanner's obstack when we are done.
14091 (code_content): New.
14092 * tests/calc.at: Adjust.
14093 * doc/bison.texinfo: Adjust.
14094 Also, make sure to include the `,' for these declarations.
14095
761c1926
AD
140962002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
14097
14098 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
14099 definition; avoids potential autoreconf problems.
14100
b0f98b10
AD
141012002-11-15 Akim Demaille <akim@epita.fr>
14102
14103 Always check the value returned by yyparse.
14104
14105 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
14106 returned by yyparse.
14107 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
14108 Adjust calls.
14109 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
14110 returned by yyparse.
14111
970785f1
PH
141122002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14113
14114 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
14115 on input.at test.
14116
8fcc7db1
PE
141172002-11-14 Paul Eggert <eggert@twinsun.com>
14118
7ec1b48e
PE
14119 * src/output.c (output_skeleton): Call xfopen instead of
14120 duplicating xfopen's body.
14121
cfff7583 14122 Fix bugs reported by Nelson H. F. Beebe in
161a71f3 14123 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
cfff7583 14124
8fcc7db1
PE
14125 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
14126 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
14127 Group compiler. Instead, use "$CC -E bar.c". Include the .h
14128 file twice in the grammar, as an extra check.
14129
14130 * tests/input.at (Torturing the Scanner): Surround the
14131 backslash-newline tests with "#if 0", to make it less likely that
14132 we'll run into compiler bugs. Bring back solitary \ inside
14133 comment, but add a closing comment to work around HP C bug. Don't
e3aa65c5 14134 test backslash-newline in C character constant.
8fcc7db1 14135
4e8d992c
AD
141362002-11-14 Akim Demaille <akim@epita.fr>
14137
14138 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
14139 status of the compiler.
f32b346d 14140 Calling `exit 1' is no longer needed.
4e8d992c
AD
14141 Reported by Nelson H. F. Beebe.
14142
9501dc6e
AD
141432002-11-14 Akim Demaille <akim@epita.fr>
14144
14145 * tests/atlocal.in (CPPFLAGS): We have config.h.
14146 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
14147 New.
14148 * tests/actions.at, tests/calc.at, tests/conflicts.at,
14149 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
14150 * tests/regression.at, tests/torture.at: Use them for all the
14151 grammars that are to be compiled.
14152 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
14153 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
14154 * doc/bison.texinfo (GLR Parsers): Document `inline'.
14155
18b519c0
AD
141562002-11-14 Akim Demaille <akim@epita.fr>
14157
14158 * doc/bison.texinfo: Various formatting changes (alignments in
14159 samples, additional @group/@end group, GCS in samples.
14160 Use @deffn instead of simple @table to define the directives,
14161 macros, variables etc.
14162
9a86cdb9
PE
141632002-11-13 Paul Eggert <eggert@twinsun.com>
14164
daa33def 14165 Fix some bugs reported by Albert Chin-A-Young in
161a71f3 14166 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
18b519c0 14167
daa33def 14168 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
8fcc7db1 14169 -o c"; the HP C compiler chatters during compilation.
daa33def
PE
14170 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
14171 * tests/headers.at (export YYLTYPE): Likewise.
14172
14173 * tests/input.at (Torturing the Scanner): Remove lines containing
8fcc7db1 14174 solitary backslashes, as they tickle a bug in the HP C compiler.
daa33def 14175
9a86cdb9
PE
14176 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
14177 comments, since they're not portable. Use GNU coding style.
14178
9c1e26bd
AD
141792002-11-13 Akim Demaille <akim@epita.fr>
14180
14181 * data/yacc.c: Leave bigger chunks of quoted text.
14182 (YYDSYMPRINTF): New.
14183 Use it to report symbol activities.
14184 * data/glr.c (YYDSYMPRINTF): New.
14185 Use it.
14186
87f721cc
PE
141872002-11-12 Paul Eggert <eggert@twinsun.com>
14188
14189 Version 1.75b.
14190
14191 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
14192 (yyglrReduce): Return yyok, not 0.
14193 This should avoid the enumerated-type warnings reported
464c6927 14194 by Nelson H. F. Beebe in
161a71f3 14195 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
87f721cc
PE
14196
14197 * lib/bbitset.h (BITSET_INLINE): Remove.
14198 * lib/bitset.h [! BITSET_INLINE]: Remove.
14199 (bitset_set, bitset_reset, bitset_test): Rename local vars
14200 to avoid shadowing warnings by GCC.
14201
14202 * data/glr.c (inline): Remove #define. It's the user's
14203 responsibility to #define it away, just like 'const'.
464c6927 14204 This fixes one of the bugs reported by Nelson H. F. Beebe in
161a71f3 14205 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
18b519c0 14206
87f721cc
PE
14207 * Makefile.maint (po-check): Scan .l and .y files instead of the
14208 .c and the .h files that they generate. This fixes the bug
14209 reported by Tim Van Holder in:
161a71f3 14210 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
87f721cc
PE
14211 Look for N_ as well as for _. Try to avoid matching #define for
14212 N_ and _.
14213 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
14214 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
14215 * src/scan-gram.l: Revamp regular expressions so that " and '
14216 do not confuse xgettext.
14217
14218 * src/struniq.h (struniq_new): Do not declare the return type
14219 to be 'const'; this violates the C standard.
14220 * src/struniq.c (struniq_new): Likewise.
14221
be14ade5
AD
142222002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
14223
14224 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
14225 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
14226 linker.
14227
05291fbc
AD
142282002-11-12 Akim Demaille <akim@epita.fr>
14229
14230 * Makefile.maint: Sync with Autoconf:
14231 (local_updates): New.
14232
1f5fd52e
AD
142332002-11-12 Akim Demaille <akim@epita.fr>
14234
14235 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
14236
283f1e64
AD
142372002-11-12 Akim Demaille <akim@epita.fr>
14238
14239 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
14240 locations.
14241
886b69d1
AD
142422002-11-12 Akim Demaille <akim@epita.fr>
14243
14244 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
14245 not yyvalue.
14246
3df37415
AD
142472002-11-12 Akim Demaille <akim@epita.fr>
14248
14249 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
14250 Use it to test the GLR parser.
14251
7bd6c77e
AD
142522002-11-12 Akim Demaille <akim@epita.fr>
14253
14254 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
14255 defines it.
14256 * data/glr.c (yystos): New.
14257 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
14258 (YYDSYMPRINT): New.
14259 (yyval): Don't define it, it is handled via M4.
14260 (yyrecoverParseError): Free verbosely the discarded symbols.
14261 * data/yacc.c (yysymprint): Remove, rather...
14262 (b4_yysymprint_generate): invoke.
14263 * data/c.m4 (b4_yysymprint_generate): New.
14264 Accept pointers as arguments, as opposed to the version from
14265 yacc.c.
14266 (b4_yydestruct_generate): Likewise.
14267 * tests/cations.at (Printers and Destructors): Use Bison directives
14268 instead of CPP macros.
14269 Don't rely on internal details.
14270
b0400cc6
AD
142712002-11-12 Akim Demaille <akim@epita.fr>
14272
14273 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
14274 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
14275 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
14276 it against YYEMPTY and so forth), work on yytoken (i.e., set
14277 it to YYEMPTY etc.).
14278 (yydestruct): Replace with a b4_yydestruct_generate invocation.
14279 (b4_symbol_actions): Remove.
14280 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
14281 for 0, end-of-input.
14282
72f889cc
AD
142832002-11-12 Akim Demaille <akim@epita.fr>
14284
14285 * doc/bison.texinfo (Destructor Decl): New.
14286
b1ae9233
AD
142872002-11-12 Akim Demaille <akim@epita.fr>
14288
14289 * src/tables.c (tables_generate): Use free for pointers that
14290 cannot be NULL, not XFREE.
14291 (pack_vector): Use assert, not fatal, for bound violations.
14292 * src/state.c (state_new): Likewise.
14293 * src/reader.c (reader): Likewise.
14294 * src/lalr.c (set_goto_map): Likewise.
72f889cc 14295 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
b1ae9233
AD
14296 the file name.
14297
7ec2d4cd
AD
142982002-11-12 Akim Demaille <akim@epita.fr>
14299
14300 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
14301 Restore.
14302 * src/scan-gram.l (last_string): Is global to the file, not to
14303 yylex.
14304 * src/parse-gram.y (input): Don't append the epilogue here,
14305 (epilogue.opt): do it here, and free the scanner's obstack.
14306 * src/reader.c (epilogue_set): Rename as...
14307 (epilogue_augment): this.
14308 * data/c.m4 (b4_epilogue): Defaults to empty.
14309
573a6cd3
AD
143102002-11-12 Akim Demaille <akim@epita.fr>
14311
14312 * src/getargs.c (long_options): Remove duplicates.
14313 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
14314 Remove.
14315 * doc/bison.rnh: Remove.
14316 * doc/bison.texinfo (VMS Invocation): Remove.
14317
95612cfa
AD
143182002-11-12 Akim Demaille <akim@epita.fr>
14319
14320 * src/struniq.h, src/struniq.c (struniq_t): Is const.
14321 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
14322
14323 Use struniq for symbols.
14324
14325 * src/symtab.h (symbol_t): The tag member is a struniq.
14326 (symbol_type_set): Adjust.
14327 * src/symtab.c (symbol_new): Takes a struniq.
14328 (symbol_free): Don't free the tag member.
14329 (hash_compare_symbol_t, hash_symbol_t): Rename as...
14330 (hash_compare_symbol, hash_symbol): these.
14331 Use the fact that tags as struniqs.
14332 (symbol_get): Use struniq_new.
14333 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
14334 Returns a strniq.
14335 * src/reader.h (merger_list, grammar_currentmerge_set): The name
14336 and type members are struniqs.
14337 * src/reader.c (get_merge_function)
14338 (grammar_current_rule_merge_set): Adjust.
14339 (TYPE, current_type): Are struniq.
14340
14341 Use struniq for file names.
14342
14343 * src/files.h, src/files.c (infile): Split into...
14344 (grammar_file, current_file): these.
14345 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
14346 * src/reduce.c (reduce_print): Likewise.
14347 * src/getargs.c (getargs): Likewise.
14348 * src/complain.h, src/complain.c: Likewise.
14349 * src/main.c (main): Call struniqs_new early enough to use it for
14350 file names.
14351 Don't free the input file name.
14352
3e6656f9
AD
143532002-11-12 Akim Demaille <akim@epita.fr>
14354
14355 * src/symtab.c (symbol_free): Remove dead deactivated code:
14356 type_name are properly removed.
14357 Don't use XFREE to free items that cannot be NULL.
14358 * src/struniq.h, src/struniq.c: New.
14359 * src/main.c (main): Initialize/free struniqs.
14360 * src/parse-gram.y (%union): Add astruniq member.
14361 (yyprint): Adjust.
14362 * src/scan-gram.l (<{tag}>): Return a struniq.
14363 Free the obstack bit that used to store it.
14364 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
14365
7672019c
PE
143662002-11-11 Paul Eggert <eggert@twinsun.com>
14367
14368 Revamp to fix many (but not all) of the C- and M4-related quoting
14369 problems. Among other things, this fixes the Bison bug reported
14370 by Jan Hubicka when processing the Bash grammar; see:
161a71f3 14371 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
7672019c
PE
14372
14373 Use new @ escapes consistently. Represent brackets with @{ and @}
14374 rather than @<:@ and @:>@, since this works a bit better with dumb
14375 editors like vi. Represent @ with @@, since @ is now consistently
14376 an escape. Use @oline@ and @ofile@ rather than __oline__ and
14377 __ofile__, to avoid unexpected expansions. Similarly, use @output
14378 rather than #output.
14379
14380 * data/c.m4 (b4_copyright): Omit file name from comment, since
14381 the file name could contain "*/".
14382 (b4_synclines_flag): Don't quote the 2nd argument; it should already
14383 be quoted. All uses changed.
14384
14385 * data/glr.c: Use new @ escapes consistently.
14386 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
14387 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
14388 Remove, since they couldn't handle arbitrary characters in file
14389 names.
14390 * data/lalr1.cc: Likewise.
14391 * data/yacc.c: Likewise.
14392
14393 * src/files.c (output_infix): Remove; all uses removed.
14394 * src/files.h: Likewise.
14395
14396 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
14397 mishandled funny characters in file names, and anyway it isn't
14398 needed any more.
14399 * data/yacc.c: Likewise.
14400 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
14401
14402 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
14403 * data/yacc.c: Likewise.
14404
14405 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
14406 strings now.
14407 (muscle_init): Quote filename as a C string.
14408 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
14409 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
14410 * src/output.c (escaped_file_name_output): New function.
14411 (prepare_symbols): Quote tokens for M4.
14412 (prepare): Don't insert output_infix, output_prefix,
14413 output_parser_name, output_header_name; this is now down by scan-skel.
14414 Insert skeleton as a C string.
14415
14416 * src/output.c (user_actions_output, symbol_destructors_output,
14417 symbol_printers_output): Quote filenames for C and M4.
14418 * src/reader.c (prologue_augment, epilogue_set): Likewise.
14419
14420 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
14421 escapes other than \\ and \'; this simplifies the code.
14422 (<SC_STRING>): Likewise, for \\ and \".
14423 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
14424 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
14425 Use new escapes @{ and @} for [ and ].
14426
14427 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
14428 them with auto vars.
14429 Switch to new escape scheme, where @ is the escape character uniformly.
14430 Abort if a stray escape character is found. Avoid unbounded input
14431 buffer when parsing non-escaped text.
14432
14433 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
14434 __oline__, #output, $@, and @{ do not have unintended meanings.
14435
acea4f3b
PE
144362002-11-09 Paul Eggert <eggert@twinsun.com>
14437
14438 Fix the test failure due to GCC warnings described in
161a71f3 14439 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
acea4f3b
PE
14440 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
14441 evaluate to 0 if it's impossible for NINF to be in the respective
14442 table.
14443 (yygetLRActions, yyrecoverParseError): Use them.
14444
14445 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
14446 counted in the token inserted at end of file. Now takes
14447 location_t *, not location_t, so that the location can be
14448 adjusted. All uses changed.
14449
14450 * tests/regression.at (Invalid inputs): Adjust wording in
14451 diagnostic to match the new behavior.
14452
14453 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
14454 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
14455 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
14456 abort ();'. This reduces the runtime of the "Many lookaheads"
14457 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
14458 GCC 3.2.
14459
20ef1ad5
PE
144602002-11-07 Paul Eggert <eggert@twinsun.com>
14461
14462 * src/parse-gram.y (CHARACTER): Remove unused token.
14463 All uses removed.
14464
14465 * src/scan-gram.l: Remove stack option. We no longer use the
14466 stack, since the stack was never deeper than 1; instead, use the
14467 new auto var c_context to record the stacked value.
14468
14469 Remove nounput option. At an unexpected end of file, we now unput
14470 the minimal input necessary to end cleanly; this simplifies the
14471 code.
14472
14473 Avoid unbounded token sizes where this is easy.
14474
14475 (unexpected_end_of_file): New function.
14476 Use it to systematize the error message on unexpected EOF.
14477 (last-string): Now auto, not static.
14478 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
14479 (scanner_last_string_free): Remove; not used.
14480 (percent_percent_count): Move decl to just before use.
14481 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
14482 not the (never otherwised-used) CHARACTER.
14483
93724f13
AD
144842002-11-07 Akim Demaille <akim@epita.fr>
14485
14486 Let yyerror always receive the msg as last argument, so that
14487 yyerror can be variadic.
14488
14489 * data/yacc.c (b4_yyerror_args): New.
14490 Use it when calling yyerror.
14491 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
14492 Use it when calling yyerror.
14493 * doc/bison.texinfo (Error Reporting): Adjust.
14494 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
14495 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
14496
6e40b4eb
AD
144972002-11-06 Akim Demaille <akim@epita.fr>
14498
14499 #line should have quoted strings.
14500 Ideally, this should be done by m4_quotearg.
14501
14502 * src/scan-skel.l: Include quotearg.h.
14503 Quote __ofile__.
14504 * src/output.c (symbol_printers_output)
14505 (symbol_destructors_output): Quote the file name.
14506
2dfbfc12
AD
145072002-11-06 Akim Demaille <akim@epita.fr>
14508
14509 * tests/regression.at (Invalid inputs): Adjust to the recent
14510 messages.
14511
437c2d80
AD
145122002-11-06 Akim Demaille <akim@epita.fr>
14513
14514 Restore --no-lines.
14515 Reported by Jim Kent.
14516
14517 * data/c.m4 (b4_syncline): New.
14518 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
14519 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
14520 * src/output.c (user_actions_output): Likewise.
14521 (prepare): Define 'b4_synclines_flag'.
2dfbfc12 14522 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
437c2d80 14523
900c5db5
AD
145242002-11-06 Akim Demaille <akim@epita.fr>
14525
14526 * src/main.c (main): Free `infile'.
14527 * src/scan-gram.l (handle_syncline): New.
14528 Recognize `#line'.
14529 * src/output.c (user_actions_output, symbol_destructors_output)
14530 (symbol_printers_output): Use the location's file name, not
14531 infile.
14532 * src/reader.c (prologue_augment, epilogue_set): Likewise.
14533
e183b123 145342002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
51b4a04c 14535
e183b123 14536 * src/tables.c (matching_state): Don't allow states to match if
51b4a04c 14537 either has GLR conflict entries.
e183b123 14538
193eb6b7
PE
145392002-11-05 Paul Eggert <eggert@twinsun.com>
14540
e183b123
PE
14541 * src/scan-gram.l: Use more accurate diagnostics, e.g.
14542 "integer out of range" rather than "invalid value".
14543 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
14544 accordingly.
14545
193eb6b7
PE
14546 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
14547 Also, remove one static variable in the scanner.
14548
14549 * src/scan-gram.l (braces_level): Now auto, not static.
14550 Initialize to zero if the compiler is being picky.
14551 (INITIAL): Clear braces_level instead of incrementing it.
14552 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
14553 as POSIX 1003.1-2001 requires.
14554 * src/system.h (IF_LINT): New macro, taken from coreutils.
14555 * configure.ac: Define "lint" if --enable-gcc-warnings.
14556
29c01725
AD
145572002-11-05 Akim Demaille <akim@epita.fr>
14558
14559 * src/scan-gram.l: When it starts with `%', complain about the
14560 whole directive, not just that `invalid character: %'.
14561
8aeac3ca
AD
145622002-11-04 Akim Demaille <akim@epita.fr>
14563
14564 * Makefile.maint: Update from Autoconf.
14565 (update, cvs-update, po-update, do-po-update): New.
14566
793a58bb
AD
145672002-11-04 Akim Demaille <akim@epita.fr>
14568
14569 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
14570 and yyerror.
14571 Have yyerror `use' its arguments.
14572 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
14573 returns true when location & yacc & pure & parse-param.
14574 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
14575
c4d720cd
AD
145762002-11-04 Akim Demaille <akim@epita.fr>
14577
14578 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
14579 clashes.
14580 * src/scan-gram.l: Use [\'] instead of ['] to pacify
14581 font-lock-mode.
14582 Use complain_at.
14583 Use quote, not quote_n since LOCATION_PRINT no longer uses the
14584 slot 0.
14585
613a0dc5
PE
145862002-11-03 Paul Eggert <eggert@twinsun.com>
14587
14588 * src/reader.c (get_merge_function, grammar_current_rule_check):
14589 Use consistent diagnostics for reporting type name clashes.
14590 Quote the types with <>, for consistency with Yacc.
14591 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
14592
2a8d363a
AD
145932002-11-03 Akim Demaille <akim@epita.fr>
14594
14595 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
14596 New.
14597 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
14598 (b4_parse_param): Remove.
14599 Use b4_identification.
14600 Propagate b4_pure_args where needed to pass them to yyerror.
14601 * data/glr.m4 (b4_parse_param): Remove.
14602 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
14603 (b4_lpure_formals): New.
14604 Use b4_identification.
14605 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
14606 b4_user_formals and b4_user_args.
14607 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
14608 (yyreportAmbiguity): When using a pure parser, also need
14609 the location, and the parse-params.
14610 Adjust callers.
14611 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
14612 When using a pure parser, also need the parse-params.
14613 Adjust callers.
14614 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
14615 (%pure-parser + %parse-param) LALR and GLR parsers.
14616 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
14617 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
14618 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
14619 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
14620 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
14621 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
14622 * doc/bison.texinfo: Untabify the whole file.
14623 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
14624 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
14625 (Error Reporting): Adjust to these new directives.
14626 Document %error-verbose, deprecate YYERROR_VERBOSE.
14627
9e32add8
AD
146282002-11-03 Akim Demaille <akim@epita.fr>
14629
14630 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
14631 AT_CHECK_CALC_GLR invocations to use % directives, instead of
14632 command line options.
14633 * tests/cxx-type.at: Formatting changes.
14634
b02d90a5
PE
146352002-11-03 Paul Eggert <eggert@twinsun.com>
14636
14637 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
14638 to count columns correctly, and to check for invalid inputs.
9e32add8 14639
b02d90a5
PE
14640 Use mbsnwidth to count columns correctly. Account for tabs, too.
14641 Include mbswidth.h.
14642 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
14643 (extend_location): New function.
14644 (YY_LINES): Remove.
14645
14646 Handle CRLF in C code rather than in Lex code.
14647 (YY_INPUT): New macro.
14648 (no_cr_read): New function.
14649
14650 Scan UCNs, even though we don't fully handle them yet.
14651 (convert_ucn_to_byte): New function.
14652
14653 Handle backslash-newline correctly in C code.
14654 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
14655 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
14656 all uses changed.
14657 (tag, splice): New EREs. Do not allow NUL or newline in tags.
14658 Use {splice} wherever C allows backslash-newline.
14659 YY_STEP after space, newline, vertical-tab.
14660 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
9e32add8 14661
b02d90a5
PE
14662 (letter, id): Don't assume ASCII; e.g., spell out a-z.
14663
14664 ({int}, handle_action_dollar, handle_action_at): Check for integer
14665 overflow.
9e32add8 14666
b02d90a5
PE
14667 (YY_STEP): Omit trailing semicolon, so that it's more like C.
14668
14669 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
14670 as well as \000. Check for UCHAR_MAX, not 255.
14671 Allow \x with an arbitrary positive number of digits, as in C.
14672 Check for overflow here.
14673 Allow \? and UCNs, for compatibility with C.
14674
14675 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
14676 with quote slot used by complain_at.
14677
14678 * tests/input.at: Add tests for backslash-newline, m4 quotes
14679 in symbols, long literals, and funny escapes in strings.
14680
14681 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
14682 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
14683 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
14684 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
14685 * m4/mbswidth.m4: New file, from GNU coreutils.
14686
14687 * doc/bison.texinfo (Grammar Outline): Document // comments.
14688 (Symbols): Document that trigraphs have no special meaning in Bison,
14689 nor is backslash-newline allowed.
14690 (Actions): Document that trigraphs have no special meaning.
14691
14692 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
14693 no longer used.
14694
146952002-11-02 Paul Eggert <eggert@twinsun.com>
14696
14697 * src/reader.c: Don't include quote.h; not needed.
14698 (get_merge_function): Reword warning to be consistent with
14699 type clash diagnostic in grammar_current_rule_check.
14700
14701 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
14702 bug in trigraph handling.
14703
14704 * src/output.c (prepare_symbols): When printing token names,
14705 escape "[" as "@<:@" and likewise for "]".
14706
14707 * src/system.h (errno): Remove declaration, as we are now
14708 assuming C89 or better, and C89 guarantees errno.
14709
762b212b
PE
147102002-10-30 Paul Eggert <eggert@twinsun.com>
14711
14712 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
14713 Check for close failures.
14714 * src/files.h (xfclose): Return void, not int, since it always
14715 returned zero.
14716 * src/files.c (xfclose): Likewise. Report I/O error if ferror
14717 indicates one.
14718 * src/output.c (output_skeleton): Use xfclose rather than fclose
14719 and ferror. xfclose now checks ferror.
14720
14721 * data/glr.c (YYLEFTMOST_STATE): Remove.
14722 (yyreportTree): Use a stack-based leftmost state. This avoids
14723 our continuing battles with bogus warnings about initializers.
14724
56100c60
AD
147252002-10-30 Akim Demaille <akim@epita.fr>
14726
14727 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
14728 #if.
14729
51b4a04c
PH
147302002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14731
14732 * tests/glr-regr1.at: New test for reported regressions.
14733 * tests/testsuite.at: Add glr-regr1.at test.
14734 * tests/Makefile.am: Add glr-regr1.at test.
e183b123 14735
bf1ebda2
PE
147362002-10-24 Paul Eggert <eggert@twinsun.com>
14737
5c16c6b1
PE
14738 Version 1.75a.
14739
bf1ebda2
PE
14740 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
14741 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
14742 we use malloc. Don't assume 'A' through 'Z' are contiguous.
14743 Don't assume strdup exists; POSIX says its an XSI extension.
14744 Check for buffer overflow on input.
14745
b526ee61
AD
147462002-10-24 Akim Demaille <akim@epita.fr>
14747
14748 * src/output.c (output_skeleton): Don't disable M4sugar comments
14749 too soon: it results in comments being expanded.
14750 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
14751 first output.
14752
f1886bb2
AD
147532002-10-24 Akim Demaille <akim@epita.fr>
14754
14755 * data/yacc.c (m4_int_type): New.
14756 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
14757 char' as only yacc.c wants K&R portability.
14758 * data/glr.c (yysigned_char): Remove.
14759 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
14760 Reported by Quoc Peyrot.
14761
c5576256
PE
147622002-10-23 Paul Eggert <eggert@twinsun.com>
14763
14764 * src/main.c (main): With --trace=time, report times even if a
14765 non-fatal error occurs. Formerly, the times were reported in some
14766 such cases but not in others.
14767 * src/reader.c (reader): Just return if a complaint has been issued,
14768 instead of exiting, so that 'main' can report times.
14769
27b0ffea
AD
147702002-10-22 Akim Demaille <akim@epita.fr>
14771
14772 * src/system.h: Include sys/types.
14773 Reported by Bert Deknuydt.
14774
223a7883
PE
147752002-10-23 Paul Eggert <eggert@twinsun.com>
14776
14777 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
14778 Suggested by Art Haas.
14779
147802002-10-22 Paul Eggert <eggert@twinsun.com>
14781
14782 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
14783 decl; not needed any more.
14784 * src/main.c (main): Use return to exit, undoing yesterday's change.
14785 The last OS that we could find where this wouldn't work is
14786 SunOS 3.5, and that's too old to worry about now.
14787
14788 * data/glr.c (struct yyltype): Define members even when not
14789 doing locations. This is more consistent with yacc.c, and it
14790 works around the following bug reports:
161a71f3
PE
14791 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
14792 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
27b0ffea 14793
223a7883
PE
14794 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
14795 @acronym consistently. Standardize on "Yacc" instead of "YACC",
14796 "Algol" instead of "ALGOL". Give a bit more history about BNF.
14797
8b76775a
AD
147982002-10-22 Akim Demaille <akim@epita.fr>
14799
14800 * data/README: New.
14801
6db10d14
PE
148022002-10-21 Paul Eggert <eggert@twinsun.com>
14803
14804 Be consistent about 'bool'; the old code used an enum in one
14805 module and an int in another, and this violates the C standard.
14806 * m4/stdbool.m4: New file, from coreutils 4.5.3.
14807 * configure.ac (AC_HEADER_STDBOOL): Add.
14808 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
14809 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
14810 * src/symtab.c (hash_compare_symbol_t): Likewise.
14811 * src/system.h (bool, false, true): Use a definition consistent
14812 with ../lib/hash.c. All uses changed.
14813
14814 * src/complain.c (warning_issued): Renamed from warn_message_count,
14815 so that we needn't worry about integer overflow (!).
14816 Now of type bool. All uses changed.
14817 (complaint_issued): Renamed from complain_message_count; likewise.
14818
14819 * src/main.c (main): Use exit to exit with failure.
27b0ffea 14820
6db10d14
PE
14821 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
14822 rather than 1 and 0.
14823 * src/main.c (main): Likewise.
14824 * src/getargs.c (getargs): Likewise.
14825 * src/reader.c (reader): Likewise.
14826
14827 * src/getarg.c (getargs): Remove duplicate code for
14828 "Try `bison --help'".
14829
14830 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
14831 What was that "2" for?
14832
14833 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
14834 * src/getargs.c (usage): Likewise.
14835
14836 * src/getargs.c (getargs): When there are too few operands, report
14837 the last one. When there are too many, report the first extra
14838 one. This is how diffutils does it.
14839
92a060fd
PE
148402002-10-20 Paul Eggert <eggert@twinsun.com>
14841
14842 Remove K&R vestiges.
14843 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
14844 * src/complain.c (VA_START): Remove. Assume prototypes.
14845 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
14846 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
14847 fatal): Assume prototypes.
14848 * src/complain.h: Assume prototypes.
14849 * src/system.h (PARAMS): Remove.
14850 Include <limits.h> unconditionally, since it's guaranteeed even
14851 for a freestanding C89 compiler.
14852 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
14853 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
8b76775a 14854
e7cb57c0
AD
148552002-10-20 Akim Demaille <akim@epita.fr>
14856
14857 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
14858 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
14859 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
14860 (yyresolveStates, yyresolveAction, yyresolveStack)
14861 (yyprocessOneStack): Use them.
14862 (yy_reduce_print): New.
14863 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
14864
0245f82d
AD
148652002-10-20 Akim Demaille <akim@epita.fr>
14866
14867 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
14868 arguments and output `void'.
14869 (b4_c_function): Rename as...
14870 (b4_c_function_def): this.
14871 (b4_c_function_decl, b4_c_ansi_function_def)
14872 (b4_c_ansi_function_decl): New.
14873 Change the interpretation of the arguments: before `int, foo', now
14874 `int foo, foo'.
14875 * data/yacc.c (yyparse): Prototype and define thanks to these.
14876 Adjust b4_c_function_def uses.
14877 * data/glr.c (yyparse): Likewise, but ANSI only.
14878
39912f52
AD
148792002-10-20 Akim Demaille <akim@epita.fr>
14880
14881 * src/output.c (prepare): Move the definition of `tokens_number',
14882 `nterms_number', `undef_token_number', `user_token_number_max'
14883 to...
14884 (prepare_tokens): Here.
14885 (prepare_tokens): Rename as...
14886 (prepare_symbols): this.
14887 (prepare): Move the definition of `rules_number' to...
14888 (prepare_rules): here.
14889 (prepare): Move the definition of `last', `final_state_number',
14890 `states_number' to...
14891 (prepare_states): here.
14892 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
14893
20c1e2ad
AD
148942002-10-20 Akim Demaille <akim@epita.fr>
14895
14896 * src/tables.h, src/tables.c, src/output.c: Comment changes.
14897
21964f43
AD
148982002-10-20 Akim Demaille <akim@epita.fr>
14899
14900 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
14901 * data/c.m4: here.
14902
66d30cd4
AD
149032002-10-20 Akim Demaille <akim@epita.fr>
14904
14905 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
14906 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
14907 `pair'.
14908 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
14909 `name' to...
14910 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
14911 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
14912 These.
14913
95f2c9fe
PE
149142002-10-19 Paul Eggert <eggert@twinsun.com>
14915
14916 Do not create a temporary file, as that involves security and
14917 cleanup headaches. Instead, use a pair of pipes.
14918 Derived from a suggestion by Florian Krohm.
14919 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
14920 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
14921 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
14922 (BISON_PREREQ_SUBPIPE): Add.
14923 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
14924 Add subpipe.h, subpipe.c.
14925 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
14926 * po/POTFILES.in: Add lib/subpipe.c.
14927 * src/output.c: Include "subpipe.h".
14928 (m4_invoke): Remove decl.
14929 (scan_skel): New decl.
14930 (output_skeleton): Use pipe rather than temporary file for m4 input.
14931 Check that m4sugar.m4 is readable, to avoid deadlock.
14932 Check for pipe I/O error.
14933 * src/scan-skel.l (readpipe): Remove decl.
14934 (scan_skel): New function, to be used in place of m4_invoke.
14935 Read from stream rather than file.
66d30cd4 14936
95f2c9fe
PE
14937 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
14938 float, as this generates a warning on Solaris 8 + GCC 3.2 with
14939 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
14940 this generates a more-accurate value anyway.
14941
14942 * lib/timevar.c (timervar_accumulate): Rename locals to
14943 avoid confusion with similarly-named more-global.
14944 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
14945
14946 * src/output.c (prepare): Use xstrdup to convert char const *
14947 to char *, to avoid GCC warning.
14948
c19988b7
AD
149492002-10-19 Akim Demaille <akim@epita.fr>
14950
14951 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
14952 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
14953 Use them to have `calc.y' ready for %pure-parser.
14954 * data/yacc.c (YYLEX): Pass a yylex return type to
14955 b4_c_function_call.
14956
ae7453f2
AD
149572002-10-19 Akim Demaille <akim@epita.fr>
14958
14959 Prototype support of %lex-param and %parse-param.
14960
14961 * src/parse-gram.y: Add the definition of the %lex-param and
14962 %parse-param tokens, plus their rules.
14963 Drop the `_' version of %glr-parser.
14964 Add the "," token.
14965 * src/scan-gram.l (INITIAL): Scan them.
14966 * src/muscle_tab.c: Comment changes.
14967 (muscle_insert, muscle_find): Rename `pair' as `probe'.
14968 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
14969 (muscle_entry_s): The `value' member is no longer const.
14970 Adjust all dependencies.
14971 * src/muscle_tab.c (muscle_init): Adjust: use
14972 MUSCLE_INSERT_STRING.
14973 Initialize the obstack earlier.
14974 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
14975 (muscle_pair_list_grow): New.
14976 * data/c.m4 (b4_c_function_call, b4_c_args): New.
14977 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
14978 * tests/calc.at: Use %locations, not --locations.
14979 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
14980
0e575721
AD
149812002-10-19 Akim Demaille <akim@epita.fr>
14982
14983 * src/getargs.c (usage): Take status as argument and exit
14984 accordingly.
14985 Report the traditional `Try ... --help' message when status != 0.
14986 (usage, version): Don't take a FILE * as arg, it is pointless.
14987 (getargs): When there is an incorrect number of arguments, make it
14988 an error, and report it GNUlically thanks to `usage ()'.
14989
724ce7f5
PE
149902002-10-18 Paul Eggert <eggert@twinsun.com>
14991
3a781eb2
PE
14992 * data/glr.c (yyreportParseError): Don't assume that sprintf
14993 yields the length of the printed string, as this is not true
14994 on SunOS 4.1.4. Reported by Peter Klein.
14995
724ce7f5
PE
14996 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
14997 * tests/conflicts.at (%nonassoc and eof): Likewise.
14998 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
14999
473d0a75
AD
150002002-10-17 Akim Demaille <akim@epita.fr>
15001
15002 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
15003 * src/getargs.c (trace_types, trace_args): Adjust.
15004 * src/reader.c (grammar_current_rule_prec_set)
15005 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
15006 Standardize error messages.
15007 And s/@prec/%prec/!
15008 (reader): Use trace_flag to enable scanner/parser debugging,
15009 instead of an adhoc scheme.
15010 * src/scan-gram.l: Remove trailing debugging code.
15011
e76d2469
PE
150122002-10-16 Paul Eggert <eggert@twinsun.com>
15013
93e2236a
PE
15014 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
15015 MUSCLE_TAB_H.
15016
e76d2469
PE
15017 * NEWS: Officially drop support for building Bison with K&R C,
15018 since it didn't work anyway and it's not worth worrying about.
15019 * Makefile.maint (wget_files): Remove ansi2knr.c.
15020 (ansi2knr.c-url_prefix): Remove.
15021 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
15022 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
15023 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
15024
5bd1c419
PE
150252002-10-15 Paul Eggert <eggert@twinsun.com>
15026
15027 Stop using the "enum_" trick for K&R-style function definitions;
15028 it confused me, and I was the author! Instead, assume that people
15029 who want to use K&R C compilers (when using these modules in GCC,
15030 perhaps?) will run ansi2knr.
15031
15032 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
15033 All uses of "enum_" changed to "enum ".
15034 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
15035 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
e76d2469 15036
5bd1c419
PE
15037 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
15038 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
15039 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
15040 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
15041 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
15042 abitset_not, abitset_ones, abitset_or, abitset_or_and,
15043 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
15044 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
15045 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
15046 Use function prototypes; this removes the need for declaring
15047 static functions simply to provide their prototypes.
15048 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
15049 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
15050 bitset_count_, bitset_create, bitset_dump, bitset_first,
15051 bitset_free, bitset_init, bitset_last, bitset_next,
15052 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
15053 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
15054 bitset_print, bitset_release_memory, bitset_toggle_,
15055 bitset_type_choose, bitset_type_get, bitset_type_name_get,
15056 debug_bitset): Likewise.
15057 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
15058 * lib/bitset_stats.c (bitset_log_histogram_print,
15059 bitset_percent_histogram_print, bitset_stats_and,
15060 bitset_stats_and_cmp, bitset_stats_and_or,
15061 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
15062 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
15063 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
15064 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
15065 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
15066 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
15067 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
15068 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
15069 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
15070 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
15071 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
15072 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
15073 bitset_stats_zero): Likewise.
15074 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
15075 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
15076 bitsetv_dump, debug_bitsetv): Likewise.
15077 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
15078 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
15079 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
15080 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
15081 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
15082 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
15083 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
15084 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
15085 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
15086 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
15087 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
15088 Likewise.
15089 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
15090 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
15091 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
15092 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
15093 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
15094 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
15095 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
15096 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
15097 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
15098 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
15099 lbitset_xor_cmp, lbitset_zero): Likewise.
e76d2469 15100
ae26e1f0
AD
151012002-10-14 Akim Demaille <akim@epita.fr>
15102
15103 Version 1.75.
15104
d43baf71
AD
151052002-10-14 Akim Demaille <akim@epita.fr>
15106
15107 * tests/Makefile.am (maintainer-check-posix): New.
15108
7ebc83e3
AD
151092002-10-14 Akim Demaille <akim@epita.fr>
15110
15111 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
15112 member.
15113
05846dae
AD
151142002-10-14 Akim Demaille <akim@epita.fr>
15115
15116 * src/tables.c (table_ninf_remap): base -> tab.
15117 Reported by Matt Rosing.
15118
1318e37d
PE
151192002-10-14 Paul Eggert <eggert@twinsun.com>
15120
447fbb17
PE
15121 * tests/action.at, tests/calc.at, tests/conflicts.at,
15122 tests/cxx-type.at, tests/headers.at, tests/input.at,
15123 tests/regression.at, tests/synclines.at, tests/torture.at:
15124 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
15125 so that the tests still work even if POSIXLY_CORRECT is set.
15126 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
05846dae 15127
1318e37d
PE
15128 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
15129 for portability to K&R hosts. Fix typo: signed char is guaranteed
15130 only to 127, not to 128.
15131 * data/glr.c (yysigned_char): New type.
15132 * data/yacc.c (yysigned_char): Likewise.
15133 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
15134
cc0f0794
PE
151352002-10-13 Paul Eggert <eggert@twinsun.com>
15136
5038f418
PE
15137 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
15138 true due to limited range of data type" warning from GCC.
15139
cc0f0794
PE
15140 * data/c.m4 (b4_token_defines): Protect against double-inclusion
15141 by wrapping enum yytokentype's definition inside #ifndef
15142 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
15143
6fed0802
AD
151442002-10-13 Akim Demaille <akim@epita.fr>
15145
15146 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
15147 Un yy- yyrhs to avoid the name clash with the global YYRHS.
15148
32f0598d
AD
151492002-10-13 Akim Demaille <akim@epita.fr>
15150
15151 * Makefile.maint: Update from Autoconf 2.54.
15152 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
15153
7ea9a33f
AD
151542002-10-13 Akim Demaille <akim@epita.fr>
15155
15156 * src/print.c (print_state): Separate the list of solved conflicts
15157 from the other items.
15158 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
15159
ea99527d
AD
151602002-10-13 Akim Demaille <akim@epita.fr>
15161
15162 Let nondeterministic skeletons be usable with deterministic
15163 tables.
15164
15165 With the patch, GAWK compiled by GCC without -O2 passes its test
15166 suite using a GLR parser driven by LALR tables. It fails with -O2
15167 because `struct stat' gives two different answers on my machine:
15168 88 (definition of an auto var) and later 96 (memset on this var).
15169 Hence the stack is badly corrumpted. The headers inclusion is to
15170 blame: if I move the awk.h inclusion before GLR's system header
15171 inclusion, the two struct stat have the same size.
15172
15173 * src/tables.c (pack_table): Always create conflict_table.
15174 (token_actions): Always create conflict_list.
15175 * data/glr.c (YYFLAG): Remove, unused.
15176
f377f69f
AD
151772002-10-13 Akim Demaille <akim@epita.fr>
15178
15179 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
15180 (O0FLAGS): New.
15181 (VALGRIND, GXX): New.
15182 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
15183 * tests/bison.in: Run $PREBISON a pre-command.
15184 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
15185 (maintainer-check-g++): New.
15186 * Makefile.am (maintainer-check): New.
15187
2a1fe6ed
AD
151882002-10-13 Akim Demaille <akim@epita.fr>
15189
15190 * data/glr.c: Formatting changes.
15191 Tweak some trace messages to match yacc.c's.
15192
f50adbbd
AD
151932002-10-13 Akim Demaille <akim@epita.fr>
15194
15195 GLR parsers sometimes raise parse errors instead of performing the
15196 default reduction.
15197 Reported by Charles-Henry de Boysson.
15198
15199 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
ba0fe3c7 15200 check the length of the traces when %glr.
f50adbbd
AD
15201 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
15202 GLR's traces.
15203 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
15204 Test GLR parsers.
15205 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
15206 (yyltype): Remove the yy prefix from the member names.
15207 (yytable): Complete its comment.
15208 (yygetLRActions): Map error action number from YYTABLE from
15209 YYTABLE_NINF to 0.
15210 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
15211 (which was a bug: it should have been YYTABEL_NINF, and yet it was
15212 not satisfying as we could compare an YYACTION computed from
15213 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
15214 only value for error actions.
15215 (yyreportParseError): In verbose parse error messages, don't issue
15216 `error' in the list of expected tokens.
15217 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
15218 next action to perform to match glr.c's decoding.
15219 (yytable): Complete its comment.
15220
bcbad5b9
PE
152212002-10-13 Paul Eggert <eggert@twinsun.com>
15222
15223 Fix problem reported by Henrik Grubbstroem in
161a71f3 15224 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
bcbad5b9
PE
15225 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
15226 because the Bison parser reads the second action before reducing
15227 the first one.
15228 * src/scan-gram.l (rule_length): New static var.
15229 Use it to keep track of the rule length in the scanner, since
15230 we can't expect the parser to be in lock-step sync with the scanner.
15231 (handle_action_dollar, handle_action_at): Use this var.
15232 * tests/actions.at (Exotic Dollars): Test for the problem.
05846dae 15233
14904b89
PE
152342002-10-12 Paul Eggert <eggert@twinsun.com>
15235
1fe611e5
PE
15236 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
15237 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
15238 Include <sys/time.h> when checking for clock_t and struct tms.
15239 Use same include order as source.
15240 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
161a71f3 15241 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
05846dae 15242
1fe611e5
PE
15243 * lib/timevar.c: Update copyright date and clarify comments.
15244 (get_time) [IN_GCC]: Keep the GCC version for reference.
05846dae 15245
1fe611e5
PE
15246 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
15247 GCC version as of today, then merge Bison's changes.
15248 Change "GCC" to "Bison" in copyright notice. timevar.def's
15249 author is Akim, so change that too.
15250
98194095
PE
15251 * src/reader.c (grammar_current_rule_check):
15252 Don't worry about the default action if $$ is untyped.
15253 Prevents bogus warnings reported by Jim Gifford in
161a71f3 15254 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
98194095 15255
14904b89
PE
15256 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
15257 * data/glr.c, data/lalr1.cc, data/yacc.c:
15258 Output token definitions before the first part of user declarations.
15259 Fixes compatibility problem reported by Jim Gifford for kbd in
161a71f3 15260 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
14904b89 15261
ff6dca18
PE
152622002-10-11 Paul Eggert <eggert@twinsun.com>
15263
15264 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
15265 (yyparse): here. This undoes some of the 2002-07-25 change.
15266 Compatibility problem reported by Ralf S. Engelschall with
15267 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
15268
eb714592
AD
152692002-10-11 Akim Demaille <akim@epita.fr>
15270
15271 * tests/regression.at Characters Escapes): New.
15272 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
15273 characters.
15274 Reported by Jan Nieuwenhuizen.
15275
b7195100
AD
152762002-10-11 Akim Demaille <akim@epita.fr>
15277
15278 * po/id.po: New.
15279
f28a0f2d
PE
152802002-10-10 Paul Eggert <eggert@twinsun.com>
15281
15282 Portability fixes for bitsets; this also avoids several GCC
15283 warnings.
15284
15285 * lib/abitset.c: Include <stddef.h>, for offsetof.
15286 * lib/lbitset.c: Likewise.
15287
15288 * lib/abitset.c (abitset_bytes): Return a size that is aligned
15289 properly for vectors of objects. Do not assume that adding a
15290 header size to a multiple of a word size yields a value that is
15291 properly aligned for the whole union.
15292 * lib/bitsetv.c (bitsetv_alloc): Likewise.
15293
15294 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
15295 unique names for structures.
15296 * lib/ebitset.c (ebitset_bytes): Likewise.
15297 * lib/lbitset.c (lbitset_bytes): Likewise.
15298
15299 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
15300 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
15301 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
15302 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
15303 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
15304 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
15305 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
15306 to improve the type-checking that GCC can do.
15307 * lib/bitset.c (bitset_op4_cmp): Likewise.
15308 * lib/bitset_stats.c (bitset_stats_count,
15309 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
15310 bitset_stats_copy, bitset_stats_disjoint_p,
15311 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
15312 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
15313 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
15314 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
15315 bitset_stats_and_or_cmp, bitset_stats_andn_or,
15316 bitset_stats_andn_or_cmp, bitset_stats_or_and,
15317 bitset_stats_or_and_cmp): Likewise.
15318 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
15319 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
15320 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
15321 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
15322
15323 * lib/abitset.h: Include bitset.h, not bbitset.h.
15324 * lib/ebitset.h: Likewise.
15325 * lib/lbitset.h: Likewise.
15326
15327 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
15328 All instances of parameters of type enum bitset_opts are now of
15329 type enum_bitset_opts, to conform to the C Standard, and similarly
15330 for enum_bitset_type.
15331 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
15332 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
15333
15334 Do not use "struct bitset_struct" to mean different things in
15335 different modules. Not only is this confusing, it violates
15336 the C Standard, which requires that structure types in different
15337 modules must be compatible if one is to be passed to the other.
15338 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
15339 All instances of "struct bitset_struct *" replaced with "bitset".
15340 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
15341 (union bitset_union, struct abitset_struct, struct ebitset_struct,
15342 struct lbitset_struct, struct bitset_stats_struct): New types.
15343 All uses of struct bitset_struct changed to union bitset_union,
15344 etc.
ba0fe3c7 15345 * lib/abitset.c (struct abitset_struct, abitset,
f28a0f2d
PE
15346 struct bitset_struct): Remove.
15347 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
15348 struct bitset_struct): Remove.
15349 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
15350 bitset_struct): Remove.
15351 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
15352 Likewise.
15353
15354 Do not call a function of type T using a call that assumes the
15355 function is of a different type U. Standard C requires that a
15356 function must be called with a type that is compatible with its
15357 definition.
15358 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
15359 New decls.
15360 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
15361 New functions.
15362 * lib/ebitset.c (PFV): Remove.
15363 * lib/lbitset.c (PFV): Likewise.
15364 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
15365 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
15366 decls.
15367 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
15368 (ebitset_vtable): Use them.
15369 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
15370 lbitset_xor): New functions.
15371 (lbitset_vtable): Use them.
15372
15373 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
15374 Declare.
15375
15376 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
15377 GCC warning.
15378 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
15379 Use offsetof, for simplicity.
15380
6fbe4984
PE
153812002-10-06 Paul Eggert <eggert@twinsun.com>
15382
15383 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
15384 the same width as int. This reapplies a hunk of the 2002-08-12 patch
161a71f3 15385 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
6fbe4984
PE
15386 which was inadvertently undone by the 2002-09-30 patch.
15387 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
15388 the same width as int.
15389
420f93c8
PE
153902002-10-04 Paul Eggert <eggert@twinsun.com>
15391
15392 Version 1.50.
15393
15394 * configure.ac (AC_INIT), NEWS: Increment version number.
15395
15396 * doc/bison.texinfo: Minor spelling, grammar, and white space
15397 fixes.
15398 (Symbols): Mention that any negative value returned from yylex
15399 signifies end-of-input. Warn about negative chars. Mention
15400 the portable Standard C character set.
15401
15402 The GNU coding standard says CFLAGS and YFLAGS are reserved
15403 for the installer to set.
15404 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
15405 * src/Makefile.am (AM_CFLAGS): Likewise.
15406 (AM_YFLAGS): Renamed from YFLAGS.
15407
15408 Fix some MAX and MIN problems.
15409 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
15410 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
15411 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
15412 * src/reader.c (reader): Use it.
15413
15414 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
15415 POSIX 1003.1-2001 has removed fgrep.
15416
154172002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
15418
15419 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
15420 interpreted as signed.
15421 * lib/ebitset.c (ebitset_list): Fix bug.
15422
ff68026d
PE
154232002-10-01 Paul Eggert <eggert@twinsun.com>
15424
15425 More fixes for 64-bit hosts and large bitsets.
15426
15427 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
15428 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
15429 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
15430 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
15431 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
15432 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
15433 bitset_count_): Likewise.
15434 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
15435 bitset_first, bitset_last): Likewise.
15436 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
15437 bitset_stats_list_reverse, bitset_stats_size,
15438 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
15439 Likewise.
15440 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
15441 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
15442 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
15443 bitsetv_reflexive_transitive_closure): Likewise.
15444 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
15445 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
15446 Likewise.
15447 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
15448 Likewise.
420f93c8 15449
ff68026d
PE
15450 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
15451 Use size_t, not unsigned int, to count bytes.
15452 * lib/abitset.h (abitset_bytes): Likewise.
15453 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
15454 Likewise.
15455 * lib/bitset.h (bitset_bytes): Likewise.
15456 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
15457 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
15458 * lib/bitsetv.c (bitsetv_alloc): Likewise.
15459 * lib/ebitset.c (ebitset_bytes): Likewise.
15460 * lib/ebitset.h (ebitset_bytes): Likewise.
15461 * lib/lbitset.c (lbitset_bytes): Likewise.
15462 * lib/lbitset.h (lbitset_bytes): Likewise.
420f93c8 15463
ff68026d
PE
15464 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
15465 abitset_subset_p, abitset_disjoint_p, abitset_and,
15466 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
15467 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
15468 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
15469 abitset_or_and, abitset_or_and_cmp):
15470 Use bitset_windex instead of unsigned int.
15471 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
15472 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
15473 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
15474 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
15475 Likewise.
15476 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
420f93c8 15477
ff68026d
PE
15478 * lib/bitset.c (bitset_print):
15479 Use proper printf formats for widths of integer types.
15480 * lib/bitset_stats.c (bitset_percent_histogram_print,
15481 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
15482 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
15483 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
15484 * lib/lbitset.c (lbitset_bytes): Likewise.
420f93c8 15485
ff68026d
PE
15486 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
15487 BITSET_SIZE_MAX): New macros.
15488 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
15489 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
15490 to BITSET_WINDEX_MAX.
15491
15492 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
15493 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
15494 since we now return the bitset_bindex type (not int).
15495
15496 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
15497 when computing sizes.
15498 * lib/ebitset.c (ebitset_elts_grow): Likewise.
15499
15500 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
15501 and avoid cast to unsigned.
15502
6aa452a6
AD
155032002-09-30 Akim Demaille <akim@epita.fr>
15504
15505 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
15506 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
15507 Updates from Michael Hayes.
15508
927f7817
AD
155092002-09-30 Art Haas <ahaas@neosoft.com>
15510
15511 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
15512 invocations.
15513 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
15514 defined.
15515
9738f41e
AD
155162002-09-27 Akim Demaille <akim@epita.fr>
15517
15518 Version 1.49c.
15519
a5c75d7f
AD
155202002-09-27 Akim Demaille <akim@epita.fr>
15521
15522 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
15523 (Because of AC_LIBSOURCE).
15524
8280e179
AD
155252002-09-27 Akim Demaille <akim@epita.fr>
15526
15527 Playing with Autoscan.
15528
15529 * configure.ac: Remove the old LIBOBJ tweaks.
15530 (AC_REPLACE_FUNCS): Add strrchr and strtol.
15531 * lib/strrchr.c: New.
15532 * lib/strtol.c: New, from the Coreutils 4.5.1.
15533
ae64af35
AD
155342002-09-27 Akim Demaille <akim@epita.fr>
15535
15536 Playing with Autoscan.
15537
15538 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
15539 * lib/Makefile.am (libbison_a_SOURCES): No longer include
15540 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
15541 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
15542 Coreutils 4.5.1.
15543
d1a1114f
AD
155442002-09-24 Akim Demaille <akim@epita.fr>
15545
15546 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
15547 (Frequently Asked Questions, Parser Stack Overflow): New.
15548
b906441c
AD
155492002-09-13 Akim Demaille <akim@epita.fr>
15550
15551 Playing with autoscan.
15552
15553 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
15554 * src/files.c (skeleton_find): Remove, unused.
15555 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
15556 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
15557
bd701811
AD
155582002-09-13 Akim Demaille <akim@epita.fr>
15559
15560 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
15561 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
15562
e0a13e7b
AD
155632002-09-13 Akim Demaille <akim@epita.fr>
15564
15565 * configure.ac: Require 2.54.
15566 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
15567 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
15568 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
15569 Remove, provided by Autoconf macros.
15570
c97011bf
AD
155712002-09-12 Akim Demaille <akim@epita.fr>
15572
15573 * m4/prereq.m4: Update, from Coreutils 4.5.1.
15574
d862b1be
AD
155752002-09-12 Akim Demaille <akim@epita.fr>
15576
15577 * m4/prereq.m4: Update, from Fileutils 4.1.5.
15578 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
15579 Reported by Martin Mokrejs.
15580
3d38c03a
AD
155812002-09-10 Akim Demaille <akim@epita.fr>
15582
15583 * src/parse-gram.y: Associate a human readable string to each
15584 token type.
15585 * tests/regression.at (Invalid inputs): Adjust.
15586
b6347355
AD
155872002-09-10 Gary V. Vaughan <gary@gnu.org>
15588
15589 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
15590 with an Autoconf-2.5x style configure.ac.
15591
09ba4ab2
PE
155922002-09-06 Paul Eggert <eggert@twinsun.com>
15593
15594 * doc/bison.texinfo (Conditions): Make explicit that the GPL
15595 exception applies only to yacc.c. This is a modification of a
15596 patch originally suggested by Akim Demaille.
15597
21846f69
AD
155982002-09-06 Akim Demaille <akim@epita.fr>
15599
09ba4ab2
PE
15600 * data/c.m4 (b4_copyright): Move the GPL exception comment from
15601 here to...
15602 * data/yacc.c: here.
15603
21846f69
AD
15604 * data/lalr1.cc (struct yyltype): Don't define it, since we use
15605 LocationType.
15606 (b4_ltype): Default to yy::Location from location.hh.
15607
c0ad8bf3
AD
156082002-09-04 Jim Meyering <jim@meyering.net>
15609
15610 * data/yacc.c: Guard the declaration of yytoknum also with
15611 `#ifdef YYPRINT', so it is declared only when used.
15612
3a93251e
AD
156132002-09-04 Akim Demaille <akim@epita.fr>
15614
15615 * configure.in: Rename as...
15616 * configure.ac: this.
15617 Bump to 1.49c.
15618
427c0dda
AD
156192002-09-04 Akim Demaille <akim@epita.fr>
15620
15621 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
15622 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
15623 translate maintainer only messages.
15624
6a254321
PE
156252002-08-12 Paul Eggert <eggert@twinsun.com>
15626
645e30d1
PE
15627 Version 1.49b.
15628
6a254321
PE
15629 * Makefile.am (SUBDIRS): Remove intl.
15630 (DISTCLEANFILES): Remove.
15631 * NEWS: Mention that GNU M4 is now required. Clarify what is
15632 meant by "larger grammars". Mention the pt_BR translation.
15633 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
15634 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
15635 Bump version from 0.11.2 to 0.11.5.
15636 (BISON_PREREQ_STAGE): Remove.
15637 (AM_GNU_GETTEXT): Use external gettext.
15638 (AC_OUTPUT): Remove intl/Makefile.
15639
15640 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
15641
15642 * data/glr.c: Include string.h, for strlen.
15643 (yyreportParseError): Use size_t for yysize.
15644 (yy_yypstack): No longer nested inside yypstates, as nested
15645 functions are not portable. Do not assume size_t is the
15646 same width as int.
15647 (yypstates): Do not assume that ptrdiff_t is the same width
15648 as int, and similarly for yyposn and YYINDEX.
15649
15650 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
15651
15652 * lib/Makefile.am (INCLUDES): Do not include from the intl
15653 directory, which has been removed.
15654 * src/Makefile.am (INCLUDES): Likewise.
15655
15656 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
15657 (bitsets_sources, additional_bitsets_sources, timevars_sources):
15658 New vars.
15659
15660 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
15661 * tests/Makefile.am (EXTRA_DIST): Likewise.
15662
15663 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
15664 Do not assume that bitset_windex is the same width as unsigned.
15665
15666 * lib/abitset.c (abitset_unused_clear): Do not assume that
15667 bitset_word is the same width as int.
15668 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
15669 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
15670 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
15671 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
15672 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
15673
15674 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
15675 portability to one's complement hosts!).
15676 * lib/ebitset.c (ebitset_op1): Likewise.
15677 * lib/lbitset.c (lbitset_op1): Likewise.
15678
15679 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
15680 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
15681 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
15682 Sync with fileutils.
15683 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
15684 lib/gettext.h: Sync with diffutils.
15685
15686 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
15687 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
15688
15689 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
15690 PROTOTYPES to check for prototypes, and "defined __STDC__" to
15691 check for void *.
15692
15693 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
15694 size_t; the old version tried to do this but casted improperly.
15695 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
15696 (bitset_test): Now returns int, not unsigned long.
15697
15698 * lib/bitset_stats.c: Include "gettext.h".
15699 (_): New macro.
15700 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
15701 name locals "index", as it generates unnecessary warnings on some
15702 hosts that have an "index" function.
15703
15704 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
15705 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
15706 they need translation.
15707 * src/LR0.c (state_list_append, new_itemsets, get_state,
15708 append_states, generate_states): Likewise.
15709 * src/assoc.c (assoc_to_string): Likewise.
15710 * src/closure.c (print_closure, set_firsts, closure): Likewise.
15711 * src/gram.c (grammar_dump): Likewise.
15712 * src/injections.c (injections_compute): Likewise.
15713 * src/lalr.c (lookaheads_print): Likewise.
15714 * src/relation.c (relation_transpose): Likewise.
15715 * src/scan-gram.l: Likewise.
15716 * src/tables.c (table_grow, pack_vector): Likewise.
15717
15718 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
15719 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
15720 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
15721 * m4/mbstate_t.m4: Sync with fileutils.
15722 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
15723
15724 * po/LINGUAS: Add pt_BR.
15725 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
15726 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
15727 lib/timevar.c.
15728 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
15729 manual recommends.
15730 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
15731
15732 * src/complain.c (strerror_r): Remove decl; not needed.
15733 (strerror): Use same pattern as ../lib/error.c.
15734
15735 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
15736
15737 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
15738
15739 * src/main.c (main): Cast result of bindtextdomain and textdomain
15740 to void, to avoid a GCC warning when --disable-nls is in effect.
15741
15742 * src/scan-gram.l: Use strings rather than escapes when possible,
15743 to minimize the number of warnings from xgettext.
15744 (handle_action_dollar, handle_action_at): Don't use isdigit,
15745 as it mishandles negative chars and it may not work as expected
15746 outside the C locale.
15747
15748 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
15749 this is a GCC extension and is not portable to other compilers.
15750
15751 * src/system.h (alloca): Use same pattern as ../lib/error.c.
15752 Do not include <ctype.h>; no longer needed.
15753 Do not include <malloc.h>; no longer needed (and generates
15754 warnings on OpenBSD 3.0).
15755
15756 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
15757 it's not portable.
15758
15759 * tests/regression.at: Do not use 'cc -c input.c -o input';
15760 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
15761
15762 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
15763 exit status as failure, not just exit status 1. Sun C exits
15764 with status 2 sometimes.
15765
15766 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
15767 Use it for the two large tests.
15768
c8f002c7
AD
157692002-08-02 Akim Demaille <akim@epita.fr>
15770
15771 * src/conflicts.c (conflicts_output): Don't output rules never
15772 reduced here, since anyway that computation doesn't work.
15773 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
15774 (rule_useless_p, rule_never_reduced_p): New.
15775 (grammar_rules_partial_print): Use a filter instead of a range.
15776 Display the title only if needed.
15777 (grammar_rules_print): Adjust.
15778 (grammar_rules_never_reduced_report): New.
15779 * src/tables.c (action_row): Move the computation of rules never
15780 reduced to...
15781 (token_actions): here.
15782 * src/main.c (main): Make the parser before making the report, so
15783 that rules never reduced are computed.
15784 Call grammar_rules_never_reduced_report.
15785 * src/print.c (print_results): Report rules never reduced.
15786 * tests/conflicts.at, tests/reduce.at: Adjust.
15787
cd08e51e
AD
157882002-08-01 Akim Demaille <akim@epita.fr>
15789
15790 Instead of attaching lookaheads and duplicating the rules being
15791 reduced by a state, attach the lookaheads to the reductions.
15792
15793 * src/state.h (state_t): Remove the `lookaheads',
15794 `lookaheads_rule' member.
15795 (reductions_t): Add a `lookaheads' member.
15796 Use a regular array for the `rules'.
15797 * src/state.c (reductions_new): Initialize the lookaheads member
15798 to 0.
15799 (state_rule_lookaheads_print): Adjust.
15800 * src/state.h, src/state.c (state_reductions_find): New.
15801 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
15802 (count_rr_conflicts): Adjust.
15803 * src/lalr.c (LArule): Remove.
15804 (add_lookback_edge): Adjust.
15805 (state_lookaheads_count): New.
15806 (states_lookaheads_initialize): Merge into...
15807 (initialize_LA): this.
15808 (lalr_free): Adjust.
15809 * src/main.c (main): Don't free nullable and derives too early: it
15810 is used by --verbose.
15811 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
15812
bb0027a9
AD
158132002-08-01 Akim Demaille <akim@epita.fr>
15814
15815 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
15816 `rule_number_t**'.
15817 (set_derives, free_derives): Rename as...
15818 (derives_compute, derives_free): this.
15819 Adjust all dependencies.
15820 * src/nullable.c (set_nullable, free_nullable): Rename as...
15821 (nullable_compute, nullable_free): these.
15822 (rule_list_t): Store rule_t *, not rule_number_t.
15823 * src/state.c (state_rule_lookaheads_print): Directly compare rule
15824 pointers, instead of their numbers.
15825 * src/main.c (main): Call nullable_free, and derives_free earlier,
15826 as they were lo longer used.
15827
3325ddc4
AD
158282002-08-01 Akim Demaille <akim@epita.fr>
15829
15830 * lib/timevar.c (get_time): Include children time.
15831 * src/lalr.h (LA, LArule): Don't export them: used with the
15832 state_t.
15833 * src/lalr.c (LA, LArule): Static.
15834 * src/lalr.h, src/lalr.c (lalr_free): New.
15835 * src/main.c (main): Call it.
15836 * src/tables.c (pack_vector): Check whether loc is >= to the
15837 table_size, not >.
15838 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
15839 (tables_generate): do it, since that's also it which allocates
15840 them.
15841 Don't free LA and LArule, main does.
15842
c6f1a33c
AD
158432002-07-31 Akim Demaille <akim@epita.fr>
15844
15845 Separate parser tables computation and output.
15846
15847 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
15848 (conflict_list, conflict_list_cnt, table, check, table_ninf)
15849 (yydefgoto, yydefact, high): Move to...
15850 * src/tables.h, src/tables.c: here.
15851 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
15852 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
15853 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
15854 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
15855 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
15856 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
15857 (action_row, save_row, token_actions, save_column, default_goto)
15858 (goto_actions, sort_actions, matching_state, pack_vector)
15859 (table_ninf_remap, pack_table, prepare_actions): Move to...
15860 * src/tables.c: here.
15861 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
15862 * src/output.c (token_actions, output_base, output_conflicts)
15863 (output_check): Merge into...
15864 (prepare_actions): this.
15865 (actions_output): Rename as...
15866 (user_actions_output): this.
15867 * src/main.c (main): Call tables_generate and tables_free.
15868
1509d42f
AD
158692002-07-31 Akim Demaille <akim@epita.fr>
15870
15871 Steal GCC's --time-report support.
15872
15873 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
15874 stolen/adjusted from GCC.
15875 * m4/stage.m4: Remove time related checks.
15876 * m4/timevar.m4: New.
15877 * configure.in: Adjust.
15878 * src/system.h: Adjust to using timevar.h.
15879 * src/getargs.h, src/getargs.c: Support trace_time for
15880 --trace=time.
15881 * src/main.c (stage): Remove.
15882 (main): Replace `stage' invocations with timevar calls.
15883 * src/output.c: Insert pertinent timevar calls.
15884
273a74fa
AD
158852002-07-31 Akim Demaille <akim@epita.fr>
15886
15887 Let --trace have arguments.
15888
15889 * src/getargs.h (enum trace_e): New.
15890 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
15891 (long_options, short_options): --trace/-T takes an optional
15892 argument.
15893 Change all the uses of trace_flag to reflect the new flags.
15894 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
15895
15896 Strengthen `stage' portability.
15897
15898 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
15899 * configure.in: Use it.
15900 Don't check for malloc.h and sys/times.h.
15901 * src/system.h: Include them when appropriate.
15902 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
15903 times and struct tms are available.
15904
217598da
AD
159052002-07-30 Akim Demaille <akim@epita.fr>
15906
15907 In verbose parse error message, don't report `error' as an
15908 expected token.
15909 * tests/actions.at (Printers and Destructors): Adjust.
15910 * tests/calc.at (Calculator $1): Adjust.
15911 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
15912 error message, do not report the parser accepts the error token in
15913 that state.
15914
52489d44
AD
159152002-07-30 Akim Demaille <akim@epita.fr>
15916
15917 Normalize conflict related messages.
15918
15919 * src/complain.h, src/complain.c (warn, complain): New.
15920 * src/conflicts.c (conflicts_print): Use them.
15921 (conflict_report_yacc): New, extracted from...
15922 (conflicts_print): here.
15923 * tests/conflicts.at, tests/existing.at: Adjust.
15924
e8832397
AD
159252002-07-30 Akim Demaille <akim@epita.fr>
15926
15927 Report rules which are never reduced by the parser: those hidden
15928 by conflicts.
15929
15930 * src/LR0.c (save_reductions): Don't make the final state too
15931 different: save its reduction (accept) instead of having a state
15932 without any action (no shift or goto, no reduce).
15933 Note: the final state is now a ``regular'' state, i.e., the
15934 parsers now contain `reduce 0' as default reduction.
15935 Nevertheless, since they decide to `accept' when yystate =
15936 final_state, they still will not reduce rule 0.
15937 * src/print.c (print_actions, print_reduction): Adjust.
15938 * src/output.c (action_row): Track reduced rules.
15939 (token_actions): Report rules never reduced.
15940 * tests/conflicts.at, tests/regression.at: Adjust.
15941
caf23d24
AD
159422002-07-30 Akim Demaille <akim@epita.fr>
15943
15944 `stage' was accidently included in a previous patch.
15945 Initiate its autoconfiscation.
15946
15947 * configure.in: Look for malloc.h and sys/times.h.
15948 * src/main.c (stage): Adjust.
15949 Report only when trace_flag.
15950
640748ee
AD
159512002-07-29 Akim Demaille <akim@epita.fr>
15952
15953 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
15954 state_number_t.
15955 (errs_t): symbol_t*, not symbol_number_t.
15956 (reductions_t): rule_t*, not rule_number_t.
15957 (FOR_EACH_SHIFT): New.
15958 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
15959 * src/print.c, src/print_graph.c: Adjust.
15960
88bce5a2
AD
159612002-07-29 Akim Demaille <akim@epita.fr>
15962
15963 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
15964
15965 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
15966 (endtoken, accept): these.
15967 * src/reader.c (reader): Set endtoken's default tag to "$end".
15968 Set undeftoken's tag to "$undefined" instead of "$undefined.".
15969 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
15970 Adjust.
15971
1bfb97db
AD
159722002-07-29 Akim Demaille <akim@epita.fr>
15973
15974 * src/reduce.c (reduce_grammar): When the language is empty,
15975 complain about the start symbol, not the axiom.
15976 Use its location.
15977 * tests/reduce.at (Empty Language): New.
15978
fc5734fe
AD
159792002-07-26 Akim Demaille <akim@epita.fr>
15980
15981 * src/reader.h, src/reader.c (gram_error): ... can't get
15982 yycontrol without making too strong assumptions on the parser
15983 itself.
15984 * src/output.c (prepare_tokens): Use the real 0th value of
15985 token_translations instead of `0'.
15986 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
15987 visible here.
15988 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
15989 for the time being: %locations ought to provide it to yyerror.
15990
3650b4b8
AD
159912002-07-25 Akim Demaille <akim@epita.fr>
15992
15993 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
15994 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
15995 * tests/regression.at (Web2c Actions): Adjust.
15996
4b3d3a8e
AD
159972002-07-25 Akim Demaille <akim@epita.fr>
15998
15999 Stop storing rules from 1 to nrules + 1.
16000
16001 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
16002 * src/nullable.c, src/output.c, src/print.c, src/reader.c
16003 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
16004 Iterate from 0 to nrules.
16005 Use rule_number_as_item_number and item_number_as_rule_number.
16006 Adjust to `derive' now containing possibly 0.
16007 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
16008 Handle the `- 1' part in rule numbers from/to item numbers.
16009 * src/conflicts.c (log_resolution): Fix the message which reversed
16010 shift and reduce.
16011 * src/output.c (action_row): Initialize default_rule to -1.
16012 (token_actions): Adjust.
16013 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
16014 expected output.
16015 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
16016
4a2a22f4
AD
160172002-07-25 Akim Demaille <akim@epita.fr>
16018
16019 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
16020 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
16021 (b4_c_knr_arg_decl): New.
16022 * data/yacc.c: Use it to define yysymprint, yydestruct, and
16023 yyreport_parse_error.
16024
b8df3223
AD
160252002-07-25 Akim Demaille <akim@epita.fr>
16026
16027 * data/yacc.c (yyreport_parse_error): New, extracted from...
16028 (yyparse): here.
16029 (yydestruct, yysymprint): Move above yyparse.
16030 Be K&R compliant.
16031
a762e609
AD
160322002-07-25 Akim Demaille <akim@epita.fr>
16033
16034 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
16035 replace...
16036 (b4_sint_type, b4_uint_type): these.
16037 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
16038 * tests/regression.at (Web2c Actions): Adjust.
16039
12b0043a
AD
160402002-07-25 Akim Demaille <akim@epita.fr>
16041
16042 * src/gram.h (TIEM_NUMBER_MAX): New.
16043 (item_number_of_rule_number, rule_number_of_item_number): Rename
16044 as...
16045 (rule_number_as_item_number, item_number_as_rule_number): these.
16046 Adjust dependencies.
16047 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
16048 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
16049 (symbol_number_to_vector_number): New.
16050 (order): Of vector_number_t* type.
16051 (base_t, BASE_MAX, BASE_MIN): New.
16052 (froms, tos, width, pos, check): Of base_t type.
16053 (action_number_t, ACTION_MIN, ACTION_MAX): New.
16054 (actrow): Of action_number_t type.
16055 (conflrow): Of unsigned int type.
16056 (table_ninf, base_ninf): New.
16057 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
16058 (muscle_insert_int_table, muscle_insert_base_table)
16059 (muscle_insert_rule_number_table): New.
16060 (prepare_tokens): Output `toknum' as int_table.
16061 (action_row): Returns a rule_number_t.
16062 Use ACTION_MIN, not SHRT_MIN.
16063 (token_actions): yydefact is rule_number_t*.
16064 (table_ninf_remap): New.
16065 (pack_table): Use it for `base' and `table'.
16066 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
16067 replaced with...
16068 (YYPACT_NINF, YYTABLE_NINF): these.
16069 (yypact, yytable): Compute their types instead of hard-coded
16070 `short'.
16071 * tests/regression.at (Web2c Actions): Adjust.
16072
5dde258a
AD
160732002-07-19 Akim Demaille <akim@epita.fr>
16074
16075 * src/scan-gram.l (id): Can start with an underscore.
16076
a945ec39
AD
160772002-07-16 Akim Demaille <akim@epita.fr>
16078
16079 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
16080 Adjust all former `associativity' dependencies.
16081 * src/symtab.c (symbol_new): Default associativity is `undef', not
16082 `right'.
16083 (symbol_check_alias_consistence): Adjust.
16084
fae437e8
AD
160852002-07-09 Akim Demaille <akim@epita.fr>
16086
16087 * doc/bison.texinfo: Properly set the ``header'' part.
16088 Use @dircategory ``GNU programming tools'' as per Texinfo's
16089 documentation.
16090 Use @copying.
16091
1a715ef2
AD
160922002-07-09 Akim Demaille <akim@epita.fr>
16093
16094 * lib/quotearg.h: Protect against multiple inclusions.
16095 * src/location.h (location_t): Add a `file' member.
16096 (LOCATION_RESET, LOCATION_PRINT): Adjust.
16097 * src/complain.c (warn_at, complain_at, fatal_at): Drop
16098 `error_one_per_line' support.
16099
a5d50994
AD
161002002-07-09 Akim Demaille <akim@epita.fr>
16101
16102 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
16103 * src/reader.c (lineno): Remove.
16104 Adjust all dependencies.
16105 (get_merge_function): Take a location and use complain_at.
16106 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
16107 * tests/regression.at (Invalid inputs, Mixing %token styles):
16108 Adjust.
16109
b275314e
AD
161102002-07-09 Akim Demaille <akim@epita.fr>
16111
16112 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
16113 recovery rule, and forbid extensions when --yacc.
16114 (gram_error): Use complain_at.
16115 * src/reader.c (reader): Exit if there were parse errors.
16116
865b9df1
AD
161172002-07-09 Akim Demaille <akim@epita.fr>
16118
16119 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
16120 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
16121 Reported by R Blake <blakers@mac.com>.
16122
c76e14da
AD
161232002-07-09 Akim Demaille <akim@epita.fr>
16124
16125 * data/yacc.c: Output the copyright notive in the header.
16126
7db2ed2d
AD
161272002-07-03 Akim Demaille <akim@epita.fr>
16128
16129 * src/output.c (froms, tos): Are state_number_t.
16130 (save_column): sp, sp1, and sp2 are state_number_t.
16131 (prepare): Rename `final' as `final_state_number', `nnts' as
16132 `nterms_number', `nrules' as `rules_number', `nstates' as
16133 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
16134 unused.
16135 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
16136 * data/lalr1.cc (nsym_): Remove, unused.
16137
e68e0410
AD
161382002-07-03 Akim Demaille <akim@epita.fr>
16139
16140 * src/lalr.h, src/lalr.c (goto_number_t): New.
16141 * src/lalr.c (goto_list_t): New.
16142 Propagate them.
16143 * src/nullable.c (rule_list_t): New.
16144 Propagate.
16145 * src/types.h: Remove.
16146
e1a4f3a4
AD
161472002-07-03 Akim Demaille <akim@epita.fr>
16148
16149 * src/closure.c (print_fderives): Use rule_rhs_print.
16150 * src/derives.c (print_derives): Use rule_rhs_print.
16151 (rule_list_t): New, replaces `shorts'.
16152 (set_derives): Add comments.
16153 * tests/sets.at (Nullable, Firsts): Adjust.
16154
536545f3
AD
161552002-07-03 Akim Demaille <akim@epita.fr>
16156
16157 * src/output.c (prepare_actions): Free `tally' and `width'.
16158 (prepare_actions): Allocate and free `order'.
16159 * src/symtab.c (symbols_free): Free `symbols'.
16160 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
16161 * src/output.c (m4_invoke): Move to...
16162 * src/scan-skel.l: here.
16163 (<<EOF>>): Close yyout, and free its name.
16164
8b752b00
AD
161652002-07-03 Akim Demaille <akim@epita.fr>
16166
16167 Fix some memory leaks, and fix a bug: state 0 was examined twice.
16168
16169 * src/LR0.c (new_state): Merge into...
16170 (state_list_append): this.
16171 (new_states): Merge into...
16172 (generate_states): here.
16173 (set_states): Don't ensure a proper `errs' state member here, do it...
16174 * src/conflicts.c (conflicts_solve): here.
16175 * src/state.h, src/state.c: Comment changes.
16176 (state_t): Rename member `shifts' as `transitions'.
16177 Adjust all dependencies.
16178 (errs_new): For consistency, also take the values as argument.
16179 (errs_dup): Remove.
16180 (state_errs_set): New.
16181 (state_reductions_set, state_transitions_set): Assert that no
16182 previous value was assigned.
16183 (state_free): New.
16184 (states_free): Use it.
16185 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
16186 temporary storage: use `errs' and `nerrs' as elsewhere.
16187 (set_conflicts): Allocate and free this `errs'.
16188
613f5e1a
AD
161892002-07-02 Akim Demaille <akim@epita.fr>
16190
16191 * lib/libiberty.h: New.
16192 * lib: Update the bitset implementation from upstream.
16193 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
16194 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
16195 * src/main.c: Adjust bitset stats calls.
16196
26e0cadc
PE
161972002-07-01 Paul Eggert <eggert@twinsun.com>
16198
16199 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
16200 char, so that negative chars don't collide with $.
16201
1154cced
AD
162022002-06-30 Akim Demaille <akim@epita.fr>
16203
16204 Have the GLR tests be `warning' checked, and fix the warnings.
16205
16206 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
16207 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
16208 (yyremoveDeletes): `yyi' and `yyj' are size_t.
16209 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
16210 (yyaddDeferredAction): static.
16211 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
16212 (yyreportParseError): yyprefix is const.
16213 yytokenp is used only when verbose.
16214 (yy__GNUC__): Replace with __GNUC__.
16215 (yypdumpstack): yyi is size_t.
16216 (yypreference): Un-yy local variables and arguments, to avoid
16217 clashes with `yyr1'. Anyway, we are not in the user name space.
16218 (yytname_size): be an int, as is compared with ints.
16219 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
16220 Use them.
16221 * tests/cxx-gram.at: Use quotation to protect $1.
16222 Use AT_COMPILE to enable warnings hunts.
16223 Prototype yylex and yyerror.
16224 `Use' argc.
16225 Include `string.h', not `strings.h'.
16226 Produce and prototype stmtMerge only when used.
16227 yylex takes a location.
16228
97650f4e
AD
162292002-06-30 Akim Demaille <akim@epita.fr>
16230
16231 We spend a lot of time in quotearg, in particular when --verbose.
16232
16233 * src/symtab.c (symbol_get): Store a quoted version of the key.
16234 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
16235 Adjust all callers.
16236
d2576365
AD
162372002-06-30 Akim Demaille <akim@epita.fr>
16238
16239 * src/state.h (reductions_t): Rename member `nreds' as num.
16240 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
16241 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
16242
ccaf65bc
AD
162432002-06-30 Akim Demaille <akim@epita.fr>
16244
16245 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
16246 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
16247 (shifts_to): Rename as...
16248 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
16249 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
16250 (TRANSITION_IS_DISABLED, transitions_to): these.
16251
87675353
AD
162522002-06-30 Akim Demaille <akim@epita.fr>
16253
16254 * src/print.c (print_shifts, print_gotos): Merge into...
16255 (print_transitions): this.
16256 (print_transitions, print_errs, print_reductions): Align the
16257 lookaheads columns.
16258 (print_core, print_transitions, print_errs, print_state,
16259 print_grammar): Output empty lines separator before, not after.
16260 (state_default_rule_compute): Rename as...
16261 (state_default_rule): this.
16262 * tests/conflicts.at (Defaulted Conflicted Reduction),
16263 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
16264 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
16265
ce4ccb4b
AD
162662002-06-30 Akim Demaille <akim@epita.fr>
16267
16268 Display items as we display rules.
16269
16270 * src/gram.h, src/gram.c (rule_lhs_print): New.
16271 * src/gram.c (grammar_rules_partial_print): Use it.
16272 * src/print.c (print_core): Likewise.
16273 * tests/conflicts.at (Defaulted Conflicted Reduction),
16274 (Unresolved SR Conflicts): Adjust.
16275 (Unresolved SR Conflicts): Adjust and rename as...
16276 (Resolved SR Conflicts): this, as was meant.
16277 * tests/regression.at (Web2c Report): Adjust.
16278
bc933ef1
AD
162792002-06-30 Akim Demaille <akim@epita.fr>
16280
16281 * src/print.c (state_default_rule_compute): New, extracted from...
16282 (print_reductions): here.
16283 Pessimize, but clarify the code.
16284 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
16285
53d4308d
AD
162862002-06-30 Akim Demaille <akim@epita.fr>
16287
16288 * src/output.c (action_row): Let default_rule be always a rule
16289 number.
16290
574fb2d5
AD
162912002-06-30 Akim Demaille <akim@epita.fr>
16292
16293 * src/closure.c (print_firsts, print_fderives, closure):
16294 Use BITSET_EXECUTE.
16295 * src/lalr.c (lookaheads_print): Likewise.
16296 * src/state.c (state_rule_lookaheads_print): Likewise.
16297 * src/print_graph.c (print_core): Likewise.
16298 * src/print.c (print_reductions): Likewise.
16299 * src/output.c (action_row): Likewise.
16300 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
16301
05811fd7
AD
163022002-06-30 Akim Demaille <akim@epita.fr>
16303
16304 * src/print_graph.c: Use report_flag.
16305
0e4d5753
AD
163062002-06-30 Akim Demaille <akim@epita.fr>
16307
16308 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
16309 to...
16310 * src/relation.h, src/relation.c (traverse, relation_digraph)
16311 (relation_print, relation_transpose): New.
16312
24c7d800
AD
163132002-06-30 Akim Demaille <akim@epita.fr>
16314
16315 * src/state.h, src/state.c (shifts_to): New.
16316 * src/lalr.c (build_relations): Use it.
16317
9222837b
AD
163182002-06-30 Akim Demaille <akim@epita.fr>
16319
16320 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
16321 (item_number_of_rule_number, rule_number_of_item_number): New.
16322 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
16323 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
16324 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
16325 Propagate their use.
16326 Much remains to be done, in particular wrt `shorts' from types.h.
16327
260008e5
AD
163282002-06-30 Akim Demaille <akim@epita.fr>
16329
16330 * src/symtab.c (symbol_new): Initialize the `printer' member.
16331
8a731ca8
AD
163322002-06-30 Akim Demaille <akim@epita.fr>
16333
16334 * src/LR0.c (save_reductions): Remove, replaced by...
16335 * src/state.h, src/state.c (state_reductions_set): New.
16336 (reductions, errs): Rename as...
16337 (reductions_t, errs_t): these.
16338 Adjust all dependencies.
16339
32e1e0a4
AD
163402002-06-30 Akim Demaille <akim@epita.fr>
16341
16342 * src/LR0.c (state_list_t, state_list_append): New.
16343 (first_state, last_state): Now symbol_list_t.
16344 (this_state): Remove.
16345 (new_itemsets, append_states, save_reductions): Take a state_t as
16346 argument.
16347 (set_states, generate_states): Adjust.
16348 (save_shifts): Remove, replaced by...
16349 * src/state.h, src/state.c (state_shifts_set): New.
16350 (shifts): Rename as...
16351 (shifts_t): this.
16352 Adjust all dependencies.
16353 * src/state.h (state_t): Remove the `next' member.
16354
e5fb6710
AD
163552002-06-30 Akim Demaille <akim@epita.fr>
16356
16357 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
16358 escaped in slot 0.
16359
c7ca99d4
AD
163602002-06-30 Akim Demaille <akim@epita.fr>
16361
16362 Use hash.h for the state hash table.
16363
16364 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
16365 (allocate_storage): Use state_hash_new.
16366 (free_storage): Use state_hash_free.
16367 (new_state, get_state): Adjust.
16368 * src/lalr.h, src/lalr.c (states): Move to...
16369 * src/states.h (state_t): Remove the `link' member, no longer
16370 used.
16371 * src/states.h, src/states.c: here.
16372 (state_hash_new, state_hash_free, state_hash_lookup)
16373 (state_hash_insert, states_free): New.
16374 * src/states.c (state_table, state_compare, state_hash): New.
16375 * src/output.c (output_actions): Do not free states now, since we
16376 still need to know the final_state number in `prepare', called
16377 afterwards. Do it...
16378 * src/main.c (main): here: call states_free after `output'.
16379
df0e7316
AD
163802002-06-30 Akim Demaille <akim@epita.fr>
16381
16382 * src/state.h, src/state.c (state_new): New, extracted from...
16383 * src/LR0.c (new_state): here.
16384 * src/state.h (STATE_ALLOC): Move to...
16385 * src/state.c: here.
16386 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
16387 * src/state.h, src/state.c: here.
16388
39f41916
AD
163892002-06-30 Akim Demaille <akim@epita.fr>
16390
16391 * src/reader.c (gensym): Rename as...
16392 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
16393 (getsym): Rename as...
16394 (symbol_get): this.
16395
d57650a5
AD
163962002-06-30 Akim Demaille <akim@epita.fr>
16397
16398 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
16399 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
16400 * src/output.c, src/print.c, src/print_graph.c: Propagate.
16401 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
16402
5a08f1ce
AD
164032002-06-30 Akim Demaille <akim@epita.fr>
16404
16405 Make the test suite pass with warnings checked.
16406
16407 * tests/actions.at (Printers and Destructors): Improve.
16408 Avoid unsigned vs. signed issues.
16409 * tests/calc.at: Don't exercise the scanner here, do it...
16410 * tests/input.at (Torturing the Scanner): here.
16411
720623af
PH
164122002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16413
88e7e941 16414 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
720623af
PH
16415 reorganize first lines parallel to yacc.c.
16416
fb8135fa
AD
164172002-06-28 Akim Demaille <akim@epita.fr>
16418
16419 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
16420 (b4_token_enum, b4_token_defines): New, factored from...
16421 * data/lalr1.cc, data/yacc.c, glr.c: here.
16422
41442480
AD
164232002-06-28 Akim Demaille <akim@epita.fr>
16424
16425 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
16426 unused variables.
16427 * src/output.c (merger_output): static.
16428
e0e5bf84
AD
164292002-06-28 Akim Demaille <akim@epita.fr>
16430
ba0fe3c7 16431 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
e0e5bf84
AD
16432 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
16433 pacify GCC.
16434 * src/output.c (save_row): Initialize all the variables to pacify GCC.
e0e5bf84 16435
676385e2
PH
164362002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16437
16438 Accumulated changelog for new GLR parsing features.
16439
6a254321 16440 * src/conflicts.c (count_total_conflicts): Change name to
676385e2
PH
16441 conflicts_total_count.
16442 * src/conflicts.h: Ditto.
16443 * src/output.c (token_actions): Use the new name.
16444 (output_conflicts): Change conflp => conflict_list_heads, and
16445 confl => conflict_list for better readability.
16446 * data/glr.c: Use the new names.
16447 * NEWS: Add self to GLR announcement.
e0e5bf84 16448
676385e2
PH
16449 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
16450
16451 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
16452 Akim Demaille.
16453
16454 * data/bison.glr: Change name to glr.c
16455 * data/glr.c: Renamed from bison.glr.
16456 * data/Makefile.am: Add glr.c
e0e5bf84
AD
16457
16458 * src/getargs.c:
16459
676385e2 16460 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
ba0fe3c7 16461 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
e0e5bf84 16462
676385e2
PH
16463 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16464
16465 * data/bison.glr: Be sure to restore the
16466 current #line when returning to the skeleton contents after having
16467 exposed the input file's #line.
16468
16469 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16470
16471 * data/bison.glr: Bring up to date with changes to bison.simple.
16472
16473 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16474
16475 * data/bison.glr: Correct definitions that use b4_prefix.
16476 Various reformatting.
16477 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
16478 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
16479 yytokenp argument; now part of stack.
16480 (yychar): Define to behave as documented.
16481 (yyclearin): Ditto.
e0e5bf84 16482
676385e2
PH
16483 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16484
16485 * src/reader.h: Add declaration for free_merger_functions.
16486
16487 * src/reader.c (merge_functions): New variable.
16488 (get_merge_function): New function.
16489 (free_merger_functions): New function.
16490 (readgram): Check for %prec that is not followed by a symbol.
16491 Handle %dprec and %merge declarations.
16492 (packgram): Initialize dprec and merger fields in rules array.
16493
16494 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
16495 conflict_list_cnt, conflict_list_free): New variables.
16496 (table_grow): Also grow conflict_table.
e0e5bf84 16497 (prepare_rules): Output dprec and merger tables.
676385e2 16498 (conflict_row): New function.
e0e5bf84 16499 (action_row): Output conflict lists for GLR parser. Don't use
676385e2
PH
16500 default reduction in conflicted states for GLR parser so that there
16501 are spaces for the conflict lists.
16502 (save_row): Also save conflict information.
16503 (token_actions): Allocate conflict list.
16504 (merger_output): New function.
16505 (pack_vector): Pack conflict table, too.
16506 (output_conflicts): New function to output yyconflp and yyconfl.
16507 (output_check): Allocate conflict_tos.
16508 (output_actions): Output conflict tables, also.
16509 (output_skeleton): Output b4_mergers definition.
16510 (prepare): Output b4_max_rhs_length definition.
16511 Use 'bison.glr' as default skeleton for GLR parsers.
16512
16513 * src/gram.c (glr_parser): New flag.
16514 (grammar_free): Call free_merger_functions.
16515
16516 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
16517 all pairs of conflicting reductions, rather than just all tokens
16518 causing conflicts. Needed to size conflict tables.
e0e5bf84 16519 (conflicts_output): Modify call to count_rr_conflicts for new
676385e2
PH
16520 interface.
16521 (conflicts_print): Ditto.
16522 (count_total_conflicts): New function.
16523
16524 * src/reader.h (merger_list): New type.
16525 (merge_functions): New variable.
16526
16527 * src/lex.h (tok_dprec, tok_merge): New token types.
16528
16529 * src/gram.h (rule_s): Add dprec and merger fields.
16530 (glr_parser): New flag.
16531
16532 * src/conflicts.h (count_total_conflicts): New function.
16533
16534 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
16535
16536 * doc/bison.texinfo (Generalized LR Parsing): New section.
16537 (GLR Parsers): New section.
16538 (Language and Grammar): Mention GLR parsing.
16539 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
16540 Correct typo ("tge" -> "the").
16541
16542 * data/bison.glr: New skeleton for GLR parsing.
16543
16544 * tests/cxx-gram.at: New tests for GLR parsing.
16545
16546 * tests/testsuite.at: Include cxx-gram.at.
16547
16548 * tests/Makefile.am: Add cxx-gram.at.
e0e5bf84 16549
676385e2
PH
16550 * src/parse-gram.y:
16551
16552 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
16553
16554 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
e0e5bf84 16555
b5480d74 165562002-06-27 Akim Demaille <akim@epita.fr>
e2aaf4c4
AD
16557
16558 * src/options.h, src/options.c: Remove.
16559 * src/getargs.c (short_options, long_options): New.
16560
60491a94
AD
165612002-06-27 Akim Demaille <akim@epita.fr>
16562
16563 * data/bison.simple, data/bison.c++: Rename as...
16564 * data/yacc.c, data/lalr1.cc: these.
16565 * doc/bison.texinfo (Environment Variables): Remove.
16566
9be0c25b
AD
165672002-06-25 Raja R Harinath <harinath@cs.umn.edu>
16568
16569 * src/getargs.c (report_argmatch): Initialize strtok().
16570
1ae72863
AD
165712002-06-20 Akim Demaille <akim@epita.fr>
16572
16573 * data/bison.simple (b4_symbol_actions): New, replaces...
16574 (b4_symbol_destructor, b4_symbol_printer): these.
16575 (yysymprint): Be sure to call YYPRINT only for tokens, and using
16576 user token numbers.
16577
87542d29
AD
165782002-06-20 Akim Demaille <akim@epita.fr>
16579
16580 * data/bison.simple (yydestructor): Rename as...
16581 (yydestruct): this.
16582
1a31ed21
AD
165832002-06-20 Akim Demaille <akim@epita.fr>
16584
16585 * src/symtab.h, src/symtab.c (symbol_type_set)
16586 (symbol_destructor_set, symbol_precedence_set): The location is
16587 the last argument.
16588 Adjust all callers.
16589
e776192e
AD
165902002-06-20 Akim Demaille <akim@epita.fr>
16591
16592 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
16593 internals.
16594 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
16595 Takes a location.
16596 * src/symtab.h, src/symtab.c (symbol_class_set)
16597 (symbol_user_token_number_set): Likewise.
16598 Adjust all callers.
16599 Promote complain_at.
16600 * tests/input.at (Type Clashes): Adjust.
16601
5c1180b3
AD
166022002-06-20 Akim Demaille <akim@epita.fr>
16603
16604 * data/bison.simple (YYLEX): Fix the declaration when
16605 %pure-parser.
16606
e3170060
AD
166072002-06-20 Akim Demaille <akim@epita.fr>
16608
16609 * data/bison.simple (yysymprint): Don't print the token number,
16610 just its name.
16611 * tests/actions.at (Destructors): Rename as...
16612 (Printers and Destructors): this.
16613 Also exercise %printer.
16614
253862fd
AD
166152002-06-20 Akim Demaille <akim@epita.fr>
16616
16617 * data/bison.simple (YYDSYMPRINT): New.
16618 Use it to remove many of the #if YYDEBUG/if (yydebug).
16619
366eea36
AD
166202002-06-20 Akim Demaille <akim@epita.fr>
16621
16622 * src/symtab.h, src/symtab.c (symbol_t): printer and
16623 printer_location are new members.
16624 (symbol_printer_set): New.
16625 * src/parse-gram.y (PERCENT_PRINTER): New token.
16626 Handle its associated rule.
16627 * src/scan-gram.l: Adjust.
16628 (handle_destructor_at, handle_destructor_dollar): Rename as...
16629 (handle_symbol_code_at, handle_symbol_code_dollar): these.
16630 * src/output.c (symbol_printers_output): New.
16631 (output_skeleton): Call it.
16632 * data/bison.simple (yysymprint): New. Cannot be named yyprint
16633 since there are already many grammar files with a user `yyprint'.
16634 Replace the calls to YYPRINT to calls to yysymprint.
16635 * tests/calc.at: Adjust.
16636 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
16637 taking advantage of parser very internal details (stack size!).
16638
4f25ebb0
AD
166392002-06-20 Akim Demaille <akim@epita.fr>
16640
16641 * src/scan-gram.l: Complete the scanner with the missing patterns
16642 to pacify Flex.
16643 Use `quote' and `symbol_tag_get' where appropriate.
16644
93b68a0e
AD
166452002-06-19 Akim Demaille <akim@epita.fr>
16646
16647 * tests/actions.at (Destructors): Augment to test locations.
16648 * data/bison.simple (yydestructor): Pass it the current location
16649 if locations are enabled.
16650 Prototype only when __STDC__ or C++.
16651 Change the argument names to move into the yy name space: there is
16652 user code here.
16653
58612f1d
AD
166542002-06-19 Akim Demaille <akim@epita.fr>
16655
74310291
AD
16656 * data/bison.simple (b4_pure_if): New.
16657 Use it instead of #ifdef YYPURE.
16658
166592002-06-19 Akim Demaille <akim@epita.fr>
16660
16661 * data/bison.simple (b4_location_if): New.
58612f1d
AD
16662 Use it instead of #ifdef YYLSP_NEEDED.
16663
f25bfb75
AD
166642002-06-19 Akim Demaille <akim@epita.fr>
16665
16666 Prepare @$ in %destructor, but currently don't bind it in the
16667 skeleton, as %location use is not cleaned up yet.
16668
16669 * src/scan-gram.l (handle_dollar, handle_destructor_at)
16670 (handle_action_at): New.
16671 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
16672 a braced_code_t and a location as additional arguments.
16673 (handle_destructor_dollar): Instead of requiring `b4_eval', just
16674 unquote one when outputting `b4_dollar_dollar'.
16675 Adjust callers.
16676 * data/bison.simple (b4_eval): Remove.
16677 (b4_symbol_destructor): Adjust.
16678 * tests/input.at (Invalid @n): Adjust.
16679
c732d2c6
AD
166802002-06-19 Zack Weinberg <zack@codesourcery.com>
16681
16682 * doc/bison.texinfo: Document ability to have multiple
16683 prologue sections.
16684
8c165d89
AD
166852002-06-18 Akim Demaille <akim@epita.fr>
16686
16687 * src/files.c (compute_base_names): When computing the output file
16688 names from the input file name, strip the directory part.
16689
ca98bf57
AD
166902002-06-18 Akim Demaille <akim@epita.fr>
16691
16692 * data/bison.simple.new: Comment changes.
16693 Reported by Andreas Schwab.
16694
0bfb02ff
AD
166952002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
16696
16697 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
16698 there are no `label `yyoverflowlab' defined but not used' warnings
16699 when yyoverflow is defined.
16700
24c0aad7
AD
167012002-06-18 Akim Demaille <akim@epita.fr>
16702
16703 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
16704 new member.
16705 (symbol_destructor_set): Adjust.
16706 * src/output.c (symbol_destructors_output): Output the destructor
16707 locations.
16708 Output the symbol name.
16709 * data/bison.simple (b4_symbol_destructor): Adjust.
16710
5719c109
AD
167112002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
16712 and Akim Demaille <akim@epita.fr>
16713
16714 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
16715 what's left on the stack when the error recovery hits EOF.
16716 * tests/actions.at (Destructors): Complete to exercise this case.
16717
9280d3ef
AD
167182002-06-17 Akim Demaille <akim@epita.fr>
16719
16720 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
16721 arguments is really empty, not only equal to `[]'.
16722 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
16723 member.
16724 (symbol_destructor_set): New.
16725 * src/output.c (symbol_destructors_output): New.
16726 * src/reader.h (brace_code_t, current_braced_code): New.
16727 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
16728 (handle_dollar): Rename as...
16729 (handle_action_dollar): this.
16730 (handle_destructor_dollar): New.
16731 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
16732 (grammar_declaration): Use it.
16733 * data/bison.simple (yystos): Is always defined.
16734 (yydestructor): New.
16735 * tests/actions.at (Destructors): New.
16736 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
16737
dafdc66f
AD
167382002-06-17 Akim Demaille <akim@epita.fr>
16739
16740 * src/symlist.h, src/symlist.c (symbol_list_length): New.
16741 * src/scan-gram.l (handle_dollar, handle_at): Compute the
16742 rule_length only when needed.
16743 * src/output.c (actions_output, token_definitions_output): Output
16744 the full M4 block.
16745 * src/symtab.c: Don't access directly to the symbol tag, use
16746 symbol_tag_get.
16747 * src/parse-gram.y: Use symbol_list_free.
16748
56c47203
AD
167492002-06-17 Akim Demaille <akim@epita.fr>
16750
16751 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
16752 (symbol_list_prepend, get_type_name): Move to...
16753 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
16754 (symbol_list_prepend, symbol_list_n_type_name_get): here.
16755 Adjust all callers.
16756 (symbol_list_free): New.
16757 * src/scan-gram.l (handle_dollar): Takes a location.
16758 * tests/input.at (Invalid $n): Adjust.
16759
1e0bab92
AD
167602002-06-17 Akim Demaille <akim@epita.fr>
16761
16762 * src/reader.h, src/reader.c (symbol_list_new): Export it.
16763 (symbol_list_prepend): New.
16764 * src/parse-gram.y (%union): `list' is a new member.
16765 (symbols.1): New, replaces...
16766 (terms_to_prec.1, nterms_to_type.1): these.
16767 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
16768 Take a location as additional argument.
16769 Adjust all callers.
16770
04e60654
AD
167712002-06-15 Akim Demaille <akim@epita.fr>
16772
16773 * src/parse-gram.y: Move %token in the declaration section so that
16774 we don't depend upon CVS Bison.
16775
10e5b8bd
AD
167762002-06-15 Akim Demaille <akim@epita.fr>
16777
16778 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
16779 * src/print.c (print_core): Use it.
16780
9801d40c
AD
167812002-06-15 Akim Demaille <akim@epita.fr>
16782
16783 * src/conflicts.c (log_resolution): Accept the rule involved in
16784 the sr conflicts instead of the lookahead number that points to
16785 that rule.
16786 (flush_reduce): Accept the current lookahead vector as argument,
16787 instead of the index in LA.
16788 (resolve_sr_conflict): Accept the current number of lookahead
16789 bitset to consider for the STATE, instead of the index in LA.
16790 (set_conflicts): Adjust.
16791 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
16792
c0263492
AD
167932002-06-15 Akim Demaille <akim@epita.fr>
16794
16795 * src/state.h (state_t): Replace the `lookaheadsp' member, a
16796 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
16797 Adjust all dependencies.
16798 * src/lalr.c (initialize_lookaheads): Split into...
16799 (states_lookaheads_count, states_lookaheads_initialize): these.
16800 (lalr): Adjust.
16801
9757c359
AD
168022002-06-15 Akim Demaille <akim@epita.fr>
16803
16804 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
16805 out of...
16806 (grammar_rules_print): here.
16807 * src/reduce.c (reduce_output): Use it.
16808 * tests/reduce.at (Useless Rules, Reduced Automaton)
16809 (Underivable Rules): Adjust.
16810
6b98e4b5
AD
168112002-06-15 Akim Demaille <akim@epita.fr>
16812
16813 Copy BYacc's nice way to report the grammar.
16814
16815 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
16816 New.
16817 Don't print the rules' location, it is confusing and useless.
16818 (rule_print): Use grammar_rhs_print.
16819 * src/print.c (print_grammar): Use grammar_rules_print.
16820
6b98e4b5
AD
168212002-06-15 Akim Demaille <akim@epita.fr>
16822
16823 Complete and rationalize `useless thing' warnings.
16824
16825 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
16826 (symbol_tag_print): New.
16827 Use them everywhere in place of accessing directly the tag member.
16828 * src/gram.h, src/gram.c (rule_print): New.
16829 Use it where a rule used to be printed `by hand'.
16830 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
16831 (reduce_grammar_tables): Report the useless rules.
16832 (reduce_print): Useless things are a warning, not an error.
16833 Report it as such.
16834 * tests/reduce.at (Useless Nonterminals, Useless Rules):
16835 (Reduced Automaton, Underivable Rules): Adjust.
16836 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
16837 * tests/conflicts.at (Unresolved SR Conflicts)
16838 (Solved SR Conflicts): Adjust.
16839
ee000ba4
AD
168402002-06-15 Akim Demaille <akim@epita.fr>
16841
16842 Let symbols have a location.
16843
16844 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
16845 (getsym): Adjust.
16846 Adjust all callers.
16847 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
16848 Use location_t, not int.
16849 * src/symtab.c (symbol_check_defined): Take advantage of the
16850 location.
16851 * tests/regression.at (Invalid inputs): Adjust.
16852
8efe435c
AD
168532002-06-15 Akim Demaille <akim@epita.fr>
16854
16855 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
16856 (input): Don't try to initialize yylloc here, do it in the
16857 scanner.
16858 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
16859 * src/gram.h (rule_t): Change line and action_line into location
16860 and action_location, of location_t type.
16861 Adjust all dependencies.
16862 * src/location.h, src/location.c (empty_location): New.
16863 * src/reader.h, src/reader.c (grammar_start_symbol_set)
16864 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
16865 (grammar_current_rule_symbol_append)
16866 (grammar_current_rule_action_append): Expect a location as argument.
16867 * src/reader.c (grammar_midrule_action): Adjust to attach an
16868 action's location as dummy symbol location.
16869 * src/symtab.h, src/symtab.c (startsymbol_location): New.
16870 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
16871 the line numbers.
16872
1921f1d7
AD
168732002-06-14 Akim Demaille <akim@epita.fr>
16874
16875 Grammar declarations may be found in the grammar section.
16876
16877 * src/parse-gram.y (rules_or_grammar_declaration): New.
16878 (declarations): Each declaration may end with a semicolon, not
16879 just...
16880 (grammar_declaration): `"%union"'.
16881 (grammar): Branch to rules_or_grammar_declaration.
16882
4515534c
AD
168832002-06-14 Akim Demaille <akim@epita.fr>
16884
16885 * src/main.c (main): Invoke scanner_free.
16886
f958596b
AD
168872002-06-14 Akim Demaille <akim@epita.fr>
16888
16889 * src/output.c (m4_invoke): Extracted from...
16890 (output_skeleton): here.
16891 Free tempfile.
16892
2c569025
AD
168932002-06-14 Akim Demaille <akim@epita.fr>
16894
16895 * src/parse-gram.y (directives, directive, gram)
16896 (grammar_directives, precedence_directives, precedence_directive):
16897 Rename as...
16898 (declarations, declaration, grammar, grammar_declaration)
16899 (precedence_declaration, precedence_declarator): these.
16900 (symbol_declaration): New.
16901
592e8d4d
AD
169022002-06-14 Akim Demaille <akim@epita.fr>
16903
16904 * src/files.c (action_obstack): Remove, unused.
16905 (output_obstack): Remove it, and all its dependencies, as it is no
16906 longer needed.
16907 * src/reader.c (epilogue_set): Build the epilogue in the
16908 muscle_obstack.
16909 * src/output.h, src/output.c (muscle_obstack): Move to...
16910 * src/muscle_tab.h, src/muscle_tab.h: here.
16911 (muscle_init): Initialize muscle_obstack.
16912 (muscle_free): New.
16913 * src/main.c (main): Call it.
16914
0c15323d
AD
169152002-06-14 Akim Demaille <akim@epita.fr>
16916
16917 * src/location.h: New, extracted from...
16918 * src/reader.h: here.
16919 * src/Makefile.am (noinst_HEADERS): Merge into
16920 (bison_SOURCES): this.
16921 Add location.h.
16922 * src/parse-gram.y: Use location_t instead of Bison's.
16923 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
16924 Use location_t instead of ints.
16925
e96c9728
AD
169262002-06-14 Akim Demaille <akim@epita.fr>
16927
16928 * data/bison.simple, data/bison.c++: Be sure to restore the
16929 current #line when returning to the skeleton contents after having
16930 exposed the input file's #line.
16931
75d1fe16
AD
169322002-06-12 Akim Demaille <akim@epita.fr>
16933
16934 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
16935 eager.
16936 * tests/actions.at (Exotic Dollars): New.
16937
6c35d22c
AD
169382002-06-12 Akim Demaille <akim@epita.fr>
16939
16940 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
16941 ['"/] too eagerly.
16942 * tests/input.at (Torturing the Scanner): New.
16943
1d6412ad
AD
169442002-06-11 Akim Demaille <akim@epita.fr>
16945
16946 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
16947 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
16948 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
16949 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
16950 * src/reader.c (reader): Use it.
16951
4cdb01db
AD
169522002-06-11 Akim Demaille <akim@epita.fr>
16953
16954 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
16955 Adjust all callers.
16956 (scanner_last_string_free): New.
16957
44995b2e
AD
169582002-06-11 Akim Demaille <akim@epita.fr>
16959
16960 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
16961 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
16962 (last_string, YY_OBS_FREE): New.
16963 Use them when returning an ID.
16964
e9955c83
AD
169652002-06-11 Akim Demaille <akim@epita.fr>
16966
16967 Have Bison grammars parsed by a Bison grammar.
16968
16969 * src/reader.c, src/reader.h (prologue_augment): New.
16970 * src/reader.c (copy_definition): Remove.
16971
16972 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
16973 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
16974 (grammar_current_rule_prec_set, grammar_current_rule_check)
16975 (grammar_current_rule_symbol_append)
16976 (grammar_current_rule_action_append): Export.
16977 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
16978 (symbol_list_action_append): Remove.
16979 Hook the routines from reader.
16980 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
16981 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
16982
16983 * src/reader.c (read_declarations): Remove, unused.
16984
16985 * src/parse-gram.y: Handle the epilogue.
16986 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
16987 (grammar_start_symbol_set): this.
16988 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
16989 * src/reader.c (readgram): Remove, unused.
16990 (reader): Adjust to insert eoftoken and axiom where appropriate.
16991
16992 * src/reader.c (copy_dollar): Replace with...
16993 * src/scan-gram.h (handle_dollar): this.
16994 * src/parse-gram.y: Remove `%thong'.
16995
16996 * src/reader.c (copy_at): Replace with...
16997 * src/scan-gram.h (handle_at): this.
16998
16999 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
17000 New.
17001
17002 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
17003 time being.
17004
17005 * src/reader.h, src/reader.c (grammar_rule_end): New.
17006
17007 * src/parse.y (current_type, current_class): New.
17008 Implement `%nterm', `%token' support.
17009 Merge `%term' into `%token'.
17010 (string_as_id): New.
17011 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
17012 type name.
17013
17014 * src/parse-gram.y: Be sure to handle properly the beginning of
17015 rules.
17016
17017 * src/parse-gram.y: Handle %type.
17018 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
17019
17020 * src/parse-gram.y: More directives support.
17021 * src/options.c: No longer handle source directives.
17022
17023 * src/parse-gram.y: Fix %output.
17024
17025 * src/parse-gram.y: Handle %union.
17026 Use the prologue locations.
17027 * src/reader.c (parse_union_decl): Remove.
17028
17029 * src/reader.h, src/reader.c (epilogue_set): New.
17030 * src/parse-gram.y: Use it.
17031
17032 * data/bison.simple, data/bison.c++: b4_stype is now either not
17033 defined, then default to int, or to the contents of %union,
17034 without `union' itself.
17035 Adjust.
17036 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
17037
17038 * src/output.c (actions_output): Don't output braces, as they are
17039 already handled by the scanner.
17040
17041 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
17042 characters to themselves.
17043
17044 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
17045 that the epilogue has a proper #line.
17046
17047 * src/parse-gram.y: Handle precedence/associativity.
17048
17049 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
17050 a terminal.
17051 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
17052 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
17053 at all to define terminals that cannot be emitted.
17054
17055 * src/scan-gram.l: Escape M4 characters.
17056
17057 * src/scan-gram.l: Working properly with escapes in user
17058 strings/characters.
17059
17060 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
17061 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
17062 grammar.
17063 Use more modest sizes, as for the time being the parser does not
17064 release memory, and therefore the process swallows a huge amount
17065 of memory.
17066
17067 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
17068 stricter %token grammar.
17069
17070 * src/symtab.h (associativity): Add `undef_assoc'.
17071 (symbol_precedence_set): Do nothing when passed an undef_assoc.
17072 * src/symtab.c (symbol_check_alias_consistence): Adjust.
17073
17074 * tests/regression.at (Invalid %directive): Remove, as it is now
17075 meaningless.
17076 (Invalid inputs): Adjust to the new error messages.
17077 (Token definitions): The new grammar doesn't allow too many
17078 eccentricities.
17079
17080 * src/lex.h, src/lex.c: Remove.
17081 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
17082 (copy_character, copy_string2, copy_string, copy_identifier)
17083 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
17084 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
17085 (parse_action): Remove.
17086 * po/POTFILES.in: Adjust.
17087
2e047461
AD
170882002-06-11 Akim Demaille <akim@epita.fr>
17089
cd05d13c 17090 * src/reader.c (parse_action): Don't store directly into the
2e047461
AD
17091 rule's action member: return the action as a string.
17092 Don't require `rule_length' as an argument: compute it.
17093 (grammar_current_rule_symbol_append)
17094 (grammar_current_rule_action_append): New, eved out from
17095 (readgram): here.
17096 Remove `action_flag', `rulelength', unused now.
17097
9af3fbce
AD
170982002-06-11 Akim Demaille <akim@epita.fr>
17099
17100 * src/reader.c (grammar_current_rule_prec_set).
17101 (grammar_current_rule_check): New, eved out from...
17102 (readgram): here.
17103 Remove `xaction', `first_rhs': useless.
17104 * tests/input.at (Type clashes): New.
17105 * tests/existing.at (GNU Cim Grammar): Adjust.
17106
1485e106
AD
171072002-06-11 Akim Demaille <akim@epita.fr>
17108
17109 * src/reader.c (grammar_midrule_action): New, Eved out from
17110 (readgram): here.
17111
da4160c3
AD
171122002-06-11 Akim Demaille <akim@epita.fr>
17113
17114 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
17115 New.
17116 (readgram): Use them as replacement of inlined code, crule and
17117 crule1.
17118
f6d0f937
AD
171192002-06-11 Akim Demaille <akim@epita.fr>
17120
17121 * src/reader.c (grammar_end, grammar_symbol_append): New.
17122 (readgram): Use them.
17123 Make the use of `p' as local as possible.
17124
69078d4b
AD
171252002-06-10 Akim Demaille <akim@epita.fr>
17126
17127 GCJ's parser requires the tokens to be defined before the prologue.
17128
17129 * data/bison.simple: Output the token definition before the user's
17130 prologue.
17131 * tests/regression.at (Braces parsing, Duplicate string)
17132 (Mixing %token styles): Check the output from bison.
17133 (Early token definitions): New.
17134
5e424082
AD
171352002-06-10 Akim Demaille <akim@epita.fr>
17136
17137 * src/symtab.c (symbol_user_token_number_set): Don't complain when
17138 assigning twice the same user number to a token, so that we can
17139 use it in...
17140 * src/lex.c (lex): here.
17141 Also use `symbol_class_set' instead of hand written code.
17142 * src/reader.c (parse_assoc_decl): Likewise.
17143
44536b35
AD
171442002-06-10 Akim Demaille <akim@epita.fr>
17145
17146 * src/symtab.c, src/symtab.c (symbol_class_set)
17147 (symbol_user_token_number_set): New.
17148 * src/reader.c (parse_token_decl): Use them.
17149 Use a switch instead of ifs.
17150 Use a single argument.
17151
8b9f2372
AD
171522002-06-10 Akim Demaille <akim@epita.fr>
17153
17154 Remove `%thong' support as it is undocumented, unused, duplicates
17155 `%token's job, and creates useless e-mail traffic with people who
17156 want to know what it is, why it is undocumented, unused, and
17157 duplicates `%token's job.
17158
17159 * src/reader.c (parse_thong_decl): Remove.
17160 * src/options.c (option_table): Remove "thong".
17161 * src/lex.h (tok_thong): Remove.
17162
3ae2b51f
AD
171632002-06-10 Akim Demaille <akim@epita.fr>
17164
17165 * src/symtab.c, src/symtab.c (symbol_type_set)
17166 (symbol_precedence_set): New.
17167 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
17168 (value_components_used): Remove, unused.
17169
2f1afb73
AD
171702002-06-09 Akim Demaille <akim@epita.fr>
17171
17172 Move symbols handling code out of the reader.
17173
17174 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
17175 (axiom): Move to...
17176 * src/symtab.h, src/symtab.c: here.
17177
17178 * src/gram.c (start_symbol): Remove: use startsymbol->number.
17179 * src/reader.c (startval): Rename as...
17180 * src/symtab.h, src/symtab.c (startsymbol): this.
17181 * src/reader.c: Adjust.
17182
17183 * src/reader.c (symbol_check_defined, symbol_make_alias)
17184 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
17185 (token_translations_init)
17186 Move to...
17187 * src/symtab.c: here.
17188 * src/reader.c (packsymbols): Move to...
17189 * src/symtab.h, src/symtab.c (symbols_pack): here.
17190 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
17191 argument.
17192
e9bca3ad
AD
171932002-06-03 Akim Demaille <akim@epita.fr>
17194
17195 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
17196 then statements.
17197
86eff183
AD
171982002-06-03 Akim Demaille <akim@epita.fr>
17199
17200 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
17201 structs with non literals.
17202 * src/scan-skel.l: never-interactive.
17203 * src/conflicts.c (enum conflict_resolution_e): No trailing
17204 comma.
17205 * src/getargs.c (usage): Split long literal strings.
17206 Reported by Hans Aberg.
17207
717be197
AD
172082002-05-28 Akim Demaille <akim@epita.fr>
17209
17210 * data/bison.c++: Use C++ ostreams.
17211 (cdebug_): New member.
17212
670ddffd
AD
172132002-05-28 Akim Demaille <akim@epita.fr>
17214
17215 * src/output.c (output_skeleton): Be sure to allocate enough room
17216 for `/' _and_ for `\0' in full_skeleton.
17217
769b430f
AD
172182002-05-28 Akim Demaille <akim@epita.fr>
17219
17220 * data/bison.c++: Catch up with bison.simple:
17221 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17222 and Paul Eggert <eggert@twinsun.com>: `error' handing.
17223 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
17224 and popping traces.
17225
7067cb36
PH
172262002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17227
17228 * src/output.c (output_skeleton): Put an explicit path in front of
17229 the skeleton file name, rather than relying on the -I directory,
17230 to partially alleviate effects of having a skeleton file lying around
17231 in the current directory.
769b430f 17232
4a713ec2
PH
172332002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17234
769b430f 17235 * src/conflicts.c (log_resolution): Correct typo:
4a713ec2
PH
17236 obstack_printf should be obstack_fgrow1.
17237
b408954b
AD
172382002-05-26 Akim Demaille <akim@epita.fr>
17239
17240 * src/state.h (state_t): `solved_conflicts' is a new member.
17241 * src/LR0.c (new_state): Set it to 0.
17242 * src/conflicts.h, src/conflicts.c (print_conflicts)
17243 (free_conflicts, solve_conflicts): Rename as...
17244 (conflicts_print, conflicts_free, conflicts_solve): these.
17245 Adjust callers.
17246 * src/conflicts.c (enum conflict_resolution_e)
17247 (solved_conflicts_obstack): New, used by...
17248 (log_resolution): this.
17249 Adjust to attach the conflict resolution to each state.
17250 Complete the description with the precedence/associativity
17251 information.
17252 (resolve_sr_conflict): Adjust.
17253 * src/print.c (print_state): Output its solved_conflicts.
17254 * tests/conflicts.at (Unresolved SR Conflicts)
17255 (Solved SR Conflicts): Exercise --report=all.
17256
a49aecd5
AD
172572002-05-26 Akim Demaille <akim@epita.fr>
17258
17259 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
17260 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
17261 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
17262 (token_number_t, item_number_as_token_number)
17263 (token_number_as_item_number, muscle_insert_token_number_table):
17264 Rename as...
17265 (symbol_number_t, item_number_as_symbol_number)
17266 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
17267 these, since it is more appropriate.
17268
5504898e
AD
172692002-05-26 Akim Demaille <akim@epita.fr>
17270
17271 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
17272 `Error:' lines.
17273 * data/bison.simple (yystos) [YYDEBUG]: New.
17274 (yyparse) [YYDEBUG]: Display the symbols which are popped during
17275 error recovery.
17276 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
17277
ec3bc396
AD
172782002-05-25 Akim Demaille <akim@epita.fr>
17279
17280 * doc/bison.texinfo (Debugging): Split into...
17281 (Tracing): this new section, its former contents, and...
17282 (Understanding): this new section.
17283 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
17284 by...
17285 (report_flag): this.
17286 Adjust all dependencies.
17287 (report_args, report_types, report_argmatch): New.
17288 (usage, getargs): Report/support -r, --report.
17289 * src/options.h
17290 (struct option_table_struct): Rename as..,
17291 (struct option_table_s): this.
17292 Rename the `set_flag' member to `flag' to match with getopt_long's
17293 struct.
17294 * src/options.c (option_table): Split verbose into an entry for
17295 %verbose, and another for --verbose.
17296 Support --report/-r, so remove -r from the obsolete --raw.
17297 * src/print.c: Attach full item sets and lookaheads reports to
17298 report_flag instead of trace_flag.
17299 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
17300
78df8250
PE
173012002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17302 and Paul Eggert <eggert@twinsun.com>
769b430f 17303
78df8250
PE
17304 * data/bison.simple (yyparse): Correct error handling to conform to
17305 POSIX and yacc. Specifically, after syntax error is discovered,
17306 do not reduce further before shifting the error token.
17307 Clean up the code a bit by removing the labels yyerrdefault,
17308 yyerrhandle, yyerrpop.
17309 * NEWS: Document the above.
17310
c0c9ea05
PH
173112002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17312
17313 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
17314 type; it isn't always big enough, since it doesn't necessarily
17315 include non-terminals.
769b430f 17316 (yytranslate): Expand definition of yy_token_number_type, so that
c0c9ea05
PH
17317 the latter can be removed.
17318 (yy_token_number_type): Remove, only one use.
17319 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
17320 don't use TokenNumberType as element type.
769b430f 17321
c0c9ea05
PH
17322 * tests/regression.at: Modify expected output to agree with change
17323 to yyr1 and yytranslate.
769b430f 17324
6390a83f
FK
173252002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
17326
17327 * src/reader.c (parse_action): Use copy_character instead of
17328 obstack_1grow.
17329
db7c8e9a
AD
173302002-05-13 Akim Demaille <akim@epita.fr>
17331
17332 * tests/regression.at (Token definitions): Prototype yylex and
17333 yyerror.
17334
fcc61800
PH
173352002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17336
158c687b 17337 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
fcc61800
PH
17338 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
17339 32-bit arithmetic.
17340 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
17341
5683e9b2
AD
173422002-05-07 Akim Demaille <akim@epita.fr>
17343
17344 * tests/synclines.at: Be sure to prototype yylex and yyerror to
17345 avoid GCC warnings.
17346
0c2d3f4c
AD
173472002-05-07 Akim Demaille <akim@epita.fr>
17348
17349 Kill GCC warnings.
17350
17351 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
17352 over the RHS of each rule.
17353 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
17354 * src/state.h (state_t): Member `nitems' is unsigned short.
17355 * src/LR0.c (get_state): Adjust.
17356 * src/reader.c (packgram): Likewise.
17357 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
17358 `Type'.
17359 (muscle_insert_int_table): Remove, unused.
17360 (prepare_rules): Remove `max'.
17361
1565b720
AD
173622002-05-06 Akim Demaille <akim@epita.fr>
17363
17364 * src/closure.c (print_firsts): Display of the symbol tags.
17365 (bitmatrix_print): Move to...
17366 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
17367 here.
17368 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
17369
cfaee611
AD
173702002-05-06 Akim Demaille <akim@epita.fr>
17371
17372 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
17373 hash_do_for_each.
17374
458be8e0
AD
173752002-05-06 Akim Demaille <akim@epita.fr>
17376
17377 * src/LR0.c (new_state, get_state): Instead of using the global
17378 `kernel_size' and `kernel_base', have two new arguments:
17379 `core_size' and `core'.
17380 Adjust callers.
17381
a900a624
AD
173822002-05-06 Akim Demaille <akim@epita.fr>
17383
17384 * src/reader.c (packgram): No longer end `ritem' with a 0
17385 sentinel: it is not used.
17386
d4e7d3a1
AD
173872002-05-05 Akim Demaille <akim@epita.fr>
17388
17389 New experimental feature: display the lookaheads in the report and
17390 graph.
17391
17392 * src/print (print_core): When --trace-flag, display the rules
17393 lookaheads.
17394 * src/print_graph.c (print_core): Likewise.
17395 Swap the arguments.
17396 Adjust caller.
17397
39ceb25b
AD
173982002-05-05 Akim Demaille <akim@epita.fr>
17399
17400 * tests/torture.at (Many lookaheads): New test.
17401
5372019f
AD
174022002-05-05 Akim Demaille <akim@epita.fr>
17403
17404 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
17405 (GENERATE_MUSCLE_INSERT_TABLE): this.
17406 (output_int_table, output_unsigned_int_table, output_short_table)
17407 (output_token_number_table, output_item_number_table): Replace with...
17408 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
17409 (muscle_insert_short_table, muscle_insert_token_number_table)
17410 (muscle_insert_item_number_table): these.
17411 Adjust all callers.
17412 (prepare_tokens): Don't free `translations', since...
17413 * src/reader.h, src/reader.c (grammar_free): do it.
17414 Move to...
17415 * src/gram.h, src/gram.c (grammar_free): here.
17416 * data/bison.simple, data/bison.c++: b4_token_number_max is now
17417 b4_translate_max.
17418
5df5f6d5
AD
174192002-05-05 Akim Demaille <akim@epita.fr>
17420
17421 * src/output.c (output_unsigned_int_table): New.
17422 (prepare_rules): `i' is unsigned.
17423 `prhs', `rline', `r2' are unsigned int.
17424 Rename muscle `rhs_number_max' as `rhs_max'.
17425 Output muscles `prhs_max', `rline_max', and `r2_max'.
17426 Free rline and r1.
17427 * data/bison.simple, data/bison.c++: Adjust to use these muscles
17428 to compute types instead of constant types.
17429 * tests/regression.at (Web2c Actions): Adjust.
17430
b87f8b21
AD
174312002-05-04 Akim Demaille <akim@epita.fr>
17432
17433 * src/symtab.h (SALIAS, SUNDEF): Rename as...
17434 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
17435 Adjust dependencies.
17436 * src/output.c (token_definitions_output): Be sure not to output a
17437 `#define 'a'' when fed with `%token 'a' "a"'.
17438 * tests/regression.at (Token definitions): New.
17439
8bb936e4
PE
174402002-05-03 Paul Eggert <eggert@twinsun.com>
17441
17442 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
17443 for K&R C.
17444
174452002-05-03 gettextize <bug-gnu-gettext@gnu.org>
17446
17447 * Makefile.am (SUBDIRS): Remove intl.
17448 (EXTRA_DIST): Add config/config.rpath.
17449
53c71a12
AD
174502002-05-03 Akim Demaille <akim@epita.fr>
17451
17452 * data/bison.simple (m4_if): Don't output empty enums.
17453 And actually, output valid enum definitions :(.
17454
289dd0cf
AD
174552002-05-03 Akim Demaille <akim@epita.fr>
17456
17457 * configure.bat: Remove, completely obsolete.
17458 * Makefile.am (EXTRA_DIST): Adjust.
17459 Don't distribute config.rpath...
17460 * config/Makefile.am (EXTRA_DIST): Do it.
17461
db85e524
AD
174622002-05-03 Akim Demaille <akim@epita.fr>
17463
17464 * configure.in (GETTEXT_VERSION): New.
17465 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
17466
83ccf991
AD
174672002-05-03 Akim Demaille <akim@epita.fr>
17468
17469 * data/bison.simple (b4_token_enum): New.
17470 (b4_token_defines): Use it to output tokens both as #define and
17471 enums.
17472 Suggested by Paul Eggert.
17473 * src/output.c (token_definitions_output): Don't output spurious
17474 white spaces.
17475
1f418995
AD
174762002-05-03 Akim Demaille <akim@epita.fr>
17477
17478 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
17479
45119f04
RA
174802002-05-02 Robert Anisko <robert@lrde.epita.fr>
17481
17482 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
17483 Update the stack class, give a try to deque as the default container.
17484
b2d52318
AD
174852002-05-02 Akim Demaille <akim@epita.fr>
17486
17487 * data/bison.simple (yyparse): Do not implement @$ = @1.
17488 (YYLLOC_DEFAULT): Adjust to do it.
17489 * doc/bison.texinfo (Location Default Action): Fix.
17490
3a8b4109
AD
174912002-05-02 Akim Demaille <akim@epita.fr>
17492
17493 * src/reader.c (parse_braces): Merge into...
17494 (parse_action): this.
17495
84614e13
AD
174962002-05-02 Akim Demaille <akim@epita.fr>
17497
17498 * configure.in (ALL_LINGUAS): Remove.
17499 * po/LINGUAS, hr.po: New.
17500
fdbcd8e2
AD
175012002-05-02 Akim Demaille <akim@epita.fr>
17502
17503 Remove the so called hairy (semantic) parsers.
17504
17505 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
17506 * src/gram.h, src/gram.c (semantic_parser): Remove.
17507 (rule_t): Remove the guard and guard_line members.
17508 * src/lex.h (token_t): remove tok_guard.
17509 * src/options.c (option_table): Remove %guard and %semantic_parser
17510 support.
17511 * src/output.c, src/output.h (guards_output): Remove.
17512 (prepare): Adjust.
17513 (token_definitions_output): Don't output the `T'
17514 tokens (???).
17515 (output_skeleton): Don't output the guards.
17516 * src/files.c, src/files.c (attrsfile): Remove.
17517 * src/reader.c (symbol_list): Remove the guard and guard_line
17518 members.
17519 Adjust dependencies.
17520 (parse_guard): Remove.
17521 * data/bison.hairy: Remove.
17522 * doc/bison.texinfo (Environment Variables): Remove occurrences of
17523 BISON_HAIRY.
17524
82b6cb3f
AD
175252002-05-02 Akim Demaille <akim@epita.fr>
17526
17527 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
17528 (parse_guard): Rename the formal argument `stack_offset' as
17529 `rule_length', which is more readable.
17530 Adjust callers.
17531 (copy_at, copy_dollar): Instead of outputting the hard coded
17532 values of $$, $n and so forth, output invocation to b4_lhs_value,
17533 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
900c877b
AD
17534 Note: this patch partially drops `semantic-parser' support: it
17535 always does `rule_length - n', where semantic parsers ought to
17536 always use `-n'.
82b6cb3f
AD
17537 * data/bison.simple, data/bison.c++ (b4_lhs_value)
17538 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
17539
6cbfbcc5
AD
175402002-05-02 Akim Demaille <akim@epita.fr>
17541
17542 * configure.in (AC_INIT): Bump to 1.49b.
17543 (AM_INIT_AUTOMAKE): Short invocation.
17544
b8548114
AD
175452002-05-02 Akim Demaille <akim@epita.fr>
17546
17547 Version 1.49a.
17548
c20cd1fa
AD
175492002-05-01 Akim Demaille <akim@epita.fr>
17550
17551 * src/skeleton.h: Remove.
17552
8a9566d4
AD
175532002-05-01 Akim Demaille <akim@epita.fr>
17554
17555 * src/skeleton.h: Fix the #endif.
17556 Reported by Magnus Fromreide.
17557
8c6d399a
PE
175582002-04-26 Paul Eggert <eggert@twinsun.com>
17559
17560 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
17561 Define if we define YYSTYPE and YYLTYPE, respectively.
b756bb75 17562 (YYCOPY): Fix [] quoting problem in the non-GCC case.
8a9566d4 17563
2b7ed18a
RA
175642002-04-25 Robert Anisko <robert@lrde.epita.fr>
17565
17566 * src/scan-skel.l: Postprocess quadrigraphs.
17567
17568 * src/reader.c (copy_character): New function, used to output
17569 single characters while replacing `[' and `]' with quadrigraphs, to
17570 avoid troubles with M4 quotes.
17571 (copy_comment): Output characters with copy_character.
17572 (read_additionnal_code): Likewise.
17573 (copy_string2): Likewise.
17574 (copy_definition): Likewise.
17575
17576 * tests/calc.at: Exercise M4 quoting.
17577
34a89c50
AD
175782002-04-25 Akim Demaille <akim@epita.fr>
17579
17580 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
17581 between `!' and the command.
17582 Reported by Paul Eggert.
17583
0dd1580a
RA
175842002-04-24 Robert Anisko <robert@lrde.epita.fr>
17585
17586 * tests/calc.at: Exercise prologue splitting.
17587
17588 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
17589 `b4_post_prologue' instead of `b4_prologue'.
17590
17591 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
17592 muscles.
17593 (output): Free pre_prologue_obstack and post_prologue_obstack.
17594 * src/files.h, src/files.c (attrs_obstack): Remove.
17595 (pre_prologue_obstack, post_prologue_obstack): New.
17596 * src/reader.c (copy_definition): Add a parameter to specify the
17597 obstack to fill, instead of using attrs_obstack unconditionally.
17598 (read_declarations): Pass pre_prologue_obstack to copy_definition if
17599 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
17600
83c1796f
PE
176012002-04-23 Paul Eggert <eggert@twinsun.com>
17602
17603 * data/bison.simple: Remove unnecessary commentary and white
17604 space differences from 1_29-branch.
17605 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
17606
17607 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
17608 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
17609 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
17610 constructors or destructors.
17611
17612 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
17613
1207eeac
AD
176142002-04-23 Akim Demaille <akim@epita.fr>
17615
17616 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
17617 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
17618 location with columns.
17619 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
17620 All reported by Paul Eggert.
17621
78ab8f67
AD
176222002-04-22 Akim Demaille <akim@epita.fr>
17623
17624 * src/reduce.c (dump_grammar): Move to...
17625 * src/gram.h, src/gram.c (grammar_dump): here.
17626 Be sure to separate long item numbers.
17627 Don't read the members of a rule's prec if its nil.
17628
133c20e2
AD
176292002-04-22 Akim Demaille <akim@epita.fr>
17630
17631 * src/output.c (table_size, table_grow): New.
17632 (MAXTABLE): Remove, replace uses with table_size.
17633 (pack_vector): Instead of dying when the table is too big, grow it.
17634
9515e8a7
AD
176352002-04-22 Akim Demaille <akim@epita.fr>
17636
17637 * data/bison.simple (yyr1): Its type is that of a token number.
17638 * data/bison.c++ (r1_): Likewise.
17639 * tests/regression.at (Web2c Actions): Adjust.
17640
23c5a174
AD
176412002-04-22 Akim Demaille <akim@epita.fr>
17642
17643 * src/reader.c (token_translations_init): 256 is now the default
17644 value for the error token, i.e., it will be assigned another
17645 number if the user assigned 256 to one of her tokens.
17646 (reader): Don't force 256 to error.
17647 * doc/bison.texinfo (Symbols): Adjust.
17648 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
17649 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
17650 etc. instead of 10, 20, 30 (which was used to `jump' over error
17651 (256) and undefined (2)).
17652
5fbb0954
AD
176532002-04-22 Akim Demaille <akim@epita.fr>
17654
17655 Propagate more token_number_t.
17656
17657 * src/gram.h (token_number_as_item_number)
17658 (item_number_as_token_number): New.
17659 * src/output.c (GENERATE_OUTPUT_TABLE): New.
17660 Use it to create output_item_number_table and
17661 output_token_number_table.
17662 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
17663 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
17664 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
17665 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
17666
4f940944
AD
176672002-04-22 Akim Demaille <akim@epita.fr>
17668
17669 * src/output.h, src/output.c (get_lines_number): Remove.
17670
3ded9a63
AD
176712002-04-19 Akim Demaille <akim@epita.fr>
17672
17673 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
17674 as Lex/Flex'.
17675 (Debugging): More details about enabling the debugging features.
17676 (Table of Symbols): Describe $$, $n, @$, and @n.
17677 Suggested by Tim Josling.
17678
e0c471a9
AD
176792002-04-19 Akim Demaille <akim@epita.fr>
17680
17681 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
17682
fecc10cd
AD
176832002-04-10 Akim Demaille <akim@epita.fr>
17684
17685 * src/system.h: Rely on HAVE_LIMITS_H.
17686 Suggested by Paul Eggert.
17687
51dec47b
AD
176882002-04-09 Akim Demaille <akim@epita.fr>
17689
17690 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
17691 full stderr, and strip it according to the bison options, instead
17692 of composing the error message from different bits.
17693 This makes it easier to check for several error messages.
17694 Adjust all the invocations.
17695 Add an invocation exercising the error token.
17696 Add an invocation demonstrating a stupid error message.
17697 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
17698 Adjust the tests.
17699 Error message are for stderr, not stdout.
17700
007a50a4
AD
177012002-04-09 Akim Demaille <akim@epita.fr>
17702
17703 * src/gram.h, src/gram.c (error_token_number): Remove, use
17704 errtoken->number.
17705 * src/reader.c (reader): Don't specify the user token number (2)
17706 for $undefined, as it uselessly prevents using it.
17707 * src/gram.h (token_number_t): Move to...
17708 * src/symtab.h: here.
17709 (state_t.number): Is a token_number_t.
17710 * src/print.c, src/reader.c: Use undeftoken->number instead of
17711 hard coded 2.
17712 (Even though this 2 is not the same as above: the number of the
17713 undeftoken remains being 2, it is its user token number which
17714 might not be 2).
17715 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
17716 `user_token_number_max'.
17717 Output `undef_token_number'.
17718 * data/bison.simple, data/bison.c++: Use them.
17719 Be sure to map invalid yylex return values to
17720 `undef_token_number'. This saves us from gratuitous SEGV.
17721
17722 * tests/conflicts.at (Solved SR Conflicts)
17723 (Unresolved SR Conflicts): Adjust.
17724 * tests/regression.at (Web2c Actions): Adjust.
17725
06446ccf
AD
177262002-04-08 Akim Demaille <akim@epita.fr>
17727
17728 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
17729 Adding #line.
17730 Remove the duplicate `typedefs'.
17731 (RhsNumberType): Fix the declaration and various other typos.
17732 Use __ofile__.
17733 * data/bison.simple: Use __ofile__.
17734 * src/scan-skel.l: Handle __ofile__.
17735
62a3e4f0
AD
177362002-04-08 Akim Demaille <akim@epita.fr>
17737
17738 * src/gram.h (item_number_t): New, the type of item numbers in
17739 RITEM. Note that it must be able to code symbol numbers as
17740 positive number, and the negation of rule numbers as negative
17741 numbers.
17742 Adjust all dependencies (pretty many).
17743 * src/reduce.c (rule): Remove this `short *' pointer: use
17744 item_number_t.
17745 * src/system.h (MINSHORT, MAXSHORT): Remove.
17746 Include `limits.h'.
17747 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
17748 (shortcpy): Remove.
17749 (MAXTABLE): Move to...
17750 * src/output.c (MAXTABLE): here.
17751 (prepare_rules): Use output_int_table to output rhs.
17752 * data/bison.simple, data/bison.c++: Adjust.
17753 * tests/torture.at (Big triangle): Move the limit from 254 to
17754 500.
17755 * tests/regression.at (Web2c Actions): Ajust.
17756
17757 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
17758 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
17759 passes, but produces negative #line number, once fixed, GCC is
17760 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
17761 C), it passes.
17762 * src/state.h (state_h): Code input lines on ints, not shorts.
17763
bb88b0fc
AD
177642002-04-08 Akim Demaille <akim@epita.fr>
17765
17766 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
17767 and then the grammar.
17768
9a636f47
AD
177692002-04-08 Akim Demaille <akim@epita.fr>
17770
17771 * src/system.h: No longer using strndup.
17772
680e8701
AD
177732002-04-07 Akim Demaille <akim@epita.fr>
17774
17775 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
17776 * src/output.c (output_table_data): Return the longest number.
17777 (prepare_tokens): Output `token_number_max').
17778 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
17779 New.
17780 Use them to define yy_token_number_type/TokenNumberType.
17781 Use this type for yytranslate.
17782 * tests/torture.at (Big triangle): Push the limit from 124 to
17783 253.
17784 * tests/regression.at (Web2c Actions): Adjust.
17785
817e9f41
AD
177862002-04-07 Akim Demaille <akim@epita.fr>
17787
17788 * tests/torture.at (Big triangle): New.
17789 (GNU AWK Grammar, GNU Cim Grammar): Move to...
17790 * tests/existing.at: here.
17791
5123689b
AD
177922002-04-07 Akim Demaille <akim@epita.fr>
17793
17794 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
17795 nritems.
17796 Adjust dependencies.
17797
f3849179
AD
177982002-04-07 Akim Demaille <akim@epita.fr>
17799
17800 * src/reader.c: Normalize increments to prefix form.
17801
bd02036a
AD
178022002-04-07 Akim Demaille <akim@epita.fr>
17803
17804 * src/reader.c, symtab.c: Remove debugging code.
17805
db8837cb
AD
178062002-04-07 Akim Demaille <akim@epita.fr>
17807
17808 Rename all the `bucket's as `symbol_t'.
17809
17810 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
17811 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
17812 * src/symtab.c, src/symtab.h (bucket): Rename as...
17813 (symbol_t): this.
17814 (symbol_list_new, bucket_check_defined, bucket_make_alias)
17815 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
17816 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
17817 (buckets_new, buckets_free, buckets_do): Rename as...
17818 (symbol_list_new, symbol_check_defined, symbol_make_alias)
17819 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
17820 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
17821 (symbols_new, symbols_free, symbols_do): these.
17822
72a23c97
AD
178232002-04-07 Akim Demaille <akim@epita.fr>
17824
17825 Use lib/hash for the symbol table.
17826
17827 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
17828 EOF.
17829 * src/lex.c (lex): Set the `number' member of new terminals.
17830 * src/reader.c (bucket_check_defined, bucket_make_alias)
17831 (bucket_check_alias_consistence, bucket_translation): New.
17832 (reader, grammar_free, readgram, token_translations_init)
17833 (packsymbols): Adjust.
17834 (reader): Number the predefined tokens.
17835 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
17836 for predefined tokens.
17837 * src/symtab.h (bucket): Remove all the hash table related
17838 members.
17839 * src/symtab.c (symtab): Replace by...
17840 (bucket_table): this.
17841 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
17842 (buckets_new, buckets_do): New.
17843
280a38c3
AD
178442002-04-07 Akim Demaille <akim@epita.fr>
17845
17846 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
17847 (start_symbol, max_user_token_number, semantic_parser)
17848 (error_token_number): Initialize.
17849 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
17850 Initialize.
17851 (reader): Don't.
17852 (errtoken, eoftoken, undeftoken, axiom): Extern.
17853
03b31c0c
AD
178542002-04-07 Akim Demaille <akim@epita.fr>
17855
17856 * src/gram.h (rule_s): prec and precsym are now pointers
17857 to the bucket giving the priority/associativity.
17858 Member `associativity' removed: useless.
17859 * src/reduce.c, src/conflicts.c: Adjust.
17860
8b3df748
AD
178612002-04-07 Akim Demaille <akim@epita.fr>
17862
17863 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
17864 Properly escape the symbols' TAG when outputting them.
17865
e601aa1d
AD
178662002-04-07 Akim Demaille <akim@epita.fr>
17867
17868 * src/lalr.h (LA): Is a bitsetv, not bitset*.
17869
b0299a2e
AD
178702002-04-07 Akim Demaille <akim@epita.fr>
17871
17872 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
17873 (LArule): this, which is an array to rule_t*.
17874 * src/print.c, src/conflicts.c: Adjust.
17875
d7e1f00c
AD
178762002-04-07 Akim Demaille <akim@epita.fr>
17877
17878 * src/gram.h (rule_t): Rename `number' as `user_number'.
17879 `number' is a new member.
17880 Adjust dependencies.
17881 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
17882
cc9305dd
AD
178832002-04-07 Akim Demaille <akim@epita.fr>
17884
17885 As a result of the previous patch, it is no longer needed
17886 to reorder ritem itself.
17887
17888 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
17889
b0940840
AD
178902002-04-07 Akim Demaille <akim@epita.fr>
17891
17892 Be sure never to walk through RITEMS, but use only data related to
17893 the rules themselves. RITEMS should be banished.
17894
17895 * src/output.c (output_token_translations): Rename as...
17896 (prepare_tokens): this.
17897 In addition to `translate', prepare the muscles `tname' and
17898 `toknum', which were handled by...
17899 (output_rule_data): this.
17900 Remove, and move the remainder of its outputs into...
17901 (prepare_rules): this new routines, which also merges content from
17902 (output_gram): this.
17903 (prepare_rules): Be sure never to walk through RITEMS.
17904 (output_stos): Rename as...
17905 (prepare_stos): this.
17906 (output): Always invoke prepare_states, after all, just don't use it
17907 in the output if you don't need it.
17908
643a5994
AD
179092002-04-07 Akim Demaille <akim@epita.fr>
17910
17911 * src/LR0.c (new_state): Display `nstates' as the name of the
17912 newly created state.
17913 Adjust to initialize first_state and last_state if needed.
17914 Be sure to distinguish the initial from the final state.
17915 (new_states): Create the itemset of the initial state, and use
17916 new_state.
17917 * src/closure.c (closure): Now that the initial state has its
17918 items properly set, there is no need for a special case when
17919 creating `ruleset'.
17920
17921 As a result, now the rule 0, reducing to $axiom, is visible in the
17922 outputs. Adjust the test suite.
17923
17924 * tests/conflicts.at (Solved SR Conflicts)
17925 (Unresolved SR Conflicts): Adjust.
17926 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
17927 * tests/conflicts.at (S/R in initial): New.
17928
b4c4ccc2
AD
179292002-04-07 Akim Demaille <akim@epita.fr>
17930
17931 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
17932 the RHS of the rules.
17933 * src/output.c (output_gram): Likewise.
17934
bba97eb2
AD
179352002-04-07 Akim Demaille <akim@epita.fr>
17936
17937 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
17938 bucket.
17939 Adjust all dependencies.
17940 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
17941 `number' of the buckets too.
17942 * src/gram.h: Include `symtab.h'.
17943 (associativity): Move to...
17944 * src/symtab.h: here.
17945 No longer include `gram.h'.
17946
c3b407f4
AD
179472002-04-07 Akim Demaille <akim@epita.fr>
17948
17949 * src/gram.h, src/gram.c (rules_rhs_length): New.
17950 (ritem_longest_rhs): Use it.
17951 * src/gram.h (rule_t): `number' is a new member.
17952 * src/reader.c (packgram): Set it.
17953 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
17954 the end of `rules', and count them out of `nrules'.
17955 (reduce_output, dump_grammar): Adjust.
17956 * src/print.c (print_grammar): It is no longer needed to check for
17957 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
17958 * tests/reduce.at (Reduced Automaton): New test.
17959
11652ab3
AD
179602002-04-07 Akim Demaille <akim@epita.fr>
17961
17962 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
17963 lacking `+ 1' to nrules, Bison reported as useless a token if it
17964 was used solely to set the precedence of the last rule...
17965
26b23c1a
AD
179662002-04-07 Akim Demaille <akim@epita.fr>
17967
17968 * data/bison.c++, data/bison.simple: Don't output the current file
17969 name in #line, to avoid useless diffs between two identical
17970 outputs under different names.
17971
18bcecb0
AD
179722002-04-07 Akim Demaille <akim@epita.fr>
17973
17974 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
17975 Normalize loops to using `< nrules + 1', not `<= nrules'.
17976
fa770c86
AD
179772002-04-07 Akim Demaille <akim@epita.fr>
17978
17979 * TODO: Update.
17980
d9b739c3
AD
179812002-04-07 Akim Demaille <akim@epita.fr>
17982
17983 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
17984 bucket.value as bucket.number.
17985
99013900
AD
179862002-04-07 Akim Demaille <akim@epita.fr>
17987
17988 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
17989 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
17990 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
17991 RHS, instead of being an index in RITEMS.
17992
e966383b
PE
179932002-04-04 Paul Eggert <eggert@twinsun.com>
17994
17995 * doc/bison.texinfo: Update copyright date.
17996 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
17997 (Symbols): Warn about running Bison in one character set,
17998 but compiling and/or running in an incompatible one.
17999 Warn about character code 256, too.
18000
180012002-04-03 Paul Eggert <eggert@twinsun.com>
18002
18003 * src/bison.data (YYSTACK_ALLOC): Depend on whether
18004 YYERROR_VERBOSE is nonzero, not whether it is defined.
18005
18006 Merge changes from bison-1_29-branch.
c307773e 18007
8d6c48b9
PE
180082002-03-20 Paul Eggert <eggert@twinsun.com>
18009
18010 Merge fixes from Debian bison_1.34-1.diff.
18011
18012 * configure.in (AC_PREREQ): 2.53.
18013
e53c6322
AD
180142002-03-20 Akim Demaille <akim@epita.fr>
18015
18016 * src/conflicts.c (log_resolution): Argument `resolution' is const.
18017
9ffbeca7
PE
180182002-03-19 Paul Eggert <eggert@twinsun.com>
18019
21db0b2a
PE
18020 * src/bison.simple (YYCOPY): New macro.
18021 (YYSTACK_RELOCATE): Use it.
18022 Remove Type arg; no longer needed. All callers changed.
18023 (yymemcpy): Remove; no longer needed.
18024
9ffbeca7
PE
18025 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
18026 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
18027
642cb8f8
AD
180282002-03-19 Akim Demaille <akim@epita.fr>
18029
18030 Test and fix the #line outputs.
18031
18032 * tests/atlocal.at (GCC): New.
18033 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
0ffd4fd1 18034 (Prologue synch line, %union synch line, Postprologue synch line)
642cb8f8
AD
18035 (Action synch line, Epilogue synch line): New tests.
18036 * src/reader.c (parse_union_decl): Define the muscle stype_line.
18037 * data/bison.simple, data/bison.c++: Use it.
18038
3c31a486
AD
180392002-03-19 Akim Demaille <akim@epita.fr>
18040
18041 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
18042 (Solved SR Conflicts, %expect not enough, %expect right)
18043 (%expect too much): Move to...
18044 * tests/conflicts.at: this new file.
18045
0d8bed56
AD
180462002-03-19 Akim Demaille <akim@epita.fr>
18047
18048 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
18049 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
18050 that we can move to enums for instance.
18051 * src/output.c (token_definitions_output): Output a list of
18052 `token-name, token-number' instead of the #define.
18053 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
18054
9208d17f
AD
180552002-03-14 Akim Demaille <akim@epita.fr>
18056
18057 Use Gettext 0.11.1.
18058
af27eacb
RA
180592002-03-09 Robert Anisko <robert@lrde.epita.fr>
18060
18061 * data/bison.c++: Make the user able to add members to the generated
18062 parser by subclassing.
18063
9101a310
RA
180642002-03-05 Robert Anisko <robert@lrde.epita.fr>
18065
18066 * src/reader.c (read_additionnal_code): `c' should be an integer, not
18067 a character.
18068 Reported by Nicolas Tisserand and Nicolas Burrus.
18069
fff9bf0b
RA
180702002-03-04 Robert Anisko <robert@lrde.epita.fr>
18071
18072 * src/reader.c: Warn about lacking semi-colons, do not complain.
18073
64dba31e
RA
180742002-03-04 Robert Anisko <robert@lrde.epita.fr>
18075
18076 * data/bison.c++: Remove a debug line.
18077
374f5a14
RA
180782002-03-04 Robert Anisko <robert@lrde.epita.fr>
18079
18080 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
18081 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
18082 provide a default implementation.
18083
bfcf1f3a
AD
180842002-03-04 Akim Demaille <akim@epita.fr>
18085
18086 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
18087 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
18088 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
18089 * tests/semantic.at (Parsing Guards): Similarly.
18090 * src/reader.at (readgram): Complain if the last rule is not ended
18091 with a semi-colon.
18092
65ccf9fc
AD
180932002-03-04 Akim Demaille <akim@epita.fr>
18094
18095 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
18096 * src/closure.c: here.
18097 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
18098 RTC.
18099 * src/warshall.h, src/warshall.c: Remove.
18100 * tests/sets.at (Broken Closure): Adjust.
18101
d0039cbc
AD
181022002-03-04 Akim Demaille <akim@epita.fr>
18103
18104 * src/output.c (output_skeleton): tempdir is const.
18105 bytes_read is unused.
18106
345cea78
AD
181072002-03-04 Akim Demaille <akim@epita.fr>
18108
18109 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
18110 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
18111 Update.
18112 From Michael Hayes.
18113
564801f7
AD
181142002-03-04 Akim Demaille <akim@epita.fr>
18115
18116 * src/closure.c (closure): `r' is unused.
18117
e5352bc7
AD
181182002-03-04 Akim Demaille <akim@epita.fr>
18119
18120 * tests/sets.at (Broken Closure): Add the ending `;'.
18121 * src/reader.at (readgram): Complain if a rule is not ended with a
18122 semi-colon.
18123
914feea9
AD
181242002-03-04 Akim Demaille <akim@epita.fr>
18125
18126 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
18127 (count_sr_conflicts): Use bitset_count.
18128 * src/reduce.c (inaccessable_symbols): Ditto.
18129 (bits_size): Remove.
18130 * src/warshall.h, src/warshall.c: Convert to bitsetv.
18131
f0250de6
AD
181322002-03-04 Akim Demaille <akim@epita.fr>
18133
18134 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
18135 * src/reduce.c: Remove the `bitset_zero's following the
18136 `bitset_create's, as now it is performed by the latter.
18137
ef017502
AD
181382002-03-04 Akim Demaille <akim@epita.fr>
18139
18140 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
18141 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
18142 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
18143 latest sources from Michael.
18144
76514394
AD
181452002-03-04 Akim Demaille <akim@epita.fr>
18146
18147 * src/output.c (output): Don't free the grammar.
18148 * src/reader.c (grammar_free): New.
18149 * src/main.c (main): Call it and don't free symtab here.
18150
55024580
AD
181512002-03-04 Akim Demaille <akim@epita.fr>
18152
18153 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
18154 before returning.
18155 Reported by Benoit Perrot.
18156
f9abaa2c
AD
181572002-03-04 Akim Demaille <akim@epita.fr>
18158
18159 Use bitset operations when possible, not loops over bits.
18160
18161 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
18162 bitset_or.
18163 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
18164 * src/reduce.c (useless_nonterminals): Formatting changes.
18165 * src/warshall.c (TC): Use bitset_or.
18166
0e721e75
AD
181672002-03-04 Akim Demaille <akim@epita.fr>
18168
18169 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
18170 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
18171 Ditto.
18172
0fb1ffb1
AD
181732002-03-04 Akim Demaille <akim@epita.fr>
18174
18175 * src/lalr.c (F): Now a bitset*.
18176 Adjust all dependencies.
18177
b86796bf
AD
181782002-03-04 Akim Demaille <akim@epita.fr>
18179
18180 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
18181 Adjust all dependencies.
18182
602bbf31
AD
181832002-03-04 Akim Demaille <akim@epita.fr>
18184
18185 * src/L0.c, src/LR0.h (nstates): Be size_t.
18186 Adjust comparisons (signed vs unsigned).
18187 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
18188 bitset*.
18189 Adjust all dependencies.
18190
d8a0245c
AD
181912002-03-04 Akim Demaille <akim@epita.fr>
18192
18193 * src/closure.c (firsts): Now, also a bitset.
18194 Adjust all dependencies.
18195 (varsetsize): Remove, now unused.
18196 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
18197
34ba9743
AD
181982002-03-04 Akim Demaille <akim@epita.fr>
18199
18200 * src/print.c: Convert to use bitset.h, not hand coded iterations
18201 over ints.
18202
ed86e78c
AD
182032002-03-04 Akim Demaille <akim@epita.fr>
18204
18205 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
18206
dfdb1797
AD
182072002-03-04 Akim Demaille <akim@epita.fr>
18208
18209 * src/closure.c (ruleset): Be a bitset.
18210 (rulesetsize): Remove.
18211
7086e707
AD
182122002-03-04 Akim Demaille <akim@epita.fr>
18213
18214 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
18215 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
18216 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
18217 * src/closure.c (fderives): Be an array of bitsets.
18218
98254360
RA
182192002-02-28 Robert Anisko <robert@lrde.epita.fr>
18220
18221 * data/bison.c++: Merge the two generated headers. Insert a copyright
18222 notice in each output file.
18223
a75c057f
AD
182242002-02-28 Akim Demaille <akim@epita.fr>
18225
18226 * data/bison.c++: Copy the prologue of bison.simple to fetch
18227 useful M4 definitions, such as b4_header_guard.
18228
06b00abc
AD
182292002-02-25 Akim Demaille <akim@epita.fr>
18230
18231 * src/getargs.c (version): Give the name of the authors, and use a
a75c057f
AD
18232 translator friendly scheme for the bgr
18233 copyright notice.
06b00abc 18234
70e7d534
AD
182352002-02-25 Akim Demaille <akim@epita.fr>
18236
18237 * src/output.c (header_output): Remove, now handled completely via
18238 M4.
18239
abe017f6
AD
182402002-02-25 Akim Demaille <akim@epita.fr>
18241
18242 * m4/m4.m4: New, from CVS Autoconf.
18243 * configure.in: Invoke it.
18244 * src/output.c (output_skeleton): Use its result instead of the
18245 hard coded name.
18246
381fb12e
AD
182472002-02-25 Akim Demaille <akim@epita.fr>
18248
18249 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
18250 Fileutils 4.1.5.
18251 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
18252 * src/output.c (output_skeleton): Use mkstemp to create a real
18253 temporary file.
18254 Move the filling of `skeleton' and its muscle to...
18255 (prepare): here.
18256 (output): Move the definition of the prologue muscle to...
18257 (prepare): here.
18258 * src/system.h (DEFAULT_TMPDIR): New.
18259
6f38107f
PE
182602002-02-14 Paul Eggert <eggert@twinsun.com>
18261
18262 Remove the support for C++ namespace cleanliness; it was
18263 causing more problems than it was curing, since it didn't work
18264 properly on some nonstandard C++ compilers. This can wait
18265 for a proper C++ parser.
18266
18267 * NEWS: Document this.
18268 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
18269 of C++, as it's treated like C now.
18270 * src/bison.simple (YYSTD): Remove.
18271 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
18272 Treat C++ just like Standard C instead of trying to support
18273 namespace cleanliness.
18274
80cce3da
AD
182752002-02-14 Akim Demaille <akim@epita.fr>
18276
18277 * tests/regression.at (else): Adjust to Andreas' change.
18278
842e8679
AD
182792002-02-14 Akim Demaille <akim@epita.fr>
18280
18281 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
18282
4bda3f10
AD
182832002-02-13 Andreas Schwab <schwab@suse.de>
18284
18285 * src/output.c (output_rule_data): Don't output NULL, it might
18286 not be defined yet.
18287
4162fa07 182882002-02-11 Robert Anisko <robert@lrde.epita.fr>
b418ecd8 18289
4162fa07
RA
18290 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
18291 (Copyright notice): Update.
b418ecd8 18292
bd16a5dc
AD
182932002-02-11 Akim Demaille <akim@epita.fr>
18294
18295 * tests/regression.at (%nonassoc and eof): Don't include
18296 nonportable headers.
18297
8d69a1a3
RA
182982002-02-08 Robert Anisko <robert@lrde.epita.fr>
18299
18300 * data/bison.c++: Correct error recovery. Make the user able to
18301 initialize the starting location.
18302
9b2d0677
AD
183032002-02-07 Akim Demaille <akim@epita.fr>
18304
18305 * tests/input.at: New.
18306
69e2658b
RA
183072002-02-07 Robert Anisko <robert@lrde.epita.fr>
18308
18309 * data/bison.c++: Replace some direct m4 expansions by constants. Be
9b2d0677 18310 more consistent when naming methods and variables. Put preprocessor
69e2658b
RA
18311 directives around tables only needed for debugging.
18312
4aacc3a7
RA
183132002-02-07 Robert Anisko <robert@lrde.epita.fr>
18314
18315 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
18316 C++ parsers.
18317 (yy::b4_name::parse): Use print_.
18318
762a801e
RA
183192002-02-07 Robert Anisko <robert@lrde.epita.fr>
18320
18321 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
18322
4bb2bc3f
RA
183232002-02-07 Robert Anisko <robert@lrde.epita.fr>
18324
18325 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
18326 C++ parsers.
18327 (yy::b4_name::parse): Build verbose error messages, and use error_.
18328
6b45a3ca
RA
183292002-02-06 Robert Anisko <robert@lrde.epita.fr>
18330
18331 * data/bison.c++: Fix m4 quoting in comments.
18332
50997c6e
RA
183332002-02-06 Robert Anisko <robert@lrde.epita.fr>
18334
18335 * data/bison.c++: Adjust the parser code. Fix some muscles that were
18336 not expanded by m4.
18337
3f3eed27
AD
183382002-02-05 Akim Demaille <akim@epita.fr>
18339
18340 * data/bison.c++: Adjust to the M4 back end.
18341 More is certainly needed.
18342
be2a1a68
AD
183432002-02-05 Akim Demaille <akim@epita.fr>
18344
18345 Give a try to M4 as a back end.
18346
18347 * lib/readpipe.c: New, from wdiff.
18348 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
18349 BISON_HAIRY.
18350 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
18351 specific values. Now it is m4 that performs the lookup.
18352 * src/parse-skel.y: Remove.
18353 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
18354 * src/output.c (actions_output, guards_output)
18355 (token_definitions_output): No longer keeps track of the output
18356 line number, hence remove the second argument.
18357 (guards_output): Check against the guard member of a rule, not the
18358 action member.
18359 Adjust callers.
18360 (output_skeleton): Don't look for the skeleton location, let m4 do
18361 that.
18362 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
18363 file will be used.
18364 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
18365 (prepare): Given that for the time being changesyntax is not
18366 usable in M4, rename the muscles using `-' to `_'.
18367 Define `defines_flag', `output_parser_name' and `output_header_name'.
18368 * src/output.h (actions_output, guards_output)
18369 (token_definitions_output): Adjust prototypes.
18370 * src/scan-skel.l: Instead of scanning the skeletons, it now
18371 processes the output of m4: `__oline__' and `#output'.
18372 * data/bison.simple: Adjust to be used by M4(sugar).
18373 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
18374 to date.
18375 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
18376 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
18377 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
18378 shamelessly stolen from CVS Autoconf.
18379
beda758b
AD
183802002-02-05 Akim Demaille <akim@epita.fr>
18381
18382 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
18383 * configure.in: Check for the declarations of free and malloc.
18384 * src/muscle_tab.c: Adjust.
18385
5ece6d43
AD
183862002-02-05 Akim Demaille <akim@epita.fr>
18387
18388 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
18389 which have no values.
18390
5bb18f9a
AD
183912002-02-05 Akim Demaille <akim@epita.fr>
18392
18393 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
18394 * data/: here.
18395
894dd62e
PE
183962002-01-29 Paul Eggert <eggert@twinsun.com>
18397
18398 * src/bison.simple (YYSIZE_T): Do not define merely because
18399 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
18400 On some platforms, <alloca.h> does not declare YYSTD (size_t).
18401
82841af7
AD
184022002-01-27 Akim Demaille <akim@epita.fr>
18403
18404 Fix `%nonassoc and eof'.
18405
18406 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
18407 which were not properly copied! Replace
18408 memcpy (res->errs, src->errs, src->nerrs);
18409 with
18410 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
18411 !!!
18412 * tests/regression.at (%nonassoc and eof): Adjust to newest
18413 Autotest: `.' is not in the PATH.
18414
318b76e9
AD
184152002-01-27 Akim Demaille <akim@epita.fr>
18416
18417 * tests/sets.at (AT_EXTRACT_SETS): New.
18418 (Nullable): Use it.
18419 (Firsts): New.
18420
30d2f3d5
AD
184212002-01-26 Akim Demaille <akim@epita.fr>
18422
18423 * tests/actions.at, tests/calc.at, tests/headers.at,
18424 * tests/torture.at: Adjust to the newest Autotest which no longer
18425 forces `.' in the PATH.
18426
30f8c395
AD
184272002-01-25 Akim Demaille <akim@epita.fr>
18428
18429 * tests/regression.at (%nonassoc and eof): New.
18430 Suggested by Robert Anisko.
18431
29ae55f1
AD
184322002-01-24 Akim Demaille <akim@epita.fr>
18433
18434 Bison dumps core when trying to complain about broken input files.
18435 Reported by Cris van Pelt.
18436
18437 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
18438 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
18439 into...
18440 (Invalid inputs): Strengthen: exercise parse_percent_token.
18441
2b548aa6
RA
184422002-01-24 Robert Anisko <robert.anisko@epita.fr>
18443
18444 * src/Makefile.am: Add bison.c++.
18445 * src/bison.c++: New skeleton.
18446
bb0146c2
AD
184472002-01-21 Paolo Bonzini <bonzini@gnu.org>
18448
18449 * po/it.po: New.
18450
bec30531
AD
184512002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
18452
18453 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
18454
fc6edc45
MA
184552002-01-20 Marc Autret <marc@gnu.org>
18456
18457 * src/files.c (compute_output_file_names): Fix
18458
5e5d5415
MA
184592002-01-20 Marc Autret <marc@gnu.org>
18460
18461 * tests/output.at: New test.
18462 * src/files.c (compute_base_names): Don't map extensions when
18463 the YACC flag is set, use defaults.
18464 Reported by Evgeny Stambulchik.
18465
44ea3fbd
MA
184662002-01-20 Marc Autret <marc@gnu.org>
18467
ba0fe3c7
PE
18468 * src/system.h: Need to define __attribute__ away for non-GCC
18469 compilers as well (i.e., the vendor C compiler).
44ea3fbd
MA
18470 Suggested by Albert Chin-A-Young.
18471
338963d1
TVH
184722002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
18473
18474 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
18475 canonical definition.
18476 * src/system.h: Use the canonical definition for PARAMS (avoids
18477 a conflict with the macro from lib/hash.h).
18478
c57b2479
AD
184792002-01-11 Akim Demaille <akim@epita.fr>
18480
18481 * configure.in: Use AC_FUNC_STRNLEN.
d9e9746c 18482 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
c57b2479 18483
b85810ae
AD
184842002-01-09 Akim Demaille <akim@epita.fr>
18485
18486 * src/files.c, src/files.h (output_infix): New.
18487 (tab_extension): Remove.
18488 (compute_base_names): Compute the former, drop the latter.
18489 * src/output.c (prepare): Insert the muscles `output-infix', and
18490 `output-suffix'.
18491 * src/parse-skel.y (string, string.1): New.
18492 (section.header): Use it.
18493 (section.yacc): Remove.
18494 (prefix): Remove too.
18495 * src/scan-skel.l: Adjust.
18496 * src/bison.simple, src/bison.hairy: Adjust.
18497
cae60122
AD
184982002-01-09 Akim Demaille <akim@epita.fr>
18499
18500 * configure.in (WERROR_CFLAGS): Compute it.
18501 * src/Makefile.am (CFLAGS): Pass it.
18502 * tests/atlocal.in (CFLAGS): Idem.
18503 * src/files.c: Fix a few warnings.
18504 (get_extension_index): Remove, unused.
18505
ae404801
AD
185062002-01-08 Akim Demaille <akim@epita.fr>
18507
18508 * src/getargs.c (AS_FILE_NAME): New.
18509 (getargs): Use it to convert DOSish file names.
18510 * src/files.c (base_name): Rename as full_base_name to avoid
18511 clashes with `base_name ()'.
18512 (filename_split): New.
18513 (compute_base_names): N-th rewrite, using filename_split.
18514
22312b71
AD
185152002-01-08 Akim Demaille <akim@epita.fr>
18516
18517 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
18518 New, stolen from the Fileutils 4.1.
18519 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
18520 * configure.in: Check for the presence of memrchr, and of its
18521 prototype.
18522
a67cef01
TVH
185232002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
18524
18525 * lib/hash.h (__P): Added definition for this macro.
18526 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
18527 BUILT_SOURCES, to ensure they are generated first.
18528 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
18529 %error-verbose to allow bootstrapping with bison 1.30x.
18530
2b25d624
AD
185312002-01-06 Akim Demaille <akim@epita.fr>
18532
18533 * src/reader.c (parse_braces): Don't fetch the next char, the
18534 convention is to fetch on entry.
18535 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
18536 'switch' without a following semicolon.
18537 * tests/regression.at (braces parsing): New.
18538
3460813b
AD
185392002-01-06 Akim Demaille <akim@epita.fr>
18540
18541 Bison is dead wrong in its RR conflict reports.
18542
18543 * tests/torture.at (GNU Cim Grammar): New.
18544 * src/conflicts.c (count_rr_conflicts): Fix.
18545
73784c64
AD
185462002-01-06 Akim Demaille <akim@epita.fr>
18547
18548 Creating package.m4 from configure.ac causes too many problems.
18549
18550 * tests/Makefile.am (package.m4): Create it by hand,
18551 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
18552
25d81090
AD
185532002-01-06 Akim Demaille <akim@epita.fr>
18554
18555 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
18556 skeleton.h.
18557
a9b8959e
PE
185582002-01-04 Paul Eggert <eggert@twinsun.com>
18559
18560 * doc/bison.texinfo (Debugging):
18561 Remove YYSTDERR; it's no longer defined or used.
18562 Also, s/cstdio.h/cstdio/.
18563
25d81090
AD
185642002-01-03 Akim Demaille <akim@epita.fr>
18565
18566 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
18567
1109455c
AD
185682002-01-03 Akim Demaille <akim@epita.fr>
18569
18570 * src/parse-skel.y (process_skeleton): Don't bind the parser's
18571 tracing code to --trace, wait for a better --trace option, with
18572 args.
18573
7ea5e977
AD
185742002-01-03 Akim Demaille <akim@epita.fr>
18575
18576 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
18577 The ISO C++ standard is extremely clear about it: stderr is
18578 considered a macro, not a regular symbol (see table 94 `Header
18579 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
18580 Therefore std:: does not apply to it. It still does with fprintf.
18581 Also, s/cstdio.h/cstdio/.
18582
fab5b110
AD
185832002-01-03 Akim Demaille <akim@epita.fr>
18584
18585 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
18586 for non system headers.
18587
aed7fd9b
AD
185882002-01-02 Akim Demaille <akim@epita.fr>
18589
18590 Equip the skeleton chain with location tracking, runtime trace,
18591 pure parser and scanner.
18592
18593 * src/parse-skel.y: Request a pure parser, locations, and prefix
18594 renaming.
18595 (%union): Having several members with the same type does not help
18596 type mismatches, simplify.
18597 (YYPRINT, yyprint): New.
18598 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
18599 (skel_error): this.
18600 Handle locations.
18601 * src/scan-skel.l: Adjust to these changes.
18602 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
18603 (LOCATION_PRINT, skel_control_t): New.
18604
24fad99e
AD
186052001-12-30 Akim Demaille <akim@epita.fr>
18606
18607 * src/parse-skel.y: Get rid of the shift/reduce conflict:
18608 replace `gb' with BLANKS.
18609 * src/scan-skel.l: Adjust.
18610
a4b36db4
AD
186112001-12-30 Akim Demaille <akim@epita.fr>
18612
18613 * src/system.h: We don't need nor want bcopy.
18614 Throw away MS-DOS crap: we don't need getpid.
18615 * configure.in: We don't need strndup. It was even causing
18616 problems: because Flex includes the headers *before* us,
18617 _GNU_SOURCE is not defined by config.h, and therefore strndup was
18618 not visible.
18619 * lib/xstrndup.c: New.
18620 * src/scan-skel.l: Use it.
18621 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
18622 * src/parse-skel.y: Use %directives instead of #defines.
18623
1239777d
AD
186242001-12-30 Akim Demaille <akim@epita.fr>
18625
18626 * src/skeleton.h: New.
18627 * src/output.c (output_parser, output_master_parser): Remove, dead
18628 code.
18629 * src/output.h (get_lines_number, actions_output, guards_output)
18630 (token_definitions_output): Prototype them.
18631 * src/parse-skel.y: Add the license notice.
18632 Include output.h and skeleton.h.
18633 (process_skeleton): Returns void, and takes a single parameter.
18634 * src/scan-skel.l: Add the license notice.
18635 Include skeleton.h.
18636 Don't use %option yylineno: it seems that then Flex imagines
18637 REJECT has been used, and therefore it won't reallocate its
18638 buffers (which makes no other sense to me than a bug). It results
18639 in warnings for `unused: yy_flex_realloc'.
18640
9b3add5b
RA
186412001-12-30 Robert Anisko <robert.anisko@epita.fr>
18642
18643 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
18644 (MUSCLE_INSERT_PREFIX): ...to there.
18645 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
18646 (MUSCLE_INSERT_PREFIX): Move from here...
18647
18648 * src/bison.hairy: Add a section directive. Put braces around muscle
18649 names. This parser skeleton is still broken, but Bison should not
18650 choke on a bad muscle 'syntax'.
18651 * src/bison.simple: Add a section directive. Put braces around muscle
18652 names.
18653
18654 * src/files.h (strsuffix, stringappend): Add declarations.
18655 (tab_extension): Add declaration.
18656 (short_base_name): Add declaration.
18657
18658 * src/files.c (strsuffix, stringappend): No longer static. These
18659 functions are used in the skeleton parser.
18660 (tab_extension): New.
18661 (compute_base_names): Use the computations done in this function
fab5b110 18662 to guess if the generated parsers should have '.tab' in their
9b3add5b
RA
18663 names.
18664 (short_base_name): No longer static.
18665
18666 * src/output.c (output_skeleton): New.
18667 (output): Disable call to output_master_parser, and give a try to
18668 a new skeleton handling system.
18669 (guards_output, actions_output): No longer static.
18670 (token_definitions_output, get_lines_number): No longer static.
18671
18672 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
18673
fab5b110 18674 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
9b3add5b
RA
18675 parse-skel.y.
18676
18677 * src/parse-skel.y: New file.
18678 * src/scan-skel.l: New file.
18679
b5b61c61
AD
186802001-12-29 Akim Demaille <akim@epita.fr>
18681
18682 %name-prefix is broken.
18683
18684 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
18685 Adjust all dependencies.
18686 * tests/headers.at (export YYLTYPE): Strengthen this test: use
18687 %name-prefix.
18688
18689 Renaming yylval but not yylloc is not consistent. Now we do.
18690
18691 * src/bison.simple: Prefix yylloc if used.
18692 * doc/bison.texinfo (Decl Summary): Document that.
18693
8c9a50be
AD
186942001-12-29 Akim Demaille <akim@epita.fr>
18695
18696 * doc/bison.texinfo: Promote `%long-directive' over
18697 `%long_directive'.
18698 Remove all references to fixed-output-files, yacc is enough.
18699
d99361e6
AD
187002001-12-29 Akim Demaille <akim@epita.fr>
18701
18702 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
18703 user prologue. These are defaults.
18704 * tests/actions.at (Mid-rule actions): Make sure the user can
18705 define YYDEBUG and YYERROR_VERBOSE.
18706
b9cecb91
AD
187072001-12-29 Akim Demaille <akim@epita.fr>
18708
18709 * src/output.c (header_output): Don't forget to export YYLTYPE and
18710 yylloc.
18711 * tests/headers.at (export YYLTYPE): New, make sure it does.
18712 * tests/regression.at (%union and --defines, Invalid CPP headers):
18713 Move to...
18714 * tests/headers.at: here.
18715
aea13e97
AD
187162001-12-29 Akim Demaille <akim@epita.fr>
18717
18718 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
18719
931394cb
AD
187202001-12-29 Akim Demaille <akim@epita.fr>
18721
18722 * tests/actions.at (Mid-rule actions): Output on a single line
18723 instead of several.
18724
704a47c4
AD
187252001-12-29 Akim Demaille <akim@epita.fr>
18726
18727 * doc/bison.texinfo: Formatting changes.
18728
091e20bb
AD
187292001-12-29 Akim Demaille <akim@epita.fr>
18730
18731 Don't store the token defs in a muscle, just be ready to output it
18732 on command. Now possible via `symbols'. Fixes a memory leak.
18733
18734 * src/output.c (token_definitions_output): New.
18735 (output_parser, header_output): Use it.
18736 * src/reader.c (symbols_save): Remove.
18737
cce71710
AD
187382001-12-29 Akim Demaille <akim@epita.fr>
18739
18740 * src/bison.simple: Do not provide a default for YYSTYPE and
18741 YYLTYPE before the user's prologue. Otherwise it's hardly... a
18742 default.
18743
82c035a8
AD
187442001-12-29 Akim Demaille <akim@epita.fr>
18745
18746 Mid-rule actions are simply... ignored!
18747
18748 * src/reader.c (readgram): Be sure to attach mid-rule actions to
18749 the empty-rule associated to the dummy symbol, not to the host
18750 rule.
18751 * tests/actions.at (Mid-rule actions): New.
18752
8419d367
AD
187532001-12-29 Akim Demaille <akim@epita.fr>
18754
18755 Memory leak.
18756
18757 * src/reader.c (reader): Free grammar.
18758
375d5806
AD
187592001-12-29 Akim Demaille <akim@epita.fr>
18760
18761 Memory leak.
18762
18763 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
18764 since it allocates it for each state, although only one is needed.
18765 (allocate_storage): Do it here.
18766
f51cb8ff
AD
187672001-12-29 Akim Demaille <akim@epita.fr>
18768
18769 * src/options.h, src/options.c (create_long_option_table): Rename
18770 as...
18771 (long_option_table_new): this, with a clearer prototype.
18772 (percent_table): Remove, unused,
18773 * src/getargs.c (getargs): Adjust.
18774
29e88316
AD
187752001-12-29 Akim Demaille <akim@epita.fr>
18776
18777 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
18778 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
18779 as states.
18780
b9f71f19
AD
187812001-12-29 Akim Demaille <akim@epita.fr>
18782
18783 * src/lalr.c (build_relations): Rename `states' as `states1'.
18784 Sorry, I don't understand exactly what it is, no better name...
18785
1a2b5d37
AD
187862001-12-29 Akim Demaille <akim@epita.fr>
18787
18788 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
18789 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
18790 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
18791 as rules.
18792
1cca533e
AD
187932001-12-29 Akim Demaille <akim@epita.fr>
18794
18795 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
18796 ago.
18797
c03ae966
AD
187982001-12-29 Akim Demaille <akim@epita.fr>
18799
18800 * src/reader.c, src/reader.h (user_toknums): Remove.
18801 Adjust all users to use symbols[i]->user_token_number.
18802
5a670b1e
AD
188032001-12-29 Akim Demaille <akim@epita.fr>
18804
18805 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
18806 Adjust all users to use symbols[i]->prec or ->assoc.
18807
ad949da9
AD
188082001-12-29 Akim Demaille <akim@epita.fr>
18809
18810 * src/reader.c, src/reader.h (tags): Remove.
18811 Adjust all users to use symbols[i]->tag.
18812
0e78e603
AD
188132001-12-29 Akim Demaille <akim@epita.fr>
18814
18815 * src/gram.h, src/gram.c (symbols): New, similar to state_table
18816 and rule_table.
18817 * src/reader.c (packsymbols): Fill this table.
18818 Drop sprec.
18819 * src/conflicts.c (resolve_sr_conflict): Adjust.
18820 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
18821 single table.
18822 Use symbols[i]->tag instead of tags[i].
18823
213e640e
AD
188242001-12-29 Akim Demaille <akim@epita.fr>
18825
18826 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
18827 In addition, put a comment in there, to replace...
18828 * tests/regression.at (%union and C comments): Remove.
18829
e7b8bef1
AD
188302001-12-29 Akim Demaille <akim@epita.fr>
18831
18832 * tests/regression.at (Web2c Actions): Blindly move the actual
18833 output as expected output. The contents *seem* right to me, but I
18834 can't pretend reading perfectly parser tables... Nonetheless, all
18835 the other tests pass correctly, the table look OK, even though the
18836 presence of `$axiom' is to be noted: AFAICS it is useless (but
18837 harmless).
18838
b68e7744
AD
188392001-12-29 Akim Demaille <akim@epita.fr>
18840
18841 * src/reader.c (readgram): Don't add the rule 0 if there were no
18842 rules read. In other words, add it _after_ having performed
18843 grammar sanity checks.
18844 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
18845
78d5bae9
AD
188462001-12-29 Akim Demaille <akim@epita.fr>
18847
18848 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
18849 visible, and some states have now a different number.
18850
ff442794
AD
188512001-12-29 Akim Demaille <akim@epita.fr>
18852
18853 * src/reader.c (readgram): Bind the initial rule's lineno to that
18854 of the first rule.
18855 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
18856 (Solved SR Conflicts): Adjust rule 0's line number.
18857
610ab194
AD
188582001-12-29 Akim Demaille <akim@epita.fr>
18859
18860 Fix the `GAWK Grammar' failure.
18861
18862 * src/LR0.c (final_state): Initialize to -1 so that we do compute
18863 the reductions of the first state which was mistakenly confused
18864 with the final state because precisely final_state was initialized
18865 to 0.
18866 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
18867 now noticed by Bison.
18868 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
18869 have a reduction on $default.
18870
29d29c8f
AD
188712001-12-29 Akim Demaille <akim@epita.fr>
18872
18873 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
18874 rule line numbers.
18875 * src/closure.c (print_closure): Likewise.
18876 * src/derives.c (print_derives): Likewise.
18877 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
18878 now.
18879
7c6b64d0
AD
188802001-12-29 Akim Demaille <akim@epita.fr>
18881
18882 * src/lalr.c (lookaheads_print): New.
18883 (lalr): Call it when --trace-flag.
18884 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
18885 are dumped.
18886
3d4daee3
AD
188872001-12-29 Akim Demaille <akim@epita.fr>
18888
18889 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
18890 when walking through ritem, even via rule->rhs.
18891 * src/reduce.c (dump_grammar, useful_production, reduce_output)
18892 (useful_production, useless_nonterminals): Likewise.
18893 (reduce_grammar_tables): Likewise, plus update nritems.
18894 * src/nullable.c (set_nullable): Likewise.
18895 * src/lalr.c (build_relations): Likewise.
18896 * tests/sets.at (Nullable): Adjust.
18897 Fortunately, now, the $axiom is no longer nullable.
18898
9e7f6bbd
AD
188992001-12-29 Akim Demaille <akim@epita.fr>
18900
18901 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
18902 the 0-sentinel.
18903 * src/gram.c (ritem_longest_rhs): Likewise.
18904 * src/reduce.c (nonterminals_reduce): Likewise.
18905 * src/print_graph.c (print_graph): Likewise.
18906 * src/output.c (output_rule_data): Likewise.
18907 * src/nullable.c (set_nullable): Likewise.
18908
255ef638
AD
189092001-12-29 Akim Demaille <akim@epita.fr>
18910
18911 * src/output.c: Comment changes.
18912
0d8a7363
AD
189132001-12-27 Paul Eggert <eggert@twinsun.com>
18914
18915 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
18916 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
18917 Sparc, as they were causing more porting problems than the
18918 (minor) performance improvement was worth.
18919
18920 Also, catch up with 1.31's YYSTD.
18921
3db472b9
AD
189222001-12-27 Akim Demaille <akim@epita.fr>
18923
18924 * src/output.c (output_gram): Rely on nritems, not the
18925 0-sentinel. See below.
18926 Use -1 as separator, not 0.
18927 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
18928 Rely on -1 as separator in yyrhs, instead of 0.
18929 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
18930 twice `Now at end of input', therefore there are two lines less to
18931 expect.
18932
b365aa05
AD
189332001-12-27 Akim Demaille <akim@epita.fr>
18934
18935 * tests/regression.at (Unresolved SR Conflicts):
18936 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
18937 below.
18938
30171f79
AD
189392001-12-27 Akim Demaille <akim@epita.fr>
18940
18941 * src/LR0.c (new_state): Recognize the final state by the fact it
18942 is reached by eoftoken.
18943 (insert_start_shifting_state, insert_eof_shifting_state)
18944 (insert_accepting_state, augment_automaton): Remove, since now
18945 these states are automatically computed from the initial state.
18946 (generate_states): Adjust.
18947 * src/print.c: When reporting a rule number to the user, substract
18948 1, so that the axiom rule is rule 0, and the first user rule is 1.
18949 * src/reduce.c: Likewise.
18950 * src/print_graph.c (print_core): For the time being, just as for
18951 the report, depend upon --trace-flags to dump the full set of
18952 items.
18953 * src/reader.c (readgram): Once the grammar read, insert the rule
18954 0: `$axiom: START-SYMBOL $'.
18955 * tests/set.at: Adjust: rule 0 is now displayed, and since the
18956 number of the states has changed (the final state is no longer
18957 necessarily the last), catch up.
18958
75142d45
AD
189592001-12-27 Akim Demaille <akim@epita.fr>
18960
18961 Try to make the use of the eoftoken valid. Given that its value
18962 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
18963 is used instead of > 0 where appropriate, (ii), depend upon nritems
18964 instead of the 0-sentinel.
18965
18966 * src/gram.h, src/gram.c (nritems): New.
18967 Expected to be duplication of nitems, but for the time being...
18968 * src/reader.c (packgram): Assert nritems and nitems are equal.
18969 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
18970 * src/closure.c (print_closure, print_fderives): Likewise.
18971 * src/gram.c (ritem_print): Likewise.
18972 * src/print.c (print_core, print_grammar): Likewise.
18973 * src/print_graph.c: Likewise.
18974
b7c49edf
AD
189752001-12-27 Akim Demaille <akim@epita.fr>
18976
18977 * src/main.c (main): If there are complains after grammar
18978 reductions, then output the report anyway if requested, then die.
18979 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
18980 * src/reader.c (eoftoken): New.
18981 (parse_token_decl): If the token being defined has value `0', it
18982 is the eoftoken.
18983 (packsymbols): No longer hack `tags' to insert `$' by hand.
18984 Be sure to preserve the value of the eoftoken.
18985 (reader): Make sure eoftoken is defined.
18986 Initialize nsyms to 0: now eoftoken is created just like the others.
18987 * src/print.c (print_grammar): Don't special case the eof token.
18988 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
18989 lie anyway, albeit pleasant.
18990 * tests/calc.at: Exercise error messages with eoftoken.
18991 Change the grammar so that empty input is invalid.
18992 Adjust expectations.
18993 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
18994
ec2da99f
AD
189952001-12-27 Akim Demaille <akim@epita.fr>
18996
18997 * configure.in: Check the protos of strchr ans strspn.
18998 Replace strchr if needed.
18999 * src/system.h: Provide the protos of strchr, strspn and memchr if
19000 missing.
19001 * lib/strchr.c: New.
19002 * src/reader.c (symbols_save): Use strchr.
19003
8adfa272
AD
190042001-12-27 Akim Demaille <akim@epita.fr>
19005
19006 * src/print.c, src/print_graph.c (escape): New.
19007 Use it to quote the TAGS outputs.
19008 * src/print_graph.c (print_state): Now errors are in red, and
19009 reductions in green.
19010 Prefer high to wide: output the state number on a line of its own.
19011
80dac38c
AD
190122001-12-27 Akim Demaille <akim@epita.fr>
19013
19014 * src/state.h, src/state.c (reductions_new): New.
19015 * src/LR0.c (set_state_table): Let all the states have a
19016 `reductions', even if reduced to 0.
19017 (save_reductions): Adjust.
19018 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
19019 * src/print.c (print_reductions, print_actions): Adjust.
19020 * src/output.c (action_row): Adjust.
19021
2cec70b9
AD
190222001-12-27 Akim Demaille <akim@epita.fr>
19023
19024 * src/state.h, src/state.c (errs_new, errs_dup): New.
19025 * src/LR0.c (set_state_table): Let all the states have an errs,
19026 even if reduced to 0.
19027 * src/print.c (print_errs, print_reductions): Adjust.
19028 * src/output.c (output_actions, action_row): Adjust.
19029 * src/conflicts.c (resolve_sr_conflict): Adjust.
19030
13ca549a
AD
190312001-12-27 Akim Demaille <akim@epita.fr>
19032
19033 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
19034
5092aba5
AD
190352001-12-27 Akim Demaille <akim@epita.fr>
19036
19037 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
19038 * src/print.c: here.
19039 (lookaheadset, shiftset): New, used as additional storage by
19040 print_reductions.
19041 (print_results): Adjust.
19042 (print_shifts, print_gotos, print_errs): New, extracted from...
19043 (print_actions): here.
19044 * src/print_graph.c (print_actions): Remove dead code.
19045
11e2beca
AD
190462001-12-27 Akim Demaille <akim@epita.fr>
19047
19048 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
19049 `$n' and `@n'.
19050
dac3c910
AD
190512001-12-27 Akim Demaille <akim@epita.fr>
19052
19053 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
19054 (build_relations): Adjust.
19055
d0b0fefa
AD
190562001-12-27 Akim Demaille <akim@epita.fr>
19057
19058 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
19059 duplication.
19060
adc8c848
AD
190612001-12-27 Akim Demaille <akim@epita.fr>
19062
19063 * src/reader.c (packgram): Catch nitems overflows.
19064
14d293ac
AD
190652001-12-27 Akim Demaille <akim@epita.fr>
19066
19067 * src/files.c, src/files.h (guard_obstack): Remove.
19068 * src/output.c (output): Adjust.
19069 * src/reader.c (parse_braces): New, factoring...
19070 (copy_action, copy_guard): these two which are renamed as...
19071 (parse_action, parse_guard): these.
19072 As a voluntary consequence, using braces around guards is now
19073 mandatory.
19074
f499b062
AD
190752001-12-27 Akim Demaille <akim@epita.fr>
19076
19077 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
19078 * src/reader.c (symbol_list): `guard' and `guard_line' are new
19079 members.
19080 (symbol_list_new): Adjust.
19081 (copy_action): action_line is the first line, not the last.
19082 (copy_guard): Just as for actions, store the `action' only, not
19083 the switch/case/break flesh.
19084 Don't parse the user action that might follow the guard, let...
19085 (readgram): do it, i.e., now, there can be an action after a
19086 guard.
19087 In other words the guard is just explicitly optional.
19088 (packgram): Adjust.
19089 * src/output.c (guards_output): New.
19090 (output_parser): Call it when needed.
19091 (output): Also free the guard and attrs obstacks.
19092 * src/files.c, src/files.h (obstack_save): Remove.
19093 (output_files): Remove.
19094 As a result, if one needs the former `.act' file, using an
19095 appropriate skeleton which requires actions and guards is now
19096 required.
19097 * src/main.c (main): Adjust.
19098 * tests/semantic.at: New.
19099 * tests/regression.at: Use `input.y' as input file name.
19100 Avoid 8+3 problems by requiring input.c when the test needs the
19101 parser.
19102
d945f5cd
AD
191032001-12-27 Akim Demaille <akim@epita.fr>
19104
19105 * src/reader.c (symbol_list_new): Be sure to initialize all the
19106 fields.
19107
d200e455
AD
191082001-12-27 Akim Demaille <akim@epita.fr>
19109
19110 All the hacks using a final pseudo state are now useless.
19111
19112 * src/LR0.c (set_state_table): state_table holds exactly nstates.
19113 * src/lalr.c (nLA): New.
19114 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
19115 instead of lookaheadsp from the pseudo state (nstate + 1).
19116
f9507c28
AD
191172001-12-27 Akim Demaille <akim@epita.fr>
19118
19119 * src/output.c (action_row, token_actions): Use a state_t instead
19120 of a integer, and nlookaheads instead of the following state's
19121 lookaheadsp.
19122
065fbd27
AD
191232001-12-27 Akim Demaille <akim@epita.fr>
19124
19125 * src/conflicts.c (log_resolution, flush_shift)
19126 (resolve_sr_conflict, set_conflicts, solve_conflicts)
19127 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
19128 (conflicts_print, print_reductions): Use a state_t instead of an
19129 integer when referring to a state.
19130 As much as possible, depend upon nlookaheads, instead of the
19131 `lookaheadsp' member of the following state (since lookaheads of
19132 successive states are successive, the difference between state n + 1
19133 and n served as the number of lookaheads for state n).
19134 * src/lalr.c (add_lookback_edge): Likewise.
19135 * src/print.c (print_core, print_actions, print_state)
19136 (print_results): Likewise.
19137 * src/print_graph.c (print_core, print_actions, print_state)
19138 (print_graph): Likewise.
19139 * src/conflicts.h: Adjust.
19140
1b177bd7
AD
191412001-12-27 Akim Demaille <akim@epita.fr>
19142
19143 * src/bison.hairy: Formatting/comment changes.
19144 ANSIfy.
19145 Remove `register' indications.
19146 Add plenty of `static'.
19147
7742ddeb
AD
191482001-12-27 Akim Demaille <akim@epita.fr>
19149
19150 * src/output.c (prepare): Drop the muscle `ntbase' which
19151 duplicates ntokens.
19152 * src/bison.simple: Formatting/comment changes.
19153 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
19154 is an undocumented synonym.
19155
1fa14068
AD
191562001-12-22 Akim Demaille <akim@epita.fr>
19157
19158 * src/output.c (output_table_data): Change the prototype to use
19159 `int' for array ranges: some invocations do pass an int, not a
19160 short.
19161 Reported by Wayne Green.
19162
b9752825
AD
191632001-12-22 Akim Demaille <akim@epita.fr>
19164
19165 Some actions of web2c.y are improperly triggered.
19166 Reported by Mike Castle.
19167
19168 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
19169 * tests/regression.at (Web2c): Rename as...
19170 (Web2c Report): this.
19171 (Web2c Actions): New.
19172
776209d6
AD
191732001-12-22 Akim Demaille <akim@epita.fr>
19174
19175 Reductions in web2c.y are improperly reported.
19176 Reported by Mike Castle.
19177
19178 * src/conflicts.c (print_reductions): Fix.
19179 * tests/regression.at (Web2c): New.
19180
275fc3ad
AD
191812001-12-18 Akim Demaille <akim@epita.fr>
19182
19183 Some host fail on `assert (!"foo")', which expands to
19184 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
19185 Reported by Nelson Beebee.
19186
19187 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
19188 `#define it_succeeded 0' and `assert (it_succeeded)'.
19189
897668ee
MA
191902001-12-17 Marc Autret <autret_m@epita.fr>
19191
19192 * src/bison.simple: Don't hard code the skeleton line and filename.
19193 * src/output.c (output_parser): Rename 'line' as 'output_line'.
19194 New line counter 'skeleton_line' (skeleton-line muscle).
19195
ab3399e0
PE
191962001-12-17 Paul Eggert <eggert@twinsun.com>
19197
19198 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
19199 YYDEBUG must be defined to a nonzero value.
19200
19201 * src/bison.simple (yytname): Do not assume that the user defines
19202 YYDEBUG to a properly parenthesized expression.
19203
3877f72b
AD
192042001-12-17 Akim Demaille <akim@epita.fr>
19205
19206 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
19207 nlookaheads is a new member.
19208 Adjust all users.
19209 * src/lalr.h (nlookaheads): Remove this orphan declaration.
19210 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
19211 state.
776209d6 19212
331dbc1b
AD
192132001-12-17 Akim Demaille <akim@epita.fr>
19214
19215 * src/files.h, src/files.c (open_files, close_files): Remove.
19216 * src/main.c (main): Don't open/close files, nor invoke lex_free,
19217 let...
19218 * src/reader.c (reader): Do it.
776209d6 19219
be750e4c
AD
192202001-12-17 Akim Demaille <akim@epita.fr>
19221
19222 * src/conflicts.c (print_reductions): Formatting changes.
776209d6 19223
709ae8c6
AD
192242001-12-17 Akim Demaille <akim@epita.fr>
19225
19226 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
19227 (flush_reduce): New.
19228 (resolve_sr_conflict): Adjust.
776209d6 19229
f87685c3
AD
192302001-12-17 Akim Demaille <akim@epita.fr>
19231
19232 * src/output.c (output_obstack): Be static and rename as...
19233 (format_obstack): this, to avoid any confusion with files.c's
19234 output_obstack.
19235 * src/reader.h (muscle_obstack): Move to...
19236 * src/output.h: here, since it's defined in output.c.
19237
837491d8
AD
192382001-12-17 Akim Demaille <akim@epita.fr>
19239
19240 * src/output.c (action_row, save_column, default_goto)
19241 (sort_actions, matching_state, pack_vector): Better variable
19242 locality.
19243
796d61fb
AD
192442001-12-17 Akim Demaille <akim@epita.fr>
19245
19246 * src/output.c: Various formatting changes.
776209d6 19247
64d15509
AD
192482001-12-17 Akim Demaille <akim@epita.fr>
19249
19250 * src/files.c (output_files): Free the output_obstack.
19251 * src/main.c (main): Call print and print_graph conditionally.
19252 * src/print.c (print): Work unconditionally.
19253 * src/print_graph.c (print_graph): Work unconditionally.
19254 * src/conflicts.c (log_resolution): Output only if verbose_flag.
19255
fbc8ecb7
MA
192562001-12-16 Marc Autret <autret_m@epita.fr>
19257
19258 * src/output.c (actions_output): Fix. When we use %no-lines,
19259 there is one less line per action.
19260
f0440388
MA
192612001-12-16 Marc Autret <autret_m@epita.fr>
19262
19263 * src/bison.simple: Remove a useless #line directive.
19264 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
19265 * src/output.c (get_lines_number): New.
776209d6 19266 (output_parser): Adjust, now takes care about the lines of a
f0440388
MA
19267 output muscles.
19268 Fix line numbering.
19269 (actions_output): Computes the number of lines taken by actions.
19270 (output_master_parser): Insert new skeleton which is the name of
19271 the output parser file name.
19272
a79986b8
MA
192732001-12-15 Marc Autret <autret_m@epita.fr>
19274
19275 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
19276
4ec8e00f
MA
192772001-12-15 Marc Autret <autret_m@epita.fr>
19278
19279 * src/output.c (output_gram): Keep track of the hairy one.
19280
1a4648ff
AD
192812001-12-15 Akim Demaille <akim@epita.fr>
19282
19283 Make `make distcheck' work.
19284
19285 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
19286 system.h which uses libgettext.h.
19287
9c2c67e6
AD
192882001-12-15 Akim Demaille <akim@epita.fr>
19289
19290 * src/nullable.c (set_nullable): Useless rules must be skipped,
19291 otherwise, since we range over their symbols, we might look at a
19292 nonterminal which no longer ``exists'', i.e., it is not counted in
19293 `nvars', hence we overflow our arrays.
19294
93ede233
AD
192952001-12-15 Akim Demaille <akim@epita.fr>
19296
19297 The header can also be produced directly, without any obstack!
19298 Yahoo!
19299
19300 * src/files.c, src/files.h (defines_obstack): Remove.
19301 (compute_header_macro): Global.
19302 (defines_obstack_save): Remove.
19303 * src/reader.c (parse_union_decl): No longer output to
19304 defines_obstack: its content can be found in the `stype' muscle
19305 anyway.
19306 (output_token_translations): Merge into...
19307 (symbols_output): this.
19308 Rename as...
19309 (symbols_save): this.
19310 (reader): Adjust.
19311 * src/output.c (header_output): New.
19312 (output): Call it.
19313
2666f928
AD
193142001-12-15 Akim Demaille <akim@epita.fr>
19315
19316 * src/reader.c (parse_union_decl): Instead of handling two obstack
19317 simultaneously, use one to define the `stype' muscle, and use the
19318 value of the latter to fill defines_obstack.
19319 (copy_comment): Remove.
19320 (copy_comment2): Work for a single obstack.
19321 Rename as...
19322 (copy_comment): this.
19323
428046f8
AD
193242001-12-15 Akim Demaille <akim@epita.fr>
19325
19326 * src/lex.c, src/lex.h (xgetc): No longer static.
19327 * src/reader.c (parse_union_decl): Revamp.
19328
ea52d706
AD
193292001-12-15 Akim Demaille <akim@epita.fr>
19330
19331 Still making progress in separating Bison into (i) input, (ii)
19332 process, (iii) output: now we can directly output the parser file
19333 without using table_obstack at all.
19334
19335 * src/files.c, src/files.h (table_obstack): Bye bye.
19336 (parser_file_name): New.
19337 * src/files.c (compute_output_file_names): Compute it.
19338 * src/output.c (actions_output, output_parser)
19339 (output_master_parser): To a file instead of an obstack.
19340
3f96f4dc
AD
193412001-12-15 Akim Demaille <akim@epita.fr>
19342
19343 Attach actions to rules, instead of pre-outputting them to
19344 actions_obstack.
19345
19346 * src/gram.h (rule_t): action and action_line are new members.
19347 * src/reader.c (symbol_list): Likewise.
19348 (copy_action): Save the actions within the rule.
19349 (packgram): Save them in rule_table.
19350 * src/output.c (actions_output): New.
19351 (output_parser): Use it on `%%actions'.
19352 (output_rule_data): Don't free rule_table.
19353 (output): Do it.
19354 (prepare): Don't save the `action' muscle.
19355 * src/bison.simple: s/%%action/%%actions/.
19356
51576fb3
AD
193572001-12-15 Akim Demaille <akim@epita.fr>
19358
19359 * src/reader.c (copy_action): When --yacc, don't append a `;'
19360 to the user action: let it fail if lacking.
dee049eb 19361 Suggested by Arnold Robbins and Tom Tromey.
51576fb3 19362
2648a72d
AD
193632001-12-14 Akim Demaille <akim@epita.fr>
19364
19365 * src/lex.c (literalchar): Simply return the char you decoded, non
19366 longer mess around with obstacks and int pointers.
19367 Adjust all callers.
19368
92790e5b
AD
193692001-12-14 Akim Demaille <akim@epita.fr>
19370
19371 * src/lex.c (literalchar): Don't escape the special characters,
19372 just decode them, and keep them as char (before, eol was output as
19373 the 2 char string `\n' etc.).
19374 * src/output.c (output_rule_data): Use quotearg to output the
19375 token strings.
19376
927c1557
PE
193772001-12-13 Paul Eggert <eggert@twinsun.com>
19378
19379 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
19380 Do not infringe on the global user namespace when using C++.
19381 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
19382 All uses of `fprintf' and `stderr' changed.
19383
19384 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
19385
ed8e1f68
AD
193862001-12-13 Akim Demaille <akim@epita.fr>
19387
19388 The computation of nullable is broken: it doesn't handle empty
19389 RHS's properly.
19390
19391 * tests/torture.at (GNU AWK Grammar): New.
19392 * tests/sets.at (Nullable): New.
19393 * src/nullable.c (set_nullable): Instead of blindly looping over
19394 `ritems', loop over the rules, and then over their rhs's.
19395
19396 Work around Autotest bugs.
19397
19398 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
19399 frame, because Autotest understand lines starting with a `+' as
19400 traces from the shell. Then, they are not processed properly.
19401 Admittedly an Autotest bug, but we don't have time to wait for
19402 Autotest to catch up.
19403 * tests/regression.at (Broken Closure): Adjust to the new table
19404 frames.
19405 Move to...
19406 * tests/sets.at: here.
19407
cb581495
AD
194082001-12-13 Akim Demaille <akim@epita.fr>
19409
19410 * src/closure.c (closure): Use nrules instead of playing tricks
19411 with BITS_PER_WORD.
19412
2e729273
AD
194132001-12-13 Akim Demaille <akim@epita.fr>
19414
19415 * src/print.c (print_actions): Output the handling of `$' as the
19416 traces do: shifting the token EOF. Before EOF was treated as a
19417 nonterminal.
19418 * tests/regression.at: Adjust some tests.
19419 * src/print_graph.c (print_core): Complete the set of items via
19420 closure. The next-to-final and final states are still unsatisfying,
19421 but that's to be addressed elsewhere.
19422 No longer output the rule numbers, but do output the state number.
19423 A single loop for the shifts + gotos is enough, but picked a
19424 distinct color for each.
19425 (print_graph): Initialize and finalize closure.
19426
107f7dfb
AD
194272001-12-13 Akim Demaille <akim@epita.fr>
19428
19429 * src/reader.c (readgram): Remove dead code, an strip useless
19430 braces.
19431 (get_type): Remove, unused.
19432
9b53a24f
AD
194332001-12-12 Akim Demaille <akim@epita.fr>
19434
19435 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
19436 on that of lib/error.c.
19437
dbfb6dcd
AD
194382001-12-12 Akim Demaille <akim@epita.fr>
19439
19440 Some hosts don't like `/' in includes.
19441
19442 * src/system.h: Include libgettext.h without qualifying the path.
19443 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
19444 $(top_srcdir).
19445
c25fb648
MA
194462001-12-11 Marc Autret <autret_m@epita.fr>
19447
19448 * src/output.c (output_parser): Remove useless muscle.
19449
710ddc4f
MA
194502001-12-11 Marc Autret <autret_m@epita.fr>
19451
19452 * src/bison.simple: Remove #line just before %%epilogue. It
19453 is now handled in ...
19454 * src/reader.c (read_additionnal_code): Add the output of a
19455 #line for the epilogue.
19456
e83d80b8
MA
194572001-12-10 Marc Autret <autret_m@epita.fr>
19458
927c1557 19459 * src/reader.c (copy_definition): Re-use CPP-outed code which
e83d80b8
MA
19460 replace precedent remove.
19461 * src/bison.simple: Remove #line before %%prologue because
19462 %%input-line is wrong at this time.
19463
971d5158
MA
194642001-12-10 Marc Autret <autret_m@epita.fr>
19465
19466 * src/reader.c (symbols_output): Clean up.
927c1557 19467 * src/output.c (output_gram, output): Clean up.
971d5158 19468
5edafffd
AD
194692001-12-10 Akim Demaille <akim@epita.fr>
19470
19471 * src/lalr.c (initialize_lookaheads): New. Extracted from...
19472 * src/LR0.c (set_state_table): here.
19473 * src/lalr.c (lalr): Call it.
19474
0279f8e9
AD
194752001-12-10 Akim Demaille <akim@epita.fr>
19476
19477 * src/state.h (shifts): Remove the `number' member: shifts are
19478 attached to state, hence no longer need to be labelled with a
19479 state number.
19480
190c4f5f
AD
194812001-12-10 Akim Demaille <akim@epita.fr>
19482
19483 Now that states have a complete set of members, the linked list of
19484 shifts is useless: just fill directly the state's shifts member.
19485
19486 * src/state.h (shifts): Remove the `next' member.
19487 * src/LR0.c (first_state, last_state): Remove.
19488 Adjust the callers.
19489 (augment_automaton): Don't look for the shifts that must be added
19490 a shift on EOF: it is those of the state we looked for! But now,
19491 since shifts are attached, it is no longer needed to looking
19492 merely by its id: its number.
19493
2a73b93d
AD
194942001-12-10 Akim Demaille <akim@epita.fr>
19495
19496 * src/LR0.c (augment_automaton): Better variable locality.
19497 Remove an impossible branch: if there is a state corresponding to
19498 the start symbol being shifted, then there is shift for the start
19499 symbol from the initial state.
19500
74392f6a
AD
195012001-12-10 Akim Demaille <akim@epita.fr>
19502
19503 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
19504 only when appropriate: when insert_start_shifting_state' is not
19505 invoked.
19506 * tests/regression.at (Rule Line Numbers): Adjust.
19507
37c82725
AD
195082001-12-10 Akim Demaille <akim@epita.fr>
19509
19510 * src/LR0.c (augment_automaton): Now that all states have shifts,
19511 merge the two cases addition shifts to the initial state.
19512
6a164e0c
AD
195132001-12-10 Akim Demaille <akim@epita.fr>
19514
19515 * src/lalr.c (set_state_table): Move to...
19516 * src/LR0.c: here.
19517 * src/lalr.c (lalr): Don't call it...
19518 * src/LR0.c (generate_states): do it.
19519 * src/LR0.h (first_state): Remove, only the table is used.
19520
7215de24
AD
195212001-12-10 Akim Demaille <akim@epita.fr>
19522
19523 * src/LR0.h (first_shift, first_reduction): Remove.
19524 * src/lalr.c: Don't use first_shift: find shifts through the
19525 states.
19526
80e25d4d
AD
195272001-12-10 Akim Demaille <akim@epita.fr>
19528
19529 * src/LR0.c: Attach shifts to states as soon as they are
19530 computed.
19531 * src/lalr.c (set_state_table): Instead of assigning shifts to
19532 state, just assert that the mapping was properly done.
19533
0ab3728b
AD
195342001-12-10 Akim Demaille <akim@epita.fr>
19535
19536 * src/LR0.c (insert_start_shift): Rename as...
19537 (insert_start_shifting_state): this.
19538 (insert_eof_shifting_state, insert_accepting_state): New.
19539 (augment_automaton): Adjust.
19540 Better locality of the variables.
19541 When looking if the start_symbol is shifted from the initial
19542 state, using `while (... symbol != start_symbol ...)' sounds
19543 better than `while (... symbol < start_symbol ...)': If fail
19544 to see how the order between symbols could be relevant!
19545
78af9bbc
AD
195462001-12-10 Akim Demaille <akim@epita.fr>
19547
19548 * src/getargs.h: Don't declare `spec_name_prefix' and
19549 `spec_file_prefix', declared by src/files.h.
19550 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
19551 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
19552 * src/output.c (prepare): Adjust.
19553 * src/reader.c (symbols_output): Likewise.
19554 * src/vmsgetargs.c: Vaguely adjust, but who cares?
19555
bdef2a41
AD
195562001-12-10 Akim Demaille <akim@epita.fr>
19557
19558 * src/muscle_tab.c (muscle_init): NULL is a better default than
19559 `"0"'.
19560
3735969c
AD
195612001-12-10 Akim Demaille <akim@epita.fr>
19562
19563 * src/reader.c (reader): Calling symbols_output once is enough.
19564
49701457
AD
195652001-12-10 Akim Demaille <akim@epita.fr>
19566
19567 Now that states have a complete set of members, the linked list of
19568 reductions is useless: just fill directly the state's reductions
19569 member.
19570
19571 * src/state.h (struct reductions): Remove member `number' and
19572 `next'.
19573 * src/LR0.c (first_reduction, last_reduction): Remove.
19574 (save_reductions): Don't link the new reductions, store them in
19575 this_state.
19576 * src/lalr.c (set_state_table): No need to attach reductions to
19577 states, it's already done.
19578 * src/output.c (output_actions): No longer free the shifts, then
19579 the reductions, then the states: free all the states and their
19580 members.
19581
0edad749
AD
195822001-12-10 Akim Demaille <akim@epita.fr>
19583
19584 * src/options.c (OPTN, DRTV, BOTH): New.
19585 (option_table): Use them.
19586
0edad749
AD
19587 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
19588 the job of system.h.
19589 * src/options.c: Don't include stdio.h and xalloc.h for the same
19590 reasons.
19591
5449dd0f
AD
195922001-12-10 Akim Demaille <akim@epita.fr>
19593
19594 * src/output.c (output, prepare): Make sure the values of the
19595 muscles `action' and `prologue' are 0-terminated.
19596
a870c567
AD
195972001-12-10 Akim Demaille <akim@epita.fr>
19598
19599 Clean up GCC warnings.
19600
19601 * src/reader.c (copy_action): `buf' is not used.
19602 (parse_skel_decl): Be static.
19603 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
19604 * src/options.h (create_long_option_table): Have a real prototype.
19605 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
19606 (hash_delete_at): Return const void *.
19607 Adjust casts to preserve the const.
19608
80df8768
AD
196092001-12-10 Akim Demaille <akim@epita.fr>
19610
19611 * configure.in: Require 2.52g.
19612 M4 is not needed, but AUTOM4TE is.
19613 * m4/m4.m4: Remove.
19614 * tests/Makefile.am: Adjust.
19615
f693ad14
AD
196162001-12-10 Akim Demaille <akim@epita.fr>
19617
19618 One structure for states is enough, even though theoretically
19619 there are LR(0) states and LALR(1) states.
19620
19621 * src/lalr.h (state_t): Remove.
19622 (state_table): Be state_t **, not state_t *.
19623 * src/state.h (core, CORE_ALLOC): Rename as...
19624 (state_t, STATE_ALLOC): this.
19625 Add the LALR(1) members: shifts, reductions, errs.
19626 * src/LR0.c (state_table): Rename as...
19627 (state_hash): this, to avoid name clashes with the global
19628 `state_table'.
19629 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
19630 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
19631
74ffbcb6
AD
196322001-12-10 Akim Demaille <akim@epita.fr>
19633
19634 Bison dumps core on bash.y.
19635 Reported by Pascal Bart.
19636
19637 * src/warshall.c (bitmatrix_print): New.
19638 (TC): Use it.
ba0fe3c7 19639 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
74ffbcb6
AD
19640 j must be the outer loop.
19641 * tests/regression.at (Broken Closure): New.
19642
07708e19
AD
196432001-12-05 Akim Demaille <akim@epita.fr>
19644
19645 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
19646 its argument.
ba1ecc07 19647 Reported by Peter Hamorsky.
07708e19 19648
92b16366
AD
196492001-12-05 Akim Demaille <akim@epita.fr>
19650
19651 * src/conflicts.c (err_table): Remove.
19652 (resolve_sr_conflict): Adjust.
19653 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
19654 Rename as...
19655 (state_t.reductions, state_t.shifts): this.
19656
076ab033
AD
196572001-12-05 Akim Demaille <akim@epita.fr>
19658
19659 * src/reduce.c (reduce_grammar_tables): No longer disable the
19660 removal of useless rules via CPP but via `if (0)', so that the
19661 compiler still check the code is valid.
19662 For instance, it should have noticed `rline' no longer exists: use
19663 the `line' member of rule_t.
19664 * src/gram.c (dummy, rline): Remove, unused.
19665
3843c413
AD
196662001-12-05 Akim Demaille <akim@epita.fr>
19667
19668 * src/output.c (pack_vector): Use assert, not berror.
19669 * src/main.c (berror): Remove, unused.
19670
43168960
AD
196712001-12-05 Akim Demaille <akim@epita.fr>
19672
19673 New experimental feature: if --verbose --trace output all the
19674 items of a state, not only its kernel.
19675
19676 * src/print.c (print_core): If `trace_flag', then invoke closure
19677 before outputting the items of the state (print_core is no longer
19678 a correct name them).
19679 (print_results): Invoke new_closure/free_closure if needed.
19680
b2872512
AD
196812001-12-05 Akim Demaille <akim@epita.fr>
19682
19683 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
19684 * src/closure.c, src/closure.h (itemsetsize): Rename as...
19685 (nitemset): for consistency with the rest of the project.
19686
23cbcc6c
AD
196872001-12-05 Akim Demaille <akim@epita.fr>
19688
19689 * src/closure.c (print_closure): Improve.
19690 (closure): Use it for printing input and output.
19691
03ec521c
AD
196922001-12-05 Akim Demaille <akim@epita.fr>
19693
19694 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
19695 indexed by nonterminals.
19696
3a7456dd
AD
196972001-12-05 Akim Demaille <akim@epita.fr>
19698
19699 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
19700 what it was!).
19701 * src/warshall.h: Remove accidental duplication of the content.
19702
1cbcf2e7
AD
197032001-12-05 Akim Demaille <akim@epita.fr>
19704
19705 * src/closure.c (set_fderives): De-obfuscate.
19706
84182270
AD
197072001-12-05 Akim Demaille <akim@epita.fr>
19708
19709 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
19710
3f6f053c
AD
197112001-12-05 Akim Demaille <akim@epita.fr>
19712
19713 * src/closure.c (set_firsts): De-obfuscate.
19714
7a5350ba
AD
197152001-12-05 Akim Demaille <akim@epita.fr>
19716
19717 * src/output.c (action_row): De-obfuscate
19718 using the good o' techniques: arrays not pointers, variable
19719 locality, BITISSET, RESETBIT etc.
19720
d954473d
AD
197212001-12-05 Akim Demaille <akim@epita.fr>
19722
19723 Pessimize the code to simplify it: from now on, all the states
19724 have a valid SHIFTS, which NSHIFTS is possibly 0.
19725
19726 * src/LR0.c (shifts_new): Be global and move to..
19727 * src/state.c, src/state.h: here.
19728 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
19729 * src/print_graph: Adjust.
19730
9839bbe5
AD
197312001-12-05 Akim Demaille <akim@epita.fr>
19732
19733 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
19734 * src/conflicts.c: Use it.
19735 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
19736 incorrectly ``simplified''.
19737
9f136c07
AD
197382001-12-05 Akim Demaille <akim@epita.fr>
19739
19740 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
19741 using the good o' techniques: arrays not pointers, variable
19742 locality, BITISSET, RESETBIT etc.
19743
b608206e
AD
197442001-12-05 Akim Demaille <akim@epita.fr>
19745
19746 * src/state.h (SHIFT_SYMBOL): New.
19747 * src/conflicts.c: Use it to deobfuscate.
19748
52afa962
AD
197492001-12-05 Akim Demaille <akim@epita.fr>
19750
19751 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
19752 (print_reductions): De-obfuscate using the good o' techniques:
19753 arrays not pointers, variable locality, BITISSET.
19754
e74dc321
AD
197552001-12-05 Akim Demaille <akim@epita.fr>
19756
19757 * src/conflicts.c (print_reductions): Arrays, not pointers.
19758 Use BITISSET.
19759
768fca83
AD
197602001-12-05 Akim Demaille <akim@epita.fr>
19761
19762 * src/conflicts.c (print_reductions): Pessimize, but clarify.
19763
a17e599f
AD
197642001-12-05 Akim Demaille <akim@epita.fr>
19765
19766 * src/conflicts.c (print_reductions): Improve variable locality.
19767
a04bc341
AD
197682001-12-05 Akim Demaille <akim@epita.fr>
19769
19770 * src/conflicts.c (print_reductions): Pessimize, but clarify.
19771
c8ea038e
AD
197722001-12-05 Akim Demaille <akim@epita.fr>
19773
19774 * src/conflicts.c (print_reductions): Improve variable locality.
19775
aa2aab3c
AD
197762001-12-05 Akim Demaille <akim@epita.fr>
19777
19778 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
19779 * src/lalr.c: Use them.
19780
b178c8cc
AD
197812001-12-05 Akim Demaille <akim@epita.fr>
19782
19783 * src/LR0.c (augment_automaton): Formatting changes.
19784 Better variable locality.
19785
f67d13aa
AD
197862001-12-05 Akim Demaille <akim@epita.fr>
19787
19788 * src/lalr.c (matrix_print): New.
19789 (transpose): Use it.
19790 Use arrays instead of pointers.
19791
c2713865
AD
197922001-12-05 Akim Demaille <akim@epita.fr>
19793
19794 * src/lalr.c (maxrhs): Move to...
19795 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
19796 * src/lalr.c (build_relations): Adjust.
19797
9887c18a
AD
197982001-12-05 Akim Demaille <akim@epita.fr>
19799
19800 * src/lalr.c (transpose): Free the memory allocated to the
19801 argument, as it is replaced by the results by the unique caller.
19802 (build_relations): Merely invoke transpose: it handles the memory
19803 deallocation.
19804 Improve variable locality.
19805 Avoid variables used as mere abbreviations.
19806 (compute_lookaheads): Use arrays instead of pointers.
19807
4d4f699c
AD
198082001-12-05 Akim Demaille <akim@epita.fr>
19809
19810 * src/lalr.c (initialize_F): Improve variable locality.
19811 Avoid variables used as mere abbreviations.
19812
80a69750
AD
198132001-12-05 Akim Demaille <akim@epita.fr>
19814
19815 * src/derives.c (print_derives): Display the ruleno.
19816 * src/lalr.c (initialize_F, transpose): Better variable locality
19817 to improve readability.
19818 Avoid variables used as mere abbreviations.
19819
fe961097
AD
198202001-12-05 Akim Demaille <akim@epita.fr>
19821
19822 * src/lalr.c (traverse): Use arrays instead of pointers.
19823
e3e4e814
AD
198242001-12-05 Akim Demaille <akim@epita.fr>
19825
19826 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
19827 the handling of squeue.
19828 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
19829
630e182b
AD
198302001-12-05 Akim Demaille <akim@epita.fr>
19831
19832 Because useless nonterminals are now kept alive (instead of being
19833 `destroyed'), we now sometimes examine them, and store information
19834 related to them. Hence we need to know their number, and adjust
19835 memory allocations.
19836
19837 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
19838 static.
19839 * src/LR0.c (allocate_itemsets): The memory allocated to
19840 `symbol_count' was used for two different purpose: once to count
19841 the number of occurrences of each symbol, and later reassigned to
19842 `shift_symbol', containing the symbol that can be shifted from a
19843 given state.
19844 Deobfuscate, i.e., allocate, use and free `symbol_count' here
19845 only, and...
19846 (new_itemsets): Allocate `shift_symbol' here.
19847 (allocate_itemsets): symbol_count includes useless nonterminals.
19848 Make room for them.
19849 (free_storage): Use `free', not `XFREE', for pointers that cannot
19850 be null.
19851
81b51460
AD
198522001-12-05 Akim Demaille <akim@epita.fr>
19853
19854 * src/nullable.c (set_nullable): Deobfuscate the handling of
19855 ritem.
19856 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
19857
3067fbef
AD
198582001-12-05 Akim Demaille <akim@epita.fr>
19859
19860 * src/gram.c, src/gram.h (ritem_print): New.
19861 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
19862 (This useless function was defined only to work around VMS linkers
19863 that can't handle compilation units with variables only).
19864 * src/reduce.c (dump_grammar): Use it to trace the construction of
19865 ritem.
19866
c2bea5f9
PE
198672001-12-04 Paul Eggert <eggert@twinsun.com>
19868
7d27c823
PE
19869 * src/bison.simple (union yyalloc): Change member names
19870 to be the same as the stack names.
19871 (yyparse): yyptr is now union yyalloc *, not char *.
19872 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
19873 and may generate better code on some machines.
c2bea5f9
PE
19874 (yystpcpy): Use prototype if __STDC__ is defined, not just
19875 if __cplusplus is defined.
35687a9d 19876
2c8a9dfa
AD
198772001-11-30 Akim Demaille <akim@epita.fr>
19878
19879 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
19880 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
19881 Gettext doesn't compile cleanly, and dies with -Werror.
19882 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
19883 Include WARNING_CFLAGS here.
19884 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
19885 before being defined.
19886
f4e421e6
AD
198872001-11-27 Paul Eggert <eggert@twinsun.com>
19888
19889 * lib/quotearg.h (quotearg_n, quotearg_n_style):
19890 First arg is int, not unsigned.
19891 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
19892 (SIZE_MAX, UINT_MAX): New macros.
19893 (quotearg_n_options): Abort if N is negative.
19894 Avoid overflow check on hosts where size_t is 64 bits and int
19895 is 32 bits, as overflow is impossible there.
19896 Fix off-by-one typo that caused unnecessary reallocation.
19897
7093d0f5
AD
198982001-11-29 Paul Eggert <eggert@twinsun.com>
19899
19900 Name space cleanup in generated parser.
19901
19902 * doc/bison.texinfo (Bison Parser): Discuss system headers
19903 and their effect on the user name space.
19904
19905 * src/bison.simple:
19906 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
19907 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
19908 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
19909
19910 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
19911 on user names when possible.
19912
19913 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
19914 Simplify test for whather <alloca.h> exists.
19915
19916 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
19917
19918 (<stdio.h>): Include if YYDEBUG.
19919
19920 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
19921 ! defined (yyoverflow) && ! defined (yymemcpy).
19922
19923 (yymemcpy, yyparse): Rename local variables as needed so that
19924 they all begin with 'yy'.
19925
19926 (yystrlen, yystpcpy): New functions.
19927
19928 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
19929 All uses changed.
19930
19931 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
19932 instead of relying on string.h functions. Use YYSTACK_ALLOC
19933 and YYSTACK_FREE instead of malloc and free.
19934
fd51e5ff
AD
199352001-11-30 Akim Demaille <akim@epita.fr>
19936
19937 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
19938 before their first uses.
19939 (YYBISON, YYPURE): Move to the top of the output.
19940
7d13ff5f
AD
199412001-11-30 Akim Demaille <akim@epita.fr>
19942
19943 * tests/reduce.at (Useless Nonterminals): Fix.
19944
892a3995
AD
199452001-11-30 Akim Demaille <akim@epita.fr>
19946
19947 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
19948 if body instead of `;' to pacify GCC's warnings.
19949
68f1e3ed
AD
199502001-11-30 Akim Demaille <akim@epita.fr>
19951
19952 Instead of mapping the LHS of unused rules to -1, keep the LHS
19953 valid, but flag the rules as invalid.
19954
19955 * src/gram.h (rule_t): `useful' is a new member.
19956 * src/print.c (print_grammar): Adjust.
19957 * src/derives.c (set_derives): Likewise.
19958 * src/reader.c (packgram, reduce_output): Likewise.
19959 * src/reduce.c (reduce_grammar_tables): Likewise.
19960 * tests/reduce.at (Underivable Rules, Useless Rules): New.
19961
d2d1b42b
AD
199622001-11-30 Akim Demaille <akim@epita.fr>
19963
19964 * src/reduce.c (reduce_output): Formatting changes.
19965 * src/print.c (print_results, print_grammar): Likewise.
19966 * tests/regression.at (Rule Line Numbers)
19967 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
19968
760b53a8
AD
199692001-11-30 Akim Demaille <akim@epita.fr>
19970
19971 * src/reduce.c (nonterminals_reduce): Instead of throwing away
19972 useless nonterminals, move them at the end of the symbol arrays.
19973 (reduce_output): Adjust.
19974 * tests/reduce.at (Useless Nonterminals): Adjust.
19975
00238958
AD
199762001-11-30 Akim Demaille <akim@epita.fr>
19977
19978 * src/reduce.c: Various comment/formatting changes.
19979 (nonterminals_reduce): New, extracted from...
19980 (reduce_grammar_tables): here.
19981 (reduce_grammar): Call nonterminals_reduce.
19982
396452de
PE
199832001-11-29 Paul Eggert <eggert@twinsun.com>
19984
19985 * src/bison.simple (YYSTACK_REALLOC): Remove.
19986 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
19987 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
19988 New macros.
19989 (union yyalloc): New type.
19990 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
19991 an arbitrary restriction on hosts where size_t is wider than int.
19992
19993 (yyparse): Don't dump core if alloca or malloc fails; instead, report
19994 a parser stack overflow. Allocate just one block of memory for all
19995 three stacks, instead of allocating three blocks; this typically is
19996 faster and reduces fragmentation.
19997
19998 Do not limit the number of items in the stack to a value that fits
19999 in 'int', as this is an arbitrary limit on hosts with 64-bit
20000 size_t and 32-bit int.
20001
147e184c
MA
200022001-11-29 Marc Autret <autret_m@epita.fr>
20003
20004 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
20005 of defining YYERROR_VERBOSE.
20006 [AT_DATA]: $4 is now out of C declarations in the prologue.
20007
426cf563
MA
200082001-11-28 Marc Autret <autret_m@epita.fr>
20009
20010 * src/reader.c (parse_dquoted_param): New.
20011 (parse_skel_decl): Use it.
20012 * src/lex.h: Add its prototype.
20013 * src/lex.c (literalchar): Become not static.
20014
c7925b99
MA
200152001-11-28 Marc Autret <autret_m@epita.fr>
20016
20017 * src/output.h: And put its extern declaration here.
20018 * src/output.c (error_verbose): Define here.
20019 (prepare): Echo name modification.
20020 * src/getargs.h: Clean its extern declaration.
20021 * src/getargs.c (error_verbose_flag): Remove.
20022 (getargs): Remove case 'e'.
20023 * src/options.c (option_table): 'error-verbose' is now seen as simple
20024 percent option.
20025 Include output.h.
20026
20027 * src/reader.c (read_declarations): Remove case tok_include.
20028 (parse_include_decl): Remove.
20029 * src/lex.h (token_t): Remove tok_include.
20030 * src/options.c (option_table): 'include' is now a simple command line
20031 option.
20032
5b5d1929
MA
200332001-11-28 Marc Autret <autret_m@epita.fr>
20034
20035 * src/bison.simple: Adjust muscle names.
20036 * src/muscle_tab.c (muscle_init): Also rename the muscles.
20037 * src/output.c (prepare): s/_/-/ for the muscles names.
20038 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
20039
8850be4b
MA
200402001-11-28 Marc Autret <autret_m@epita.fr>
20041
20042 * src/bison.simple: Fix debug.
20043 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
20044
4a38e613
AD
200452001-11-28 Akim Demaille <akim@epita.fr>
20046
20047 * src/LR0.c (shifts_new): New.
20048 (save_shifts, insert_start_shift, augment_automaton): Use it.
20049
4b35e1c1
AD
200502001-11-28 Akim Demaille <akim@epita.fr>
20051
20052 * src/closure.c (closure): `b' and `ruleno' denote the same value:
20053 keep ruleno only.
20054
d2b04478
AD
200552001-11-28 Akim Demaille <akim@epita.fr>
20056
20057 * src/closure.c (closure): Instead of looping over word in array
20058 then bits in words, loop over bits in array.
20059
2c4c30aa
AD
200602001-11-28 Akim Demaille <akim@epita.fr>
20061
20062 * src/closure.c (closure): No longer optimize the special case
20063 where all the bits of `ruleset[r]' are set to 0, to make the code
20064 clearer.
20065
576890b7
AD
200662001-11-28 Akim Demaille <akim@epita.fr>
20067
20068 * src/closure.c (closure): `r' and `c' are new variables, used to
20069 de-obfuscate accesses to RULESET and CORE.
20070
cb487d7d
AD
200712001-11-28 Akim Demaille <akim@epita.fr>
20072
20073 * src/reduce.c (reduce_print): Use ngettext.
20074 (dump_grammar): Improve the trace accuracy.
20075
6013d43f
AD
200762001-11-28 Akim Demaille <akim@epita.fr>
20077
20078 * src/reduce.c (dump_grammar): Don't translate trace messages.
20079
cb4956ee
AD
200802001-11-28 Akim Demaille <akim@epita.fr>
20081
20082 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
20083 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
20084 as all tags are free'ed afterwards.
20085 From Enrico Scholz.
20086
648185ab
PE
200872001-11-27 Paul Eggert <eggert@twinsun.com>
20088
20089 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
20090 use alloca when we didn't want to, and vice versa.
20091
68254a03
MA
200922001-11-27 Marc Autret <autret_m@epita.fr>
20093
9113b58f
AD
20094 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
20095 initialization.
68254a03
MA
20096 * src/output.c (prepare): Remove its update.
20097
04d843a2
MA
200982001-11-27 Marc Autret <autret_m@epita.fr>
20099
20100 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
20101 Use %error-verbose.
20102
d2079671 201032001-11-27 Marc Autret <autret_m@epita.fr>
eeeb962b
MA
20104
20105 * src/bison.simple: Remove YYERROR_VERBOSE using.
20106 Use %%error_verbose.
20107 (yyparse): Likewise.
20108 * src/output.c (prepare): Give its final value.
20109 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
20110 * src/getargs.h: Add its extern declaration.
20111 * src/getargs.c (error_verbose_flag): New int.
20112 (getargs): Update to catch new case.
20113 * src/options.c (option_table): 'error-verbose' is a new option.
20114 (shortopts): Update.
20115
e0327bc8
AD
201162001-11-27 Akim Demaille <akim@epita.fr>
20117
20118 * src/system.h: Use intl/libgettext.h.
20119 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
20120
000f1a3c
AD
201212001-11-27 Akim Demaille <akim@epita.fr>
20122
20123 * tests/torture.at (Exploding the Stack Size with Malloc):
20124 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
20125
26cfe0be
AD
201262001-11-27 Akim Demaille <akim@epita.fr>
20127
20128 * src/files.c: Include error.h.
20129 Reported by Hans Aberg.
20130
f6bd5427
MA
201312001-11-26 Marc Autret <autret_m@epita.fr>
20132
d2079671 20133 * src/reader.c (parse_include_decl): New, not yet implemented.
f6bd5427
MA
20134 (read_declarations): Add case tok_include.
20135 * src/getargs.h (include): Add its extern definition.
20136 * src/getargs.c (include): New const char *.
20137 (getargs): Add case '-I'.
20138 * src/options.c (option_table): Add include as command line and
20139 percent option.
20140 * src/lex.h (token_t): Add tok_include.
20141
2ca209c1
AD
201422001-11-26 Akim Demaille <akim@epita.fr>
20143
20144 * src/reader.c (readgram): Make sure rules for mid-rule actions
20145 have a lineno equal to that of their host rule.
20146 Reported by Hans Aberg.
20147 * tests/regression.at (Rule Line Numbers): New.
20148
0e41b407
AD
201492001-11-26 Akim Demaille <akim@epita.fr>
20150
20151 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
20152 size_ts.
20153
201542001-11-26 Akim Demaille <akim@epita.fr>
20155
20156 * src/complain.c, src/complain.h (error): Remove, provided by
20157 lib/error.[ch].
20158
e0c40012
AD
201592001-11-26 Akim Demaille <akim@epita.fr>
20160
20161 * src/reader.c (read_declarations): Don't abort on tok_illegal,
20162 issue an error message.
20163 * tests/regression.at (Invalid %directive): New.
20164 Reported by Hans Aberg.
20165
5e147124
AD
201662001-11-26 Akim Demaille <akim@epita.fr>
20167
20168 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
20169 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
20170
a034c8b8
AD
201712001-11-26 Akim Demaille <akim@epita.fr>
20172
20173 * src/conflicts.c (conflicts_print): Don't complain at all when
20174 there are no reduce/reduce conflicts, and as many shift/reduce
20175 conflicts as expected.
20176 * tests/regression.at (%expect right): Adjust.
20177
c64a20f3
AD
201782001-11-23 Akim Demaille <akim@epita.fr>
20179
20180 * lib/alloca.c: Update, from fileutils.
20181
5b0d29bb
AD
201822001-11-23 Akim Demaille <akim@epita.fr>
20183
20184 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
20185
722c4bfe
AD
201862001-11-23 Akim Demaille <akim@epita.fr>
20187
20188 * src/system.h: Include alloca.h.
20189 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
20190
6255b435
AD
201912001-11-23 Akim Demaille <akim@epita.fr>
20192
20193 * src/print_graph.c (print_actions): Remove `rule', unused.
20194 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
20195 pacify GCC's signed < unsigned warnings.
20196 * src/closure.c (itemsetsize): Likewise.
20197 * src/reader.c (symbol_list_new): Static.
20198
b29b2ed5
AD
201992001-11-23 Akim Demaille <akim@epita.fr>
20200
20201 Attaching lineno to buckets is stupid, since only one copy of each
20202 symbol is kept, only the line of the first occurrence is kept too.
20203
20204 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
20205 * src/reader.c (rline_allocated): Remove, unused.
20206 (symbol_list): Have a `line' member.
20207 (symbol_list_new): New.
20208 (readgram): Use it.
20209 * src/print.c (print_grammar): Output the rule line numbers.
20210 * tests/regression.at (Solved SR Conflicts)
20211 (Unresolved SR Conflicts): Adjust.
20212 Reported by Hans Aberg.
20213
a81b1d4a
MA
202142001-11-22 Marc Autret <autret_m@epita.fr>
20215
20216 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
20217
c1ecb3c1
MA
202182001-11-22 Marc Autret <autret_m@epita.fr>
20219
20220 * src/muscle_tab.c (muscle_init): Remove initialization of
20221 skeleton muscle.
20222 * src/output.c (output_master_parser): Do it here.
20223
fbe01355
AD
202242001-11-20 Akim Demaille <akim@epita.fr>
20225
20226 * po/sv.po: New.
20227 * configure.in (ALL_LINGUAS): Adjust.
20228 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
20229 longer contains strings to translate.
20230
81e895c0
AD
202312001-11-19 Akim Demaille <akim@epita.fr>
20232
20233 * src/conflicts.c (conflicts_print): Add a missing \n.
20234
6bb1878b
AD
202352001-11-19 Akim Demaille <akim@epita.fr>
20236
20237 * src/nullable.c (nullable_print): New.
20238 (set_nullable): Call it when tracing.
20239 Better locality of variables.
20240
d9ec2d07
AD
202412001-11-19 Akim Demaille <akim@epita.fr>
20242
20243 * src/print.c (print_actions): Better locality of variables.
20244
720e5c1b
AD
202452001-11-19 Akim Demaille <akim@epita.fr>
20246
20247 * src/derives.c (print_derives): Fix and enrich.
20248 * src/closure.c (print_fderives): Likewise.
20249
fb908786
AD
202502001-11-19 Akim Demaille <akim@epita.fr>
20251
20252 * src/closure.c (itemsetend): Remove, replaced with...
20253 (itemsetsize): new.
20254
125ecb56
AD
202552001-11-19 Akim Demaille <akim@epita.fr>
20256
20257 * src/LR0.c (kernel_end): Remove, replaced with...
20258 (kernel_size): new.
20259
d8cf039f
AD
202602001-11-19 Akim Demaille <akim@epita.fr>
20261
20262 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
20263 to clarify.
20264
7bec0760
AD
202652001-11-19 Akim Demaille <akim@epita.fr>
20266
20267 * src/closure.c (closure): Use arrays instead of pointers to clarify.
20268
c87d4863
AD
202692001-11-19 Akim Demaille <akim@epita.fr>
20270
20271 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
20272 trace messages.
20273 * src/LR0.c: Likewise.
20274 (allocate_itemsets): Use arrays instead of pointers to clarify.
20275
9bfe901c
AD
202762001-11-19 Akim Demaille <akim@epita.fr>
20277
20278 * src/getargs.c (statistics_flag): Replace with...
20279 (trace_flag): New.
20280 (longopts): Accept --trace instead of --statistics.
20281 * src/getargs.h, src/options.c: Adjust.
20282 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
20283 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
20284
97db7bd4
AD
202852001-11-19 Akim Demaille <akim@epita.fr>
20286
cc72668c 20287 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
97db7bd4
AD
20288 pointers to clarify the code.
20289 (save_reductions, save_shifts): Factor common parts of alternatives.
20290
2c5f66ed
AD
202912001-11-19 Akim Demaille <akim@epita.fr>
20292
20293 * src/LR0.c (new_state, get_state): Complete TRACE code.
20294 * src/closure.c: Include `reader.h' to get `tags', needed by the
20295 trace code.
20296 Rename the conditional DEBUG as TRACE.
20297 Output consistently TRACEs to stderr, not stdout.
20298 * src/derives.c: Likewise.
20299 * src/reduce.c: (inaccessable_symbols): Using if is better style
20300 than goto.
20301 Use `#if TRACE' instead of `#if 0' for tracing code.
20302
300f275f
AD
203032001-11-19 Akim Demaille <akim@epita.fr>
20304
20305 * src/system.h (LIST_FREE, shortcpy): New.
20306 * src/LR0.c: Use them.
20307 * src/output.c (free_itemsets, free_reductions, free_shifts):
20308 Remove, replaced by LIST_FREE.
20309
f59c437a
AD
203102001-11-19 Akim Demaille <akim@epita.fr>
20311
20312 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
20313 (REDUCTIONS_ALLOC): New.
20314 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
20315 allocation.
20316
6986fd9e
AD
203172001-11-19 Akim Demaille <akim@epita.fr>
20318
20319 * src/LR0.c (new_state): Complete trace code.
20320 * src/nullable.c (set_nullable): Don't translate traces.
20321
4bc30f78
AD
203222001-11-19 Akim Demaille <akim@epita.fr>
20323
20324 * src/print_graph.c (print_core): Better locality of variables.
20325 * src/print.c (print_core): Likewise.
20326
08a946e0
AD
203272001-11-19 Akim Demaille <akim@epita.fr>
20328
20329 * src/vcg.c: You do the output, so you are responsible of the
20330 handling of VCG syntax, in particular: use quotearg.
20331 * src/print_graph.c: Don't.
20332 (print_actions): Don't output the actions as part of the nodes,
20333 since that's the job of the edges.
20334 (print_state): Don't output by hand: fill the node description,
9bfe901c 20335 and ask for its output.
08a946e0 20336
f0473484
AD
203372001-11-19 Akim Demaille <akim@epita.fr>
20338
cc72668c
AD
20339 * src/bison.simple (yyparse): When verbosely reporting an error,
20340 no longer put additional quotes around token names.
f0473484
AD
20341 * tests/calc.at: Adjust.
20342
e41dc700
AD
203432001-11-19 Akim Demaille <akim@epita.fr>
20344
20345 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
20346 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
20347 * src/output.c: Adjust.
20348
652a871c
AD
203492001-11-19 Akim Demaille <akim@epita.fr>
20350
20351 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
20352 (rule_t): this.
20353 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
20354
b2ed6e58
AD
203552001-11-19 Akim Demaille <akim@epita.fr>
20356
20357 * src/gram.h (rule_t): New.
20358 (rule_table): New.
20359 (rrhs, rlhs): Remove, part of state_t.
20360 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
20361 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
20362 * src/reader.c, src/reduce.c: Adjust.
20363
edad7067
AD
203642001-11-19 Akim Demaille <akim@epita.fr>
20365
20366 * src/reader.c (symbols_output): New, extracted from...
20367 (packsymbols): Here.
20368 (reader): Call it.
20369
3feec034
AD
203702001-11-19 Akim Demaille <akim@epita.fr>
20371
20372 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
20373 (maxrhs): this new function.
20374
ddcd5fdf
AD
203752001-11-19 Akim Demaille <akim@epita.fr>
20376
cc72668c 20377 * src/lalr.c (F): New macro to access the variable F.
ddcd5fdf
AD
20378 Adjust.
20379
bb527fc2
AD
203802001-11-19 Akim Demaille <akim@epita.fr>
20381
cc72668c 20382 * src/lalr.h (LA): New macro to access the variable LA.
bb527fc2
AD
20383 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20384 * src/lalr.c: Adjust.
20385
a845a697
AD
203862001-11-19 Akim Demaille <akim@epita.fr>
20387
20388 * src/lalr.c (initialize_LA): Only initialize LA. Let...
20389 (set_state_table): handle the `lookaheads' members.
20390
f004bf6a
AD
203912001-11-19 Akim Demaille <akim@epita.fr>
20392
cc72668c
AD
20393 * src/lalr.h (lookaheads): Removed array, whose contents is now
20394 a member of...
f004bf6a
AD
20395 (state_t): this structure.
20396 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20397 Adjust.
20398
de326cc0
AD
203992001-11-19 Akim Demaille <akim@epita.fr>
20400
cc72668c
AD
20401 * src/lalr.h (consistent): Removed array, whose contents is now
20402 a member of...
de326cc0
AD
20403 (state_t): this structure.
20404 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20405 Adjust.
20406
90b4416b
AD
204072001-11-19 Akim Demaille <akim@epita.fr>
20408
cc72668c
AD
20409 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
20410 contents are now members of...
90b4416b
AD
20411 (state_t): this structure.
20412 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20413 Adjust.
20414
9703cc49
AD
204152001-11-19 Akim Demaille <akim@epita.fr>
20416
20417 * src/lalr.h (state_t): New.
20418 (state_table): Be a state_t * instead of a core **.
20419 (accessing_symbol): Remove, part of state_t.
20420 * src/lalr.c: Adjust.
20421 (set_accessing_symbol): Merge into...
20422 (set_state_table): this.
20423 * src/print_graph.c, src/conflicts.c: Adjust.
20424
d803322e
AD
204252001-11-14 Akim Demaille <akim@epita.fr>
20426
20427 * tests/calc.at, tests/output.at, tests/regression.at,
20428 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
20429 now the tests are run in private dirs, therefore AC_CLEANUP and
20430 family can be simplified to 0-ary.
20431 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
20432 use abs. path to find config.h.
20433 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
20434 stderr, there can be way too much random noise.
20435 Instead pass -Werror to GCC and rely on the exit status.
20436 Reported by Wolfram Wagner.
20437
3d76b07d
AD
204382001-11-14 Akim Demaille <akim@epita.fr>
20439
20440 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
20441 defined only if yyoverflow is defined, to avoid `warning: unused
20442 variable `yyvs1''.
20443 Reported by The Test Suite.
20444
09b503c8
AD
204452001-11-14 Akim Demaille <akim@epita.fr>
20446
20447 * src/print.c: Include reduce.h.
20448 Reported by Hans Aberg.
20449
204502001-11-14 Akim Demaille <akim@epita.fr>
20451
20452 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
20453 Revert a previous patch: these are really const.
20454 * src/conflicts.c (conflict_report): Additional useless pair of
20455 braces to pacify GCC's warnings for `if () if () {} else {}'.
20456 * src/lex.c (parse_percent_token): Replace equal_offset with
20457 arg_offset.
20458 arg is const.
20459 Be sure to strdup `arg' when used, since there is no reason for
20460 token_buffer not to change.
20461
0f37a994
AD
204622001-11-14 Akim Demaille <akim@epita.fr>
20463
20464 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
20465 definition.
20466 * src/main.c (main): Use them.
20467 Suggested by Hans Aberg.
20468
d39d93b8
AD
204692001-11-12 Akim Demaille <akim@epita.fr>
20470
20471 * src/system.h (ngettext): Now that we use ngettext, be sure to
20472 provide a default definition when NLS are not used.
20473
9edcd895
AD
204742001-11-12 Akim Demaille <akim@epita.fr>
20475
20476 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
20477 Use @kbd to denote user input.
20478 (Language and Grammar): ANSIfy the example.
20479 Adjust its layout for info/notinfo.
20480 (Location Tracking Calc): Output error messages to stderr.
20481 Output locations in a more GNUtically correct way.
20482 Fix a couple of Englishos.
20483 Adjust @group/@end group pairs.
20484
7da99ede
AD
204852001-11-12 Akim Demaille <akim@epita.fr>
20486
e3aa65c5 20487 %expect was not functioning at all.
7da99ede
AD
20488
20489 * src/conflicts.c (expected_conflicts): Set to -1.
20490 (conflict_report): Use ngettext.
20491 (conflicts_print): Check %expect and make its violation an error.
20492 * doc/bison.texinfo (Expect Decl): Adjust.
20493 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
20494 * tests/regression.at (%expect not enough, %expect right)
20495 (%expect too much): New.
20496
ba9dda1a
AD
204972001-11-12 Akim Demaille <akim@epita.fr>
20498
20499 * tests/regression.at (Conflicts): Rename as...
20500 (Unresolved SR Conflicts): this.
20501 (Solved SR Conflicts): New.
20502
337c5bd1
AD
205032001-11-12 Akim Demaille <akim@epita.fr>
20504
20505 * src/reduce.c (print_results): Rename as...
20506 (reduce_output): This.
20507 Output to OUT, passed as argument, instead of output_obstack.
20508 (dump_grammar): Likewise.
20509 (reduce_free): New.
20510 Also free V1.
20511 (reduce_grammar): No longer call reduce_output, since...
20512 * src/print.c (print_results): do it.
20513 * src/main.c (main): Call reduce_free;
20514
c73a41af
AD
205152001-11-12 Akim Demaille <akim@epita.fr>
20516
20517 * src/conflicts.c (print_reductions): Accept OUT as argument.
20518 Output to it, not to output_obstack.
20519 * src/print.c (print_actions): Adjust.
20520
0df87bb6
AD
205212001-11-12 Akim Demaille <akim@epita.fr>
20522
20523 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
20524 the result instead of using...
20525 (src_total, rrc_total, src_count, rrc_count): Remove.
20526 (any_conflicts): Remove.
20527 (print_conflicts): Split into...
20528 (conflicts_print, conflicts_output): New.
20529 * src/conflicts.h: Adjust.
20530 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
0f37a994 20531 * src/print.c (print_grammar): Issue `\n' between two rules.
0df87bb6
AD
20532 * tests/regression.at (Conflicts): New.
20533 Reported by Tom Lane.
20534
e4d3d4de
AD
205352001-11-12 Akim Demaille <akim@epita.fr>
20536
20537 * tests/regression.at (Invalid input): Remove, duplicate with
20538 ``Invalid input: 1''.
20539
6d7d248e
AD
205402001-11-12 Akim Demaille <akim@epita.fr>
20541
20542 * tests/torture.at (AT_DATA_STACK_TORTURE)
20543 (Exploding the Stack Size with Alloca)
20544 (Exploding the Stack Size with Malloc): New.
20545
e9e4c321
AD
205462001-11-12 Akim Demaille <akim@epita.fr>
20547
20548 * src/bison.simple (YYSTACK_REALLOC): New.
20549 (yyparse) [!yyoverflow]: Use it and free the old stack.
0f37a994 20550 Reported by Per Allansson.
e9e4c321 20551
5f7e0832
AD
205522001-11-12 Pascal Bart <pascal.bart@epita.fr>
20553
20554 * src/bison.simple: Define type yystype instead of YYSTYPE, and
20555 define CPP macro, which substitute YYSTYPE by yystype.
20556 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
20557 with yyltype/YYLTYPE. This allows inclusion of the generated
20558 header within the parser if the compiler, such as GGC, accepts
20559 multiple equivalent #defines.
20560 From Akim.
20561
e3f1699f
AD
205622001-11-05 Akim Demaille <akim@epita.fr>
20563
20564 * src/reader.c (symbols_output): New, extracted from...
20565 (packsymbols): here.
20566 (reader): Adjust.
20567
65be0866
AD
205682001-11-05 Akim Demaille <akim@epita.fr>
20569
20570 * src/lex.c (parse_percent_token): s/quotearg/quote/.
20571
e4d910bf
AD
205722001-11-05 Akim Demaille <akim@epita.fr>
20573
20574 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
20575 pattern.
20576
951366c1
AD
205772001-11-05 Akim Demaille <akim@epita.fr>
20578
20579 * src/options.h (struct option_table_struct): set_flags is void*.
20580 * src/options.c (longopts): Support `--output' and `%output'.
20581 (usage): Adjust.
20582 * src/lex.h (tok_setopt): Remove, replaced with...
20583 (tok_intopt, tok_stropt): these new guys.
20584 * src/lex.c (getopt.h): Not needed.
20585 (token_buffer, unlexed_token_buffer): Not const.
20586 (percent_table): Promote `-' over `_' in directive names.
20587 Active `%name-prefix', `file-prefix', and `output'.
20588 (parse_percent_token): Accept possible arguments to directives.
20589 Promote `-' over `_' in directive names.
20590
d8988b2f
AD
205912001-11-04 Akim Demaille <akim@epita.fr>
20592
20593 * doc/bison.texinfo (Decl Summary): Split the list into
20594 `directives for grammars' and `directives for bison'.
20595 Sort'em.
20596 Add description of `%name-prefix', `file-prefix', and `output'.
20597 Promote `-' over `_' in directive names.
20598 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
20599 Simplify the description of `--name-prefix'.
20600 Promote `-' over `_' in directive names.
20601 Promote `--output' over `--output-file'.
20602 Fix the description of `--defines'.
20603 * tests/output.at: Exercise %file-prefix and %output.
20604
6468d18e
AD
206052001-11-02 Akim Demaille <akim@epita.fr>
20606
20607 * doc/refcard.tex: Update.
20608
6b7e85b9
AD
206092001-11-02 Akim Demaille <akim@epita.fr>
20610
20611 * src/symtab.h (SUNDEF): New.
20612 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
20613 stand for `uninitialized', instead of 0.
20614 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
20615 * src/lex.c (lex): Adjust.
20616
20617 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
20618 Number it 0.
20619 Let yylex return it instead of a plain 0.
20620 Reported by Dick Streefland.
20621
cd5aafcf
AD
206222001-11-02 Akim Demaille <akim@epita.fr>
20623
20624 * tests/regression.at (Mixing %token styles): New test.
20625
037ca2f1
AD
206262001-11-02 Akim Demaille <akim@epita.fr>
20627
20628 * src/reader.c (parse_thong_decl): Formatting changes.
20629 (token_translations_init): New, extracted from...
20630 (packsymbols): Here.
20631 Adjust.
20632
270a173c
AD
206332001-11-01 Akim Demaille <akim@epita.fr>
20634
20635 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
20636 Check that `9foo.y' produces correct cpp guards.
20637 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
20638 guards.
20639 Reported by Wwp.
20640
561f9a30
AD
206412001-11-01 Akim Demaille <akim@epita.fr>
20642
20643 * tests/regression.at (Invalid input: 2): New.
20644 * src/lex.c (unlexed_token_buffer): New.
20645 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
20646 too.
20647 Reported by Wwp.
20648
f987e9d2
AD
206492001-11-01 Akim Demaille <akim@epita.fr>
20650
20651 * tests/calc.at: Catch up with 1.30.
20652 * configure.in: Bump to 1.49a.
20653 Adjust to newer Autotest.
20654
0846f581
PB
206552001-10-19 Pascal Bart <pascal.bart@epita.fr>
20656
20657 * src/conflicts.c: Move global variables rrc_total and src_total ...
20658 (print_conflicts): here.
20659 * src/output.c (output): Free global variable user_toknums.
20660 * src/lex.c (token_obstack): Become static.
20661
3c1a79b3
AD
206622001-10-18 Akim Demaille <akim@epita.fr>
20663
20664 * tests/atlocal.in (GCC): Add.
20665 * tests/calc.at: s/m4_match/m4_bmatch/.
20666 s/m4_patsubst/m4_bpatsubst/.
20667 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
20668 * configure.in: AC_SUBST(GCC).
20669
5d52e7d0
MA
206702001-10-14 Marc Autret <autret_m@epita.fr>
20671
20672 * src/options.c (create_long_option_table): Fix.
20673
631aa1d3
AD
206742001-10-10 Akim Demaille <akim@epita.fr>
20675
20676 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
20677
f6ec6d13
AD
206782001-10-04 Akim Demaille <akim@epita.fr>
20679
20680 * src/reader.c (parse_union_decl): Push the caracters in
20681 union_obstack, not attrs_obstack.
20682
342b8b6e
AD
206832001-10-04 Akim Demaille <akim@epita.fr>
20684
20685 Merge in the branch 1.29.
20686
20687 * src/reader.c (packsymbols): Use a temporary obstack for
20688 `%%tokendef', since output_stack is already used elsewhere.
20689
20690 2001-10-02 Akim Demaille <akim@epita.fr>
20691
20692 Bump 1.29d.
20693
20694 2001-10-02 Akim Demaille <akim@epita.fr>
20695
20696 Version 1.29c.
20697
20698 2001-10-02 Akim Demaille <akim@epita.fr>
20699
20700 * tests/regression.at (Invalid CPP headers): New.
20701 From Alexander Belopolsky.
20702 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
20703
20704 2001-10-02 Akim Demaille <akim@epita.fr>
20705
20706 * tests/regression.at (Invalid input): New.
20707 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
20708 Reported by Shura.
20709
20710 2001-10-02 Akim Demaille <akim@epita.fr>
20711
20712 * tests/calc.at: Now that --debug works, the tests must be adjusted.
20713
20714 2001-10-02 Akim Demaille <akim@epita.fr>
20715
20716 * src/output.c (output_parser): Assert `skeleton'.
20717 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
20718 systems.
20719 From Shura.
20720
20721 2001-10-01 Marc Autret <autret_m@epita.fr>
20722
20723 * src/lex.h: Echo modifications.
20724 * src/lex.c (unlex): Parameter is now token_t.
20725 From Hans Aberg.
20726
20727 2001-10-01 Marc Autret <autret_m@epita.fr>
20728
20729 * src/main.c: Include lex.h.
20730 From Hans Aberg.
20731
20732 2001-09-29 Akim Demaille <akim@epita.fr>
20733
20734 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
20735
20736 2001-09-28 Akim Demaille <akim@epita.fr>
20737
20738 * tests/testsuite.at: Update to newer Autotest.
20739 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
20740
20741 2001-09-27 Akim Demaille <akim@epita.fr>
20742
20743 Position independent wrapper.
20744
20745 * tests/bison: Remove.
20746 * tests/bison.in: New.
20747 * configure.in: Adjust.
20748
20749 2001-09-27 Paul Eggert <eggert@twinsun.com>
20750
20751 Port quotearg fixes from tar 1.13.24.
20752
20753 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
20754 tm to be declared.
20755 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
20756 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
20757
20758 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
20759 * m4/mbrtowc.m4: New file.
20760 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
20761 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
20762
20763 2001-09-27 Akim Demaille <akim@epita.fr>
20764
20765 Bump to 1.29c.
20766
20767 2001-09-27 Akim Demaille <akim@epita.fr>
20768
20769 Version 1.29b.
20770
20771 2001-09-25 Akim Demaille <akim@epita.fr>
20772
20773 * src/system.h: Include `xalloc.h'.
20774 Remove it from the C files.
20775 * src/files.c (output_files): Free the obstacks.
20776 * src/lex.c (init_lex): Rename as...
20777 (lex_init): this.
20778 (lex_free): New.
20779 * src/main.c (main): Use it.
20780
20781 2001-09-24 Marc Autret <autret_m@epita.fr>
20782
20783 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
20784 to output informations in fout (FILE*).
20785 (open_graph, close_graph): Likewise.
20786 (output_graph, output_edge, output_node): Likewise.
20787 * src/vcg.h: Update function prototypes.
20788 * src/print_graph.c (print_graph): Open output graph file.
20789 (print_actions): Adjust.
20790 * src/files.h: Remove extern declaration.
20791 * src/files.c: Remove graph_obstack declaration.
20792 (open_files): Remove graph_obstack initialization.
20793 (output_files): Remove graph_obstack saving.
20794
20795 2001-09-24 Marc Autret <autret_m@epita.fr>
20796
20797 * src/files.c (compute_output_file_names): Fix.
20798
20799 2001-09-24 Marc Autret <autret_m@epita.fr>,
20800 Akim Demaille <akim@epita.fr>
20801
20802 * src/reader.c (reader): Remove call to free_symtab ().
20803 * src/main.c (main): Call it here.
20804 Include symtab.h.
20805 * src/conflicts.c (initialize_conflicts): Rename as...
20806 (solve_conflicts): this.
20807 * src/print.c (print_core, print_actions, print_state)
20808 (print_grammar): Dump to a file instead a `output_obstack'.
20809 (print_results): Dump `output_obstack', and then proceed with the
20810 FILE *.
20811 * src/files.c (compute_output_file_names, close_files): New.
20812 (output_files): Adjust.
20813 * src/main.c (main): Adjust.
20814
20815 2001-09-23 Marc Autret <autret_m@epita.fr>
20816
20817 * src/files.c (compute_header_macro): Computes header macro name
20818 from spec_defines_file when given.
20819
20820 2001-09-23 Marc Autret <autret_m@epita.fr>
20821
20822 * src/files.c (output_files): Add default extensions.
20823
20824 2001-09-22 Akim Demaille <akim@epita.fr>
20825
20826 * src/conflicts.c (finalize_conflicts): Rename as...
20827 (free_conflicts): this.
20828
20829 2001-09-22 Akim Demaille <akim@epita.fr>
20830
20831 * src/gram.c (gram_free): Rename back as...
20832 (dummy): this.
20833 (output_token_translations): Free `token_translations'.
20834 * src/symtab.c (free_symtab): Free the tag field.
20835
20836 2001-09-22 Akim Demaille <akim@epita.fr>
20837
20838 Remove `translations' as it is always set to true.
20839
20840 * src/gram.h: Adjust.
20841 * src/reader.c (packsymbols, parse_token_decl): Adjust
20842 * src/print.c (print_grammar): Adjust.
20843 * src/output.c (output_token_translations): Adjust.
20844 * src/lex.c (lex): Adjust.
20845 * src/gram.c: Be sure the set pointers to NULL.
20846 (dummy): Rename as...
20847 (gram_free): this.
20848
20849 2001-09-22 Akim Demaille <akim@epita.fr>
20850
20851 * configure.in: Invoke AM_LIB_DMALLOC.
20852 * src/system.h: Use dmalloc.
20853 * src/LR0.c: Be sure to have pointers initialized to NULL.
20854 (allocate_itemsets): Allocate kernel_items only if needed.
20855
20856 2001-09-22 Akim Demaille <akim@epita.fr>
20857
20858 * configure.in: Bump to 1.29b.
20859 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
20860 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
20861 need xmalloc.c in calc.y.
20862 From Pascal Bart.
20863
20864 2001-09-21 Akim Demaille <akim@epita.fr>
20865
20866 Version 1.29a.
20867 * Makefile.maint, config/config.guess, config/config.sub,
20868 * config/missing: Update from masters.
20869 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
20870 upon package.m4.
20871 * configure.in (ALL_LINGUAS): Add `tr'.
20872
20873 2001-09-21 Akim Demaille <akim@epita.fr>
20874
20875 * tests/Makefile.am (package.m4): Move to...
20876 ($(srcdir)/$(TESTSUITE)): here.
20877
20878 2001-09-20 Akim Demaille <akim@epita.fr>
20879
20880 * src/complain.c: No longer try to be standalone: use system.h.
20881 Don't assume __STDC__ is defined to 1. Just test if it is defined.
20882 * src/complain.h: Likewise.
20883 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
20884 Remove the unused variable `n'.
20885 From Albert Chin-A-Young.
20886
20887 2001-09-18 Marc Autret <autret_m@epita.fr>
20888
20889 * doc/bison.1: Update.
20890 * doc/bison.texinfo (Bison Options): Update --defines and --graph
20891 descriptions.
20892 (Option Cross Key): Update.
20893 Add --graph.
20894
20895 2001-09-18 Marc Autret <autret_m@epita.fr>
20896
20897 * tests/regression.at: New test (comment in %union).
20898
20899 2001-09-18 Marc Autret <autret_m@epita.fr>
20900
20901 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
20902 do that.
20903 Reported by Keith Browne.
20904
20905 2001-09-18 Marc Autret <autret_m@epita.fr>
20906
20907 * tests/output.at: Add tests for --defines and --graph.
20908
20909 2001-09-18 Marc Autret <autret_m@epita.fr>
20910
20911 * tests/output.at: Removes tests of %{header,src}_extension features.
20912
20913 2001-09-18 Akim Demaille <akim@epita.fr>
20914
20915 * tests/Makefile.am (package.m4): New.
20916 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
20917 (_AT_CHECK_CALC_ERROR): Likewise.
20918 Factor the `, ' part of verbose error messages.
20919
20920 2001-09-18 Marc Autret <autret_m@epita.fr>
20921
20922 * src/getargs.c (longopts): Declare --defines and --graph as options
20923 with optional arguments.
20924 * src/files.h: Add extern declarations.
20925 * src/files.c (spec_graph_file, spec_defines_file): New.
20926 (output_files): Update.
20927 Remove CPP-outed code.
20928
20929 2001-09-18 Marc Autret <autret_m@epita.fr>
20930
20931 Turn off %{source,header}_extension feature.
20932
20933 * src/files.c (compute_exts_from_gf): Update.
20934 (compute_exts_from_src): Update.
20935 (output_files): CPP-out useless code.
20936 * src/files.h: Remove {header,source}_extension extern declarations.
20937 * src/reader.c (parse_dquoted_param): CPP-out.
20938 (parse_header_extension_decl): Remove.
20939 (parse_source_extension_decl): Remove.
20940 (read_declarations): Remove cases tok_{hdrext,srcext}.
20941 * src/lex.c (percent_table): Remove {header,source}_extension entries.
20942 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
20943
20944 2001-09-10 Akim Demaille <akim@epita.fr>
20945
20946 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
20947 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
20948 (AT_CHECK_OUTPUT): this.
20949 Merely check ls' exit status, its output is useless.
20950
20951 2001-09-10 Akim Demaille <akim@epita.fr>
20952
20953 * tests/calc.at: Use m4_match.
20954 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
20955
20956 2001-09-10 Marc Autret <autret_m@epita.fr>,
20957 Akim Demaille <akim@epita.fr>
20958
20959 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
20960 enum color_e.
20961 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
20962 to `normal'.
20963 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
20964 * src/lex.h: Adjust prototype.
20965 (token_t): Add `tok_undef'.
20966 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
20967 (parse_percent_token): Now returns token_t.
20968 Add default statement in switch.
20969 (lex): Separate `c' as an input variable, from the token_t result
20970 part.
20971 (unlexed): Is a token_t.
20972
20973 2001-09-10 Akim Demaille <akim@epita.fr>
20974
20975 * configure.in: Bump to 1.29a.
20976
20977 2001-09-07 Akim Demaille <akim@epita.fr>
20978
20979 Version 1.29.
20980
20981 2001-08-30 Akim Demaille <akim@epita.fr>
20982
20983 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
20984 * m4/atconfig.m4: Remove.
20985 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
20986 * tests/bison: New.
20987 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
20988 m4_if, m4_patsubst, and m4_regexp.
20989 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
20990 `input' file instead of echo.
20991
20992 2001-08-29 Akim Demaille <akim@epita.fr>
20993
20994 Bump to 1.28e.
20995
20996 2001-08-29 Akim Demaille <akim@epita.fr>
20997
20998 Version 1.28d.
20999
21000 2001-08-29 Paul Eggert <eggert@twinsun.com>
21001
21002 * src/bison.simple (yyparse): Don't take the address of an
21003 item before the start of an array, as that doesn't conform to
21004 the C Standard.
21005
21006 2001-08-29 Robert Anisko <anisko_r@epita.fr>
21007
21008 * doc/bison.texinfo (Location Tracking Calc): New node.
21009
21010 2001-08-29 Paul Eggert <eggert@twinsun.com>
21011
21012 * src/output.c (output): Do not define const, as this now
21013 causes more problems than it cures.
21014
21015 2001-08-29 Akim Demaille <akim@epita.fr>
21016
21017 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
21018 the nodes.
21019 Be sure to tag the `detailmenu'.
21020
21021 2001-08-29 Akim Demaille <akim@epita.fr>
21022
21023 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
21024 download in a tmp dir.
21025
21026 2001-08-28 Marc Autret <autret_m@epita.fr>
21027
21028 * config/depcomp: New file.
21029
21030 2001-08-28 Marc Autret <autret_m@epita.fr>
21031
21032 * doc/bison.1 (mandoc): Adjust.
21033 From Juan Manuel Guerrero.
21034
21035 2001-08-28 Marc Autret <autret_m@epita.fr>
21036
21037 * src/print_graph.c (print_state): Fix.
21038
21039 2001-08-27 Marc Autret <autret_m@epita.fr>
21040
21041 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
21042 char * members.
21043 Echo modifications to the functions prototypes.
21044 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
21045
21046 2001-08-27 Marc Autret <autret_m@epita.fr>
21047
21048 * src/vcg.c: Include `xalloc.h'.
21049 (add_colorentry): New.
21050 (add_classname): New.
21051 (add_infoname): New.
21052 * src/vcg.h: Add new prototypes.
21053
21054 2001-08-27 Akim Demaille <akim@epita.fr>
21055
21056 * Makefile.maint: Sync. again with CVS Autoconf.
21057
21058 2001-08-27 Akim Demaille <akim@epita.fr>
21059
21060 * Makefile.maint: Formatting changes.
21061 (po-update, cvs-update, update): New targets.
21062 (AMTAR): Remove.
21063
21064 2001-08-27 Akim Demaille <akim@epita.fr>
21065
21066 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
21067 * Makefile.maint: Sync. with CVS Autoconf.
21068
21069 2001-08-27 Marc Autret <autret_m@epita.fr>
21070
21071 * src/vcg.h (struct infoname_s): New.
21072 (struct colorentry_s): New.
21073 (graph_s): New fields {vertical,horizontal}_order in structure.
21074 Add `infoname' field.
21075 Add `colorentry' field;
21076 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
21077 (G_HORIZONTAL_ORDER): New.
21078 (G_INFONAME): New.
21079 (G_COLORENTRY): New.
21080 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
21081 Add output of `infoname'.
21082 Add output of `colorentry'.
21083
21084 2001-08-27 Marc Autret <autret_m@epita.fr>
21085
21086 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
21087 This one shadowed a global parameter.
21088
21089 2001-08-24 Marc Autret <autret_m@epita.fr>
21090
21091 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
21092 instead of `unsigned'.
21093 (print_state): Do not call obstack_object_size () in obstack_grow ()
21094 to avoid macro variables shadowing.
21095
21096 2001-08-23 Marc Autret <autret_m@epita.fr>
21097
21098 * src/lex.c (percent_table): Typo: s/naem/name/.
21099 Add graph option.
21100 Normalize new options declarations.
21101
21102 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
21103
21104 * tests/suite.at: Exercise %header_extension and %source_extension.
21105
21106 2001-08-16 Marc Autret <autret_m@epita.fr>
21107
21108 * src/reader.c (parse_dquoted_param): New.
21109 (parse_header_extension_decl): Use it.
21110 (parse_source_extension_decl): Likewise.
21111
21112 2001-08-16 Marc Autret <autret_m@epita.fr>
21113
21114 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
21115 (get_xxxx_str): Use assert () instead of complain ().
21116 Remove return invokations in default cases.
21117 (get_decision_str): Modify default behaviour. Remove second argument.
21118 Echo modifications on calls.
21119 (output_graph): Fix.
21120
21121 2001-08-16 Marc Autret <autret_m@epita.fr>
21122
21123 * src/getargs.c (usage): Update with ``-g, --graph''.
21124
21125 2001-08-16 Marc Autret <autret_m@epita.fr>
21126
21127 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
21128 (Option Cross Key): Likewise.
21129 * doc/bison.1: Update.
21130
1c8c2190
PB
211312001-09-25 Pascal Bart <pascal.bart@epita.fr>
21132
21133 * src/output.c (output_master_parser): Don't finish action_obstack.
21134 (output_parser): Don't care about the muscle action, here.
21135 (prepare): Copy the action_obstack in the action muscle.
21136 (output): Free action_obstack.
21137
180d45ba
PB
211382001-09-23 Pascal Bart <pascal.bart@epita.fr>
21139
21140 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
21141 will contain `%union' declaration.
21142 (parse_union_decl): Delete #line directive output.
21143 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
21144 informations about %union.
21145 (parse_union_decl): Copy the union_obstack in the muscle stype.
21146 * src/bison.simple: Add new #line directive.
21147 Add typdef %%stype YYSTYPE.
21148
c51d1a19
PB
211492001-09-23 Pascal Bart <pascal.bart@epita.fr>
21150
21151 * src/bison.simple: Add new `#line' directive.
21152
6f9344da
PB
211532001-09-22 Pascal Bart <pascal.bart@epita.fr>
21154
21155 * src/bison.simple: New `#line' directive.
21156 * src/output.c (output_parser): Support new dynamic muscle input_line.
21157
652def80
MA
211582001-09-22 Marc Autret <autret_m@epita.fr>
21159
21160 * src/output.c (output_master_parser): New.
21161 (output_parser): Be more re-entrant.
21162
25b222fa
MA
211632001-09-21 Marc Autret <autret_m@epita.fr>
21164
21165 * src/reader.c (copy_definition, parse_union_decl): Update and use
21166 `linef' muscle.
21167 (copy_action): Likewise.
21168 Use obstack_1grow ().
21169 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
21170
6bc35ae5
MA
211712001-09-21 Marc Autret <autret_m@epita.fr>
21172
21173 * src/options.c (option_table): Adjust.
21174 * src/lex.c (parse_percent_token): Fix.
21175
c0629aa1
PB
211762001-09-20 Pascal Bart <pascal.bart@epita.fr>
21177
21178 * src/options.c (symtab.h): Include it, need by lex.h.
342b8b6e 21179
82b6d266
PB
211802001-09-20 Pascal Bart <pascal.bart@epita.fr>
21181
21182 * src/lex.c (parse_percent_token): Change type of variable `tx', which
21183 is now an option_table_struct*.
21184 (option_strcmp): New function option_strcmp.
21185 (parse_percent_token): Call option_strcmp.
21186 * src/getargs.c (xalloc.h, options.h): Include it.
21187 (getargs): Call create_long_option_table.
21188 (getargs): Free longopts at the end of the function.
21189 (shortopts): Move in options.c.
21190 * src/options.c (create_long_option_table): New function. Convert
21191 information from option_table to option structure.
21192 * src/reader.c (options.h): Include it.
21193
21194 * src/Makefile.am: Adjust.
21195 * src/options.c (option_table): Create from longopts and percent_table.
21196 * src/getargs.c (longopts): Delete.
21197 * src/lex.c (struct percent_table_struct): Delete.
21198 (percent_table): Delete.
21199 (options.h): Include it.
21200 * src/options.c: Create.
21201 * src/options.h: Create.
21202 Declare enum opt_access_e.
21203 Define struct option_table_struct.
21204
75f5aaea
MA
212052001-09-20 Marc Autret <autret_m@epita.fr>
21206
21207 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
21208 sections of Bison.
21209
f508cb0a
PB
212102001-09-19 Pascal Bart <pascal.bart@epita.fr>
21211
21212 * src/bison.simple: s/%%filename/%%skeleton.
21213 * src/muscle_tab.c (getargs.h): Include it.
21214 (muscle_init): Insert new muscle skeleton.
21215
13105fc1
PB
212162001-09-18 Pascal Bart <pascal.bart@epita.fr>
21217
21218 * src/output.c (output_parser): Delete unused variable actions_dumped.
21219
b0c4483e
PB
212202001-09-07 Pascal Bart <pascal.bart@epita.fr>
21221
21222 * src/output.c (output): Delete call to reader_output_yylsp.
21223 * src/reader.c (reader): Likewise.
ba0fe3c7 21224 * src/reader.h: Delete declaration of reader_output_yylsp.
342b8b6e 21225
11d82f03
MA
212262001-09-02 Marc Autret <autret_m@epita.fr>
21227
21228 * src/reader.c: Include muscle_tab.h.
21229 (parse_union_decl): Update.
21230 (parse_macro_decl): Rename parse_muscle_decl.
21231 Update to use renamed functions and variable.
21232 (read_declarations, copy_action, read_additionnal_code, : Updated
21233 with correct variables and functions names.
21234 (packsymbols, reader): Likewise.
342b8b6e 21235
11d82f03 21236 * src/reader.h (muscle_obstack): Extern declaration update.
342b8b6e 21237
11d82f03
MA
21238 * src/output.c: Include muscle_tab.h
21239 In all functions using macro_insert, change by using muscle_insert ().
21240 (macro_obstack): Rename muscle_obstack.
21241 Echo modifications in the whole file.
21242 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
21243 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
21244 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
21245
21246 * src/muscle_tab.h: Update double inclusion macros.
21247 (macro_entry_s): Rename muscle_entry_s.
21248 Update prototypes.
342b8b6e 21249
11d82f03
MA
21250 * src/muscle_tab.c: Include muscle_tab.h.
21251 Rename macro_tabble to muscle_table.
21252 (mhash1, mhash2, mcmp): Use muscle_entry.
21253 (macro_init): Rename muscle_init. Update.
21254 (macro_insert): Rename muscle_insert. Update.
21255 (macro_find): Rename muscle_find. Update.
21256
21257 * src/main.c: Include muscle_tab.h.
21258 (main): Call muscle_init ().
21259 * src/Makefile.am (bison_SOURCES): Echo modifications.
21260
93a37297
MA
212612001-09-02 Marc Autret <autret_m@epita.fr>
21262
f753cd62 21263 Now the files macro_tab.[ch] are named muscle_tab.[ch].
342b8b6e 21264
f753cd62
MA
21265 * src/muscle_tab.c, src/muscle_tab.h: Add files.
21266
212672001-09-02 Marc Autret <autret_m@epita.fr>
21268
21269 * src/macrotab.c, src/macrotab.h: Remove.
93a37297 21270
682d48cd
PB
212712001-09-01 Pascal Bart <pascal.bart@epita.fr>
21272
342b8b6e 21273 * src/reader.c (copy_guard): Use muscle to specify the `#line'
682d48cd
PB
21274 filename.
21275
087c8fda
MA
212762001-09-01 Marc Autret <autret_m@epita.fr>
21277
21278 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
21279 to an explicit value to activate the feature. We do it here.
21280
dda680cb
PB
212812001-08-31 Pascal Bart <pascal.bart@epita.fr>
21282
21283 * src/output.c (prepare): Delete the `filename' muscule insertion.
21284 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
21285 (parse_union_decl): Likewise.
21286 * src/macrotab.c (macro_init): Initialize filename by infile.
21287
9e644e64
MA
212882001-08-31 Marc Autret <autret_m@epita.fr>
21289
21290 * src/bison.simple (YYLSP_NEEDED): New definition.
21291 * src/output.c (prepare): Add macro insertion of `locations_flag'
21292
17da6427
PB
212932001-08-31 Pascal Bart <pascal.bart@epita.fr>
21294
21295 * src/output.c (prepare): Delete insertion of previous muscles,
21296 and insert the `prefix' muscles.
21297 * src/macrotab.c (macro_init): Likewise.
21298 (macro_init): Initialization prefix directive by `yy'.
342b8b6e 21299 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
17da6427
PB
21300 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
21301 yylval, yydebug, yyerror, yynerrs and yyparse.
342b8b6e 21302 New directive `#define' to substitute yydebug, ... with option
17da6427
PB
21303 name_prefix.
21304
e8cb70b9
PB
213052001-08-31 Pascal Bart <pascal.bart@epita.fr>
21306
21307 * src/main.c (main): Standardize.
21308 * src/output.c (output_table_data, output_parser): Likewise.
21309 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
21310
63c2d5de
MA
213112001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
21312
342b8b6e 21313 * src/reader.c (read_additionnal_code): Rename %%user_code to
63c2d5de
MA
21314 %%epilogue.
21315 * src/output.c (output): Rename %%declarations to %%prologue.
21316 * src/bison.simple: Echo modifications.
342b8b6e 21317
d8cb5183
MA
213182001-08-31 Marc Autret <autret_m@epita.fr>
21319
21320 * src/reader.c (readgram): CleanUp.
21321 (output_token_defines): Likewise.
21322 (packsymbols): Likewise.
21323 (reader): Likewise.
21324 * src/output.c (output): CPP-out useless code.
21325
6c686258
PB
213262001-08-31 Pascal Bart <pascal.bart@epita.fr>
21327
342b8b6e 21328 * src/reader.c (reader): Delete obsolete call to function
6c686258
PB
21329 output_trailers and output_headers.
21330 * src/output.h: Remove obsolete functions prototypes of output_headers
21331 and output_trailers.
21332
8f451ef7
PB
213332001-08-30 Pascal Bart <pascal.bart@epita.fr>
21334
21335 * src/main.c: Include macrotab.h.
342b8b6e 21336 * src/macrotab.h (macro_entry_s): Constify fields.
8f451ef7
PB
21337 Adjust functions prototypes.
21338 * src/macrotab.c (macro_insert): Constify key and value.
21339 (macro_find): Constify key.
21340 (macro_insert): Include 'xalloc.h'
21341 (macro_insert): Use XMALLOC.
21342 (macro_find): Constify return value.
21343 * src/output.c (output_table_data): Rename table to table_data.
21344 (output_parser): Constify macro_key, macro_value.
21345
997b6fd0 213462001-08-30 Marc Autret <autret_m@epita.fr>
2ba3b73c
MA
21347
21348 * src/reader.c (parse_skel_decl): New.
342b8b6e 21349 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
2ba3b73c
MA
21350 * src/lex.h (token_t): New token `tok_skel'.
21351 * src/lex.c (percent_table): Add skeleton option entry.
21352 Standardize.
21353
ff48177d
MA
213542001-08-29 Marc Autret <autret_m@epita.fr>
21355
21356 * src/bison.simple: Add %%user_code directive at the end.
21357 * src/reader.c (read_additionnal_code): New.
21358 (reader): Use it.
21359 * src/output.c (output_program): Remove.
21360 (output): Update.
21361
b33160bf
MA
213622001-08-28 Marc Autret <autret_m@epita.fr>
21363
21364 * src/output.c (output_actions): Clean up.
4e5caae2 21365 (output_gram): CPP-out useless code.
b33160bf
MA
21366 * src/reader.c (reader): Clean up, CPP-out useless code.
21367
d1a2daf7
PB
213682001-08-28 Pascal Bart <pascal.bart@epita.fr>
21369
342b8b6e 21370 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
535c0e75 21371 directive.
d1a2daf7
PB
21372 * src/bison.simple: Add `%%definitions'.
21373
2b763dfe
MA
213742001-08-28 Marc Autret <autret_m@epita.fr>
21375
21376 * config/depcomp: New file.
21377
f1a87ef6
PE
213782001-08-27 Paul Eggert <eggert@twinsun.com>
21379
21380 * src/bison.simple (yyparse): Don't take the address of an
21381 item before the start of an array, as that doesn't conform to
21382 the C Standard.
21383
82e236e2
RA
213842001-08-27 Robert Anisko <robert.anisko@epita.fr>
21385
f1a87ef6 21386 * src/output.c (output): Remove the initialization of the macro
82e236e2
RA
21387 obstack. It was done too late here.
21388
21389 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
21390 completely wrong.
21391 (reader): Initialize the macro obstack here, since we need it to grow
21392 '%define' directives.
21393
21394 * src/reader.h: Declare the macro obstack as extern.
21395
b0cfa28a
RA
213962001-08-27 Robert Anisko <robert.anisko@epita.fr>
21397
21398 * src/output.c (output_parser): Fix. Store single '%' characters in
21399 the output obstack instead of throwing them away.
21400
6fc74234
AD
214012001-08-27 Akim Demaille <akim@epita.fr>
21402
21403 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
21404
9c76d118
RA
214052001-08-25 Robert Anisko <robert.anisko@epita.fr>
21406
21407 * lib/Makefile.am: Adjust.
21408
a8289c62
RA
214092001-08-25 Robert Anisko <robert.anisko@epita.fr>
21410
21411 * src/bison.simple: Update and add '%%' directives.
21412
b6610515
RA
214132001-08-25 Robert Anisko <robert.anisko@epita.fr>
21414
21415 * src/reader.c (reader): Remove calls to 'output_headers' and
21416 'output_trailers'. Remove some C output.
21417 (readgram): Disable a piece of code that was writing a default
21418 definition for 'YYSTYPE'.
21419 (reader_output_yylsp): Remove.
21420 (packsymbols): Output token defintions to a macro.
21421 (copy_definition): Disable C output.
6fc74234 21422
b6610515
RA
21423 * src/reader.c (parse_macro_decl): New function used to parse macro
21424 declarations.
21425 (copy_string2): Put the body of copy_string into this new function.
21426 Add a parameter to let the caller choose whether he wants to copy the
21427 string delimiters or not.
21428 (copy_string): Be a simple call to copy_string2 with the last argument
21429 bound to true.
21430 (read_declarations): Add case for macro definition.
21431 (copy_identifier): New.
6fc74234 21432 (parse_macro_decl): Read macro identifiers using copy_identifier
b6610515
RA
21433 rather than lex.
21434
26f609ff
RA
214352001-08-25 Robert Anisko <robert.anisko@epita.fr>
21436
21437 * src/output.c (prepare): Add prefixed names.
21438 (output_parser): Output semantic actions.
21439 (output_parser): Fix bug on '%%line' directives.
6fc74234 21440
26f609ff
RA
21441 * src/output.c (output_headers): Remove. The C code printed by this
21442 function should now be in the skeletons.
21443 (output_trailers): Remove.
21444 (output): Disable call to 'reader_output_yylsp'.
21445 (output_rule_data): Do not output tables to the table obstack.
21446
21447 * src/output.c: Remove some C dedicated output.
21448 Improve the use of macro and output obstacks.
21449 (output_defines): Remove.
6fc74234 21450
26f609ff
RA
21451 * src/output.c (output_token_translations): Associate 'translate'
21452 table with a macro. No output to the table obstack.
21453 (output_gram): Same for 'rhs' and 'prhs'.
21454 (output_stos): Same for 'stos'.
21455 (output_rule_data): Same for 'r1' and 'r2'.
21456 (token_actions): Same for 'defact'.
21457 (goto_actions): Same for 'defgoto'.
21458 (output_base): Same for 'pact' and 'pgoto'.
21459 (output_table): Same for 'table'.
21460 (output_check): Same for 'check'.
6fc74234 21461
26f609ff
RA
21462 * src/output.c (output_table_data): New function.
21463 (output_short_table): Remove.
21464 (output_short_or_char_table): Remove.
6fc74234 21465
26f609ff
RA
21466 * src/output.c (output_parser): Replace most of the skeleton copy code
21467 with something new. Skeletons are now processed character by character
21468 rather than line by line, and Bison looks for '%%' macros. This is the
21469 first step in making Bison's output process (a lot) more flexible.
21470 (output_parser): Use the macro table.
21471
6f43b113
RA
214722001-08-25 Robert Anisko <robert.anisko@epita.fr>
21473
21474 * src/main.c (main): Initialize the macro table.
21475
dd3127cf
RA
214762001-08-25 Robert Anisko <robert.anisko@epita.fr>
21477
21478 * src/lex.c (percent_table): Add tok_define.
21479 * src/lex.h: Add tok_define.
21480
aa321494
RA
214812001-08-25 Robert Anisko <robert.anisko@epita.fr>
21482
21483 * src/macrotab.c: New file.
21484 * src/macrotab.h: New file.
21485 * src/Makefile.am: Update.
21486
68bd3b6b
RA
214872001-08-25 Robert Anisko <robert.anisko@epita.fr>
21488
21489 * lib/hash.c: New file.
21490 * lib/hash.h: New file.
21491 * lib/Makefile.am: Update.
21492
45f8dd1e
AD
214932001-08-15 Akim Demaille <akim@epita.fr>
21494
21495 Version 1.28c.
21496
40a64a7a 214972001-08-15 Marc Autret <autret_m@epita.fr>
0b8afb77
AD
21498
21499 * src/reader.c (readgram): Indent output macro YYSTYPE.
21500 (packsymbols): Likewise.
21501 (output_token_defines): Likewise.
21502 * src/files.c: Standardize.
21503 (compute_header_macro): New.
21504 (defines_obstack_save): New. Use compute_header_macro.
21505 (output_files): Update. Use defines_obstack_save.
21506
f9a8293a
AD
215072001-08-15 Akim Demaille <akim@epita.fr>
21508
21509 * doc/bison.texinfo (Table of Symbols): Document
21510 YYSTACK_USE_ALLOCA.
21511
150ca7a7
AD
215122001-08-15 Akim Demaille <akim@epita.fr>
21513
21514 * missing: Update from CVS Automake.
21515 * config/config.guess, config/config.sub, config/texinfo.tex:
21516 Update from gnu.org.
21517
69b5cec4
AD
215182001-08-15 Akim Demaille <akim@epita.fr>
21519
21520 * Makefile.maint: Sync with CVS Autoconf.
21521
f2b5126e
PB
215222001-08-14 Pascal Bart <pascal.bart@epita.fr>
21523
69b5cec4 21524 * doc/bison.texinfo: Include GNU Free Documentation License from
f2b5126e
PB
21525 `fdl.texi'.
21526 * doc/fdl.texi: Add to package.
21527
4ecbf796
MA
215282001-08-14 Marc Autret <autret_m@epita.fr>
21529
21530 Turn on %{source,header}_extension features.
21531
69b5cec4 21532 * src/lex.c (percent_table): Un-CPP out header_extension and
4ecbf796
MA
21533 source_extension.
21534 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
69b5cec4 21535 (compute_exts_from_src): Remove conditions. It restores priorities
4ecbf796
MA
21536 between options.
21537
95fb5662
MA
215382001-08-14 Marc Autret <autret_m@epita.fr>
21539
21540 * src/files.c (compute_base_names): Add extensions computing when
21541 `--file-prefix' used.
21542 Standardize function calls.
21543
78d09da9
MA
215442001-08-13 Marc Autret <autret_m@epita.fr>
21545
69b5cec4 21546 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
78d09da9
MA
21547 defining it (defined but null disables alloca).
21548
5a009f2c
MA
215492001-08-13 Marc Autret <autret_m@epita.fr>
21550
21551 * src/bison.simple (_yy_memcpy): CPP reformat.
21552
1e41465a
PB
215532001-08-13 Pascal Bart <pascal.bart@epita.fr>
21554
21555 * tests/atconfig.in (CPPFLAGS): Fix.
21556
c67a198d
PB
215572001-08-10 Pascal Bart <pascal.bart@epita.fr>
21558
79282c6c 21559 * doc/bison.texinfo: Include GNU General Public License from
c67a198d
PB
21560 `gpl.texi'.
21561 * doc/gpl.texi: Add to package.
21562
09a6de7e
MA
215632001-08-10 Marc Autret <autret_m@epita.fr>
21564
21565 * src/print_graph.h: Fix.
21566 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
21567
b77b9ee0
AD
215682001-08-10 Akim Demaille <akim@epita.fr>
21569
21570 * src/system.h: Provide default declarations for stpcpy, strndup,
21571 and strnlen.
21572
3e259915
MA
215732001-08-10 Robert Anisko <anisko_r@epita.fr>
21574
21575 * doc/bison.texinfo (Locations): Update @$ stuff.
21576
ca96bc2d
MA
215772001-08-09 Robert Anisko <anisko_r@epita.fr>
21578
21579 * src/bison.simple (YYLLOC_DEFAULT): Update.
21580 (yyparse): Adjust.
21581
fdc6758b
MA
215822001-08-08 Marc Autret <autret_m@epita.fr>
21583
b77b9ee0 21584 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
fdc6758b
MA
21585 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
21586 Reported by Fabrice Bauzac.
957d4dbf 21587
600cad3b
MA
215882001-08-08 Marc Autret <autret_m@epita.fr>
21589
21590 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
21591 * src/vcg.c (output_node): Fix.
21592 * src/vcg.h: Cleanup.
21593 * src/print_graph.c: Add comments.
b77b9ee0 21594 (node_output_size): New global variable. Simplify the formatting of
600cad3b 21595 the VCG graph output.
b77b9ee0 21596 (print_actions): Unused code is now used. It notifies the final state
600cad3b 21597 and no action states in the VCG graph. It also give the reduce actions.
b77b9ee0 21598 The `shift and goto' edges are red and the `go to state' edges are
600cad3b
MA
21599 blue.
21600 Get the current node name and node_obstack by argument.
21601 (node_obstack): New variable.
21602 (print_state): Manage node_obstack.
21603 (print_core): Use node_obstack given by argument.
21604 A node is not only computed here but in print_actions also.
21605 (print_graph): CPP out useless code instead of commenting it.
21606
976e528f
AD
216072001-08-07 Pascal Bart <pascal.bart@epita.fr>
21608
21609 * tests/atconfig.in (CPPFLAGS): Fix.
21610
20e8e5ca
AD
216112001-08-07 Akim Demaille <akim@epita.fr>
21612
21613 * src/print_graph.c (quote): New.
21614 (print_core): Use it.
21615
957d4dbf 216162001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
3e3da797 21617
3e3da797
AD
21618 * src/vcg.c (complain.h): Include it.
21619 Unepitaize `return' invocations.
c4b66126 21620 [NDEBUG] (main): Remove.
79282c6c 21621 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
c4b66126
AD
21622 * src/files.c (open_files): Initialize graph_obstack.
21623 * src/print_graph.c (print_actions): CPP out useless code.
21624 (print_core): Don't output the last `\n' in labels.
21625 Use `quote'.
21626 * src/files.c (output_files): Output the VCG file.
21627 * src/main.c (main): Invoke print_graph ();
3e3da797 21628
957d4dbf 216292001-08-06 Marc Autret <autret_m@epita.fr>
22c2cbc0
AD
21630
21631 Automaton VCG graph output.
21632 Using option ``-g'' or long option ``--graph'', you can generate
21633 a gram_filename.vcg file containing a VCG description of the LALR (1)
21634 automaton of your grammar.
21635
21636 * src/main.c: Call to print_graph() function.
21637 * src/getargs.h: Update.
21638 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
21639 (graph_flag): New flag.
21640 (longopts): Update.
21641 (getargs): Add case `g'.
21642 * src/files.c (graph_obstack): New obstack struct.
21643 (open_files): Initialize new obstack.
21644 (output_files): Saves graph_obstack if required.
21645 * src/files.h (graph_obstack): New extern declaration.
21646 * src/Makefile.am: Add new source files.
21647
927c1557 216482001-08-06 Marc Autret <autret_m@epita.fr>
ce4d5ce0
AD
21649
21650 * src/print_graph.c, src/print_graph.h (graph): New.
21651 * src/vcg.h: New file.
21652 * src/vcg.c: New file, VCG graph handling.
21653
7333d403
AD
216542001-08-06 Marc Autret <autret_m@epita.fr>
21655
21656 Add of %source_extension and %header_extension which specify
21657 the source or/and the header output file extension.
21658
21659 * src/files.c (compute_base_names): Remove initialisation of
21660 src_extension and header_extension.
21661 (compute_exts_from_gf): Update.
21662 (compute_exts_from_src): Update.
21663 (output_files): Update.
21664 * src/reader.c (parse_header_extension_decl): New.
21665 (parse_source_extension_decl): New.
21666 (read_declarations): New case statements for the new tokens.
21667 * src/lex.c (percent_table): Add entries for %source_extension
21668 and %header_extension.
21669 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
21670
84163231
AD
216712001-08-06 Marc Autret <autret_m@epita.fr>
21672
21673 * configure.in: Bump to 1.28c.
21674 * doc/bison.texinfo: Texinfo thingies.
21675
8303fc42
AD
216762001-08-04 Pascal Bart <pascal.bart@epita.fr>
21677
21678 * tests/atconfig.in (CPPFLAGS): Add.
21679 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
21680
70a84437
AD
216812001-08-03 Akim Demaille <akim@epita.fr>
21682
21683 Version 1.28b.
21684
2ce10144
AD
216852001-08-03 Akim Demaille <akim@epita.fr>
21686
21687 * tests/Makefile.am (check-local): Ship testsuite.
21688 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
21689 Include `string.h'.
21690
1e3e4bc1
AD
216912001-08-03 Akim Demaille <akim@epita.fr>
21692
21693 * configure.in: Try using -Wformat when compiling.
21694
42b45b7f
AD
216952001-08-03 Akim Demaille <akim@epita.fr>
21696
21697 * configure.in: Bump to 1.28b.
21698
8f13fe33
AD
216992001-08-03 Akim Demaille <akim@epita.fr>
21700
21701 * src/complain.c: Adjust strerror_r portability issues.
21702
b37ba92c
AD
217032001-08-03 Akim Demaille <akim@epita.fr>
21704
21705 Version 1.28a.
21706
b0ce6046
AD
217072001-08-03 Akim Demaille <akim@epita.fr>
21708
21709 * src/getargs.c, src/getarg.h (skeleton)): Constify.
21710 * src/lex.c (literalchar): Avoid name clashes on `buf'.
21711 * src/getargs.c: Include complain.h.
21712 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
21713 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
21714
d01c415b
AD
217152001-08-03 Akim Demaille <akim@epita.fr>
21716
21717 * src/reader.c (readgram): Display hidden chars in error messages.
21718
459dd1a6
AD
217192001-08-03 Akim Demaille <akim@epita.fr>
21720
21721 Update to gettext 0.10.39.
21722
53b74c0c
AD
217232001-08-03 Akim Demaille <akim@epita.fr>
21724
21725 * lib/strspn.c: New.
21726
234a3be3
AD
217272001-08-01 Marc Autret <autret_m@epita.fr>
21728
21729 * doc/bison.texinfo: Update.
21730 * doc/bison.1 (mandoc): Update.
21731 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
21732 * src/files.c: Support output files extensions computing.
21733 (src_extension): New static variable.
21734 (header_extension): New static variable.
21735 (tr): New function.
21736 (get_extension_index): New function, gets the index of an extension
21737 filename in a string.
21738 (compute_exts_from_gf): New function, computes extensions from the
21739 grammar file extension.
21740 (compute_exts_from_src): New functions, computes extensions from the
21741 C source file extension, file given by ``-o'' option.
21742 (compute_base_names): Update.
21743 (output_files): Update.
21744
847bf1f5
AD
217452001-08-01 Robert Anisko <anisko_r@epita.fr>
21746
d995fee7 21747 * doc/bison.texi: Document @$.
847bf1f5
AD
21748 (Locations): New section.
21749
d074a105
AD
217502001-07-18 Akim Demaille <akim@epita.fr>
21751
21752 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
21753 * config/prev-version.txt, config/move-if-change: New.
21754 * Makefile.am: Adjust.
21755
3419715d
AD
217562001-07-08 Pascal Bart <pascal.bart@epita.fr>
21757
21758 * src/bison.simple (yyparse): Suppress warning `comparaison
21759 between signed and unsigned'.
21760
62ab6972
AD
217612001-07-05 Pascal Bart <pascal.bart@epita.fr>
21762
21763 * src/getargs.h (raw_flag): Remove.
21764 * src/getargs.c: Die on `-r'/`--raw'.
21765 * src/lex.c (parse_percent_token): Die on `%raw'.
21766 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
21767 * tests/calc.at: Suppress test with option `--raw'.
21768
1e24cc5b
AD
217692001-07-14 Akim Demaille <akim@epita.fr>
21770
21771 * config/: New.
21772 * configure.in: Require Autoconf 2.50.
21773 Update to gettext 0.10.38.
21774
32dfccf8
AD
217752001-03-16 Akim Demaille <akim@epita.fr>
21776
21777 * doc/bison.texinfo: ANSIfy the examples.
21778
cd5bd6ac
AD
217792001-03-16 Akim Demaille <akim@epita.fr>
21780
21781 * getargs.c (skeleton): New variable.
21782 (longopts): --skeleton is a new option.
21783 (shortopts, getargs): -S is a new option.
21784 * getargs.h: Declare skeleton.
21785 * output.c (output_parser): Use it.
21786
5141b016
AD
217872001-03-16 Akim Demaille <akim@epita.fr>
21788
21789 * m4/strerror_r.m4: New.
21790 * m4/error.m4: Run AC_FUNC_STRERROR_R.
21791 * lib/error.h, lib/error.c: Update.
21792
447992b9
AD
217932001-03-16 Akim Demaille <akim@epita.fr>
21794
21795 * src/getargs.c (longopts): Clean up.
21796
274d42ce
AD
217972001-02-21 Akim Demaille <akim@epita.fr>
21798
21799 * src/reader.c (gensym): `gensym_count' is your own.
21800 Use a static buf to create the symbol name, as token_buffer is no
21801 longer a buffer.
21802
22c821f3
AD
218032001-02-08 Akim Demaille <akim@epita.fr>
21804
21805 * src/conflicts.c (conflict_report): Be sure not to append to res
21806 between two calls, which could happen if both first sprintf were
21807 skipped, but not the first cp += strlen.
21808
18569462
AD
218092001-02-08 Akim Demaille <akim@epita.fr>
21810
21811 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
21812 New, from fileutils 4.0.37.
21813 * configure.in: Require Autoconf 2.49c. I took some time before
21814 making this decision. This is the only way out for portability
21815 issues in Bison, it would mean way too much duplicate effort to
21816 import in Bison features implemented in 2.49c since 2.13.
21817 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
21818
0d8f3c8a
AD
218192001-02-02 Akim Demaille <akim@epita.fr>
21820
21821 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
66075dcf 21822 * lib/xalloc.h, lib/xmalloc.c: Update.
0d8f3c8a 21823
f17bcd1f
AD
218242001-01-19 Akim Demaille <akim@epita.fr>
21825
21826 Get rid of the ad hoc handling of token_buffer in the scanner: use
21827 the obstacks.
21828
21829 * src/lex.c (token_obstack): New.
21830 (init_lex): Initialize it. No longer call...
21831 (grow_token_buffer): this. Remove it.
21832 Adjust all the places which used it to use the obstack.
21833
511e79b3
AD
218342001-01-19 Akim Demaille <akim@epita.fr>
21835
21836 * src/lex.h: Rename all the tokens:
21837 s/\bENDFILE\b/tok_eof/g;
21838 s/\bIDENTIFIER\b/tok_identifier/g;
21839 etc.
21840 Let them be enums, not #define, to ease debugging.
21841 Adjust all the code.
21842
0d6508ef
AD
218432001-01-18 Akim Demaille <akim@epita.fr>
21844
21845 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
21846 * src/lex.c (maxtoken, grow_token_buffer): Static.
21847
6deb4447
AD
218482001-01-18 Akim Demaille <akim@epita.fr>
21849
21850 Since we now use obstacks, more % directives can be enabled.
21851
21852 * src/lex.c (percent_table): Also accept `%yacc',
21853 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
21854 `%debug'.
21855 Handle the actions for `%semantic_parser' and `%pure_parser' here,
21856 instead of returning a token.
21857 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
21858 * src/reader.c (read_declarations): Adjust.
21859 * src/files.c (open_files): Don't call `compute_base_names', don't
21860 compute `attrsfile' since they depend upon data which might be
21861 *in* the input file now.
21862 (output_files): Do it here.
21863 * src/output.c (output_headers): Document the fact that this patch
21864 introduces a guaranteed SEGV for semantic parsers.
21865 * doc/bison.texinfo: Document them.
21866 * tests/suite.at: Exercise these %options.
21867
ff4423cc
AD
218682000-12-20 Akim Demaille <akim@epita.fr>
21869
21870 Also handle the output file (--verbose) with obstacks.
21871
21872 * files.c (foutput): Remove.
21873 (output_obstack): New.
21874 Adjust all dependencies.
21875 * src/conflicts.c: Return a string.
21876 * src/system.h (obstack_grow_string): Rename as...
21877 (obstack_sgrow): this. Be ready to work with non literals.
21878 (obstack_fgrow4): New.
21879
956dba3a
AD
218802000-12-20 Akim Demaille <akim@epita.fr>
21881
21882 * src/files.c (open_files): Fix the computation of short_base_name
21883 in the case of `-o foo.tab.c'.
21884
337bab46
AD
218852000-12-20 Akim Demaille <akim@epita.fr>
21886
21887 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
21888 (copy_dollar): Now that everything uses obstacks, get rid of the
21889 FILE * parameters.
21890
5d3214b8
AD
218912000-12-20 Akim Demaille <akim@epita.fr>
21892
21893 * src/files.c (open_files): Actually the `.output' file is based
21894 on the short_base_name, not base_name.
21895 * tests/suite.at (Checking output file names): Adjust.
21896
29092a57
AD
218972000-12-20 Akim Demaille <akim@epita.fr>
21898
21899 * src/bison.s1: Remove, we now use directly...
21900 * src/bison.simple: this.
21901 * src/Makefile.am: Use pkgdata instead of data.
21902
ea5607fd
AD
219032000-12-20 Akim Demaille <akim@epita.fr>
21904
21905 * src/files.c (guard_obstack): New.
21906 (open_files): Initialize it.
21907 (output_files): Dump it...
21908 * src/files.h: Export it.
21909 * src/reader.c (copy_guard): Use it.
21910
27110317
AD
219112000-12-19 Akim Demaille <akim@epita.fr>
21912
21913 * src/files.c (outfile, defsfile, actfile): Removed as global
21914 vars.
21915 (open_files): Don't compute them.
21916 (output_files): Adjust.
21917 (base_name, short_base_name): Be global.
21918 Adjust dependencies.
21919
19c50364
AD
219202000-12-19 Akim Demaille <akim@epita.fr>
21921
21922 * src/files.c (strsuffix): New.
21923 (stringappend): Be just like strcat but allocate.
21924 (base_names): Eve out from open_files.
21925 Try to simplify the rather hairy computation of base_name and
21926 short_base_name.
21927 (open_files): Use it.
21928 * tests/suite.at (Checking output file names): New test.
21929
573c1d9f
AD
219302000-12-19 Akim Demaille <akim@epita.fr>
21931
21932 * src/system.h (obstack_grow_literal_string): Rename as...
21933 (obstack_grow_string): this.
21934 * src/output.c (output_parser): Recognize `%% actions' instead of
21935 `$'.
21936 * src/bison.s1: s/$/%% actions/.
21937 * src/bison.hairy: Likewise.
21938
ef7ddedd
AD
219392000-12-19 Akim Demaille <akim@epita.fr>
21940
21941 * src/output.c (output_parser): Compute the `#line' lines when
21942 there are.
21943 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
21944 Suggested by Hans Aberg.
21945
ff61dabd
AD
219462000-12-19 Akim Demaille <akim@epita.fr>
21947
21948 Let the handling of the skeleton files be local to the procedures
21949 that use it.
21950
21951 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
21952 longer static.
21953 (fparser, open_extra_files): Remove.
21954 (open_files, output_files): Don't take care of fparser.
21955 * src/files.h: Adjust.
21956 * src/output.c (output_parser): Open and close the file to the
21957 skeleton.
21958 * src/reader.c (read_declarations): When %semantic_parser, open
21959 fguard.
21960
55b96341
AD
219612000-12-19 Akim Demaille <akim@epita.fr>
21962
21963 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
21964 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
21965
358c15b7
AD
219662000-12-19 Akim Demaille <akim@epita.fr>
21967
21968 * src/files.c (open_files): Yipee! We no longer need all the code
21969 looking for `/tmp' since we have no tmp file.
21970
7de3329e
AD
219712000-12-19 Akim Demaille <akim@epita.fr>
21972
21973 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
21974 New macros.
21975 * src/files.c (open_files): Less dependency on MSDOS etc.
21976
3abcd459
AD
219772000-12-14 Akim Demaille <akim@epita.fr>
21978
21979 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
21980 Provide a default definition.
21981 Use it when executing the default @ action.
21982 * src/reader.c (reader_output_yylsp): No longer include
21983 `timestamp' and `text' in the default YYLTYPE.
21984
2a91a95e
AD
219852000-12-12 Akim Demaille <akim@epita.fr>
21986
21987 * src/reader.c (copy_definition, parse_union_decl, copy_action)
21988 (copy_guard): Quote the file names.
21989 Reported by Laurent Mascherpa.
21990
14d3eb9b
AD
219912000-12-12 Akim Demaille <akim@epita.fr>
21992
21993 * src/output.c (output_headers, output_program, output): Be sure
21994 to escape special characters when outputting filenames.
21995 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
21996 (output_headers): Don't depend on them, Use ACTSTR.
21997
d7045ec6
AD
219982000-11-17 Akim Demaille <akim@epita.fr>
21999
22000 * lib/obstack.h: Formatting changes.
22001 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
22002 prevents type checking.
22003 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
22004 cast the value to (void *): assigning a `foo *' to a `void *'
22005 variable is valid.
22006 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
22007 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
22008 append characters.
22009
6fd54b73
AD
220102000-11-17 Akim Demaille <akim@epita.fr>
22011
22012 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
22013 as...
22014 (suite.m4, regression.m4, calc.m4): these.
22015 * tests/atgeneral.m4: Update from CVS Autoconf.
22016
4c50eae6
AD
220172000-11-17 Akim Demaille <akim@epita.fr>
22018
22019 * tests/regression.m4 (%union and --defines): New test,
22020 demonstrating a current bug in the obstack implementation.
22021
a35f64ea
AD
220222000-11-17 Akim Demaille <akim@epita.fr>
22023
22024 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
22025 macros.
22026 Use them to declare the variables which are global or local to
22027 `yyparse'.
22028
7de23534
AD
220292000-11-17 Akim Demaille <akim@epita.fr>
22030
22031 * acconfig.h: Remove, no longer used.
22032
aa7815f5
AD
220332000-11-07 Akim Demaille <akim@epita.fr>
22034
22035 * src: s/Copyright (C)/Copyright/g.
22036
5af1f549
AD
220372000-11-07 Akim Demaille <akim@epita.fr>
22038
22039 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
22040 defining.
22041 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
22042
553e2b22
AD
220432000-11-07 Akim Demaille <akim@epita.fr>
22044
22045 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
22046 Merge in a single CPP if/else.
22047
8a4f41d6
AD
220482000-11-07 Akim Demaille <akim@epita.fr>
22049
22050 * src/output.c (output): Remove useless variables.
22051 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
22052 argument `data' for consistency with the prototypes.
22053 Qualify it `const'.
22054 (obstack_copy, obstack_copy0): Rename the second argument as
22055 `address' for consistency. Qualify it `const'.
22056 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
22057 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
22058 `const' their input argument (`data' or `address').
22059 Adjust the corresponding macros to include `const' in casts.
22060
095a3fb5
AD
220612000-11-03 Akim Demaille <akim@epita.fr>
22062
22063 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
22064 s/PFILE1/BISON_HAIRY/.
22065 Adjust dependencies.
22066
d1cdce7c
AD
220672000-11-03 Akim Demaille <akim@epita.fr>
22068
090c5ebf 22069 For some reason, this was not applied.
d1cdce7c
AD
22070
22071 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
22072 `unlink': it's no longer used.
22073
9311529b
AD
220742000-11-03 Akim Demaille <akim@epita.fr>
22075
22076 * src/files.c (skeleton_find): New function, eved out of...
22077 (open_files, open_extra_files): here.
22078
d8880f69
AD
220792000-11-03 Akim Demaille <akim@epita.fr>
22080
22081 Don't use `atexit'.
22082
22083 * src/files.c (obstack_save): New function.
22084 (done): Rename as...
22085 (output_files): this.
22086 Use `obstack_save'.
22087 * src/main.c (main): Don't use `atexit' to register `done', since
22088 it no longer has to remove tmp files, just call `output_files'
22089 when there are no errors.
22090
0dbb648e
AD
220912000-11-02 Akim Demaille <akim@epita.fr>
22092
22093 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
22094 `unlink': it's no longer used.
22095 * src/files.h: Formatting changes.
22096
896fe5c1
AD
220972000-11-02 Akim Demaille <akim@epita.fr>
22098
22099 Remove the last uses of mktemp and unlink/delete.
22100
22101 * src/files.c (fdefines, ftable): Removed.
22102 (defines_ostack, table_obstack): New.
22103 Adjust dependencies of the former into uses of the latter.
22104 * src/output.c (output_short_or_char_table, output_short_table):
22105 Convert to using obstacks.
22106 * src/reader.c (copy_comment2): Accept one FILE * and two
22107 obstacks.
22108 (output_token_defines, reader_output_yylsp): Use obstacks.
22109 * src/system.h (obstack_fgrow3): New.
1f65350a 22110 * po/POTFILES.in: Adjust.
896fe5c1 22111
dd60faec
AD
221122000-11-01 Akim Demaille <akim@epita.fr>
22113
22114 Change each use of `fattrs' into a use of `attrs_obstack'.
22115
22116 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
22117 * src/files.c (fattrs): Remove.
22118 (attrs_obstack): New.
22119 Adjust all dependencies.
22120 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
22121
8c7ebe49
AD
221222000-11-01 Akim Demaille <akim@epita.fr>
22123
22124 Introduce obstacks.
22125 Change each use of `faction' into a use of `action_obstack'.
22126
22127 * lib/obstack.h, lib/obstack.c: New files.
22128 * src/files.c (faction): Remove.
22129 (action_obstack): New.
22130 Adjust all dependencies.
22131
77aee789
AD
221322000-10-20 Akim Demaille <akim@epita.fr>
22133
22134 * lib/quote.h (PARAMS): New macro. Use it.
22135
43591cec
AD
221362000-10-16 Akim Demaille <akim@epita.fr>
22137
22138 * src/output.c (output_short_or_char_table): New function.
22139 (output_short_table, output_token_translations): Use it.
22140 (goto_actions): Use output_short_table.
22141
1e9798d5
AD
221422000-10-16 Akim Demaille <akim@epita.fr>
22143
22144 * src/symtab.c (bucket_new): New function.
22145 (getsym): Use it.
22146
22147 * src/output.c (output_short_table): New argument to display the
22148 comment associated with the table.
22149 Adjust dependencies.
22150 (output_gram): Use it.
22151 (output_rule_data): Nicer output layout for YYTNAME.
22152
f282676b
AD
221532000-10-16 Akim Demaille <akim@epita.fr>
22154
22155 * src/lex.c (read_typename): New function.
22156 (lex): Use it.
22157 * src/reader.c (copy_dollar): Likewise.
22158
550a72a3
AD
221592000-10-16 Akim Demaille <akim@epita.fr>
22160
22161 * src/reader.c (copy_comment2): Expect the input stream to be on
22162 the `/' which is suspected to open a comment, instead of being
22163 called after `//' or `/*' was read.
22164 (copy_comment, copy_definition, parse_union_decl, copy_action)
22165 (copy_guard): Adjust.
22166
131e2fef
AD
221672000-10-16 Akim Demaille <akim@epita.fr>
22168
22169 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
22170 `read_signed_integer'.
22171
79282c5a
AD
221722000-10-16 Akim Demaille <akim@epita.fr>
22173
22174 * src/reader.c (copy_dollar): New function.
22175 (copy_guard, copy_action): Use it.
22176
ff4a34be
AD
221772000-10-16 Akim Demaille <akim@epita.fr>
22178
22179 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
22180 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
22181 New files, from Fileutils 4.0.27.
22182 * src/main.c (printable_version): Remove.
22183 * src/lex.c, src/reader.c: Use `quote'.
22184
221852000-10-04 Akim Demaille <akim@epita.fr>
22186
22187 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
22188
14ded682
AD
221892000-10-04 Akim Demaille <akim@epita.fr>
22190
22191 * doc/bison.texinfo: Various typos spotted by Neil Booth.
22192
8e03724b
AD
221932000-10-04 Akim Demaille <akim@epita.fr>
22194
22195 When a literal string is used to define two different tokens,
22196 `bison -v' segfaults.
22197 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
22198
22199 * tests/regression.m4: New file.
22200 Include the core of the sample provided by Piotr Gackiewicz.
22201 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
22202 properly.
22203
a9e64249
AD
222042000-10-04 Akim Demaille <akim@epita.fr>
22205
22206 * src/reader.c (parse_expect_decl): Keep `count' within the size
22207 of `buffer'.
22208 From Neil Booth.
22209
da9abf43
AD
222102000-10-02 Paul Eggert <eggert@twinsun.com>
22211
22212 * bison.s1 (yyparse): Assign the default value
22213 unconditionally, to avoid a GCC warning and make the parser a
22214 tad smaller.
22215
c33638bb
AD
222162000-10-02 Akim Demaille <akim@epita.fr>
22217
22218 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
22219 options.
22220
444c570a
AD
222212000-10-02 Akim Demaille <akim@epita.fr>
22222
22223 * src/derives.c, src/print.c, src/reduce.c: To ease the
22224 translation, move some `\n' out of the translated strings.
22225
89cab50d
AD
222262000-10-02 Akim Demaille <akim@epita.fr>
22227
22228 The location tracking mechanism is precious for parse error
22229 messages. Nevertheless, it is enabled only when `@n' is used in
22230 the grammar, which is a different issue (you can use it in error
22231 message, but not in the grammar per se). Therefore, there should
22232 be another means to enable it.
22233
22234 * src/getargs.c (getargs): Support `--locations'.
22235 (usage): Report it.
22236 * src/getargs.h (locationsflag): Export it.
22237 * src/lex.c (percent_table): Support `%locations'.
22238 * src/reader.c (yylsp_needed): Remove this variable, now replaced
22239 with `locationsflag'.
22240 * doc/bison.texinfo: Document `--locations' and `%locations'.
22241 Sort the options.
22242 * tests/calc.m4: Test it.
22243
22244 For regularity of the names, replace each
22245 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
22246 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
22247 In addition replace each `flag' with `_flag'.
22248
d6c2cba0
AD
222492000-10-02 Akim Demaille <akim@epita.fr>
22250
22251 Also test parse error messages, including with YYERROR_VERBOSE.
22252
22253 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
22254 associative).
22255 Use it to check the computations.
22256 Use it to check `nonassoc' is honored.
22257 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
22258 `--yyerror-verbose'.
22259 (_AT_CHECK_CALC): Adjust to this option.
22260 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
22261
5a35a6cb
AD
222622000-10-02 Akim Demaille <akim@epita.fr>
22263
22264 Test also `--verbose', `--defines' and `--name-prefix'. Testing
22265 the latter demonstrates a flaw in the handling of non debugging
22266 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
22267 was used in order to simplify:
22268
22269 #if YYDEBUG
22270 if (yydebug)
22271 {
22272 ...
22273 }
22274 #endif
22275
22276 into
22277
22278 if (yydebug)
22279 {
22280 ...
22281 }
22282
22283 unfortunately this leads to a CPP conflict when
22284 `--name-prefix=foo' is used since it produces `#define yydebug
22285 foodebug'.
22286
22287 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
22288 (YYDPRINTF): New macro.
22289 Spread its use.
22290 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
22291 the bison options.
22292 Also test `--verbose', `--defines' and `--name-prefix'.
22293
71da9eea
AD
222942000-10-02 Akim Demaille <akim@epita.fr>
22295
22296 Improve the readability of the produced parsers.
22297
22298 * src/bison.s1: Formatting changes.
22299 Improve the comment related to the `$' mark.
22300 (yydefault): Don't fall through to `yyresume': `goto' there.
22301 * src/output.c (output_parser): When the `$' is met, skip the end
22302 of its line.
22303 New variable, `number_of_dollar_signs', to check there's exactly
22304 one `$' in the parser skeleton.
22305
95e36146
AD
223062000-10-02 Akim Demaille <akim@epita.fr>
22307
22308 * lib/xstrdup.c: New file, from the fileutils.
22309 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
22310 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
22311 instead of strlen + xmalloc + strcpy.
22312 * src/symtab.c (copys): Remove, use xstrdup instead.
22313
d7020c20
AD
223142000-10-02 Akim Demaille <akim@epita.fr>
22315
22316 * src/gram.h (associativity): New enum type which replaces the
22317 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
22318 `right_assoc', `left_assoc' and `non_assoc'.
22319 Adjust all dependencies.
22320 * src/reader.c: Formatting changes.
22321 (LTYPESTR): Don't define it, use it as a literal in
22322 `reader_output_yylsp'.
22323 * src/symtab.h (symbol_class): New enum type which replaces the
22324 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
22325 `sunknown', `stoken and `snterm'.
22326
1916f98e
AD
223272000-10-02 Akim Demaille <akim@epita.fr>
22328
22329 * src/getargs.c (fixed_outfiles): Rename as...
22330 (yaccflag): for consistency and accuracy.
22331 Adjust dependencies.
22332
d7913476
AD
223332000-10-02 Akim Demaille <akim@epita.fr>
22334
22335 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
22336 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
22337 difficult and introduced a lot of core dump. It turns out that
22338 Bison used an implementation of `xmalloc' based on `calloc', and
22339 at various places it does depend upon the initialization to 0. I
22340 have not tried to isolate the pertinent places, and all the former
22341 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
22342 someone should address this issue.
22343
22344 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
22345 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
22346 files.
22347 Adjust dependencies.
22348 * src/warshall.h: New file.
22349 Propagate.
22350
340ef489
AD
223512000-10-02 Akim Demaille <akim@epita.fr>
22352
22353 Various anti-`extern in *.c' changes.
22354
22355 * src/system.h: Include `assert.h'.
22356
b2ca4022
AD
223572000-10-02 Akim Demaille <akim@epita.fr>
22358
22359 * src/state.h (nstates, final_state, first_state, first_shift)
22360 (first_reduction): Move their exportation from here...
22361 * src/LR0.h: to here.
22362 Adjust dependencies.
22363 * src/getargs.c (statisticsflag): New variable.
22364 Add support for `--statistics'.
22365 Adjust dependencies.
22366
22367 Remove a lot of now useless `extern' statements in most files.
22368
403b315b
AD
223692000-10-02 Akim Demaille <akim@epita.fr>
22370
22371 * src/LR0.h: New file.
22372 Propagate its use.
22373
07a58c13
AD
223742000-10-02 Akim Demaille <akim@epita.fr>
22375
22376 * src/print.h: New file.
22377 Propagate its use.
22378 * src/print.c: Formatting and ordering changes.
22379 (verbose, terse): Replace with...
22380 (print_results): this new function.
22381 Adjust dependencies.
22382
0619caf0
AD
223832000-10-02 Akim Demaille <akim@epita.fr>
22384
22385 * src/conflicts.c (conflict_report): New function.
22386 (conflict_log, verbose_conflict_log): Replace with...
22387 (print_conflicts): this function.
22388 Adjust dependencies.
22389 * src/conflicts.h: New file.
22390 Propagate its inclusion.
22391
3519ec76
AD
223922000-10-02 Akim Demaille <akim@epita.fr>
22393
22394 * src/nullable.h: New file.
22395 Propagate its inclusion.
22396 * src/nullable.c: Formatting changes.
22397
015acc48
AD
223982000-10-02 Akim Demaille <akim@epita.fr>
22399
22400 * src/reduce.h: New file.
22401 Propagate its inclusion.
22402 * src/reduce.c: Topological sort and other formatting changes.
22403 (bool, TRUE, FALSE): Move their definition to...
22404 * src/system.h: here.
22405
8963a27b
AD
224062000-10-02 Akim Demaille <akim@epita.fr>
22407
22408 * src/files.c: Formatting changes.
22409 (tryopen, tryclose, openfiles): Rename as...
22410 (xfopen, xfclose, open_files): this.
22411 (stringappend): static.
22412 * src/files.h: Complete the list of exported symbols.
22413 Propagate its use.
22414
a70083a3
AD
224152000-10-02 Akim Demaille <akim@epita.fr>
22416
22417 * src/reader.h: New file.
22418 Propagate its use instead of tedious list of `extern' and
22419 prototypes.
22420 * src/reader.c: Formatting changes, topological sort,
22421 s/register//.
22422
abadc117
AD
224232000-10-02 Akim Demaille <akim@epita.fr>
22424
22425 * src/lex.h: Prototype `lex.c' exported functions.
22426 * src/reader.c: Adjust.
22427 * src/lex.c: Formatting changes.
22428 (safegetc): Rename as...
22429 (xgetc): this.
22430
720d742f
AD
224312000-10-02 Akim Demaille <akim@epita.fr>
22432
22433 * src/lalr.h: New file.
22434 Propagate its inclusion instead of prototypes and `extern'.
22435 * src/lalr.c: Formatting changes, topological sorting etc.
22436
f2acea59
AD
224372000-10-02 Akim Demaille <akim@epita.fr>
22438
22439 * src/output.c (token_actions): Introduce a temporary array,
22440 YYDEFACT, that makes it possible for this function to use
22441 output_short_table.
22442
d019d655
AD
224432000-10-02 Akim Demaille <akim@epita.fr>
22444
22445 `user_toknums' is output as a `short[]' in `output.c', while it is
22446 defined as a `int[]' in `reader.c'. For consistency with the
22447 other output tables, `user_toknums' is now defined as a table of
22448 shorts.
22449
22450 * src/reader.c (user_toknums): Be a short table instead of an int
22451 table.
22452 Adjust dependencies.
22453
22454 Factor the short table outputs.
22455
22456 * src/output.c (output_short_table): New function.
22457 * src/output.c (output_gram, output_stos, output_rule_data)
22458 (output_base, output_table, output_check): Use it.
22459
6c89f1c1
AD
224602000-10-02 Akim Demaille <akim@epita.fr>
22461
22462 * src/output.c (output): Topological sort of the functions, in
22463 order to get rid of the `static' prototypes.
22464 No longer use `register'.
22465 * src/output.h: New file.
22466 Propagate its inclusion in files explicitly prototyping functions
22467 from output.c.
22468
d9efd181
AD
224692000-09-21 Akim Demaille <akim@epita.fr>
22470
22471 * src/atgeneral.m4: Update from Autoconf.
22472
c29240e7 224732000-09-21 Akim Demaille <akim@epita.fr>
2fa6973e
AD
22474
22475 * src/closure.h: New file.
22476 * src/closure.c: Formatting changes, topological sort over the
22477 functions, use of closure.h.
22478 (initialize_closure, finalize_closure): Rename as...
22479 (new_closure, free_closure): these. Adjust dependencies.
22480 * src/LR0.c: Formatting changes, topological sort, use of
22481 cloture.h.
22482 (initialize_states): Rename as...
22483 (new_states): this.
22484 * src/Makefile.am (noinst_HEADERS): Adjust.
22485
499daa50
AD
224862000-09-20 Akim Demaille <akim@epita.fr>
22487
22488 * src/acconfig.h: Don't protect config.h against multiple
22489 inclusion.
22490 Don't define PARAMS.
22491 * src/system.h: Define PARAMS.
22492 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
22493 purpose of config.h. system.h must not try to fix wrong
22494 definitions in config.h.
22495
cc84fd5d
AD
224962000-09-20 Akim Demaille <akim@epita.fr>
22497
22498 * src/derives.h: New file.
22499 * src/main.c, src/derives.h: Use it.
22500 Formatting changes.
22501 * src/Makefile.am (noinst_HEADERS): Adjust.
22502
db5b3a89
AD
225032000-09-20 Akim Demaille <akim@epita.fr>
22504
22505 * tests/atgeneral.m4: Update from Autoconf.
22506 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
22507 (AT_CHECK_CALC): New macros.
22508 Use these macros to test bison with options `', `--raw',
22509 `--debug', `--yacc', `--yacc --debug'.
22510
ceed8467
AD
225112000-09-19 Akim Demaille <akim@epita.fr>
22512
22513 * src/output.c: Formatting changes.
22514 * src/machine.h: Remove, leaving its contents in...
22515 * src/system.h: here.
22516 Include stdio.h.
22517 Adjust all dependencies on stdio.h and machine.h.
22518 * src/getargs.h: New file.
22519 Let all `extern' declarations about getargs.c be replaced with
22520 inclusion of `getargs.h'.
22521 * src/Makefile.am (noinst_HEADERS): Adjust.
22522
22523 * tests/calc.m4 (yyin): Be initialized in main, not on the global
22524 scope.
22525 (yyerror): Returns void, not int.
22526 * doc/bison.texinfo: Formatting changes.
22527
05a1d24b
AD
225282000-09-19 Akim Demaille <akim@epita.fr>
22529
22530 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
22531 portable.
22532
cbd25751
AD
225332000-09-18 Akim Demaille <akim@epita.fr>
22534
22535 * configure.in: Append WARNING_CFLAGS to CFLAGS.
22536 * src/Makefile.am (INCLUDES): Don't.
22537 Be ready to fetch headers in lib/.
22538
13863333
AD
225392000-09-18 Akim Demaille <akim@epita.fr>
22540
22541 * doc/bison.texinfo: Update the copyright.
22542 ANSIfy and GNUify the examples.
22543 Remove the old menu.
22544
0d533154
AD
225452000-09-18 Akim Demaille <akim@epita.fr>
22546
22547 First set of tests: use the `calc' example from the documentation.
22548
22549 * src/bison.s1 (yyparse): Condition the code using `yytname' which
22550 is defined only when YYDEBUG is.
22551 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
22552 * src/files.c (tryopen, tryclose): Formatting changes.
22553 Move to the top and be static.
22554 * src/reader.c (read_signed_integer): Likewise.
22555 * tests/calc.m4: New file.
22556 * Makefile.am, suite.m4: Adjust.
22557 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
22558
e79137ac
AD
225592000-09-18 Akim Demaille <akim@epita.fr>
22560
22561 Add support for an Autotest test suite for Bison.
22562
22563 * m4/m4.m4, m4/atconfig.m4: New files.
22564 * m4/Makefile.am (EXTRA_DIST): Adjust.
22565 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
22566 files.
22567 * src/getargs.c: Display a more standard --version message.
22568 * src/reader.c (reader): Formatting changes.
22569 No longer depend upon VERSION_STRING.
22570 * configure.in: No longer use `dnl'.
22571 Set up the test suite and the new directory `tests/.
22572 (VERSION_STRING): Remove.
22573
27821bff
AD
225742000-04-14 Akim Demaille <akim@epita.fr>
22575
22576 * src/reader.c (copy_comment2): New function, same as former
22577 `copy_comment', but outputs into two FILE *.
22578 (copy_comment): Use it.
22579 (parse_union_decl): Use it.
22580 (get_type, parse_start_decl): Use the same `invalid' message.
22581 (parse_start_decl, parse_union_decl): Use the same `multiple'
22582 message.
22583 (parse_union_decl, copy_guard, copy_action): Use the same
22584 `unmatched' message.
22585 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
22586
cfe5fbc0
AD
225872000-03-31 Akim Demaille <akim@epita.fr>
22588
22589 * src/files.c (tryopen, tryclose): Move to the top.
22590 Be static.
22591
cb7db13e
AD
225922000-03-31 Akim Demaille <akim@epita.fr>
22593
22594 * src/main.c (main): Don't call `done', exit does it.
22595
a0f6b076
AD
225962000-03-31 Akim Demaille <akim@epita.fr>
22597
36281465
AD
22598 * allocate.c: s/return (foo)/return foo/.
22599 * lalr.c: Likewise.
22600 * LR0.c: Likewise.
22601 * output.c: Likewise.
22602 * reader.c: Likewise.
22603 * symtab.c: Likewise.
22604 * vmsgetargs.c: Likewise.
22605
226062000-03-31 Akim Demaille <akim@epita.fr>
22607
22608 Clean up the error reporting functions.
a0f6b076
AD
22609
22610 * src/report.c: New file.
22611 * src/report.h: Likewise.
22612 * src/Makefile.am: Adjust.
22613 * m4/error.m4: New file.
22614 * m4/Makefile.am: Adjust.
22615 * configure.in (jm_PREREQ_ERROR): Call it.
22616 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
22617 Remove.
22618 (fatal, fatals): Remove. All callers use complain.c::fatal.
22619 (warn, warni, warns, warnss, warnss): Remove. All callers use
22620 complain.c::complain.
22621 (toomany): Remove, use fatal instead.
22622 * src/files.c (done): No argument, use complain_message_count.
22623 * src/main.c (main): Register `done' to `atexit'.
22624
22625 * src/getargs.c (usage): More `fputs', less `fprintf'.
22626
18539825
AD
226272000-03-28 Akim Demaille <akim@epita.fr>
22628
22629 * lib/: New directory.
22630 * Makefile.am (SUBDIRS): Adjust.
22631 * configure.in: Adjust.
22632 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
22633 useless.
22634 * src/alloca.c: Moved to lib/.
22635 * src/getopt.c: Likewise.
22636 * src/getopt1.c: Likewise.
22637 * src/getopt.h: Likewise.
22638 * src/ansi2knr.c: Likewise.
22639 * src/ansi2knr.1: Likewise.
22640 * src/Makefile.am: Adjust.
22641 * lib/Makefile.am: New file.
22642
9f306f2a
AD
226432000-03-28 Akim Demaille <akim@epita.fr>
22644
22645 * src/getargs.c (usage): Refresh the help message.
22646
0ba347b6
AD
226472000-03-17 Akim Demaille <akim@epita.fr>
22648
22649 * src/getopt1.c: Updated from textutils 2.0e
22650 * src/getopt.c: Likewise.
22651 * src/getopt.h: Likewise.
22652
dbe7f271
AD
226532000-03-17 Akim Demaille <akim@epita.fr>
22654
22655 * src/Makefile.am (bison.simple): Fix the awk program: quote only
22656 the file name, not the whole `#line LINE FILE'.
22657
75bbe78d
AD
226582000-03-17 Akim Demaille <akim@epita.fr>
22659
22660 On syntax errors, report the token on which we choked.
22661
aa5fd0ee
AD
22662 * src/bison.s1 (yyparse): In the label yyerrlab, when
22663 YYERROR_VERBOSE, add yychar in msg.
75bbe78d 22664
7b306f52
AD
226652000-03-17 Akim Demaille <akim@epita.fr>
22666
aa5fd0ee 22667 * src/reader.c (copy_at): New function.
7b306f52
AD
22668 (copy_guard): Use it.
22669 (copy_action): Use it.
22670
e87b5700
AD
226712000-03-17 Akim Demaille <akim@epita.fr>
22672
22673 Be kind to translators, save some useless translations.
22674
aa5fd0ee 22675 * src/main.c (banner): New function.
e87b5700
AD
22676 (fatal_banner): Use it.
22677 (warn_banner): Use it.
22678
ae3c3164
AD
226792000-03-17 Akim Demaille <akim@epita.fr>
22680
aa5fd0ee
AD
22681 * src/reader.c (copy_definition): Use copy_string and
22682 copy_comment. Removed now unused `match', `ended',
22683 `cplus_comment'.
ae3c3164
AD
22684 (copy_comment, copy_string): Moved, to be visible from
22685 copy_definition.
22686
4dc58e7c
AD
226872000-03-17 Akim Demaille <akim@epita.fr>
22688
aa5fd0ee
AD
22689 * src/reader.c (copy_string): Declare `static inline'. No
22690 problems with inline, since it is checked by configure.
4dc58e7c
AD
22691 (copy_comment): Likewise.
22692
0a6384c4
AD
226932000-03-17 Akim Demaille <akim@epita.fr>
22694
aa5fd0ee 22695 * src/reader.c (packsymbols): Formatting changes.
0a6384c4 22696
3cef001a
AD
226972000-03-17 Akim Demaille <akim@epita.fr>
22698
aa5fd0ee 22699 * src/reader.c (copy_comment): New function, factored out from:
3cef001a
AD
22700 (copy_action): Use it. Removed now unused `match', `ended',
22701 `cplus_comment'.
22702 (copy_guard): Likewise.
22703
ca36d2ef
AD
227042000-03-17 Akim Demaille <akim@epita.fr>
22705
aa5fd0ee 22706 * src/reader.c (copy_string): New function, factored out from:
ca36d2ef
AD
22707 (copy_action): Use it.
22708 (copy_guard): Likewise.
22709
6666f98f
AD
227102000-03-17 Akim Demaille <akim@epita.fr>
22711
22712 Change the handling of @s so that they behave exactly like $s.
22713 There is now a pseudo variable @$ (readble and writable), location
22714 of the lhs of the rule (by default ranging from the location of
22715 the first symbol of the rhs, to the location of the last symbol,
22716 or, if the rhs is empty, YYLLOC).
22717
22718 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
22719 yyval.
22720 (yyparse): When providing a default semantic action, provide a
22721 default location action.
22722 (after the $): No longer change `*YYLSP', just stack YYLOC the
22723 same way you stack YYVAL.
22724 * src/reader.c (read_declarations): Use warns.
22725 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
22726 (copy_action, case '@'): Likewise.
22727 Use a standard error message, to save useless work from
22728 translators.
22729
41aca2e0
AD
227302000-03-17 Akim Demaille <akim@epita.fr>
22731
aa5fd0ee
AD
22732 * src/bison.s1: Formatting and cosmetics changes.
22733 * src/reader.c: Likewise.
41aca2e0
AD
22734 Update the Copyright notice.
22735
dc08c1d5
AD
227362000-03-17 Akim Demaille <akim@epita.fr>
22737
aa5fd0ee
AD
22738 * src/bison.s1 (#line): All set to `#line' only, since the
22739 Makefile now handles them.
dc08c1d5 22740
9ee3c97b
AD
227412000-03-16 Akim Demaille <akim@epita.fr>
22742
22743 * src/output.c (output_rule_data): Output the documentation of
22744 some of the tables.
22745 (Copyright notice): Update.
22746 Formatting changes.
22747
0de741ca
AD
227482000-03-16 Akim Demaille <akim@epita.fr>
22749
22750 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
22751 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
22752 One `#if YYDEBUG' remains, since it uses variables which are
22753 defined only if `YYDEBUG != 0'.
22754
bb10be54
AD
227552000-03-16 Akim Demaille <akim@epita.fr>
22756
22757 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
22758 and related variables so that the similarities are highlighted.
22759
b07b484a
AD
227602000-03-16 Akim Demaille <akim@epita.fr>
22761
22762 * src/bison.s1: Properly indent CPP directives.
22763
361f60b3
AD
227642000-03-16 Akim Demaille <akim@epita.fr>
22765
22766 * src/bison.s1: Properly indent the `alloca' CPP section.
22767
8c44d3ec
AD
227682000-03-16 Akim Demaille <akim@epita.fr>
22769
22770 Do not hard code values of directories in `configure.in'.
22771 Update the `configure' tool chain.
22772
22773 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
22774 src/makefile.am.
22775 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
22776 (AC_OUTPUT): Add m4/Makefile.
22777 Bump to bison 1.28a, 1.29 has never been released.
22778 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
22779 handled via src/Makefile.am.
22780 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
22781 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
22782 autoheader.
22783 * Makefile.am (SUBDIRS): Add m4.
22784 (ACLOCAL_AM_FLAGS): New variable.
22785 (AUTOMAKE_OPTIONS): Add check-news.
22786 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
22787 the proper line number and file name.
22788 (DEFS): Propagate the location of bison library files and of the
22789 locale files.
22790 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
22791 builddir.
22792 * acinclude.m4: Remove, replaced by the directory m4.
22793 * m4/Makefile.am (EXTRA_DIST): New variable.
22794 * m4/gettext.m4: New file, from the fileutils.
22795 * m4/lcmessage.m4: Likewise
22796 * m4/progtest.m4: Likewise.
22797 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
22798
f95997e7
AD
227992000-03-10 Akim Demaille <akim@epita.fr>
22800
22801 * src/closure.c:
22802 Formatting changes of various comments.
22803 Respect the GNU coding standards at various places.
22804 Don't use `_()' when no translation is needed.
22805
228061999-12-13 Jesse Thilo <jthilo@gnu.org>
22807
22808 * src/files.c:
22809 OS/2 honors TMPDIR environment variable.
22810
228111999-12-13 Jesse Thilo <jthilo@gnu.org>
22812
22813 * doc/bison.texinfo: Tweaked spelling and grammar.
22814 Updated ISBN.
22815 Removed reference to price of printed copy.
22816 Mention BISON_SIMPLE and BISON_HAIRY.
22817
228181999-12-13 Jesse Thilo <jthilo@gnu.org>
22819
22820 * configure.in, NEWS:
22821 Bison 1.29 released.
22822
228231999-10-27 Jesse Thilo <jthilo@gnu.org>
22824
22825 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
22826 Added reference card.
22827
228281999-07-26 Jesse Thilo <jthilo@gnu.org>
22829
22830 * po/ru.po: Added Russian translation.
22831
228321999-07-26 Jesse Thilo <jthilo@gnu.org>
22833
22834 * configure.in: Added Russian translation.
22835
228361999-07-06 Jesse Thilo <jthilo@gnu.org>
22837
22838 * configure.in, NEWS, README:
22839 Released version 1.28.
22840
228411999-06-14 Jesse Thilo <jthilo@gnu.org>
22842
22843 * src/system.h:
22844 Squashed redefinition warning on some systems.
22845
22846 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
22847 Have configure build version string instead of relying on ANSI string
22848 concatentation.
22849
228501999-06-14 Jesse Thilo <jthilo@gnu.org>
22851
22852 * po/POTFILES.in: Got rid of version.c.
22853
228541999-06-14 Jesse Thilo <jthilo@gnu.org>
22855
22856 * acconfig.h, configure.in:
22857 Have configure build version string instead of relying on ANSI string
22858 concatentation.
22859
228601999-06-08 Jesse Thilo <jthilo@gnu.org>
22861
22862 * doc/bison.1:
22863 Dropped mention of `+' for long-named options.
22864
228651999-05-30 Jesse Thilo <jthilo@gnu.org>
22866
22867 * src/files.c: Added <unistd.h> for unlink().
22868
22869 * src/Makefile.am, src/system.h:
22870 I18n fixes.
22871
228721999-05-30 Jesse Thilo <jthilo@gnu.org>
22873
22874 * README: Added a FAQ list.
22875
22876 * configure.in, acconfig.h:
22877 I18n fixes.
22878
228791999-05-30 Jesse Thilo <jthilo@gnu.org>
22880
22881 * doc/FAQ, doc/Makefile.am:
22882 Added a FAQ list.
22883
228841999-05-19 Jesse Thilo <jthilo@gnu.org>
22885
22886 * src/alloc.h, src/symtab.h, src/version.c:
22887 Protected inclusion of "config.h" with HAVE_CONFIG_H.
22888
228891999-04-18 Jesse Thilo <jthilo@gnu.org>
22890
22891 * src/.cvsignore, src/Makefile.am:
22892 Reorganized: sources in `src', documentation in `doc'.
22893
22894 * src/lex.c (literalchar):
22895 fixed the code for escaping double quotes (thanks
22896 Jonathan Czisny.)
22897
228981999-04-18 Jesse Thilo <jthilo@gnu.org>
22899
22900 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
22901 Adjusted paths to reflect directory reorganization.
22902
229031999-04-18 Jesse Thilo <jthilo@gnu.org>
22904
22905 * doc/.cvsignore, doc/Makefile.am:
22906 Reorganized: sources in `src', documentation in `doc'.
22907
229081999-04-18 Jesse Thilo <jthilo@gnu.org>
22909
22910 * configure.in:
22911 Updated AC_INIT file to reflect directory reorganization.
22912
22913 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
22914 Reorganized: sources in `src', documentation in `doc'.
22915
229161999-04-13 Jesse Thilo <jthilo@gnu.org>
22917
22918 * src/allocate.c:
22919 Don't declare calloc() and realloc() if not necessary.
22920
229211999-04-13 Jesse Thilo <jthilo@gnu.org>
22922
22923 * configure.in, acconfig.h, acinclude.m4:
22924 Don't declare calloc() and realloc() if not necessary.
22925
229261999-03-23 Jesse Thilo <jthilo@gnu.org>
22927
22928 * po/.cvsignore: Added i18n support.
22929
229301999-03-23 Jesse Thilo <jthilo@gnu.org>
22931
22932 * acconfig.h, configure.in, Makefile.am:
22933 Added i18n support.
22934
229351999-03-22 Jesse Thilo <jthilo@gnu.org>
22936
22937 * src/bison.s1: Fixed #line numbers.
22938
229391999-03-15 Jesse Thilo <jthilo@gnu.org>
22940
22941 * po/es.po, po/fr.po, po/nl.po, po/de.po:
22942 Added PO files from Translation Project.
22943
229441999-03-03 Jesse Thilo <jthilo@gnu.org>
22945
22946 * Makefile.am:
22947 Added support for non-ANSI compilers (ansi2knr).
22948
229491999-02-16 Jesse Thilo <jthilo@gnu.org>
22950
22951 * configure.in: Bumped version number to 1.27.
22952
22953 * Makefile.am:
22954 Added `bison.simple' to list of files removed by `make distclean'.
22955
229561999-02-12 Jesse Thilo <jthilo@gnu.org>
22957
22958 * src/files.c, src/files.h:
22959 Defined locations of parser files in config.h instead of Makefile.
22960
229611999-02-12 Jesse Thilo <jthilo@gnu.org>
22962
22963 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
22964 Defined locations of parser files in config.h instead of Makefile.
22965
229661999-02-09 Jesse Thilo <jthilo@gnu.org>
22967
22968 * Makefile.am:
22969 Removed inappropriate use of $< macro.
22970
229711999-02-05 Jesse Thilo <jthilo@gnu.org>
22972
22973 * po/Makefile.in.in, po/POTFILES.in:
22974 Add `po' directory skeleton.
22975
229761999-01-27 Jesse Thilo <jthilo@gnu.org>
22977
22978 * README: Document help-bison list.
22979
22980 * configure.in: Add check for mkstemp().
22981
229821999-01-20 Jesse Thilo <jthilo@gnu.org>
22983
22984 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
22985 Hush a few compiler warnings.
22986
22987 * src/files.c:
22988 Add tryclose(), which verifies that fclose was successful.
22989 Hush a couple of compiler warnings.
22990
229911999-01-20 Jesse Thilo <jthilo@gnu.org>
22992
22993 * Makefile.am, OChangeLog:
22994 ChangeLog is now automatically generated. Include the old version as
22995 OChangeLog.
22996
229971999-01-14 Jesse Thilo <jthilo@gnu.org>
22998
22999 * 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:
23000 Update FSF address.
23001
230021999-01-14 Jesse Thilo <jthilo@gnu.org>
23003
23004 * doc/bison.texinfo: Fix formatting glitch.
23005
23006 * doc/bison.texinfo: Update FSF address.
23007
230081999-01-14 Jesse Thilo <jthilo@gnu.org>
23009
23010 * acconfig.h: Update FSF address.
23011
230121999-01-08 Jesse Thilo <jthilo@gnu.org>
23013
23014 * src/system.h:
23015 Don't define PACKAGE here, since config.h defines it.
23016
230171998-12-30 Jesse Thilo <jthilo@gnu.org>
23018
23019 * src/reader.c: Update copyright date.
23020
23021 * src/main.c:
23022 Ditch sprintf to statically-sized buffers in fatal/warn functions in
23023 favor of output directly to stderr (avoids buffer overruns).
23024
23025 * src/reader.c: Some checks for premature EOF.
23026
23027 * 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:
23028 Use prototypes if the compiler understands them.
23029
23030 * src/files.c: Honor TMPDIR on Unix hosts.
23031 Use prototypes if the compiler understands them.
23032
23033 * src/reader.c:
23034 Fix a couple of buffer overrun bugs.
23035 Use prototypes if the compiler understands them.
23036
23037 * src/system.h: Include unistd.h and ctype.h.
23038 Use #ifdef instead of #if for NLS symbols.
23039
230401998-12-30 Jesse Thilo <jthilo@gnu.org>
23041
23042 * doc/bison.texinfo:
23043 Delete comment "consider using @set for edition number, etc..." since
23044 we now are doing so.
23045
230461998-12-30 Jesse Thilo <jthilo@gnu.org>
23047
23048 * configure.in:
23049 Use prototypes if the compiler understands them.
23050
23051 * NEWS: Document 1.26 highlights.
23052
23053 * Makefile.am: Require Automake 1.3 or later.
23054
23055 * acconfig.h:
23056 Use prototypes if the compiler understands them.
23057
230581998-12-29 Jesse Thilo <jthilo@gnu.org>
23059
23060 * src/version.c:
23061 Use VERSION symbol from automake for version number.
23062
230631998-12-29 Jesse Thilo <jthilo@gnu.org>
23064
23065 * acconfig.h, configure.in, version.cin:
23066 Use VERSION symbol from automake for version number.
23067
230681998-11-28 Jesse Thilo <jthilo@gnu.org>
23069
23070 * Makefile.am:
23071 Distribute original version of simple parser (bison.s1), not built
23072 version (bison.simple).
23073
230741998-11-28 Jesse Thilo <jthilo@gnu.org>
23075
23076 * doc/bison.texinfo: Add info dir entry.
23077
23078 * doc/bison.texinfo:
23079 Let automake put version number into documentation.
23080
230811998-11-26 Jesse Thilo <jthilo@gnu.org>
23082
23083 * src/bison.cld, src/build.com, src/vmshlp.mar:
23084 Add non-RCS files from /gd/gnu/bison.
23085
230861998-11-26 Jesse Thilo <jthilo@gnu.org>
23087
23088 * doc/bison.1:
23089 Document the BISON_HAIRY and BISON_SIMPLE variables.
23090
230911998-11-25 Jesse Thilo <jthilo@gnu.org>
23092
23093 * src/version.c: Build version.c automatically.
23094
23095 * src/reader.c:
23096 Fix token numbering (used to start at 258, not 257).
23097
23098 * src/system.h: Include config.h.
23099
23100 * src/getargs.c: Update bug report address.
23101
23102 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
23103 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
23104
231051998-11-25 Jesse Thilo <jthilo@gnu.org>
23106
23107 * Makefile.am:
23108 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
23109
23110 * configure.in, version.cin:
23111 Build version.c automatically.
23112
23113 * AUTHORS: Add AUTHORS file.
23114
23115 * README: Update bug report address.
23116
23117 * bison.simple:
23118 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
23119
23120 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
23121 Add automake stuff.
23122
231231998-11-25 Jesse Thilo <jthilo@gnu.org>
23124
23125 * doc/bison.texinfo: Clean up some formatting.
23126
231271998-05-05 Richard Stallman <rms@gnu.org>
23128
23129 * doc/bison.texinfo:
23130 Explain better why to make a pure parser.
23131
231321998-01-05 Richard Stallman <rms@gnu.org>
23133
23134 * src/files.c (openfiles):
23135 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
23136 find a temporary directory, if possible. Do not unlink files while
23137 they are open.
23138
231391997-08-25 Richard Stallman <rms@gnu.org>
23140
23141 * src/reader.c (stack_offset;):
23142 Change some warni to warns.
23143
23144 * src/lex.c (literalchar): Use warns, not warni.
23145
231461997-06-28 Richard Stallman <rms@gnu.org>
23147
23148 * src/bison.s1: Add a Bison version comment.
23149
23150 * src/main.c (fatal, warn, berror):
23151 Use program_name.
23152
231531997-06-28 Richard Stallman <rms@gnu.org>
23154
23155 * Makefile.in (bison_version): New variable.
23156 (dist): Use that variable.
23157 (bison.s1): Substitute the Bison version into bison.simple.
23158
23159 * bison.simple: Add a Bison version comment.
23160
231611997-06-18 Richard Stallman <rms@gnu.org>
23162
23163 * src/main.c (fatal, warn, berror):
23164 Make error messages standard.
23165 (toomany): Improve error message text.
23166
23167 * 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:
23168 new.h renamed to alloc.h.
23169
231701997-06-18 Richard Stallman <rms@gnu.org>
23171
23172 * Makefile.in: new.h renamed to alloc.h.
23173
231741997-05-24 Richard Stallman <rms@gnu.org>
23175
23176 * src/lex.c (literalchar):
23177 Fix the code for escaping \, " and '.
23178
23179 (lex): Avoid trouble when there are many chars
23180 to discard in a char literal with just several chars in it.
23181
231821997-05-17 Richard Stallman <rms@gnu.org>
23183
23184 * src/bison.s1:
23185 Use malloc, if using alloca is troublesome.
23186 (YYSTACK_USE_ALLOCA): New flag macro.
23187 Define it for some systems and compilers.
23188 (YYSTACK_ALLOC): New macro.
23189 (yyparse): Use YYSTACK_ALLOC to allocate stack.
23190 If it was malloc'd, free it.
23191
231921997-05-17 Richard Stallman <rms@gnu.org>
23193
23194 * bison.simple:
23195 Use malloc, if using alloca is troublesome.
23196 (YYSTACK_USE_ALLOCA): New flag macro.
23197 Define it for some systems and compilers.
23198 (YYSTACK_ALLOC): New macro.
23199 (yyparse): Use YYSTACK_ALLOC to allocate stack.
23200 If it was malloc'd, free it.
23201
232021997-04-23 Richard Stallman <rms@gnu.org>
23203
23204 * src/bison.s1:
23205 (alloca) [__hpux]: Always define as __builtin_alloca.
23206
232071997-04-23 Richard Stallman <rms@gnu.org>
23208
23209 * bison.simple:
23210 (alloca) [__hpux]: Always define as __builtin_alloca.
23211
232121997-04-22 Richard Stallman <rms@gnu.org>
23213
23214 * src/bison.s1:
23215 [__hpux]: Include alloca.h (right for HPUX 10)
23216 instead of declaring alloca (right for HPUX 9).
23217
23218 * src/bison.s1 (__yy_memcpy):
23219 Declare arg `count' as unsigned int.
23220 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
23221
232221997-04-22 Richard Stallman <rms@gnu.org>
23223
23224 * bison.simple:
23225 [__hpux]: Include alloca.h (right for HPUX 10)
23226 instead of declaring alloca (right for HPUX 9).
23227
23228 * bison.simple (__yy_memcpy):
23229 Declare arg `count' as unsigned int.
23230 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
23231
232321997-01-03 Richard Stallman <rms@gnu.org>
23233
23234 * src/allocate.c: [__STDC__ or _MSC_VER]:
23235 Declare calloc and realloc to return void *.
23236
232371997-01-02 Richard Stallman <rms@gnu.org>
23238
23239 * src/system.h:
23240 [_MSC_VER]: Include stdlib.h and process.h.
23241 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
23242
23243 * src/main.c (main): Return FAILURE as a value.
23244 (printable_version): Declare arg as int, not char.
23245
232461997-01-02 Richard Stallman <rms@gnu.org>
23247
23248 * Makefile.in (dist):
23249 Explicitly check for symlinks, and copy them.
23250
232511996-12-19 Richard Stallman <rms@gnu.org>
23252
23253 * src/files.c:
23254 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
23255
232561996-12-18 Paul Eggert <eggert@gnu.org>
23257
23258 * src/bison.s1 (yyparse):
23259 If __GNUC__ and YYPARSE_PARAM are both defined,
23260 declare yyparse to have a void * argument.
23261
232621996-12-18 Paul Eggert <eggert@gnu.org>
23263
23264 * bison.simple (yyparse):
23265 If __GNUC__ and YYPARSE_PARAM are both defined,
23266 declare yyparse to have a void * argument.
23267
232681996-12-17 Richard Stallman <rms@gnu.org>
23269
23270 * src/reduce.c (nbits): Add some casts.
23271
232721996-08-12 Richard Stallman <rms@gnu.org>
23273
23274 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
23275
232761996-08-12 Richard Stallman <rms@gnu.org>
23277
23278 * bison.simple: Test _MSDOS as well as _MSDOS_.
23279
232801996-07-31 Richard Stallman <rms@gnu.org>
23281
23282 * src/bison.s1:
23283 [__sun && __i386]: Include alloca.h.
23284
232851996-07-31 Richard Stallman <rms@gnu.org>
23286
23287 * bison.simple:
23288 [__sun && __i386]: Include alloca.h.
23289
232901996-07-30 Richard Stallman <rms@gnu.org>
23291
23292 * src/bison.s1: Comment change.
23293
23294 * src/bison.s1: Test _MSDOS_, not MSDOS.
23295
232961996-07-30 Richard Stallman <rms@gnu.org>
23297
23298 * bison.simple: Comment change.
23299
23300 * bison.simple: Test _MSDOS_, not MSDOS.
23301
233021996-06-01 Richard Stallman <rms@gnu.org>
23303
23304 * 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:
23305 Insert `_' macro around many string constants.
23306
23307 * src/main.c:
23308 Insert `_' macro around many string constants.
23309
23310 (main): Call setlocale, bindtextdomain and textdomain.
23311
23312 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
23313 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
23314 [ENABLE_NLS]: Include libintl.h.
23315 [ENABLE_NLS] (gettext): Define.
23316 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
23317 (N_, PACKAGE, LOCALEDIR): New macros.
23318
233191996-06-01 Richard Stallman <rms@gnu.org>
23320
23321 * POTFILES.in: New file.
23322
23323 * Makefile.in (allocate.o):
23324 Define target explicitly.
23325
23326 * Makefile.in (CFLAGS): Set to @CFLAGS@.
23327 (LDFLAGS): Set to @LDFLAGS@.
23328 (configure): Run autoconf only if preceding `cd' succeeds.
23329 (bison.s1): Redirect output to temporary file then move the
23330 temporary to the target, rather than redirecting directly to bison.s1.
23331 (clean): Remove config.status and config.log.
23332 (distclean): Don't remove config.status here.
23333
233341996-05-12 Richard Stallman <rms@gnu.org>
23335
23336 * src/bison.s1:
23337 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
23338
233391996-05-12 Richard Stallman <rms@gnu.org>
23340
23341 * bison.simple:
23342 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
23343
233441996-05-11 Richard Stallman <rms@gnu.org>
23345
23346 * src/bison.s1 (__yy_memcpy):
23347 Really reorder the args, as was supposedly done on Feb 14 1995.
23348 (yyparse): Calls changed accordingly.
23349
233501996-05-11 Richard Stallman <rms@gnu.org>
23351
23352 * Makefile.in (dist): Don't use $(srcdir).
23353
23354 * bison.simple (__yy_memcpy):
23355 Really reorder the args, as was supposedly done on Feb 14 1995.
23356 (yyparse): Calls changed accordingly.
23357
233581996-01-27 Richard Stallman <rms@gnu.org>
23359
23360 * src/output.c (output_rule_data):
23361 Test YYERROR_VERBOSE in the conditional
23362 around the definition of ttyname.
23363
233641995-12-29 Richard Stallman <rms@gnu.org>
23365
23366 * src/bison.s1:
23367 Fix line numbers in #line commands.
23368
233691995-12-29 Richard Stallman <rms@gnu.org>
23370
23371 * bison.simple:
23372 Fix line numbers in #line commands.
23373
233741995-12-27 Richard Stallman <rms@gnu.org>
23375
23376 * src/bison.s1 (YYPARSE_PARAM_DECL):
23377 In C++, make it always null.
23378 (YYPARSE_PARAM_ARG): New macro.
23379 (yyparse): Use YYPARSE_PARAM_ARG.
23380
233811995-12-27 Richard Stallman <rms@gnu.org>
23382
23383 * bison.simple (YYPARSE_PARAM_DECL):
23384 In C++, make it always null.
23385 (YYPARSE_PARAM_ARG): New macro.
23386 (yyparse): Use YYPARSE_PARAM_ARG.
23387
233881995-11-29 Richard Stallman <rms@gnu.org>
23389
23390 * doc/bison.texinfo:
23391 Describe literal string tokens, %raw, %no_lines, %token_table.
23392
233931995-11-29 Daniel Hagerty <hag@gnu.org>
23394
23395 * doc/bison.texinfo: Fixed update date
23396
233971995-10-16 Richard Stallman <rms@gnu.org>
23398
23399 * src/version.c: Version 1.25.
23400
234011995-10-16 Richard Stallman <rms@gnu.org>
23402
23403 * NEWS: *** empty log message ***
23404
234051995-10-16 Richard Stallman <rms@gnu.org>
23406
23407 * doc/bison.1, doc/bison.rnh:
23408 Add new options.
23409
234101995-10-15 Richard Stallman <rms@gnu.org>
23411
23412 * src/vmsgetargs.c, src/getargs.c:
23413 Added -n, -k, and -raw switches.
23414 (noparserflag, toknumflag, rawtoknumflag): New variables.
23415
23416 * src/symtab.h (SALIAS):
23417 New #define for adding aliases to %token.
23418 (struct bucket): Added `alias' field.
23419
23420 * src/reduce.c (reduce_grammar):
23421 Revise error message.
23422 (print_notices): Remove final `.' from error message.
23423
23424 * src/reader.c (reader_output_yylsp):
23425 New function.
23426 (readgram): Use `#if 0' around code that accepted %command
23427 inside grammar rules: The documentation doesn't allow it,
23428 and it will fail since the %command processors scan for the next %.
23429 (parse_token_decl): Extended the %token
23430 declaration to allow a multi-character symbol as an alias.
23431 (parse_thong_decl): New function.
23432 (read_declarations): Added %thong declarations.
23433 (read_declarations): Handle NOOP to deal with allowing
23434 % declarations as another means to specify the flags.
23435 (readgram): Allow %prec prior to semantics embedded in a rule.
23436 (skip_to_char, read_declarations, copy_definition)
23437 (parse_token_decl, parse_start_decl, parse_type_decl)
23438 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
23439 (get_type_name, copy_guard, copy_action, readgram)
23440 (get_type, packsymbols): Revised most error messages.
23441 Changed `fatal' to `warnxxx' to avoid aborting for error.
23442 Revised and use multiple warnxxx functions to avoid using VARARGS1.
23443 (read_declarations): Improve the error message for
23444 an invalid character. Do not abort.
23445 (read_declarations, copy_guard, copy_action): Use
23446 printable_version to avoid unprintable characters in printed output.
23447 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
23448 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
23449 Allow the type of a non-terminal can be given
23450 more than once, as long as all specifications give the same type.
23451
23452 * src/output.c:
23453 (output_headers, output_trailers, output, output_gram)
23454 (output_rule_data): Implement noparserflag variable.
23455 Implement toknumflag variable.
23456 (output): Call reader_output_yylsp to output LTYPESTR.
23457
23458 * src/main.c (main):
23459 If reader sees an error, don't process the grammar.
23460 (fatals): Updated to not use VARARGS1.
23461 (printable_version, int_to_string, warn, warni, warns, warnss)
23462 (warnsss): New error reporting functions. Avoid abort for error.
23463
23464 * src/lex.h:
23465 Added THONG and NOOP for alias processing.
23466 Added SETOPT for the new code that allows setting options with %flags.
23467
23468 * src/lex.c:
23469 Include getopt.h. Add some extern decls.
23470 (safegetc): New function to deal with EOF gracefully.
23471 (literalchar); new function to deal with reading \ escapes.
23472 (lex): Use literalchar.
23473 (lex): Implemented "..." tokens.
23474 (literalchar, lex, parse_percent_token): Made tokenbuffer
23475 always contain the token. This includes growing the token
23476 buffer while reading an integer.
23477 (parse_percent_token): Replaced if-else statement with percent_table.
23478 (parse_percent_token): Added % declarations as another
23479 way to specify the flags -n, -l, and -r. Also added hooks for
23480 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
23481 major changes to files.c.
23482 (lex) Retain in the incoming stream a character following
23483 an incorrect '/'.
23484 (skip_white_space, lex): Revised most error messages
23485 and changed fatal to warn to avoid aborting.
23486 (percent_table): Added %thong declarations.
23487
23488 * src/gram.h: Comment changes.
23489
23490 * src/files.c (openfiles, open_extra_files, done):
23491 Add faction flag
23492 and actfile file. Handle noparserflag. Both for -n switch.
23493
23494 * src/conflicts.c (resolve_sr_conflict):
23495 Remove use of alloca.
23496
234971995-06-01 Jim Meyering <meyering@gnu.org>
23498
23499 * doc/bison.texinfo: *** empty log message ***
23500
235011995-05-06 Richard Stallman <rms@gnu.org>
23502
23503 * src/bison.s1: Comment change.
23504
235051995-05-06 Richard Stallman <rms@gnu.org>
23506
23507 * bison.simple: Comment change.
23508
235091995-05-03 Richard Stallman <rms@gnu.org>
23510
23511 * src/version.c: Version now 1.24.
23512
23513 * src/bison.s1: Change distribution terms.
23514
23515 * src/version.c: Version now 1.23.
23516
235171995-05-03 Richard Stallman <rms@gnu.org>
23518
23519 * doc/bison.texinfo:
23520 Rewrite "Conditions for Using Bison".
23521 Update version to 1.24.
23522
235231995-05-03 Richard Stallman <rms@gnu.org>
23524
23525 * bison.simple: Change distribution terms.
23526
235271995-02-23 Richard Stallman <rms@gnu.org>
23528
23529 * src/files.c: Test __VMS_POSIX as well as VMS.
23530
235311995-02-14 Jim Meyering <meyering@gnu.org>
23532
23533 * src/bison.s1 (__yy_memcpy):
23534 Renamed from __yy_bcopy to avoid
23535 confusion. Reverse FROM and TO arguments to be consistent with
23536 those of memcpy.
23537
235381995-02-14 Jim Meyering <meyering@gnu.org>
23539
23540 * bison.simple (__yy_memcpy):
23541 Renamed from __yy_bcopy to avoid
23542 confusion. Reverse FROM and TO arguments to be consistent with
23543 those of memcpy.
23544
235451994-11-10 David J. MacKenzie <djm@gnu.org>
23546
23547 * NEWS: reformat
23548
23549 * NEWS: New file.
23550
23551 * Makefile.in (DISTFILES): Include NEWS.
23552
23553 * Makefile.in (DISTFILES):
23554 Include install-sh, not install.sh.
23555
23556 * configure.in: Update to Autoconf v2 macro names.
23557
235581994-10-05 David J. MacKenzie <djm@gnu.org>
23559
23560 * Makefile.in: fix typo
23561
23562 * Makefile.in (prefix, exec_prefix):
23563 Let configure set them.
23564
235651994-09-28 David J. MacKenzie <djm@gnu.org>
23566
23567 * Makefile.in: Set datadir to $(prefix)/share.
23568
235691994-09-15 Richard Stallman <rms@gnu.org>
23570
23571 * src/bison.s1:
23572 Update copyright notice and GPL version.
23573
235741994-09-15 Richard Stallman <rms@gnu.org>
23575
23576 * bison.simple:
23577 Update copyright notice and GPL version.
23578
235791994-07-12 Richard Stallman <rms@gnu.org>
23580
23581 * src/reduce.c, src/reader.c:
23582 entered into RCS
23583
235841994-05-05 David J. MacKenzie <djm@gnu.org>
23585
23586 * Makefile.in: entered into RCS
23587
235881994-03-26 Richard Stallman <rms@gnu.org>
23589
23590 * src/bison.s1: entered into RCS
23591
235921994-03-26 Richard Stallman <rms@gnu.org>
23593
23594 * bison.simple: entered into RCS
23595
235961994-03-25 Richard Stallman <rms@gnu.org>
23597
23598 * src/main.c: entered into RCS
23599
236001994-03-24 Richard Stallman <rms@gnu.org>
23601
23602 * src/conflicts.c: entered into RCS
23603
236041994-01-02 Richard Stallman <rms@gnu.org>
23605
23606 * Makefile.in: *** empty log message ***
23607
236081993-11-21 Richard Stallman <rms@gnu.org>
23609
23610 * src/bison.s1: *** empty log message ***
23611
236121993-11-21 Richard Stallman <rms@gnu.org>
23613
23614 * doc/bison.texinfo: entered into RCS
23615
23616 * doc/bison.texinfo: *** empty log message ***
23617
236181993-11-21 Richard Stallman <rms@gnu.org>
23619
23620 * bison.simple: *** empty log message ***
23621
236221993-10-25 David J. MacKenzie <djm@gnu.org>
23623
23624 * doc/bison.texinfo: *** empty log message ***
23625
236261993-10-19 Richard Stallman <rms@gnu.org>
23627
23628 * src/bison.s1: *** empty log message ***
23629
236301993-10-19 Richard Stallman <rms@gnu.org>
23631
23632 * bison.simple: *** empty log message ***
23633
236341993-10-14 Richard Stallman <rms@gnu.org>
23635
23636 * src/bison.s1: *** empty log message ***
23637
236381993-10-14 Richard Stallman <rms@gnu.org>
23639
23640 * bison.simple: *** empty log message ***
23641
236421993-09-14 David J. MacKenzie <djm@gnu.org>
23643
23644 * doc/bison.texinfo: *** empty log message ***
23645
236461993-09-13 Noah Friedman <friedman@gnu.org>
23647
23648 * Makefile.in: *** empty log message ***
23649
236501993-09-10 Richard Stallman <rms@gnu.org>
23651
23652 * src/conflicts.c: *** empty log message ***
23653
23654 * src/system.h: entered into RCS
23655
236561993-09-10 Richard Stallman <rms@gnu.org>
23657
23658 * doc/bison.1: entered into RCS
23659
236601993-09-06 Noah Friedman <friedman@gnu.org>
23661
23662 * src/version.c: entered into RCS
23663
236641993-09-06 Noah Friedman <friedman@gnu.org>
23665
23666 * Makefile.in: *** empty log message ***
23667
236681993-07-30 David J. MacKenzie <djm@gnu.org>
23669
23670 * Makefile.in: *** empty log message ***
23671
236721993-07-24 Richard Stallman <rms@gnu.org>
23673
23674 * src/bison.s1: *** empty log message ***
23675
236761993-07-24 Richard Stallman <rms@gnu.org>
23677
23678 * bison.simple: *** empty log message ***
23679
236801993-07-08 David J. MacKenzie <djm@gnu.org>
23681
23682 * Makefile.in: *** empty log message ***
23683
236841993-07-04 Richard Stallman <rms@gnu.org>
23685
23686 * src/bison.s1: *** empty log message ***
23687
236881993-07-04 Richard Stallman <rms@gnu.org>
23689
23690 * bison.simple: *** empty log message ***
23691
236921993-06-26 David J. MacKenzie <djm@gnu.org>
23693
23694 * src/getargs.c: entered into RCS
23695
236961993-06-26 David J. MacKenzie <djm@gnu.org>
23697
23698 * doc/bison.texinfo: *** empty log message ***
23699
23700 * doc/bison.1: New file.
23701
237021993-06-25 Richard Stallman <rms@gnu.org>
23703
23704 * src/getargs.c: New file.
23705
237061993-06-16 Richard Stallman <rms@gnu.org>
23707
23708 * src/bison.s1: *** empty log message ***
23709
237101993-06-16 Richard Stallman <rms@gnu.org>
23711
23712 * bison.simple: *** empty log message ***
23713
237141993-06-03 Richard Stallman <rms@gnu.org>
23715
23716 * src/bison.s1: New file.
23717
237181993-06-03 Richard Stallman <rms@gnu.org>
23719
23720 * doc/bison.texinfo: *** empty log message ***
23721
237221993-06-03 Richard Stallman <rms@gnu.org>
23723
23724 * bison.simple: New file.
23725
237261993-05-19 Richard Stallman <rms@gnu.org>
23727
23728 * doc/bison.texinfo: New file.
23729
237301993-05-07 Noah Friedman <friedman@gnu.org>
23731
23732 * Makefile.in: *** empty log message ***
23733
237341993-04-28 Noah Friedman <friedman@gnu.org>
23735
23736 * src/reader.c: *** empty log message ***
23737
237381993-04-23 Noah Friedman <friedman@gnu.org>
23739
23740 * src/alloc.h: entered into RCS
23741
237421993-04-20 David J. MacKenzie <djm@gnu.org>
23743
23744 * src/version.c: *** empty log message ***
23745
23746 * src/files.c, src/allocate.c:
23747 entered into RCS
23748
23749 * src/reader.c: *** empty log message ***
23750
23751 * src/lex.c: entered into RCS
23752
23753 * src/conflicts.c: New file.
23754
23755 * src/symtab.c: entered into RCS
23756
23757 * src/alloc.h: New file.
23758
23759 * src/LR0.c: entered into RCS
23760
237611993-04-18 Noah Friedman <friedman@gnu.org>
23762
23763 * src/reader.c: New file.
23764
23765 * src/version.c: *** empty log message ***
23766
237671993-04-18 Noah Friedman <friedman@gnu.org>
23768
23769 * Makefile.in: *** empty log message ***
23770
237711993-04-17 Noah Friedman <friedman@gnu.org>
23772
23773 * Makefile.in: *** empty log message ***
23774
237751993-04-15 Richard Stallman <rms@gnu.org>
23776
23777 * src/main.c, src/files.c:
23778 New file.
23779
237801993-04-15 Noah Friedman <friedman@gnu.org>
23781
23782 * configure.in: entered into RCS
23783
23784 * configure.in: *** empty log message ***
23785
23786 * configure.in: New file.
23787
237881993-04-14 Richard Stallman <rms@gnu.org>
23789
23790 * Makefile.in: New file.
23791
237921993-04-13 Richard Stallman <rms@gnu.org>
23793
23794 * src/version.c: New file.
23795
237961993-03-25 Richard Stallman <rms@gnu.org>
23797
23798 * src/output.c: entered into RCS
23799
238001992-09-25 Richard Stallman <rms@gnu.org>
23801
23802 * configure.bat: entered into RCS
23803
238041992-06-22 Richard Stallman <rms@gnu.org>
23805
23806 * src/vmsgetargs.c: entered into RCS
23807
238081992-06-22 Richard Stallman <rms@gnu.org>
23809
23810 * doc/bison.rnh: entered into RCS
23811
238121992-04-20 David J. MacKenzie <djm@gnu.org>
23813
23814 * README: entered into RCS
23815
238161992-01-22 Richard Stallman <rms@gnu.org>
23817
23818 * src/machine.h: entered into RCS
23819
238201991-12-21 Richard Stallman <rms@gnu.org>
23821
23822 * src/lalr.c, src/closure.c:
23823 entered into RCS
23824
238251991-12-20 Richard Stallman <rms@gnu.org>
23826
23827 * src/state.h: entered into RCS
23828
238291991-12-18 Richard Stallman <rms@gnu.org>
23830
23831 * src/print.c, src/nullable.c, src/derives.c:
23832 entered into RCS
23833
238341991-11-03 David J. MacKenzie <djm@gnu.org>
23835
23836 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
23837 entered into RCS
23838
238391988-09-09 Richard Stallman <rms@gnu.org>
23840
23841 * src/bison.hairy: entered into RCS
23842
238431987-12-16 Richard Stallman <rms@gnu.org>
23844
23845 * REFERENCES: entered into RCS
dc546b0f 23846
f294a2c2 23847
04098407 23848 -----
f294a2c2 23849
ea0a7676
JD
23850 Copyright (C) 1987-1988, 1991-2011 Free Software Foundation,
23851 Inc.
f294a2c2 23852
04098407
PE
23853 Copying and distribution of this file, with or without
23854 modification, are permitted provided the copyright notice and this
23855 notice are preserved.