]> git.saurik.com Git - bison.git/blob - ChangeLog
parse.lac: implement as %define variable.
[bison.git] / ChangeLog
1 2010-12-11 Joel E. Denny <jdenny@clemson.edu>
2
3 parse.lac: implement as %define variable.
4 LAC = lookahead correction. See discussion at
5 <http://lists.gnu.org/archive/html/bison-patches/2009-09/msg00034.html>.
6 However, one point there must be corrected: because of %nonassoc,
7 LAC is *not* always redundant for lr.type=canonical-lr.
8 * data/yacc.c: Accept values of "none" (default) or "full" for
9 parse.lac. Accept %define parse.lac.es-capacity to specify
10 capacity of LAC's temporary exploratory stack. It defaults to 20
11 and, for now, will not grow dynamically.
12 (b4_lac_flag, b4_lac_if): New m4 macros. Evaluate as true for
13 parse.lac!=none.
14 (YYBACKUP): Invoke YY_LAC_DISCARD.
15 (YY_LAC_ESTABLISH, YY_LAC_DISCARD): New cpp macros that invoke
16 yy_lac and track when it needs to be invoked
17 (yy_lac): New function that, given the current stack, determines
18 whether a token can eventually be shifted. Return status mimics
19 yyparse return status.
20 (yysyntax_error): Change yystate argument to yyssp so stack top
21 can be passed to yy_lac. If LAC is requested, build expected
22 token list by invoking yy_lac for every token instead of just
23 checking the current state for lookaheads. Return 2 if yy_lac
24 exhausts memory.
25 (yyparse, yypush_parse): Use local variable yy_lac_established and
26 cpp macros YY_LAC_ESTABLISH and YY_LAC_DISCARD to implement LAC.
27 Update yysyntax_error invocation. Add yyexhaustedlab code if LAC
28 is requested.
29 * tests/conflicts.at (%nonassoc and eof): Extend to check the
30 effect of each of -Dlr.type=canonical-lr and -Dparse.lac=full.
31 (parse.error=verbose and consistent errors): Likewise.
32 (LAC: %nonassoc requires splitting canonical LR states): New test
33 group demonstrating how LAC can fix canonical LR.
34 * tests/input.at (LAC: Errors for %define): New test group.
35 * tests/regression.at (LAC: Exploratory stack): New test group.
36 (LAC: Memory exhaustion): New test group.
37
38 2010-11-21 Joel E. Denny <jdenny@clemson.edu>
39
40 build: use gnulib's new bootstrap_sync option.
41 Now, whenever we update bison's copy of gnulib, bootstrap will
42 update itself the next time it's run.
43 * bootstrap: Copy from latest gnulib for bootstrap_sync support.
44 * bootstrap.conf (bootstrap_sync): Set to true.
45 * gnulib: Update to latest so bootstrap is in sync now.
46
47 2010-11-07 Joel E. Denny <jdenny@clemson.edu>
48
49 yysyntax_error: fix for consistent error with lookahead.
50 * NEWS (2.5): Document.
51 * data/yacc.c (yysyntax_error): In a verbose syntax error
52 message while in a consistent state with a default action (which
53 must be an error action given that yysyntax_error is being
54 invoked), continue to drop the expected token list, but don't
55 drop the unexpected token unless there actually is no lookahead.
56 Moreover, handle that internally instead of returning 1 to tell
57 the caller to do it. With that meaning of 1 gone, renumber
58 return codes more usefully.
59 (yyparse, yypush_parse): Update yysyntax_error usage. Most
60 importantly, set yytoken to YYEMPTY when there's no lookahead.
61 * data/glr.c (yyreportSyntaxError): As in yacc.c, don't drop the
62 unexpected token unless there actually is no lookahead.
63 * data/lalr1.cc (yy::parser::parse): If there's no lookahead,
64 pass yyempty_ not yyla.type to yysyntax_error_.
65 (yy::parser::yysyntax_error_): Again, don't drop the unexpected
66 token unless there actually is no lookahead.
67 * data/lalr1.java (YYParser::parse): If there's no lookahead,
68 set yytoken to yyempty_ before invoking yysyntax_error.
69 (YYParser::yysyntax_error): Again, don't drop the unexpected
70 token unless there actually is no lookahead.
71 * tests/conflicts.at (parse.error=verbose and consistent
72 errors): Extend test group to further reveal how the previous
73 use of the simple "syntax error" message was too general. Test
74 yacc.c, glr.c, lalr1.cc, and lalr1.java. No longer an expected
75 failure.
76 * tests/java.at (AT_JAVA_COMPILE, AT_JAVA_PARSER_CHECK): Move
77 to...
78 * tests/local.at: ... here.
79 (_AT_BISON_OPTION_PUSHDEFS): Push AT_SKEL_JAVA_IF definition.
80 (AT_BISON_OPTION_POPDEFS): Pop it.
81 (AT_FULL_COMPILE): Extend to handle Java.
82
83 2010-11-07 Joel E. Denny <jdenny@clemson.edu>
84
85 yysyntax_error: more preparation for readability of next patch.
86 There are no behavioral changes here.
87 * data/glr.c (yyreportSyntaxError): Reorganize.
88 * data/lalr1.cc (yy::parser::yysyntax_error_): Reorganize.
89 * tests/conflicts.at (parse.error=verbose and consistent errors):
90 Reorganize.
91
92 2010-11-07 Joel E. Denny <jdenny@clemson.edu>
93
94 yysyntax_error: prepare for readability of next patches.
95 These are purely whitespace changes that result in ugly code
96 but that make the next couple of patches much easier to read.
97 * data/glr.c (yyreportSyntaxError): Reindent.
98 * data/lalr1.cc (yy::parser::yysyntax_error_): Reindent.
99 * data/lalr1.java (YYParser::yysyntax_error): Reindent.
100 * data/yacc.c (yysyntax_error): Reindent.
101
102 2010-10-31 Joel E. Denny <joeldenny@joeldenny.org>
103
104 Fix memory leak.
105 * src/output.c (prepare_rules): Free temporary array.
106
107 2010-10-31 Joel E. Denny <joeldenny@joeldenny.org>
108
109 yysyntax_error: improve invocation readability.
110 * data/yacc.c (yyparse, yypush_parse): For yysyntax_error
111 invocation, get rid of the while loop, which is misleading
112 because there are really at most two iterations.
113
114 2010-10-31 Joel E. Denny <joeldenny@joeldenny.org>
115
116 * ChangeLog: Correct some errors in previous entries.
117
118 2010-10-17 Joel E. Denny <joeldenny@joeldenny.org>
119
120 maint: re-anchor all .gitignore entries.
121 * bootstrap: Copy from gnulib's latest for the fix to
122 automatically anchor entries it constructs.
123 * gnulib: Update to latest just so it has the same bootstrap.
124 * .gitignore, build-aux/.gitignore, doc/.gitignore:
125 * lib/.gitignore, m4/.gitignore, po/.gitignore:
126 * runtime-po/.gitignore: Re-anchor all entries.
127
128 2010-10-08 Paul Eggert <eggert@cs.ucla.edu>
129
130 Fix portability problem on OpenBSD 4.7.
131
132 Jim Meyering reported this in
133 <http://lists.gnu.org/archive/html/bug-bison/2010-10/msg00007.html>.
134 * data/yacc.c: Use EXIT_SUCCESS as a witness for stdlib.h,
135 not _STDLIB_H. EXIT_SUCCESS has been defined by the standard
136 for quite some time.
137 * src/parse-gram.c, src/parse-gram.h: Regenerate.
138 * tests/regression.at: Tamper with the renamed witness.
139
140 Adjust to recent changes to gnulib bootstrap.
141
142 * .cvsignore, build-aux/.cvsignore, doc/.cvsignore, etc/.cvsignore:
143 * examples/calc++/.cvsignore, lib/.cvsignore, m4/.cvsignore:
144 * po/.cvsignore, runtime-po/.cvsignore, src/.cvsignore:
145 * tests/.cvsignore: Remove; I don't use CVS to maintain Bison
146 anymore and don't know of anybody else who does. If someone needs
147 these files, they can resurrect them.
148 * .gitignore, build-aux/.gitignore, doc/.gitignore, lib/.gitignore:
149 * m4/.gitignore, po/.gitignore, runtime-po/.gitignore:
150 Omit leading '/', since bootstrap omits it.
151 Adjust file names to match current contents better.
152 * bootstrap: Sync from gnulib: this contains the new gnulib_mk_hook
153 installed just for us.
154 * bootstrap.conf (excluded_files): Don't exclude codeset.m4,
155 glibc21.m4, inttypes_h.m4, size_max.m4, xsize.m4, as they are now
156 needed somehow. Don't have time to look into why.
157 (gnulib_modules): Change malloc to malloc-gnu. Do we really assume
158 the GNU malloc behavior, where malloc (0) != NULL unless we're
159 out of storage? If not, we can omit malloc-gnu; but for now I left
160 it in to be safe.
161 (vc_ignore): Remove.
162 (gnulib_mk_hook): New function.
163 * README-hacking: Renamed from HACKING, since gnulib bootstrap now
164 uses that convention.
165
166 2010-09-09 Paul Hilfinger <hilfinger@cs.berkeley.edu>
167
168 * data/glr.c (yySymbol): Define as int to avoid compiler warnings about
169 possible change of value.
170
171 2010-09-08 Paul Hilfinger <hilfinger@cs.berkeley.edu>
172
173 * data/glr.c (yy_reduce_print): Change yyrhsVals to yyvsp to remove
174 compiler errors when using %debug.
175 Add declaration of yylow when locations in use to avoid compilation
176 error.
177 (yyglrReduce): Conditionalize message "Parse ... rejected by rule..."
178 on whether we are in split mode, for consistency with behavior of
179 non-GLR parsing.
180
181 2010-09-01 Akim Demaille <demaille@gostai.com>
182
183 Address GCC warnings about shadowed local variables (yyflag).
184 * data/glr.c (YYCHK): Rename yyflag as yychk_flag.
185 (yyprocessOneStack): Reduce the scope of yyaction, yyconflicts,
186 yyrule, and yyflag.
187
188 2010-08-05 Joel E. Denny <joeldenny@joeldenny.org>
189
190 Version 2.4.3.
191 * NEWS (2.4.3): Set date.
192
193 2010-08-04 Joel E. Denny <joeldenny@joeldenny.org>
194
195 maint: add gettext version to release announcements.
196 Suggested by Paul Hilfinger at
197 <http://lists.gnu.org/archive/html/bison-patches/2010-07/msg00019.html>
198 <http://lists.gnu.org/archive/html/bison-patches/2010-08/msg00002.html>.
199 * cfg.mk (bootstrap-tools): Add gettext.
200
201 2010-08-04 Joel E. Denny <joeldenny@joeldenny.org>
202
203 doc: fix -W and %expect documentation some.
204 * NEWS (2.4.3): Mention that there are documentation fixes.
205 * doc/bison.texinfo (Expect Decl): Make it clear that %expect
206 turns conflicts into errors not warnings.
207 (Shift/Reduce): Likewise.
208 (Bison Options): Don't mention -Wsyntax. It doesn't exist.
209
210 2010-08-01 Joel E. Denny <joeldenny@joeldenny.org>
211
212 -Werror: fix for rules useless in parser after conflicts.
213 * NEWS (2.4.3): Document fix.
214 * src/complain.c (error_message): Extend to handle incomplete
215 error messages so warn and warn_at can be used in more cases.
216 * src/gram.c (grammar_rules_useless_report): Use warn_at so that
217 -Werror is always obeyed.
218 * src/reduce.c (reduce_print): Use warn so that the "warnings
219 being treated as errors" message is printed consistently before
220 the first warning message. This makes testing easier.
221 * tests/local.at (AT_BISON_WERROR_MSG): New macro.
222 (AT_BISON_CHECK_NO_XML): Extend to check -Werror and
223 --warnings=error when warnings appear in bison's stderr.
224
225 2010-07-29 Joel E. Denny <joeldenny@joeldenny.org>
226
227 maint: enable gnits only at stable releases.
228 * configure.ac (AM_INIT_AUTOMAKE): Underscore or dash in a
229 version string should disable gnits. Explain in comments.
230
231 2010-07-28 Joel E. Denny <joeldenny@joeldenny.org>
232
233 i18n: update.
234 * po/POTFILES.in: Add src/graphviz.c.
235
236 2010-07-28 Joel E. Denny <joeldenny@joeldenny.org>
237
238 i18n: fix for gnulib.
239 * po/POTFILES.in: Add remaining gnulib files that have
240 translatable strings.
241
242 2010-07-25 Joel E. Denny <joeldenny@joeldenny.org>
243
244 build: fix our adjustments for gnulib files in lib.
245 * configure.ac: For prepending lib/ to the values of config
246 variables, fix detection of empty values. Also, due to recent
247 gnulib changes, add LIBUNISTRING_UNITYPES_H and
248 LIBUNISTRING_UNIWIDTH_H to the list of those variables.
249
250 2010-07-25 Joel E. Denny <joeldenny@joeldenny.org>
251
252 maint: use announce-gen's new --mail-headers.
253 * HACKING (Announce): Update instructions.
254 * cfg.mk (announcement_Cc_): Define.
255 * configure.ac (AM_GNU_GETTEXT_VERSION): Update to 0.18 as
256 required by latest gnulib.
257 * gnulib: Update to latest.
258
259 2010-07-24 Joel E. Denny <joeldenny@joeldenny.org>
260
261 tests: handle Valgrind that complains about >&-.
262 * tests/output.at (AT_CHECK_OUTPUT): Extend to accept pre-tests.
263 (Output files: -dv >&-): Skip test group if running
264 maintainer-check-valgrind.
265
266 2010-07-23 Paul Hilfinger <hilfingr@EECS.Berkeley.EDU>
267
268 * NEWS: Describe new semantic-predicate feature.
269 * data/c.m4 (b4_predicate_case): New definition.
270 * data/java.m4 (b4_predicate_case): New definition.
271 * data/glr.c (yyimmediate): Add definition.
272 (yydoAction): Remove comment, now obsolete.
273 Do YY_REDUCE_PRINT here.
274 (yyglrReduce): Alter comment to indicate that semantic values
275 need not be deferred.
276 Remove YY_REDUCE_PRINT from here; done in yydoAction.
277 (yyprocessOneStack): Pass immediate flag.
278 Delete stacks rejected by predicates in newly split-off parsers.
279 Change handling of yyerr so that only current stack gets deleted
280 when semantic predicate fails.
281 (yyfillin): Don't crash if a semantic value is unresolved (as may
282 happen in predicate rules).
283 Copy lr state as well in debugging mode.
284 Update comment on setting of yysval to include yyloc as well.
285 (yy_reduce_print): Add yynormal argument. Perform fillin properly.
286 Report unresolved RHS values.
287 (yyimmediate): New table.
288 * src/gram.h (struct rule): Add is_predicate field.
289 * src/output.c (user_actions_output): Use b4_predicate_case for
290 predicates.
291 (prepare_symbols): Output yyimmediate.
292 * src/scan-gram.l: Add %? token, SC_PREDICATE state.
293 * src/scan-code.l (code_props_rule_action_init): Add is_predicate
294 argument.
295 * src/scan-code.h (struct code_props): Add is_predicate field.
296 (code_props_rule_action_init): New interface.
297 * src/parse-gram.y (%?{...}): New token.
298 (rhs): Add %?{...} rule.
299 * src/parse-gram.c: Regenerate.
300 * src/parse-gram.h: Regenerate.
301 * src/reader.c (grammar_current_rule_action_append): Add
302 immediate argument.
303 (grammar_midrule_action): Use new interface for
304 code_props_rule_action_init.
305 (grammar_current_rule_action_append): Ditto.
306 (packgram): Transfer is_predicate value.
307 * src/reader.h (grammar_current_rule_action_append): New interface.
308 * doc/bison.texinfo: Document semantic predicates (%?).
309
310 * data/glr.c (yylhsNonterm, yyisDefaultedState,yyDefaultAction)
311 (yygetLRActions,yynewGLRStackItem,yyaddDeferredAction,yyinitStateSet)
312 (yyinitGLRStack,yyexpandGLRStack,yyupdateSplit,yymarkStackDeleted)
313 (yyundeleteLastStack,yyglrShift,yyglrShiftDefer,yydoAction,yyglrReduce)
314 (yyidenticalOptions,yymergeOptionSets,yyresolveStates,yyresolveAction)
315 (yyresolveLocations,yyresolveValue,yyreducePrint): Update parameter
316 names in comments and mention all parameters.
317 (struct yyGLRState): Fix description of yyposn field.
318 (yyresolveLocations): Correct comment so as not to imply action when
319 yyn1==0.
320
321 2010-06-17 Paul Eggert <eggert@cs.ucla.edu>
322
323 Update from GFDL GFDL 1.2 to 1.3.
324 * doc/bison.texinfo: Update GFDL version number.
325 * doc/fdl.texi: Update to version 1.3, taken from:
326 http://www.gnu.org/licenses/fdl.texi
327
328 Do not use date ranges in copyright notices.
329 See http://www.gnu.org/prep/maintain/maintain.html#Copyright-Notices
330
331 * HACKING, Makefile.am, NEWS, PACKAGING, README, README-alpha:
332 * TODO, bootstrap, bootstrap.conf:
333 * build-aux/update-b4-copyright, cfg.mk, configure.ac:
334 * data/README, data/bison.m4, data/c++-skel.m4, data/c++.m4:
335 * data/c-skel.m4, data/c.m4, data/glr.c, data/glr.cc:
336 * data/java-skel.m4, data/java.m4, data/lalr1.cc:
337 * data/lalr1.java, data/local.mk, data/location.cc:
338 * data/stack.hh, data/variant.hh, data/xslt/bison.xsl:
339 * data/xslt/xml2dot.xsl, data/xslt/xml2text.xsl:
340 * data/xslt/xml2xhtml.xsl, data/yacc.c, djgpp/Makefile.maint:
341 * djgpp/README.in, djgpp/config.bat, djgpp/config.sed:
342 * djgpp/config.site, djgpp/config_h.sed, djgpp/djunpack.bat:
343 * djgpp/local.mk, djgpp/subpipe.c, djgpp/subpipe.h:
344 * djgpp/testsuite.sed, doc/bison.texinfo, doc/local.mk:
345 * doc/refcard.tex, etc/README, etc/bench.pl.in, etc/local.mk:
346 * examples/calc++/Makefile.am, examples/extexi:
347 * examples/local.mk, lib/abitset.c, lib/abitset.h:
348 * lib/bbitset.h, lib/bitset.c, lib/bitset.h:
349 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
350 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
351 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
352 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
353 * lib/libiberty.h, lib/local.mk, lib/main.c, lib/timevar.c:
354 * lib/timevar.def, lib/timevar.h, lib/vbitset.c:
355 * lib/vbitset.h, lib/yyerror.c, m4/bison-i18n.m4:
356 * m4/c-working.m4, m4/cxx.m4, m4/subpipe.m4, m4/timevar.m4:
357 * src/AnnotationList.c, src/AnnotationList.h:
358 * src/InadequacyList.c, src/InadequacyList.h, src/LR0.c:
359 * src/LR0.h, src/Sbitset.c, src/Sbitset.h, src/assoc.c:
360 * src/assoc.h, src/closure.c, src/closure.h, src/complain.c:
361 * src/complain.h, src/conflicts.c, src/conflicts.h:
362 * src/derives.c, src/derives.h, src/files.c, src/files.h:
363 * src/flex-scanner.h, src/getargs.c, src/getargs.h:
364 * src/gram.c, src/gram.h, src/graphviz.c, src/ielr.c:
365 * src/ielr.h, src/lalr.c, src/lalr.h, src/local.mk:
366 * src/location.c, src/location.h, src/main.c:
367 * src/muscle-tab.c, src/muscle-tab.h, src/named-ref.c:
368 * src/named-ref.h, src/nullable.c, src/nullable.h:
369 * src/output.c, src/output.h, src/parse-gram.y:
370 * src/print-xml.c, src/print-xml.h, src/print.c, src/print.h:
371 * src/print_graph.c, src/print_graph.h, src/reader.c:
372 * src/reader.h, src/reduce.c, src/reduce.h, src/relation.c:
373 * src/relation.h, src/scan-code.h, src/scan-code.l:
374 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
375 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
376 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
377 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
378 * tests/actions.at, tests/atlocal.in, tests/c++.at:
379 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
380 * tests/existing.at, tests/glr-regression.at:
381 * tests/headers.at, tests/input.at, tests/java.at:
382 * tests/local.at, tests/local.mk, tests/named-refs.at:
383 * tests/output.at, tests/push.at, tests/reduce.at:
384 * tests/regression.at, tests/sets.at, tests/skeletons.at:
385 * tests/synclines.at, tests/testsuite.at, tests/torture.at:
386 Don't use date ranges in copyright notices.
387
388 2010-05-11 Akim Demaille <demaille@gostai.com>
389
390 lalrl1.cc: give a chance to user defined YYLLOC_DEFAULT.
391 * data/lalr1.cc (YYLLOC_DEFAULT): Move its definition from the
392 header file to the implementation file, after the user %code
393 sections.
394 * NEWS (2.5): Document this.
395
396 2010-05-11 Akim Demaille <demaille@gostai.com>
397
398 doc: please Emacs.
399 * doc/bison.texinfo (Local Variables): Move this after the
400 LocalWords, since the latter are looked for in the whole document,
401 while the former are looked for only at its end.
402 Require american spell checking.
403
404 2010-05-10 Akim Demaille <demaille@gostai.com>
405
406 doc: fix lalr1.cc documentation.
407 * doc/bison.texinfo (C++ Scanner Interface): Fix yylex signature.
408 (C++ Bison Interface): Fix lalr1.cc skeleton name.
409 (C++ Parser Interface): Fix semantic_type and location_type names.
410 Document yy::parser::token.
411 Reported by Jerry Quinn.
412
413 2010-05-10 Akim Demaille <demaille@gostai.com>
414
415 c++: use YYRHSLOC.
416 * data/lalr1.cc (YYRHSLOC): New.
417 (YYLLOC_DEFAULT): Use it.
418 * data/glr.cc: If location_type was user defined, do not include
419 location.hh, and do not produce location.hh and position.hh.
420 * tests/calc.at (YYLLOC_DEFAULT): Use YYRHSLOC.
421 Check that glr.cc supports user defined location_type.
422 * NEWS: Document this.
423
424 2010-05-07 Akim Demaille <demaille@gostai.com>
425
426 doc: fix typo.
427 * tests/synclines.at: here.
428
429 2010-05-04 Akim Demaille <demaille@gostai.com>
430
431 tests: enhance AT_SYNCLINES_COMPILE.
432 * tests/synclines.at (AT_SYNCLINES_COMPILE): More distcc patterns.
433 (AT_TEST_SYNCLINE): Remove GCC 4.5 protection which is already
434 taken care of in AT_SYNCLINES_COMPILE.
435
436 2010-05-04 Akim Demaille <demaille@gostai.com>
437
438 lalr1.cc: don't generate location.hh when location_type is defined
439 * data/bison.m4 (b4_percent_define_get): Accept a default value.
440 * data/c++.m4: Do not provide a default value for the %define
441 variable location_type, rather, use b4_percent_define_get with a
442 default argument where its value is needed.
443 * data/lalr1.cc: Do not load location.cc (which outputs both
444 location.hh and position.hh) if the user defined location_type.
445 Do not include location.hh either.
446
447 2010-05-04 Akim Demaille <demaille@gostai.com>
448
449 lalr1.cc: minor refactoring.
450 * data/lalr1.cc: Don't issue empty namespaces.
451
452 2010-05-04 Akim Demaille <demaille@gostai.com>
453
454 tests: fix %printer.
455 Currently, there is no check that %printer ... <foo> (nor
456 %destructor) is about an existing <foo> type. This C++ test had
457 it wrong (<::std::string> vs. <std::string>).
458
459 * tests/c++.at (AT_CHECK_VARIANTS): In list.yy, redefine the
460 pretty-printing of lists into something better for parser traces.
461 Update the expected output.
462 Fix correspondance between %type/%token and %printer.
463
464 2010-05-04 Akim Demaille <demaille@gostai.com>
465
466 lalr1.cc: location_type: make sure we don't depend on loc.(begin|end).
467 * tests/calc.at (Span): Instead of begin/end, as in the built-in
468 location class, use first and last.
469 Define YYLLOC_DEFAULT to adjust to these changes.
470 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Adjust to the
471 location_type changes.
472
473 2010-05-01 Joel E. Denny <joeldenny@joeldenny.org>
474
475 tests: fix maintainer-xml-check.
476 * data/xslt/xml2dot.xsl (xsl:template match="bison-xml-report"):
477 Update output to include comments now produced by --graph.
478 (xsl:template match="automaton"): As for --graph, name the
479 digraph after the grammar file.
480 * src/print-xml.c (escape_bufs): Enlarge array.
481 (print_xml): Add bug-report and url attributes to
482 bison-xml-report element.
483
484 2010-05-01 Joel E. Denny <joeldenny@joeldenny.org>
485
486 In DOT output, convert from "/*" comments to "//" comments.
487 This handles the possibility that a "*/" might appear in
488 variable portions of those comments at some point in the future.
489 * src/graphviz.c (start_graph): Implement.
490
491 2010-04-30 Joel E. Denny <joeldenny@joeldenny.org>
492
493 Document that undefined %prec identifier warnings will remain.
494 * NEWS (2.4.3): Here.
495 (2.4.2): Here.
496
497 2010-04-30 Joel E. Denny <joeldenny@joeldenny.org>
498
499 Revert 2009-12-30 change for undefined %prec token complaints.
500 That is, keep them as warnings because that should be sufficient
501 to satisfy POSIX without creating backward compatibility issues.
502 Suggested by Richard Stallman at
503 <http://lists.gnu.org/archive/html/bison-patches/2010-03/msg00033.html>.
504 * NEWS (2.5): Remove mention of complaint.
505 * src/reader.c (grammar_rule_check): Convert complaint back to
506 warning.
507 * tests/input.at (%prec's token must be defined): Update.
508
509 2010-04-25 Joel E. Denny <joeldenny@joeldenny.org>
510
511 build: don't require src/bison during bootstrap.
512 Suggested by Eric Blake at
513 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00003.html>.
514 * bootstrap.conf (bootstrap_epilogue): New function to make sure
515 src/parse-gram.[ch] are stamped later than src/parse-gram.y.
516
517 2010-04-25 Joel E. Denny <joeldenny@joeldenny.org>
518
519 i18n: fix untranslatable string.
520 Reported by Goran Uddeborg at
521 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00000.html>.
522 * src/muscle-tab.c (muscle_percent_define_insert): Here.
523
524 2010-04-13 Akim Demaille <demaille@gostai.com>
525
526 tests: calc: minor refactoring.
527 * tests/calc.at (_AT_DATA_CALC_Y): Simplify yylex.
528
529 2010-04-13 Akim Demaille <demaille@gostai.com>
530
531 tests: calc: simplify location management.
532 * tests/local.at (AT_LOC_PUSHDEF, AT_LOC_POPDEF): New.
533 (_AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS): Use them to
534 define the appropriate AT_LOC accessors.
535 * tests/calc.at: Use AT_LOC accessors.
536
537 2010-04-13 Akim Demaille <demaille@gostai.com>
538
539 test location_type.
540 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS):
541 Define AT_LOCATION_TYPE_IF.
542 (_AT_BISON_OPTION_POPDEFS): Undefine AT_LOCATION_TYPE_IF.
543 * tests/calc.at (_AT_DATA_CALC_Y): When %define location_type is
544 used, provide a user location type and use it.
545 (Simple LALR1 C++ Calculator): Add a test case for location_type.
546
547 2010-04-13 Akim Demaille <demaille@gostai.com>
548
549 tests: check fclose's return value.
550 * tests/calc.at (_AT_DATA_CALC_Y): Check fclose's return status.
551
552 2010-04-13 Akim Demaille <demaille@gostai.com>
553
554 tests: don't depend on the actual location type.
555 * tests/calc.at: Use yy::parser::location_type rather than
556 yy::location, since the former is always right, and might point to
557 another type than the latter.
558
559 2010-04-13 Akim Demaille <demaille@gostai.com>
560
561 formatting changes.
562 * tests/calc.at: Formatting changes.
563
564 2010-04-13 Akim Demaille <demaille@gostai.com>
565
566 lalr1.cc: remove useless forward declaration.
567 * data/lalr1.cc: Include location.hh before stack.hh.
568 Remove the useless forward declarations of position and location.
569 Reported by Chris Morley.
570 * data/glr.cc: Likewise.
571
572 2010-04-11 Joel E. Denny <joeldenny@joeldenny.org>
573
574 * NEWS (2.4.3): Mention fix for Sun Studio C++.
575
576 2010-04-10 Joel E. Denny <joeldenny@joeldenny.org>
577
578 tests: fix for newer Sun Studio C++.
579 Reported by Dagobert Michelsen at
580 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00023.html>.
581 * THANKS (Dagobert Michelsen): Add.
582 * configure.ac (AC_PREREQ): Set to 2.64 so we get the latest
583 Autoconf macro for handling the restrict keyword.
584 * gnulib: Update to latest, which no longer overrides that macro
585 from Autoconf.
586
587 2010-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
588
589 portability: fix pointer arithmetic to conform to C standard.
590 Reported by Tys Lefering at
591 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00035.html>.
592 This fix is already implemented in glr.c and does not apply to
593 lalr1.java.
594 * data/lalr1.cc (yy::parser::parse): Increase size of
595 yyerror_range and adjust subscripting so you don't have to
596 subtract one from the beginning of the array.
597 * data/yacc.c (b4_declare_parser_state_variables,
598 yyparse, yypush_parse): Likewise.
599
600 2010-04-05 Akim Demaille <demaille@gostai.com>
601
602 remove useless include.
603 * src/graphviz.h: Don't include stdbool.h.
604
605 2010-04-05 Akim Demaille <demaille@gostai.com>
606
607 graph: sign the output file.
608 * src/graphviz.c (start_graph): Issue comments about Bison.
609 Suggested by Tys Lefering.
610
611 2010-03-31 Joel E. Denny <jdenny@ces.clemson.edu>
612
613 portability: fix test suite for GCC 4.5's new #error message.
614 Reported by Tys Lefering at
615 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00030.html>.
616 * NEWS (2.4.3): Mention.
617 * tests/synclines.at (AT_TEST_SYNCLINE): Implement.
618
619 2010-03-30 Akim Demaille <demaille@gostai.com>
620
621 fix comments.
622 * src/graphviz.h: Add missing license notice.
623 Document.
624
625 2010-03-25 Akim Demaille <demaille@gostai.com>
626
627 tests: fix 250: parse.error=verbose overflow.
628 * tests/regression.at (parse.error=verbose overflow): Avoid the
629 double inclusion of stdlib.h as it triggers hard errors.
630
631 2010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
632
633 portability: fix for BSD make.
634 Reported by Johan van Selst at
635 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00016.html>.
636 * tests/local.mk ($(TESTSUITE)): Qualify package.m4 in
637 this dependency list as in package.m4's target rule.
638
639 2010-03-23 Joel E. Denny <jdenny@ces.clemson.edu>
640
641 portability: fix spawning on at least FreeBSD 8 and FreeBSD 9.
642 Reported by Johan van Selst at
643 <http://lists.gnu.org/archive/html/bug-bison/2010-03/msg00014.html>.
644 * NEWS (2.4.3): New.
645 * THANKS (Johan van Selst): Add.
646 * etc/prefix-gnulib-mk (prefix): Adjust regex for makefile
647 targets so that gnulib's new c++defs.h is matched.
648 * gnulib: Update to latest.
649
650 2010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
651
652 maint: update for changes to gnulib's announce-gen.
653 * HACKING (Announce): RELEASE_TYPE=major must now be written
654 RELEASE_TYPE=stable.
655
656 2010-03-20 Joel E. Denny <jdenny@ces.clemson.edu>
657
658 Version 2.4.2.
659 * NEWS (2.4.2): Set version and date. For the recent test suite
660 portability fixes, don't be so optimistic about their success
661 given the lack of feedback on the affected platforms.
662
663 2010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
664
665 tests: fix maintainer-xml-check for recent changes.
666 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Use
667 AT_BISON_CHECK_NO_XML rather than AT_BISON_CHECK because an
668 output file whose name conflicts with a previous output file
669 is now never generated.
670
671 2010-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
672
673 portability: fix several issues with M4 subprocess.
674
675 M4's output pipe was not being drained upon fatal errors during
676 scan_skel. As a result, broken-pipe messages from M4 were seen
677 on at least AIX, HP-UX, Solaris, and RHEL4, and this caused a
678 failure in the test suite. The problem was that, on platforms
679 where the default disposition for SIGPIPE is ignore instead of
680 terminate, M4 sometimes saw fwrite fail with errno=EPIPE and
681 then reported it. However, there's some sort of race condition,
682 because the new test group occasionally succeeded.
683 Reported by Albert Chin at
684 <http://lists.gnu.org/archive/html/bug-bison/2010-02/msg00004.html>.
685
686 There were also problems with the test suite livelocking on
687 Tru64 5.1b. Reported by Didier Godefroy at
688 <http://lists.gnu.org/archive/html/bug-bison/2009-05/msg00005.html>.
689 Switching to create_pipe_bidi suggested by Akim Demaille.
690
691 To attempt to solve both of these problems, switch to gnulib's
692 create_pipe_bidi and register M4 process as a slave. Along the
693 way, clean up file name conflict handling, which was affected by
694 the broken-pipe problem before the switch.
695 * NEWS (2.4.2): Document.
696 * THANKS (Didier Godefroy): Add.
697 * bootstrap.conf (gnulib_modules): Add pipe.
698 * gnulib: Update to latest to make sure we have all the latest
699 fixes.
700 * lib/local.mk (lib_libbison_a_SOURCES): Remove subpipe.h and
701 subpipe.c.
702 * po/POTFILES.in (lib/subpipe.c): Remove.
703 * src/files.c (compute_output_file_names): Update invocations
704 of output_file_name_check.
705 (output_file_name_check): In the case that the grammar file
706 would be overwritten, use complain instead of fatal, but replace
707 the output file name with /dev/null. Use the /dev/null solution
708 for the case of two conflicting output files as well because it
709 seems safer in case Bison one day tries to open both files at
710 the same time.
711 * src/files.h (output_file_name_check): Update prototype.
712 * src/output.c (output_skeleton): Use create_pipe_bidi and
713 wait_subprocess. Assert that scan_skel completely drains the
714 pipe.
715 * src/scan-skel.l (at_directive_perform): Update
716 output_file_name_check invocation.
717 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): Check that the
718 grammar file actually isn't overwritten.
719 (Conflicting output files: -o foo.y): Update expected output.
720 * tests/skeletons.at (Fatal errors but M4 continues producing
721 output): New test group.
722
723 2010-02-04 Joel E. Denny <jdenny@ces.clemson.edu>
724
725 Update POTFILES.
726 * HACKING (Release Procedure): Add reminder about keeping
727 POTFILES files up-to-date.
728 * po/POTFILES.in (src/muscle-tab.c, src/scan-skel.l): Add.
729
730 2010-02-01 Joel E. Denny <jdenny@clemson.edu>
731
732 Code cleanup.
733 * tests/atlocal.in (abs_top_srcdir): Remove shell variable,
734 which is already defined in atconfig.
735
736 2010-01-22 Joel E. Denny <jdenny@clemson.edu>
737
738 tests: fix missing include caught by g++ 4.4.1.
739 Reported by Tys Lefering.
740 * HACKING (Release checks): Add note about trying a recent GCC.
741 * tests/regression.at (_AT_DATA_DANCER_Y): For C++, include
742 cstdlib for abort.
743 (_AT_DATA_EXPECT2_Y): Likewise.
744
745 2010-01-21 Joel E. Denny <jdenny@clemson.edu>
746
747 * cfg.mk (gnulib_dir): Assume gnulib is a subdirectory.
748
749 2010-01-21 Joel E. Denny <jdenny@clemson.edu>
750
751 maint: automate PACKAGE_COPYRIGHT_YEAR update, and update it.
752 * HACKING (Release Procedure): Update notes on copyright years.
753 * Makefile.am (update-package-copyright-year): New target rule.
754 * build-aux/update-package-copyright-year: New file.
755 * cfg.mk (update-copyright): Add update-package-copyright-year
756 as a dependency.
757
758 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
759
760 * bootstrap: Import improvements from latest gnulib.
761
762 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
763
764 build: require Automake 1.11.1 to avoid a security flaw.
765 * HACKING (Release Procedure): Don't document Automake security
766 flaw here.
767 * configure.ac (AM_INIT_AUTOMAKE): Require 1.11.1, and explain
768 why here.
769
770 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
771
772 gnulib: update to latest.
773
774 2010-01-19 Joel E. Denny <jdenny@clemson.edu>
775
776 ChangeLog (2006-09-15): add Odd Arild Olsen's role for push.c.
777
778 2010-01-15 Joel E. Denny <jdenny@clemson.edu>
779
780 Thank the developer of the initial push parser implementation.
781 This unfortunate oversight is several years old.
782 * THANKS (Odd Arild Olsen): Add.
783
784 2010-01-04 Joel E. Denny <jdenny@clemson.edu>
785
786 Fix some comments concerning LR(0) versus LALR(1).
787
788 Stop equating LR(0) with nondeterminism and LALR(1) with
789 determinism. That is, if all states are consistent, then LR(0)
790 tables are deterministic. On the other hand, LALR(1) tables
791 might be nondeterministic before conflict resolution, and GLR
792 permits LALR(1) tables to remain nondeterministic.
793 * src/LR0.c, src/LR0.h: Here.
794 * src/lalr.c, src/lalr.h: Here.
795 * src/main.c (main): Here.
796 * src/state.c, src/state.h: Here.
797
798 * src/ielr.h (ielr): In preconditions, expect LR(0) not LALR(1)
799 parser tables.
800
801 2010-01-04 Joel E. Denny <jdenny@clemson.edu>
802
803 maint: run "make update-copyright"
804
805 2009-12-30 Joel E. Denny <jdenny@clemson.edu>
806
807 POSIX: complain if %prec's token was not defined.
808 * NEWS (2.5): Document.
809 * src/reader.c (grammar_rule_check): Convert warning to
810 complaint.
811 * tests/input.at (%prec's token must be defined): Update.
812
813 2009-12-30 Joel E. Denny <jdenny@clemson.edu>
814
815 POSIX: warn if %prec's token was not defined.
816 Reported by Florian Krohm at
817 <http://lists.gnu.org/archive/html/bug-bison/2009-12/msg00005.html>.
818 * NEWS (2.4.2): Document.
819 * src/reader.c (grammar_rule_check): Implement.
820 (grammar_current_rule_prec_set): Add comments explaining that we
821 here assume a %prec identifier is a token, but we still manage
822 to support POSIX.
823 * tests/input.at (%prec's token must be defined): New test
824 group.
825
826 2009-12-31 Joel E. Denny <jdenny@clemson.edu>
827
828 * HACKING (Release Procedure): Recommend a secure automake.
829
830 2009-12-29 Joel E. Denny <jdenny@clemson.edu>
831
832 portability: `<' and `>' are not always defined on addresses.
833 Specifically, don't sort objects by their memory addresses when
834 they're not allocated in the same array or other object. Though
835 I haven't found a test case where that fails on my platform, C
836 says the behavior is undefined.
837 * src/AnnotationList.c (AnnotationList__insertInto): Remove
838 FIXME. Use new id field of InadequacyList nodes rather than
839 their memory addresses when sorting.
840 (AnnotationList__compute_from_inadequacies): Add
841 inadequacy_list_node_count argument to pass to
842 InadequacyList__new_conflict.
843 * src/AnnotationList.h
844 (AnnotationList__compute_from_inadequacies): Update prototype
845 and documentation for new argument.
846 * src/InadequacyList.c (InadequacyList__new_conflict): Add
847 node_count argument and use it to assign a unique ID.
848 * src/InadequacyList.h (InadequacyListNodeCount): New typedef.
849 (InadequacyList): Add id field.
850 (InadequacyList__new_conflict): Update prototype and
851 documentation for new argument.
852 * src/ielr.c (ielr_compute_annotation_lists): Update
853 AnnotationList__compute_from_inadequacies invocation.
854
855 2009-12-20 Joel E. Denny <jdenny@clemson.edu>
856
857 Fix handling of yychar manipulation in user semantic actions.
858 The problem was that yacc.c didn't always update the yychar
859 translation afterwards. However, other skeletons appear to be
860 fine. glr.c appears to already translate yychar before every
861 use. lalr1.cc does not define yychar and does not document its
862 replacement, yyla, for users. It does provide yyclearin, but
863 that does not manipulate yyla and thus requires no translation
864 update. In lalr1.java, yychar is out of scope during semantic
865 actions.
866 * NEWS (2.5): Document.
867 * data/yacc.c (YYBACKUP): Don't bother translating yychar into
868 yytoken here.
869 (yyparse, yypush_parse): Instead, translate before every use of
870 yytoken, and add comments explaining this approach.
871 * tests/actions.at (Destroying lookahead assigned by semantic
872 action): New test group checking that translation happens before
873 lookahead destructor calls at parser return. Previously,
874 incorrect destructors were called.
875 * tests/conflicts.at (parse.error=verbose and consistent
876 errors): New test group checking that translation happens at
877 syntax error detection before the associated verbose error
878 message and the associated lookahead destructor calls. While
879 the destructor call is fixed by this patch, the verbose error
880 message is currently incorrect due to another bug (see
881 comments in test group), so this is an expected failure for now.
882
883 2009-12-21 Joel E. Denny <jdenny@clemson.edu>
884
885 YYFAIL: warn about uses and remove from lalr1.java.
886 * NEWS (2.5): Document.
887 * data/lalr1.java (YYParser::YYFAIL): Rename to YYERRLAB,
888 and make it private. Update all uses.
889 * src/scan-code.l (SC_RULE_ACTION): Implement warning.
890
891 2009-12-21 Joel E. Denny <jdenny@clemson.edu>
892
893 YYFAIL: deprecate.
894 * NEWS (2.4.2): Document deprecation and the phase-out plan.
895 * data/lalr1.java (YYParser::YYFAIL): Add comment about
896 deprecation.
897 * data/yacc.c (YYFAIL): Likewise, and suppress warnings about
898 YYFAIL from GCC cpp's -Wunused-macros.
899 * doc/bison.texinfo (Java Action Features): Remove YYFAIL
900 documentation.
901 (LocalWords): Remove YYFAIL.
902
903 2009-12-20 Joel E. Denny <jdenny@clemson.edu>
904
905 tests: cleanup.
906 * tests/c++.at (Syntax error discarding no lookahead): Don't
907 ignore stderr. Instead, eliminate remaining warnings.
908
909 2009-12-18 Joel E. Denny <jdenny@clemson.edu>
910
911 lalr1.cc: don't discard non-existent lookahead on syntax error.
912 * data/lalr1.cc (yy::parser::parse): Check yyempty first.
913 * tests/c++.at (Syntax error discarding no lookahead): New test
914 group.
915
916 2009-12-17 Joel E. Denny <jdenny@clemson.edu>
917
918 Code cleanup.
919 * src/symtab.c, src/symtab.h (symbol_class_get_string): Remove
920 function, which is no longer used.
921
922 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
923
924 Add gcc's -Wundef to test suite and fix another warning from it.
925 * NEWS (2.4.2): Update description of -Wundef fix.
926 * configure.ac (WARN_CXXFLAGS_TEST): New substitution.
927 (WARN_CFLAGS_TEST): New substitution.
928 * data/glr.c: Avoid warning about __STRICT_ANSI__.
929 * tests/atlocal.in (CFLAGS): Use WARN_CFLAGS_TEST instead of
930 WARN_CFLAGS.
931 (NO_WERROR_CFLAGS): Likewise.
932 (CXXFLAGS): Use WARN_CXXFLAGS_TEST instead of WARN_CXXFLAGS.
933
934 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
935
936 * data/yacc.c: Reformat m4 a little.
937
938 2009-12-16 Joel E. Denny <jdenny@clemson.edu>
939
940 Document gcc -Wundef fix.
941 * NEWS (2.4.2): Here.
942 * THANKS (Jonathan Nieder): Add.
943
944 2009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
945
946 Simplify y.tab.c when location tracking is disabled.
947 * data/yacc.c: Do not check YYLTYPE_IS_TRIVIAL if location
948 tracking is not enabled. Instead, unconditionally define
949 YY_LOCATION_PRINT as a no-op for backward compatibility.
950
951 2009-12-15 Jonathan Nieder <jrnieder@gmail.com> (tiny change)
952
953 Avoid warnings from gcc -Wundef y.tab.c.
954 * data/glr.c: Check if YYENABLE_NLS and YYLTYPE_IS_TRIVIAL are
955 defined before using them.
956 * data/lalr1.cc: Likewise.
957 * data/yacc.c: Likewise.
958
959 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
960
961 autoconf: update to latest for fix of M4 detection.
962 Reported by Eric Blake.
963 * submodules/autoconf: Update.
964
965 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
966
967 portability: use -DGNULIB_POSIXCHECK.
968 Reported by Eric Blake. See discussions at
969 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00008.html>
970 and
971 <http://lists.gnu.org/archive/html/bug-gnulib/2009-10/msg00108.html>.
972 * HACKING (Release checks): Suggest -DGNULIB_POSIXCHECK.
973 * bootstrap.conf (gnulib_modules): Add all the printf modules
974 suggested by -DGNULIB_POSIXCHECK. Add realloc-posix as
975 suggested by -DGNULIB_POSIXCHECK for gnulib's own vasnprintf.c.
976 (excluded_files): Remove m4/printf-posix.m4.
977 * tests/atlocal.in (LIBS): As for LDADD in src/local.mk, add
978 lib/libbison.a so gnulib libraries can be linked.
979
980 2009-12-15 Joel E. Denny <jdenny@clemson.edu>
981
982 gnulib: update for fix of fprintf-posix, which we'll use soon.
983 * etc/prefix-gnulib-mk (prefix): Adjust regex for make file
984 targets so that gnulib's new arg-nonnull.h and link-warning.h
985 are matched.
986 * gnulib: Update.
987
988 2009-12-14 Joel E. Denny <jdenny@clemson.edu>
989
990 Enable assertion output and --disable-assert for configure.
991 * bootstrap.conf (gnulib_modules): Add assert module.
992 * src/system.h (aver): Define as assert, and summarize the
993 discussion on this issue.
994
995 2009-12-14 Joel E. Denny <jdenny@clemson.edu>
996
997 Expand GLR acronym in summary of Bison.
998 Based on discussion with Akim Demaille starting at
999 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00087.html>.
1000 * doc/bison.texinfo (Introduction): Here.
1001 * src/getargs.c (usage): Here.
1002
1003 2009-10-03 Alex Rozenman <rozenman@gmail.com>
1004
1005 Document named references.
1006 * doc/bison.texinfo (Actions): Add new example and xref to
1007 Using Named References node.
1008 (Using Named References): New node.
1009
1010 2009-10-16 Joel E. Denny <jdenny@clemson.edu>
1011
1012 cleanup.
1013 * src/Sbitset.c (Sbitset__new_on_obstack): Use Sbitset instead
1014 of char*.
1015 (Sbitset__isEmpty): Use Sbitset instead of char*.
1016 * src/Sbitset.h (Sbitset): Make it a pointer to unsigned char
1017 instead of char. This helps to avoid casting errors.
1018 (Sbitset__or): Use Sbitset instead of char*.
1019
1020 2009-10-16 Joel E. Denny <jdenny@clemson.edu>
1021
1022 portability: don't assume 8-bit bytes.
1023 That is, use CHAR_BIT and UCHAR_MAX instead of 8 and 0xff.
1024 * src/Sbitset.h (Sbitset__nbytes): Here.
1025 (Sbitset__byteAddress): Here.
1026 (Sbitset__bit_mask): Here.
1027 (Sbitset__last_byte_mask): Here.
1028 (Sbitset__ones): Here.
1029 (SBITSET__FOR_EACH): Here.
1030
1031 2009-10-11 Joel E. Denny <jdenny@clemson.edu>
1032
1033 portability: use va_start and va_end in the same function.
1034 * src/complain.c (error_message): Move va_end from here...
1035 (ERROR_MESSAGE): ... to here.
1036
1037 2009-10-08 Joel E. Denny <jdenny@clemson.edu>
1038
1039 * data/bison.m4: Update comments for rename to muscle-tab.h.
1040
1041 2009-10-07 Joel E. Denny <jdenny@clemson.edu>
1042
1043 Minor code cleanup.
1044 * src/muscle-tab.c (MUSCLE_USER_NAME_CONVERT): Remove macro and
1045 replace all uses with UNIQSTR_CONCAT.
1046 * src/uniqstr.c (uniqstr_vsprintf): New function.
1047 * src/uniqstr.h (uniqstr_vsprintf): Add prototype.
1048 (UNIQSTR_CONCAT, UNIQSTR_GEN_FORMAT, UNIQSTR_GEN_FORMAT_): New
1049 macros.
1050
1051 2009-10-06 Joel E. Denny <jdenny@clemson.edu>
1052
1053 * TODO (Complaint submessage indentation): New.
1054
1055 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
1056
1057 Minor code cleanup.
1058 * src/parse-gram.y: Clean up sorting of declarations.
1059 Use types to simplify %printer declarations where possible.
1060 Provide %printer for BRACKETED_ID and symbol.prec.
1061 * src/symtab.c: Whitespace change.
1062
1063 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
1064
1065 tests: skip tests of file names that platform does not support.
1066 Reported by Michael Raskin at
1067 <http://lists.gnu.org/archive/html/bug-bison/2009-09/msg00001.html>.
1068 * THANKS (Michael Raskin): Add.
1069 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Fix. Cygwin used
1070 to fail at least for file names containing ":" or "\".
1071
1072 2009-09-23 Joel E. Denny <jdenny@clemson.edu>
1073
1074 yysyntax_error: avoid duplicate lookahead collection.
1075 Except when memory reallocation is required, this change
1076 eliminates the need to invoke yysyntax_error twice and thus to
1077 repeat the collection of lookaheads. It also prepares for
1078 future extensions that will make those repetitions more
1079 expensive and that will require additional memory management in
1080 yysyntax_error. Finally, it fixes an obscure bug already
1081 exercised in the test suite.
1082 * data/yacc.c (yysyntax_error): Add arguments for message
1083 buffer variables stored in the parser. Instead of size, return
1084 status similar to yyparse status but indicating success of
1085 message creation. Other than the actual reallocation of the
1086 message buffer, import and clean up memory management code
1087 from...
1088 (yyparse, yypush_parse): ... here.
1089 * tests/regression.at (parse.error=verbose overflow): No longer
1090 an expected failure.
1091
1092 2009-09-23 Joel E. Denny <jdenny@clemson.edu>
1093
1094 yysyntax_error: test memory management more.
1095 * tests/atlocal.in (NO_WERROR_CFLAGS): New cpp macro.
1096 * tests/regression.at (parse.error=verbose and
1097 YYSTACK_USE_ALLOCA): New test group.
1098 (parse.error=verbose overflow): New test group that reveals an
1099 obscure bug. Expected fail for now.
1100
1101 2009-10-04 Joel E. Denny <jdenny@clemson.edu>
1102
1103 benchmarks: use %debug consistently among grammars.
1104 * etc/bench.pl.in (generate_grammar_triangular): Do not activate
1105 %debug by default. It can affect the timings even if yydebug=0.
1106 (generate_grammar_calc): For consistency with other grammars,
1107 use YYDEBUG environment variable to set yydebug.
1108
1109 2009-10-03 Joel E. Denny <jdenny@clemson.edu>
1110
1111 Remove dead code.
1112 * src/symtab.c (symbol_pack): Here because every symbol's number
1113 is always defined by this time.
1114
1115 2009-10-03 Alex Rozenman <rozenman@gmail.com>
1116
1117 Add additional space after periods in NEWS.
1118 * NEWS (2.5): here.
1119
1120 2009-09-29 Joel E. Denny <jdenny@clemson.edu>
1121
1122 Use the correct conversion specifier for size_t.
1123 Reported by Jim Meyering.
1124 * src/Sbitset.h (SBITSET__INDEX__CONVERSION_SPEC): New, "zu"
1125 because Sbitset__Index is size_t.
1126 * src/Sbitset.c (Sbitset__fprint): Use it instead of %d.
1127
1128 2009-09-27 Joel E. Denny <jdenny@clemson.edu>
1129
1130 tests: don't abuse AT_BISON_CHECK.
1131 * tests/regression.at (parse-gram.y: LALR = IELR): Move
1132 additional shell commands outside of AT_BISON_CHECK.
1133
1134 2009-09-26 Joel E. Denny <jdenny@clemson.edu>
1135
1136 tests: check that parse-gram.y's IELR and LALR are identical.
1137 * tests/atlocal.in (abs_top_srcdir): New shell variable.
1138 * tests/regression.at (parse-gram.y: LALR = IELR): New test
1139 group.
1140
1141 2009-09-19 Alex Rozenman <rozenman@gmail.com>
1142
1143 Keep sub-messages aligned. Fix strings for translation.
1144 * src/location.h (location_print): Add return value.
1145 * src/location.c (location_print): Return number of printed
1146 characters.
1147 * src/complain.h (complain_at_indent, warn_at_indent): Prototype
1148 new functions.
1149 * src/complain.cpp (indent_ptr): New static variable.
1150 (error_message, complain_at_indent, warn_at_indent): Implement
1151 the alignment mechanism.
1152 * src/scan-code.l (parse_ref, show_sub_messages): Fix strings
1153 for translations. Use new alignment mechanism.
1154 * tests/named-ref.at: Adjust test-cases.
1155 * NEWS (2.5): Add an announcement about named references.
1156
1157 2009-09-17 Akim Demaille <demaille@gostai.com>
1158
1159 doc: fixes.
1160 * doc/bison.texinfo: here.
1161 Reported by Alex Rozenman.
1162
1163 2009-09-16 Akim Demaille <demaille@gostai.com>
1164
1165 doc: lalr1.cc and variants.
1166 * doc/bison.texinfo (Decl Summary): Document the "lex_symbol" and
1167 "variant" %define variables.
1168 (C++ Semantic Values): Split into...
1169 (C++ Unions, C++ Variants): these.
1170 The latter is new.
1171 (C++ Parser Interface): Fix type names.
1172 Document parser::syntax_error.
1173 Document the fact that locations are not mandatory.
1174 (C++ Scanner Interface): Split into...
1175 (Split Symbols, Complete Symbols): these.
1176 The later is new.
1177 (Calc++ Parsing Driver): Use variants.
1178 Add more comments.
1179 Adjust style.
1180 (Calc++ Parser): Declare all the tokens, no
1181 longer accept raw characters.
1182 Remove %union.
1183 Adjust types and printers.
1184 Remove destructors.
1185 (Calc++ Scanner): Use make_<SYMBOL> functions.
1186 Use strerror in error message.
1187
1188 2009-09-16 Akim Demaille <demaille@gostai.com>
1189
1190 doc: spell checking.
1191 * doc/bison.texinfo: here.
1192
1193 2009-09-16 Akim Demaille <demaille@gostai.com>
1194
1195 doc: comment changes.
1196 * doc/bison.texinfo: Comment changes.
1197
1198 2009-09-16 Akim Demaille <demaille@gostai.com>
1199
1200 lalr1.cc: factor the yytranslate_ invocation in make_SYMBOLS.
1201 * data/c++.m4, data/lalr1.cc (parser::symbol_type): Change the
1202 constructor to take a token_type instead of the (internal) symbol
1203 number.
1204 Call yytranslate_.
1205 * data/variant.hh (b4_symbol_constructor_define_): Therefore,
1206 don't call yytranslate_ here.
1207
1208 2009-09-16 Akim Demaille <demaille@gostai.com>
1209
1210 TODO: statistics.
1211 * TODO (Figures): New.
1212
1213 2009-09-13 Joel E. Denny <jdenny@clemson.edu>
1214
1215 tests: clean up push.at test group titles.
1216 * tests/push.at: Remove "Push Parsing: " from test group titles
1217 because these are already under the banner "Push Parsing Tests".
1218
1219 2009-09-12 Alex Rozenman <rozenman@gmail.com>
1220
1221 Provide an additional sub-message for clarity.
1222 Add "symbol not found in production" error message when
1223 an "invalid reference" is detected in named references
1224 resolution.
1225 * src/scan-code.l: Update "invalid reference" case.
1226 * tests/named-ref.at: Adjust test-cases.
1227
1228 2009-09-10 Joel E. Denny <jdenny@clemson.edu>
1229
1230 Clean up yacc.c a little.
1231 * data/yacc.c: Clean up M4 for readability, and make output
1232 whitespace more consistent. For the main parse function
1233 comment, instead of saying "yyparse or yypush_parse", say either
1234 "yyparse" or "yypush_parse" depending on which it actually is.
1235
1236 2009-09-10 Joel E. Denny <jdenny@clemson.edu>
1237
1238 Fix --enable-gcc-warnings.
1239 * src/parse-gram.y (%printer <param>): Handle param_none.
1240
1241 2009-09-09 Akim Demaille <demaille@gostai.com>
1242
1243 lalr1.cc: syntax_error as exceptions.
1244 It is common to use sort of factories in the user actions. These
1245 factories may check some "syntactic" constraints that are not
1246 enforced by the grammar itself. This is possible using YYERROR
1247 within the action itself. Provide the user with a means to throw
1248 a syntax_error exception.
1249
1250 * data/c++.m4 (b4_public_types_declare, b4_public_types_define):
1251 Declare and define yy::parser::syntax_error.
1252 * data/lalr1.cc: Include stdexcept.
1253 (yy::parser::parse): Wrap the user action within a try/catch.
1254 * data/glr.cc: Include stdexcept.
1255
1256 2009-09-09 Akim Demaille <demaille@gostai.com>
1257
1258 lalr1.cc: add missing "inline".
1259 * data/c++.m4 (b4_public_types_define): Add missing inline to
1260 implementations provided in headers.
1261
1262 2009-09-09 Akim Demaille <demaille@gostai.com>
1263
1264 %param: documentation.
1265 * NEWS (2.6): Document %param, %lex-param, and %parse-param
1266 changes.
1267 * doc/bison.texinfo: Document that %lex-param and %parse-param
1268 are n-ary.
1269 Changes some examples to demonstrate it.
1270 (Calc++ Parser): Use %param.
1271
1272 2009-09-09 Akim Demaille <demaille@gostai.com>
1273
1274 Regen.
1275
1276 2009-09-09 Akim Demaille <demaille@gostai.com>
1277
1278 style changes.
1279 * src/parse-gram.y (add_param): Scope changes.
1280
1281 2009-09-09 Akim Demaille <demaille@gostai.com>
1282
1283 %parse: support several arguments.
1284 * src/parse-gram.y (current_param): New.
1285 (param_type): Add param_none.
1286 (params): New nonterminal.
1287 Use it.
1288
1289 2009-09-09 Akim Demaille <demaille@gostai.com>
1290
1291 Regen.
1292
1293 2009-09-09 Akim Demaille <demaille@gostai.com>
1294
1295 %param.
1296 Provide a means to factor lex-param and parse-param common
1297 declarations.
1298
1299 * src/parse-gram.y (param_type): New.
1300 Define a %printer for it.
1301 (add_param): Use it.
1302 (%parse-param, %lex-param): Merge into...
1303 (%parse): this new token.
1304 Adjust the grammar to use it.
1305 * src/scan-gram.l (RETURN_VALUE): New.
1306 (RETURN_PERCENT_FLAG): Use it.
1307 (RETURN_PERCENT_PARAM): New.
1308 Use it to support %parse-param, %lex-param and %param.
1309
1310 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
1311
1312 Use aver not assert.
1313 * src/output.c: Don't include assert.h.
1314 (output_skeleton): Use aver not assert.
1315 * src/system.h (aver): In documentation of why, add links to
1316 Paul Eggert's explanations in the mailing lists.
1317
1318 2009-09-05 Alex Rozenman <rozenman@gmail.com>
1319
1320 Use "Unresolved reference" error message when no symbols were found
1321 in a symbolic reference resolution. Remove .expr and -expr from
1322 the shown reference when the reference is unresolved.
1323 * src/scan-code.l: Change the error message, adjust location columns,
1324 rename variable "exact_mode" to "explicit_bracketing".
1325 * tests/named-ref.at: Adjust existing tests and add a new one.
1326
1327 2009-09-04 Akim Demaille <demaille@gostai.com>
1328
1329 Adjust synclines in src/parse-gram.[ch].
1330 * tests/bison.in: Do some magic (including working around issues
1331 with ylwrap) when this wrapper is used to compile
1332 src/parse-gram.y.
1333
1334 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
1335
1336 Complain about unused %define variables and %code qualifiers.
1337 * NEWS (2.5): Document.
1338 * data/bison.m4 (b4_check_user_names): Complain instead of warn.
1339 * doc/bison.texinfo (Decl Summary): Document complaint, and
1340 improve %define documentation a little otherwise.
1341 * tests/input.at (Reject unused %code qualifiers): Update.
1342 (%define errors): Update.
1343 (%define, --define, --force-define): Update.
1344 (%define backward compatibility): Update.
1345 (Unused %define api.pure): Update.
1346 * tests/push.at (Push Parsing: Unsupported Skeletons): Update.
1347
1348 2009-09-03 Joel E. Denny <jdenny@clemson.edu>
1349
1350 Don't suppress warnings about unused parse.error.
1351 * data/bison.m4 (b4_error_verbose_flag): Don't examine value of
1352 %define variable parse.error unless b4_error_verbose_flag is
1353 actually expanded in a skeleton.
1354
1355 2009-09-03 Akim Demaille <demaille@gostai.com>
1356
1357 * NEWS (2.4.2): Add "Internationalization" item.
1358
1359 2009-09-03 Akim Demaille <demaille@gostai.com>
1360
1361 bootstrap: fix/improve find_tool.
1362 * bootstrap (find_tool): Improve error messages.
1363 Fix typo about find_tool_names.
1364
1365 2009-08-29 Joel E. Denny <jdenny@clemson.edu>
1366
1367 Fix gcc 3.4.4 shadowing warning reported by Eric Blake.
1368 See
1369 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00093.html>.
1370 * src/scan-code.h (code_props_rule_action_init): Rename
1371 named_ref arg to name so it doesn't shadow named_ref type. This
1372 makes it consistent with the function definition in scan-code.l
1373 anyway.
1374
1375 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
1376
1377 %define: accept unquoted values.
1378 * NEWS (2.5): Group all %define changes together, and document
1379 this one. Remove quotes in IELR and canonical LR entry.
1380 * doc/bison.texinfo: Remove quotes in most examples throughout.
1381 (Decl Summary): Update %define documentation.
1382 (Table of Symbols): Likewise.
1383 * src/ielr.c (LrType): Update documentation.
1384 * src/parse-gram.y (content.opt): Add production for ID.
1385 * tests/actions.at: Remove quotes in most tests.
1386 * tests/calc.at: Likewise.
1387 * tests/existing.at: Likewise.
1388 * tests/input.at: Likewise.
1389 * tests/local.at: Likewise.
1390 * tests/push.at: Likewise.
1391 * tests/reduce.at: Likewise.
1392 * tests/torture.at: Likewise.
1393
1394 2009-08-28 Joel E. Denny <jdenny@clemson.edu>
1395
1396 %define lr.type: make values lowercase IDs.
1397 That is, "LALR" => "lalr", "IELR" => "ielr", and
1398 "canonical LR" => "canonical-lr".
1399 * NEWS (2.5): Update documentation.
1400 * doc/bison.texinfo (Decl Summary): Likewise.
1401 * src/ielr.c (ielr): Use new values.
1402 * src/ielr.h (ielr): Update documentation.
1403 * src/reader.c (prepare_percent_define_front_end_variables): Use
1404 and validate new values.
1405 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
1406 grammars.
1407 * tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
1408
1409 2009-08-27 Eric Blake <ebb9@byu.net>
1410
1411 scan-gram: avoid portability trap with ctype usage.
1412 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
1413 Avoid compiler warning.
1414
1415 2009-08-27 Joel E. Denny <jdenny@clemson.edu>
1416
1417 tests: use perl for printing special sequences to files.
1418 And skip tests if perl is not available. This is better than
1419 playing tricks with shell portability. Suggested by Akim
1420 Demaille.
1421 * tests/input.at (Bad character literals): Use it here for
1422 omitting final newlines.
1423 (Bad escapes in literals): Use it here for special characters.
1424
1425 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
1426
1427 tests: show a use of %define lr.default-reductions "consistent"
1428 * tests/conflicts.at (%nonassoc and eof): Extend to test that it
1429 prevents the omission of expected tokens for %error-verbose.
1430
1431 2009-08-26 Akim Demaille <demaille@gostai.com>
1432
1433 tests: portability fix.
1434 * tests/input.at (Bad escapes in literals): Don't expect "echo
1435 '\0'" to output \ then 0.
1436
1437 2009-08-26 Joel E. Denny <jdenny@clemson.edu>
1438
1439 Actually handle the yytable zero value correctly this time.
1440 * data/bison.m4 (b4_integral_parser_tables_map): Don't mention
1441 zero values in the YYTABLE comments.
1442 * data/glr.c (yytable_value_is_error): Don't check for zero
1443 value.
1444 * data/lalr1.cc (yy_table_value_is_error_): Likewise.
1445 * data/yacc.c (yytable_value_is_error): Likewise.
1446 * data/lalr1.java (yy_table_value_is_error_): Likewise.
1447 (yysyntax_error): Fix typo in code: use yytable_ not yycheck_.
1448 * src/tables.h: In header comments, explain why it's useless to
1449 check for a zero value in yytable.
1450
1451 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
1452
1453 More fixes related to last two patches.
1454 * data/bison.m4 (b4_integral_parser_tables_map): Fix YYTABLE
1455 comments: zero indicates syntax error not default action.
1456 * data/c.m4 (b4_table_value_equals): Comment that YYID must be
1457 defined.
1458 * data/glr.c (yyis_pact_ninf): Rename to...
1459 (yypact_value_is_default): ... this.
1460 (yyisDefaultedState): Update for rename.
1461 (yyis_table_ninf): Rename to...
1462 (yytable_value_is_error): ... this, and check for value zero
1463 besides just YYTABLE_NINF.
1464 (yygetLRActions): Check for default value from yypact. It
1465 appears that this check is always performed before this function
1466 is invoked, and so adding the check here is probably redundant.
1467 However, the code may evolve after this subtlety is forgotten.
1468 Also, update for rename to yytable_value_is_error. Because that
1469 macro now checks for zero, a different but equivalent branch of
1470 the if-then-else here is evaluated.
1471 (yyreportSyntaxError): Update for rename to
1472 yytable_value_is_error. The zero condition was mishandled
1473 before.
1474 (yyrecoverSyntaxError): Update for renames. No behavioral
1475 changes.
1476 * data/lalr1.cc, data/lalr1.java (yy_pact_value_is_default_):
1477 New function.
1478 (yy_table_value_is_error_): New function.
1479 (parse): Use new functions where possible. No behavioral
1480 changes.
1481 (yysyntax_error_, yysyntax_error): Use yy_table_value_is_error_.
1482 The zero condition was mishandled before.
1483 * data/yacc.c (yyis_pact_ninf): Rename to...
1484 (yypact_value_is_default): ... this.
1485 (yyis_table_ninf): Rename to...
1486 (yytable_value_is_error): ... this, and check for value zero
1487 besides just YYTABLE_NINF.
1488 (yysyntax_error): Update for rename to yytable_value_is_error.
1489 The zero condition was mishandled before.
1490 (yyparse): Update for renames. No behavioral changes.
1491 * src/tables.h: Improve comments about yypact, yytable, etc.
1492 more. Most importantly, say yytable value of zero means syntax
1493 error not default action.
1494
1495 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
1496
1497 Fix %error-verbose for conflicts resolved by %nonassoc.
1498 * NEWS (2.5): Document.
1499 * data/glr.c (yyreportSyntaxError): Fix this by checking
1500 yyis_table_ninf.
1501 * data/yacc.c (yysyntax_error): Likewise.
1502 * data/lalr1.cc (yysyntax_error_): Fix this by checking
1503 yytable_ninf_.
1504 * data/lalr1.java (yysyntax_error): Likewise.
1505 * tests/conflicts.at (%nonassoc and eof): Update expected output
1506 and remove FIXME.
1507
1508 2009-08-25 Joel E. Denny <jdenny@clemson.edu>
1509
1510 Some code and documentation improvements.
1511 * data/c.m4 (b4_table_value_equals): New macro to capture
1512 some repeated code.
1513 * data/glr.c (yyis_pact_ninf): Use it here.
1514 (yyis_table_ninf): Likewise.
1515 (yyreportSyntaxError): Improve internal comments.
1516 * data/yacc.c (yyis_pact_ninf): New macro copied from glr.c.
1517 Use it everywhere possible.
1518 (yyis_table_ninf): Likewise.
1519 (yysyntax_error): Improve internal comments.
1520 * data/lalr1.cc (yysyntax_error_): Likewise.
1521 * data/lalr1.java (yysyntax_error): Likewise.
1522 * src/tables.h: Improve comments about yypact, yytable, etc.
1523
1524 2009-08-21 Joel E. Denny <jdenny@clemson.edu>
1525
1526 Use locale when quoting.
1527 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER): Use
1528 quote rather than implementing quoting here.
1529
1530 2009-08-20 Eric Blake <ebb9@byu.net>
1531
1532 Make previous patch more robust.
1533 * src/output.c (ARRAY_CARDINALITY): New macro, copied from
1534 argmatch.h.
1535 (output_skeleton): Use it.
1536 Suggested by Akim Demaille.
1537
1538 Import latest m4/m4.m4.
1539 * submodules/autoconf: Update to autoconf 2.64.
1540 * configure.ac (M4_GNU_OPTION): New define.
1541 * src/output.c (output_skeleton): Use it to resolve FIXME.
1542 * NEWS: Mention this.
1543
1544 2009-08-19 Joel E. Denny <jdenny@clemson.edu>
1545
1546 Fix complaints about escape sequences.
1547 Discussed starting at
1548 <http://lists.gnu.org/archive/html/bison-patches/2009-08/msg00036.html>.
1549 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER):
1550 For a \0 and similar escape sequences meaning the null
1551 character, report an invalid escape sequence instead of an
1552 invalid null character because the latter does not actually
1553 appear in the user's input.
1554 In all escape sequence complaints, don't escape the initial
1555 backslash, and don't quote when the sequence appears at the end
1556 of the complaint line unless there's whitespace that quotearg
1557 won't escape.
1558 Consistently say "invalid" not "unrecognized".
1559 Consistently prefer "empty character literal" over "extra
1560 characters in character literal" warning for invalid escape
1561 sequences; that is, consistently discard those sequences.
1562 * tests/input.at (Bad escapes in literals): New.
1563
1564 2009-08-19 Akim Demaille <demaille@gostai.com>
1565
1566 doc: fixes.
1567 * doc/bison.texinfo: Fix minor Texinfo errors.
1568
1569 2009-08-19 Akim Demaille <demaille@gostai.com>
1570
1571 tests: distcc compliance.
1572 * tests/synclines.at (AT_SYNCLINES_COMPILE): Discard distcc's
1573 error messages from the output.
1574
1575 2009-08-19 Akim Demaille <demaille@gostai.com>
1576
1577 variables: simplify the upgrade of namespace into api.namespace.
1578
1579 This patch simplifies "variables: rename namespace as
1580 api.namespace", commit 67501061076ba46355cfd9f9361c7eed861b389c.
1581 Suggested by Joel E. Denny in
1582 http://lists.gnu.org/archive/html/bison-patches/2009-07/msg00006.html
1583
1584 * src/muscle-tab.c (muscle_percent_variable_update): New.
1585 (muscle_percent_define_insert): Use it in replacement of the
1586 previous tr invocation.
1587 Remove variable_tr, no longer needed.
1588 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
1589 Remove.
1590 * data/c++.m4: No longer handle namespace -> api.namespace.
1591 * tests/input.at (%define backward compatibility): Check that
1592 namespace is treated as api.namespace.
1593
1594 2009-08-19 Akim Demaille <demaille@gostai.com>
1595
1596 doc: %initial-action to initialize yylloc.
1597 Reported by Bill Allombert.
1598 * doc/bison.texinfo: Set fill-column to 76.
1599 (Location Type): Document the use of %initial-action to initialize
1600 yylloc.
1601
1602 2009-08-19 Akim Demaille <demaille@gostai.com>
1603
1604 lalr1.cc: use state_type.
1605 * data/lalr1.cc (yysyntax_error_): Use state_type.
1606 Move argument names into yy*.
1607
1608 2009-08-19 Akim Demaille <demaille@gostai.com>
1609
1610 lalr1.cc: get rid of yyparse's yystate.
1611 yystate and yystack_[0].state are equal, keep only the latter.
1612 The former was also used as a temporary variable to compute the
1613 post-reduction state. Move this computation into an auxiliary
1614 function.
1615
1616 * data/glr.c (yyLRgotoState): Fuse variable definition and first
1617 assignment.
1618 * data/lalr1.cc (yy_lr_goto_state_): New.
1619 (yyparse): Use it.
1620 Replace remaining uses of yystate by yystate_[0].state.
1621 Remove the former.
1622
1623 2009-08-19 Akim Demaille <demaille@gostai.com>
1624
1625 lalr1.cc: destroy $$ when YYERROR is called.
1626 * data/lalr1.cc (yyreduce): Compute the resulting state before
1627 running the user action so that yylhs is a valid symbol.
1628 (yyerrorlab): Since yylhs is complete (it knows its type), we can
1629 simply call yy_destroy_ to destroy $$ on YYERROR invocations.
1630 * tests/c++.at (AT_CHECK_VARIANTS): Test YYERROR with variants.
1631
1632 2009-08-18 Joel E. Denny <jdenny@clemson.edu>
1633
1634 maint: update for gnulib's recent update-copyright changes
1635 * gnulib: Update.
1636 * .x-update-copyright (COPYING): Add as it's no longer implied
1637 when .x-update-copyright is present.
1638 * cfg.mk (update-copyright-local): Remove, now ignored.
1639 (update-copyright): Declare update-b4-copyright as a dependency.
1640
1641 2009-08-17 Akim Demaille <demaille@gostai.com>
1642
1643 build: require gettext 0.17.
1644
1645 Suggested by Bruno Haible.
1646 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
1647 * configure.ac: require gettext 0.17 to ensure compatibility with
1648 gnulib.
1649
1650 2009-08-17 Akim Demaille <demaille@gostai.com>
1651
1652 build: lower gettext requirements.
1653
1654 Bison was uselessly requiring the formatstring macros from
1655 gettext, which resulted in mo files not being installed on systems
1656 that perfectly supported Bison mo files. Lower the requirement.
1657 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
1658
1659 * configure.ac: Require need-ngettext instead of
1660 need-formatstring-macros.
1661 Reported by Martin Jabocs.
1662 Suggested by Bruno Haible.
1663 * INSTALL: Restructure.
1664 (Internationalization): New.
1665
1666 2009-08-14 Joel E. Denny <jdenny@clemson.edu>
1667
1668 maint: fix use of copyright year intervals.
1669 * gnulib: Update.
1670 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
1671 as now recommended in gnulib/NEWS.
1672 * build-aux/update-b4-copyright: Fix.
1673 * cfg.mk (update-copyright-env): Configure update-copyright.
1674
1675 2009-08-13 Joel E. Denny <jdenny@clemson.edu>
1676
1677 Make it easier to write deterministic tests.
1678 Continues Akim's work from his 2009-06-10 commits.
1679 * src/reader.c (check_and_convert_grammar): Don't add any
1680 symbols after the first symbols_do invocation.
1681 * src/symtab.c (symbols_sorted): New static global.
1682 (user_token_number_redeclaration): Update comments.
1683 (symbol_from_uniqstr): If a new symbol is being created, assert
1684 that symbols_sorted hasn't been allocated yet.
1685 (symbols_free): Free symbols_sorted.
1686 (symbols_cmp, symbols_cmp_qsort): New functions.
1687 (symbols_do): Sort symbol_table into symbols_sorted on first
1688 invocation.
1689 * tests/input.at (Numbered tokens): Recombine tests now that the
1690 output should be deterministic across multiple numbers.
1691
1692 2009-08-12 Akim Demaille <demaille@gostai.com>
1693
1694 tests: GCC 4.5 compliance.
1695 * tests/synclines.at (AT_SYNCLINES_COMPILE): Adjust to GCC 4.5's
1696 messages about #error.
1697
1698 2009-08-12 Akim Demaille <demaille@gostai.com>
1699
1700 build: fix the generation of the documentation.
1701 Some of our targets use "bison --help", but they can't depend on
1702 "bison" itself (to avoid additional requirements on the user), so
1703 they used to call "make src/bison" in the commands. Then
1704 concurrent builds may fail: one make might be aiming one of its
1705 jobs at compiling src/bison, and another job at generating the man
1706 page. If the latter is faster than the former, then we have two
1707 makes that concurrently try to compile src/bison.
1708
1709 This might also be a more convincing explanation for the failure
1710 described in the patch "build: fix paths".
1711
1712 * Makefile.am (SUFFIXES): Initialize.
1713 * build-aux/move-if-change: New, symlink to gnulib's.
1714 * build-aux/local.mk: Ship it.
1715 * doc/common.x: Remove, merged into...
1716 * doc/bison.x: here.
1717 * doc/local.mk (doc/bison.help): New.
1718 ($(CROSS_OPTIONS_TEXI)): Depend on it.
1719 Use src/bison.
1720 (.x.1): Replace with...
1721 (doc/bison.1): this explicit, simpler, target.
1722 (common_dep): Remove, inlined where appropriate.
1723 (SUFFIXES, PREPATH): Remove, unused.
1724
1725 2009-08-12 Akim Demaille <demaille@gostai.com>
1726
1727 gnulib: improve prefixing.
1728 * configure.ac (gl_PREFIXED_LIBOBJS): Don't rename it, rather,
1729 change the value of...
1730 (gl_LIBOBJS): this.
1731 Adjust more variables.
1732 * etc/prefix-gnulib-mk (prefix_assignment): Don't rename
1733 gl_LIBOBJS.
1734 (prefix): Also transform rules whose targets have slashes.
1735 Use $prefix liberally.
1736 Map @MKDIR_P@ to $(MKDIR_P).
1737 Prefix directories that are mkdir'd.
1738
1739 2009-08-12 Akim Demaille <demaille@gostai.com>
1740
1741 build: fix paths.
1742 When using $(top_builddir) inconsistently, Make (including GNU
1743 Make) is sometimes confused. As a result it may want to build
1744 lib/libbison.la and $(top_builddir)/lib/libbison.la (the same
1745 file, different names) concurrently, which, amusingly enough,
1746 might end with:
1747
1748 ranlib lib/libbison.a
1749 ranlib lib/libbison.a
1750 make[2]: *** [lib/libbison.a] Segmentation fault
1751
1752 on OS X.
1753
1754 * doc/local.mk, src/local.mk: Do not use $(top_builddir) when not
1755 needed.
1756
1757 2009-08-12 Akim Demaille <demaille@gostai.com>
1758
1759 distcheck: fix.
1760
1761 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
1762
1763 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
1764
1765 * tests/local.mk (TESTSUITE_AT): Add named-refs.at.
1766
1767 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
1768
1769 Miscellaneous code readability improvements.
1770
1771 * src/reader.c (reader): Move %define front-end variable
1772 defaults and checking into...
1773 (prepare_percent_define_front_end_variables): ... this new
1774 function.
1775
1776 * src/scan-gram.l (INITIAL): For consistency with string
1777 literals, don't store open quote on character literal. It's
1778 discarded before returning anyway.
1779 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
1780 Make length test more readable, and make the character stored
1781 for an empty literal more obvious while consistent with the
1782 previous behavior.
1783
1784 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
1785 USER_NUMBER_HAS_STRING_ALIAS throughout.
1786 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
1787 that is repeated in symtab.h. Improve argument names to make it
1788 clear which side of the symbol-string alias pair is which.
1789 (symbol_check_alias_consistency): Improve local variable names
1790 for the same purpose.
1791 * src/symtab.h (struct symbol): Make comments about aliases
1792 clearer.
1793 (symbol_make_alias): Improve comments and argument name.
1794 * src/output.c (token_definitions_output): Update for rename to
1795 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
1796
1797 2009-08-08 Alex Rozenman <rozenman@gmail.com>
1798
1799 Convert "misleading reference" messages to warnings.
1800 * src/scan-code.l: New function 'show_sub_messages', more
1801 factoring.
1802 * tests/named-ref.at: Adjust tests.
1803
1804 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
1805
1806 maint: run "make update-copyright"
1807
1808 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
1809
1810 maint: make update-b4-copyright easier to use
1811 * build-aux/update-b4-copyright: In warnings, report line
1812 numbers rather than character positions.
1813 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
1814 that update-copyright runs it.
1815 * gnulib: Update.
1816
1817 2009-08-05 Joel E. Denny <jdenny@clemson.edu>
1818
1819 maint: clean up update-b4-copyright code
1820 * build-aux/update-b4-copyright: Do not accept 2-digit
1821 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
1822 Don't accept a `[' in a b4_copyright argument.
1823 Format code more consistently.
1824 Don't assume b4*copyright never occurs.
1825
1826 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
1827
1828 maint: automate b4_copyright updates.
1829 * Makefile.am (update-b4-copyright): New target rule.
1830 * build-aux/local.mk (EXTRA_DIST): Add update-b4-copyright.
1831 * build-aux/update-b4-copyright: New.
1832 * data/yacc.c: Remove stray characters around b4_copyright
1833 invocations.
1834
1835 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
1836
1837 maint: automate annual package-wide copyright-year update.
1838 * .x-update-copyright: New.
1839 * Makefile.am (EXTRA_DIST): Remove maint.mk.
1840 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
1841 update-copyright. Remove gnumakefile, which is implied by
1842 maintainer-makefile.
1843 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
1844 * gnulib: Update.
1845 * maint.mk: Remove, now copied from gnulib.
1846 * examples/extexi: Add missing "(C)" in copyright statement so
1847 update-copyright can recognize it.
1848 * src/LR0.h: Likewise.
1849 * src/print.h: Likewise.
1850 * src/print_graph.h: Likewise.
1851 * src/gram.c: Add missing comma in copyright statement.
1852 * src/gram.h: Likewise.
1853
1854 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
1855
1856 Fix "make distcheck".
1857 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
1858 of just calc.stamp.
1859
1860 2009-08-01 Joel E. Denny <jdenny@clemson.edu>
1861
1862 Pacify "gcc -Wunused" for the input function from Flex.
1863 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
1864 and later.
1865 * src/scan-code.l: Add "%option noinput", which I cannot find in
1866 the Flex manual, but which Flex has supported since at least as
1867 far back as 2.5.4. However, if any of our developers still use
1868 Flex 2.5.4, they'll need to stop configuring with
1869 --enable-gcc-warnings because "%option noinput" didn't work
1870 correctly until Flex 2.5.6.
1871 * src/scan-gram.l: Likewise.
1872 * src/scan-skel.l: Likewise.
1873
1874 2009-07-31 Alex Rozenman <rozenman@gmail.com>
1875
1876 Fix --enable-gcc-warnings problems.
1877 * src/reader.c: Adjust variable names.
1878 * src/scan-code.l: Fix prototypes and adjust names.
1879 * src/named-ref.c: Remove redundant "if".
1880
1881 2009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
1882
1883 Fix a --enable-gcc-warnings problem.
1884 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
1885 variable.
1886
1887 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
1888
1889 Warn about character literals not of length one.
1890 * NEWS (2.5): Document.
1891 * src/scan-gram.l (INITIAL): Remove comment that we don't check
1892 the length.
1893 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
1894 * tests/input.at (Bad character literals): New test group.
1895
1896 2009-07-24 Alex Rozenman <rozenman@gmail.com>
1897
1898 Fix some memory leaks.
1899 * src/named-ref.c: Add a pointer check (named_ref_free).
1900 * src/scan-code.l: New function (variant_table_free). Called in
1901 code_scanner_free.
1902 * src/symlist.c: Call to named_ref_free (symbol_list_free).
1903
1904 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
1905
1906 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
1907
1908 2009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
1909
1910 Some M4 cleanup in the testsuite.
1911 Suggested by Eric Blake at
1912 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
1913 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
1914 complicate the code by distinguishing between a missing value
1915 and an empty string value for an optional argument. This fix is
1916 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
1917 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
1918 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
1919 arguments are not needed because of the following changes.
1920 Fix stale comments.
1921 Bison developers should use GNU M4 and should not use
1922 POSIXLY_CORRECT when building the test suite, so do not
1923 complicate the code by avoiding $10 and above.
1924 Do not quote an empty string value for an optional argument, and
1925 do not distinguish between a missing value and an empty string
1926 value.
1927
1928 2009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1929
1930 Revert unnecessary column realignment in --help output.
1931 Reported by Akim Demaille at
1932 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
1933 * src/getargs.c (usage): Here.
1934
1935 2009-07-04 Alex Rozenman <rozenman@gmail.com>
1936
1937 Alphabetical order in src/local.mk.
1938 * src/local.mk: Adjust.
1939
1940 2009-07-04 Alex Rozenman <rozenman@gmail.com>
1941
1942 Style changes and factoring.
1943 * src/named-ref.h: Add comments.
1944 * src/parse-gram.y: Readability and style changes.
1945 * src/reader.c: Factoring: assign_named_ref function.
1946 * src/scan-code.l: Factoring and style changes. Rename
1947 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
1948 Use "unsigned" type for variant index. Improve readablity.
1949 * src/scan-gram.l: Change error messages and add comments.
1950 * src/symlist.h: symbol_list_null: New function decl.
1951 * src/symlist.c: symbol_list_null: Implement here.
1952 * tests/named-refs.at: Adjust for new error messages.
1953
1954 2009-06-29 Eric Blake <ebb9@byu.net>
1955
1956 scan-code: avoid compiler warnings
1957 * src/scan-code.l (parse_named_ref): Use correct specifiers.
1958
1959 2009-06-29 Akim Demaille <demaille@gostai.com>
1960
1961 build: avoid concurrent extraction of calc++.
1962 * examples/calc++/Makefile.am (calc.stamp): New.
1963 Depend on it to create the sources of calc++ so that concurrent
1964 builds don't launch several "extexi" in parallel.
1965 Not only this is inefficient, this also builds incorrect sources
1966 with several extractions mixed together.
1967
1968 2009-06-29 Akim Demaille <demaille@gostai.com>
1969
1970 parse.error: fix.
1971 * data/bison.m4: Move code related to specific variables after the
1972 definition of the variable-maintaining macros so that we don't
1973 "invoke" b4_percent_define_check_values before it is defined.
1974
1975 2009-06-29 Akim Demaille <demaille@gostai.com>
1976
1977 variables: parse.error
1978
1979 Implement, document, and test the replacement of %error-verbose
1980 by %define parse.error "verbose".
1981 * data/bison.m4 (b4_error_verbose_if): Reimplement to track the
1982 values of the parse.error variable.
1983 Make "simple" its default value.
1984 Check the valid values.
1985 * src/parse-gram.y: Use %define parse.error.
1986 (PERCENT_ERROR_VERBOSE): New token.
1987 Support it.
1988 * src/scan-gram.l: Support %error-verbose.
1989
1990 * doc/bison.texinfo (Decl Summary): Replace the documentation of
1991 %define error-verbose by that of %define parse.error.
1992 * NEWS: Document it.
1993
1994 * tests/actions.at, tests/calc.at: Use parse.error instead of
1995 %error-verbose.
1996
1997 2009-06-27 Alex Rozenman <rozenman@gmail.com>
1998
1999 Implement support for named symbol references.
2000 * src/parse-gram.y: Add new syntax (named_ref.opt).
2001 * src/reader.c: Store named refs in symbol lists.
2002 * src/reader.h: New argument for symbol_append and
2003 action_append functions.
2004 * src/scan-code.h: Add new field (named_ref) into
2005 code_props data structure. Keeps named ref of midrule
2006 actions.
2007 * src/scan-code.l: Support for named refs in semantic
2008 action code. New function 'parse_named_ref'.
2009 * src/scan-gram.l: Support bracketed id.
2010 * src/symlist.c: Store named refs in symbol lists.
2011 * src/symlist.h: New field in symbol list: named_ref.
2012 * src/named-ref.h: New file, a struct for named_ref.
2013 * src/named-ref.cp: New file, named_ref_new function.
2014 * src/local.mk: Add two new files.
2015 * tests/testsuite.at: Include new test group:
2016 * tests/named-refs.at: this new file.
2017
2018 2009-06-25 Akim Demaille <demaille@gostai.com>
2019
2020 hash: check insertion for memory exhaustion.
2021 * src/uniqstr.c (uniqstr_new): New.
2022
2023 2009-06-24 Akim Demaille <demaille@gostai.com>
2024
2025 variables: rename namespace as api.namespace.
2026 Discussed in
2027 http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00033.html
2028
2029 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
2030 New.
2031 (b4_percent_define_use): New.
2032 Use it where applicable.
2033 * data/c++.m4: Replace uses of the variable "namespace" by
2034 "api.namespace".
2035 Default the latter to the former.
2036 * doc/bison.texinfo (Decl Summary): Document "namespace" as
2037 obsolete.
2038 Document api.namespace.
2039 Use @samp to document %define uses, keep @code for identifiers.
2040 * NEWS: Likewise.
2041 * tests/c++.at, tests/input.at: Test api.namespace instead of
2042 namespace. (The tests passed with namespace.)
2043
2044 2009-06-11 Akim Demaille <demaille@gostai.com>
2045
2046 style changes.
2047 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
2048 * src/print-xml.c: Style changes.
2049 * tests/conflicts.at: Comment changes.
2050
2051 2009-06-11 Akim Demaille <demaille@gostai.com>
2052
2053 xml: beware of user strings used to give a %prec to rules.
2054 * tests/conflicts.at (%prec with user strings): New.
2055 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
2056 XML output.
2057
2058 2009-06-11 Akim Demaille <demaille@gostai.com>
2059
2060 hash: check insertion for memory exhaustion.
2061 * src/muscle-tab.c (muscle_insert, muscle_grow)
2062 * src/state.c (state_hash_insert): Check the return value of
2063 hash_insert.
2064
2065 2009-06-11 Akim Demaille <demaille@gostai.com>
2066
2067 tests: honor TESTSUITEFLAGS in every check target.
2068 * tests/local.mk (RUN_TESTSUITE): New.
2069 (check-local, installcheck-local, maintainer-check-g++)
2070 (maintainer-check-posix, maintainer-check-valgrind): Use it.
2071
2072 2009-06-10 Akim Demaille <demaille@gostai.com>
2073
2074 deterministic test suite.
2075 Some consistency checks on symbols are performed after all the
2076 symbols were read, by an iteration over the symbol table. This
2077 traversal is nondeterministic, which can be a problem for test
2078 cases.
2079 Avoid this.
2080 Addresses another form of nondeterminism reported by Joel E. Denny.
2081 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
2082
2083 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
2084 test in two.
2085 Use different file names for the three tests to make the
2086 maintenance easier.
2087
2088 2009-06-10 Akim Demaille <demaille@gostai.com>
2089
2090 gnulib: update.
2091 * gnulib: Update to latest.
2092 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
2093 * m4/.gitignore: Regen.
2094 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
2095 Call xalloc_die on hash_insert failures.
2096 Requested by the new __warn_unused_result__ attribute of
2097 hash_insert.
2098
2099 2009-06-10 Akim Demaille <demaille@gostai.com>
2100
2101 deterministic user-token-number redeclaration errors.
2102 Address nondeterminism reported by Joel E. Denny.
2103 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
2104
2105 * src/uniqstr.h: Comment changes.
2106 * src/location.h (boundary_cmp, location_cmp): New.
2107 * src/symtab.c (user_token_number_redeclaration): New.
2108 (symbol_translation): Use it.
2109 * tests/input.at (Numbered tokens): Adjust the expected output.
2110
2111 2009-05-25 Akim Demaille <demaille@gostai.com>
2112
2113 build: avoid ignored errors.
2114 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Don't generate ignored
2115 errors, they pollute the output.
2116
2117 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2118
2119 Convert multiple variable definition warnings to complaints.
2120 * NEWS (2.5): Add a new entry for that change.
2121 * doc/bison.texinfo (Decl Summary): Update %define entry.
2122 (Bison Options): Update -D/--define/-F/--force-define entry.
2123 * src/muscle-tab.c (muscle_percent_define_insert): Implement.
2124 * src/muscle-tab.h (muscle_percent_define_insert): Update
2125 comments.
2126 * tests/input.at (`%define errors'): Update.
2127 (`%define, --define, --force-define'): Update.
2128
2129 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2130
2131 -F/--force-define and relative %define/-D/--define priorities.
2132 * NEWS (2.5): Add documentation to -D/--define entry.
2133 * build-aux/cross-options.pl: Hard-code association of
2134 --force-define with %define.
2135 * doc/bison.texinfo (Decl Summary): In %define entry,
2136 cross-reference command-line options.
2137 (Bison Options): Add documentation to -D/--define entry.
2138 (Option Cross Key): Widen column for --force-define row.
2139 * src/getargs.c (usage): Document -F/--force-define. Realign
2140 options in output.
2141 (short_options, long_options, getargs): Parse -F/--force-define,
2142 and update muscle_percent_define_insert invocations.
2143 * src/muscle-tab.h (muscle_percent_define_how): New enum type.
2144 (muscle_percent_define_insert): Add argument with that type.
2145 * src/muscle-tab.c (muscle_percent_define_insert): Implement
2146 -F/--force-define behavior and priorities.
2147 (muscle_percent_define_ensure): Update
2148 muscle_percent_define_insert invocation.
2149 * src/parse-gram.y (prologue_declaration): Update
2150 muscle_percent_define_insert invocations.
2151 * tests/input.at (`%define, --define'): Rename to...
2152 (`%define, --define, --force-define'): ... this and extend.
2153
2154 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
2155
2156 Update some comments to make sense for -D.
2157 * data/bison.m4 (b4_check_user_names): In header comments, say
2158 "user occurrence" instead of "grammar occurrence".
2159 * src/muscle-tab.h (muscle_percent_define_insert): Likewise.
2160 (muscle_percent_code_grow): Likewise just for consistency.
2161
2162 2009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
2163
2164 * data/c++.m4 (b4_namespace_close): Simplify slightly.
2165
2166 2009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
2167
2168 Handle a trailing `:' in a user-supplied C++ namespace better.
2169 * data/c++.m4 (b4_namespace_close): Don't let it be printed
2170 among the closing braces here. This fix might make the
2171 generated code easier to debug, but otherwise it should be
2172 insignificant because a trailing `:' is a C++ error already.
2173
2174 2009-05-19 Akim Demaille <demaille@gostai.com>
2175
2176 remove useless variable.
2177 * src/getargs.c (skeleton_arg): Remove now useless variable.
2178 Should help the compiler see that this printf-like call is sane.
2179
2180 2009-05-15 Akim Demaille <demaille@gostai.com>
2181
2182 Rename token.prefix as api.tokens.prefix.
2183 Discussed here.
2184 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00024.html.
2185
2186 * NEWS, data/bison.m4, data/c.m4, data/java.m4, doc/bison.texinfo,
2187 * tests/c++.at, tests/calc.at, tests/java.at, tests/local.at
2188 (token.prefix): Rename as...
2189 (api.tokens.prefix): this.
2190
2191 2009-05-11 Akim Demaille <demaille@gostai.com>
2192
2193 doc: use C++ headers.
2194 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
2195 headers.
2196
2197 2009-05-11 Akim Demaille <demaille@gostai.com>
2198
2199 doc: token.prefix
2200 * doc/bison.simple (Decl Summary): Document token.prefix.
2201 (Calc++ Parser): Various fixes.
2202 Formatting changes.
2203 Use token.prefix.
2204 Introduce a macro TOKEN to shorten the code and make it more
2205 readable.
2206 (Calc++ Scanner): Adjust.
2207 * NEWS (Variable token.prefix): New.
2208
2209 2009-05-04 Akim Demaille <demaille@gostai.com>
2210
2211 bison: catch bad symbol names.
2212 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
2213 * tests/input.at: Adjust.
2214
2215 2009-05-04 Akim Demaille <demaille@gostai.com>
2216
2217 identifiers: dashes are letters.
2218 Dashes can now start identifiers (symbols and directives).
2219
2220 * src/scan-gram.l ({letter}): Add dash.
2221 ({id}): Remove it.
2222 * tests/input.at (Symbols): Adjust.
2223 Remove stray comment.
2224 * tests/regression.at (Invalid inputs): Adjust error message.
2225 * doc/bison.texinfo (Symbols): Update.
2226
2227 2009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
2228
2229 Declare %code to be a permanent feature.
2230 * NEWS (2.4.2): Here.
2231 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
2232 experimental.
2233 (Decl Summary): Likewise.
2234
2235 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
2236
2237 Convert underscores to dashes in some %define variable names.
2238 For now, just api.push-pull and lr.keep-unreachable-states.
2239 Maintain old names for backward compatibility.
2240 * NEWS (2.5): Document.
2241 * data/c.m4 (b4_identification): Update comment.
2242 * data/yacc.c: Update access.
2243 * doc/bison.texinfo: Update.
2244 * etc/bench.pl.in (bench_push_parser): Update use.
2245 * src/files.c (tr): Move to...
2246 * src/getargs.c, src/getargs.h (tr): ... here because I can't
2247 think of a better place to expose it. My logic is that, for all
2248 uses of tr so far, command-line arguments can be involved, and
2249 getargs.h is already included.
2250 * src/main.c (main): Update access.
2251 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
2252 variable names to new variable names before assigning value.
2253 * src/reader.c (reader): Update setting default.
2254 * tests/calc.at: Update uses.
2255 * tests/conflicts.at (Unreachable States After Conflict
2256 Resolution): Update use.
2257 * tests/input.at (%define enum variables): Update use.
2258 (%define backward compatibility): New test group.
2259 * tests/push.at: Update uses.
2260 * tests/reduce.at: Update uses.
2261 * tests/torture.at: Update uses.
2262
2263 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
2264
2265 Set all front-end %define defaults in one place.
2266 * src/main.c (main): Move lr.keep_unreachable_states default...
2267 * src/reader.c (reader): ... to here.
2268
2269 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
2270
2271 Rename lr.default_reductions to lr.default-reductions.
2272 * NEWS (2.5): Here.
2273 * doc/bison.texinfo: Here.
2274 * src/lalr.c (initialize_LA): Here.
2275 * src/print.c (print_reductions): Here.
2276 * src/reader.c (reader): Here.
2277 * src/tables.c (action_row): Here.
2278 * tests/input.at (%define enum variables): Here.
2279 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
2280
2281 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
2282
2283 Pacify ./configure --enable-gcc-warnings.
2284 * tests/input.at (Symbols): Prototype yyerror and yylex.
2285
2286 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
2287
2288 Document how `%define "var" "value"' is not M4-friendly.
2289 * src/parse-gram.y (variable): In comments here.
2290
2291 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
2292
2293 Clean up recent patches a little.
2294 Reported by Akim Demaille.
2295 * doc/bison.texinfo (Understanding): Fix typos.
2296 * src/print.c (print_reductions): Don't use negated variable.
2297
2298 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
2299
2300 List accepted values for a %define enum variable with an invalid value.
2301 Suggested by Akim Demaille at
2302 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
2303 * data/bison.m4 (_b4_percent_define_check_values): Implement.
2304 * src/muscle-tab.c (muscle_percent_define_check_values): Implement.
2305 * tests/input.at (%define lr.default_reductions invalid values): Merge
2306 into...
2307 (%define enum variables): ... here, and update output.
2308
2309 2009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
2310
2311 Rename "default rule" to "default reduction".
2312 This includes changing variable names in code, changing
2313 comments, and renaming %define lr.default_rules to %define
2314 lr.default_reductions.
2315 * NEWS (2.5): Update IELR documentation.
2316 * data/bison.m4 (b4_integral_parser_tables_map): Adjust YYDEFACT
2317 documentation.
2318 * data/glr.c, data/lalr1.java: Sync copyright dates.
2319 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
2320 and lr.type documentation. Make some other wording
2321 improvements.
2322 (Glossary): Adjust cross-references and Default Reduction
2323 definition.
2324 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
2325 Remove a confusing comment pointed out by Akim Demaille.
2326 (initialize_LA): Adjust code.
2327 * src/print-xml.c (print_reductions): Adjust code.
2328 * src/print.c (print_reductions): Adjust code.
2329 * src/reader.c (reader): Adjust code.
2330 * src/tables.c (action_row): Adjust code.
2331 (token_actions): Adjust code.
2332 * src/tables.h: Adjust YYDEFACT documentation.
2333 * tests/input.at (%define lr.default_rules invalid values):
2334 Rename test group to...
2335 (%define lr.default_reductions invalid values): ... this, and
2336 update grammar file and expected output.
2337 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
2338 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
2339
2340 2009-04-21 Akim Demaille <demaille@gostai.com>
2341
2342 tests: check the use of dashes and periods in symbols.
2343 * tests/input.at (Symbol): New test group.
2344
2345 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2346
2347 Document %define lr.type and lr.default_rules.
2348 * NEWS (2.5): Add an entry.
2349 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
2350 besides just LALR(1) and GLR(1).
2351 * doc/bison.texinfo (Introduction): Likewise.
2352 (Language and Grammar): Bison is no longer limited to LALR(1)
2353 restrictions.
2354 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
2355 when trying to distinguish from GLR. Talk about LR(1) grammars
2356 rather than LALR(1) grammars.
2357 (Decl Summary): In %define api.push_pull entry, say it applies
2358 to deterministic parsers in C rather than LALR(1) parsers in C.
2359 Add lr.default_rules entry.
2360 Add lr.type entry.
2361 (Mystery Conflicts): Bison is no longer limited to LALR(1)
2362 restrictions.
2363 (Generalized LR Parsing): Same changes as for the previous GLR
2364 section.
2365 (Memory Management): Say deterministic rather than LALR(1).
2366 (Understanding): Correct some bison output.
2367 Index discussion of "accepting state".
2368 Say deterministic rather than LALR(1).
2369 (Bison Options): In --yacc entry, say deterministic rather than
2370 LALR(1).
2371 In --report, --graph, and --xml entries, just don't mention
2372 LALR(1).
2373 (C++ Parsers): Say deterministic rather than LALR(1).
2374 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
2375 (Glossary): Add Accepting State, Consistent State, Default Rule,
2376 and IELR(1) definitions.
2377 In Generalized LR (GLR) definition, make same changes as in
2378 previous GLR sections.
2379 In LALR(1) definition, say Bison uses LALR(1) by default rather
2380 than implying Bison is limited to LALR(1).
2381 (LocalWords): Add IELR.
2382
2383 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2384
2385 Finish implementing %define lr.type.
2386 Its value can be "LALR", "IELR", or "canonical LR".
2387 * lib/timevar.def (TV_IELR_PHASE1): New var.
2388 (TV_IELR_PHASE2): New var.
2389 (TV_IELR_PHASE3): New var.
2390 (TV_IELR_PHASE4): New var.
2391 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
2392 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
2393 Sbitset.h, ielr.h, and ielr.c.
2394 * src/getargs.h, src/getargs.c (enum trace, trace_args,
2395 trace_types): Add trace_ielr.
2396 * src/lalr.h, src/lalr.c (ngotos): Export it.
2397 (F): Rename to...
2398 (goto_follows): ... this, update all uses, and export it.
2399 (set_goto_map): Export it.
2400 (map_goto): Export it.
2401 (compute_lookahead_tokens): Don't free goto_follows yet. Now
2402 handled in ielr.
2403 (initialize_LA): Export it. Move lookback allocation to...
2404 (lalr): ... here because, for canonical LR, initialize_LA must
2405 be invoked but lookback and much of the rest of LALR isn't
2406 needed.
2407 * main.c (main): Instead of lalr, invoke ielr, which invokes
2408 lalr.
2409 * src/reader.c (reader): Default lr.type to "LALR".
2410 Default lr.default_rules to "accepting" if lr.type is "canonical
2411 LR". Leave the default as "all" otherwise.
2412 Check for a valid lr.type value.
2413 * src/state.h, src/state.c (struct state_list): Add state_list
2414 member.
2415 (state_new): Initialize state_list member to NULL.
2416 (state_new_isocore): New function, exported.
2417 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
2418 exercises all values of lr.type.
2419 (GNU AWK Grammar): Rename test group to...
2420 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
2421 AT_TEST_EXISTING_GRAMMAR.
2422 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
2423 (GNU pic Grammar): Rename test group to...
2424 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
2425 AT_TEST_EXISTING_GRAMMAR.
2426 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
2427 all values of lr.type.
2428 (Single State Split): New test groups using AT_TEST_LR_TYPE.
2429 (Lane Split): Likewise.
2430 (Complex Lane Split): Likewise.
2431 (Split During Added Lookahead Propagation): Likewise.
2432
2433 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2434
2435 Add new files for IELR and canonical LR implementation.
2436 * src/AnnotationList.c: New.
2437 * src/AnnotationList.h: New.
2438 * src/InadequacyList.c: New.
2439 * src/InadequacyList.h: New.
2440 * src/Sbitset.c: New.
2441 * src/Sbitset.h: New.
2442 * src/ielr.c: New.
2443 * src/ielr.h: New.
2444
2445 2009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
2446
2447 Implement %define lr.default_rules.
2448 Its value describes the states that are permitted to contain
2449 default rules: "all", "consistent", or "accepting".
2450 * src/reader.c (reader): Default lr.default_rules to "all".
2451 Check for a valid lr.default_rules value.
2452 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
2453 is "accepting", then only mark the accepting state as
2454 consistent.
2455 (initialize_LA): Tell state_lookahead_tokens_count whether
2456 lr.default_rules is "accepting".
2457 * src/tables.c (action_row): If lr.default_rules is not "all",
2458 then disable default rules in inconsistent states.
2459 * src/print.c (print_reductions): Use this opportunity to
2460 perform some assertions about whether lr.default_rules was
2461 obeyed correctly.
2462 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
2463 helps with checking the parser tables for a grammar.
2464 * tests/input.at (%define lr.default_rules invalid values): New
2465 test group.
2466 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
2467 AT_TEST_TABLES_AND_PARSE.
2468 (`no %define lr.default_rules'): New test group generated by
2469 AT_TEST_LR_DEFAULT_RULES.
2470 (`%define lr.default_rules "all"'): Likewise.
2471 (`%define lr.default_rules "consistent"'): Likewise.
2472 (`%define lr.default_rules "accepting"'): Likewise.
2473
2474 2009-04-20 Akim Demaille <demaille@gostai.com>
2475
2476 Formatting change.
2477
2478 2009-04-20 Akim Demaille <demaille@gostai.com>
2479
2480 bison: factoring.
2481 * src/output.c (token_definitions_output): Use symbol_id_get
2482 instead of duplicating its logic.
2483 * TODO (YYERRCODE): Extend.
2484
2485 2009-04-20 Akim Demaille <demaille@gostai.com>
2486
2487 variables: prefer error-verbose to error_verbose.
2488 * data/bison.m4 (b4_error_verbose_if): Based on error-verbose
2489 instead of error_verbose.
2490 * src/scan-gram.l (%error-verbose): Map to the error-verbose
2491 variable.
2492 * doc/bison.texinfo: Promote %define error-verbose instead of
2493 %error-verbose.
2494 * tests/actions.at: Prefer %define error-verbose to %error-verbose.
2495
2496 2009-04-15 Akim Demaille <demaille@gostai.com>
2497
2498 variables: accept dashes.
2499 * data/bison.m4 (b4_percent_define_if_define_): Also map dashes to
2500 underscores.
2501 * src/scan-gram.l ({id}): Also accept dashes after the initial
2502 letter.
2503 ({directive}): Use {id}.
2504 * src/parse-gram.y: Comment and formatting changes.
2505 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
2506 symbols.
2507 * src/complain.h, src/complain.c (yacc_at): New.
2508 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
2509 symbol names.
2510 * src/output.c (token_definitions_output): Do not #define token
2511 names with dashes.
2512
2513 2009-04-20 Akim Demaille <demaille@gostai.com>
2514
2515 Consistently refer to Yacc, not YACC.
2516 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
2517
2518 2009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
2519
2520 Pacify make maintainer-check-posix.
2521 * tests/input.at (%define, --define): Move bison command-line
2522 options before grammar file name.
2523
2524 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
2525
2526 Document semicolon warnings.
2527 * NEWS (2.5): Here.
2528
2529 2009-04-14 Akim Demaille <demaille@gostai.com>
2530
2531 variables: use `parse.assert' instead of `assert'.
2532 * TODO (assert): Remove.
2533 * data/bison.m4 (b4_assert_if): Replace with...
2534 (b4_parse_assert_if): this.
2535 * data/lalr1.cc, data/variant.hh, tests/c++.at: Adjust.
2536 * doc/bison.texinfo (Decl Summary): Document parse.assert.
2537
2538 2009-04-14 Akim Demaille <demaille@gostai.com>
2539
2540 variables: use `parse.trace' instead of `debug'.
2541 * src/getargs.c (getargs): Map -t to %define trace.parse.
2542 * src/scan-gram.l (%debug): Map to %define trace.parse.
2543 * data/bison.m4 (b4_percent_define_if_define): Map `.' in variable
2544 names to `_' in macro names.
2545 (b4_debug_if): Replace with...
2546 (b4_parse_trace_if): this.
2547 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
2548 * data/yacc.c: Adjust.
2549 * doc/bison.texinfo (Decl Summary): Document %debug as obsoleted.
2550 Use @code to label the variable list.
2551 Document the variable parse.trace.
2552 (Tracing): Promote the parse.trace variable.
2553 * TODO: %printer is not documented.
2554
2555 2009-04-14 Akim Demaille <demaille@gostai.com>
2556
2557 doc: minor fixes.
2558 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
2559 (Table of Symbols): Remove duplicate entry for %debug.
2560
2561 2009-04-10 Eric Blake <ebb9@byu.net>
2562
2563 submodules: update to latest
2564 * submodules/autoconf: Use latest upstream Autoconf.
2565
2566 2009-04-06 Eric Blake <ebb9@byu.net>
2567
2568 Work around autoconf 2.63b bug in testsuite.
2569 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
2570 autoconf bug related to # in test.
2571
2572 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
2573
2574 * NEWS (2.5): New section. Describe new -D/--define feature.
2575
2576 2009-04-06 Akim Demaille <demaille@gostai.com>
2577
2578 Regen.
2579 * src/parse-gram.h, src/parse-gram.c: Regen.
2580
2581 2009-04-06 Akim Demaille <demaille@gostai.com>
2582
2583 rename muscle_tab.* as muscle-tab.* for consistency.
2584 * src/muscle_tab.h, src/muscle_tab.c: Rename as...
2585 * src/muscle-tab.h, src/muscle-tab.c: these.
2586 * src/getargs.c, src/local.mk, src/main.c, src/output.c,
2587 * src/parse-gram.y, src/reader.c, src/scan-code.l: Adjust.
2588
2589 2009-04-06 Akim Demaille <demaille@gostai.com>
2590
2591 Makefile: introduce $(BISON).
2592 * src/local.mk (BISON): New.
2593 (YACC): Use it.
2594
2595 2009-04-06 Akim Demaille <demaille@gostai.com>
2596
2597 parser: handle %locations as %define locations.
2598 * src/getargs.h, src/getargs.c (locations_flag): Remove.
2599 * src/getargs.c, src/scan-code.l: Use muscle_percent_define_ensure
2600 to set "locations" to true.
2601 * src/output.c (prepare): Don't output "locations".
2602 * src/scan-gram.l (%locations): Handle it as a %<flag>.
2603 * src/parse-gram.y: It's no longer a token.
2604 Don't handle it.
2605 * data/bison.m4 (b4_locations_if): Define it with
2606 b4_percent_define_if_define.
2607 * data/c.m4, data/glr.cc: Adjust.
2608
2609 2009-04-06 Akim Demaille <demaille@gostai.com>
2610
2611 Regen.
2612 * src/parse-gram.c: Regen.
2613
2614 2009-04-06 Akim Demaille <demaille@gostai.com>
2615
2616 muscle: factor the handling of obsolete of obsolete directives.
2617 Suggested by Joel E. Denny.
2618
2619 * src/muscle_tab.h, src/muscle_tab.c (muscle_percent_define_ensure):
2620 New, extracted from...
2621 * src/parse-gram.y (prologue_declaration: pure-parser): here.
2622 Remove it.
2623 (prologue_declaration: "%<flag>"): Use
2624 muscle_percent_define_ensure.
2625 (%error-verbose, %pure-parser): No longer tokens.
2626 * src/scan-gram.l (pure-parser): Return as a %<flag>.
2627
2628 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
2629
2630 Fix options documentation.
2631 * build-aux/cross-options.pl: As in --help output, write optional
2632 arguments as [=ARG] not =[ARG].
2633 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
2634
2635 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
2636
2637 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
2638 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
2639 requirements for a correct m4 are stricter.
2640 * m4/m4.m4: Make it a symbolic link to submodules/autoconf/m4/m4.m4.
2641 * configure.ac: Update to use AC_PROG_GNU_M4.
2642 Reported by Eric Blake.
2643
2644 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2645
2646 Help with updating web manual.
2647 * HACKING: Incorporate instructions from gnulib/doc/README.
2648 * bootstrap.conf (gnulib_modules): Add gendocs.
2649
2650 2009-04-03 Akim Demaille <demaille@gostai.com>
2651
2652 Regen.
2653 * src/parse-gram.h, src/parse-gram.c: Regen.
2654
2655 2009-04-03 Akim Demaille <demaille@gostai.com>
2656
2657 Factor %FLAG at scan level.
2658 * src/parse-gram.y (PERCENT_DEBUG, PERCENT_ERROR_VERBOSE): Token
2659 definitions and associated rules, replaced by....
2660 (PERCENT_FLAG): this new token type, and rule.
2661 * src/scan-gram.l (RETURN_PERCENT_FLAG): New.
2662 Use it for %debug and %error-verbose.
2663
2664 2009-04-03 Akim Demaille <demaille@gostai.com>
2665
2666 Regen.
2667 * src/parse-gram.h, src/parse-gram.c: Regen.
2668
2669 2009-04-03 Akim Demaille <demaille@gostai.com>
2670
2671 Treat %debug as %define debug.
2672 * data/bison.m4 (b4_debug_if): New.
2673 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c,
2674 * data/lalr1.java: Use it instead of b4_debug_flag.
2675 * src/getargs.h, src/getargs.c (debug_flag): Remove.
2676 * src/output.c (prepare): Don't output it.
2677 * src/parse-gram.y: Treat %debug as %define debug.
2678
2679 2009-04-03 Akim Demaille <demaille@gostai.com>
2680
2681 Treat %error-verbose as %define error_verbose.
2682 This allows to pass -Derror_verbose on the command line. Better
2683 yet, it allows to pass -Derror_verbose=$(ERROR_VERBOSE), with
2684 ERROR_VERBOSE being defined as false or true.
2685 * data/bison.m4 (b4_percent_define_if_define): Instead of relying
2686 on b4_percent_define_ifdef, for does not check the defined value,
2687 but only whether the symbol is defined, rely on
2688 b4_percent_define_flag_if, so that a value of "false" is processed
2689 as a false.
2690 If not defined, define the flag to "false".
2691 (b4_error_verbose_if): New.
2692 * data/glr.c, data/lalr1.cc, data/yacc.c: Use it instead of
2693 b4_error_verbose_flag.
2694 * src/getargs.h, src/getargs.c (error_verbose_flag): Remove.
2695 * src/output.c (prepare): Don't output it.
2696 * src/parse-gram.y (%error-verbose): Treat as %define error_verbose.
2697
2698 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2699
2700 Fix strange %define locations for default values.
2701 Reported by Akim Demaille at
2702 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
2703 and discussed again starting at
2704 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
2705 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
2706 because location information is bogus.
2707 Use angle brackets to delimit fake file name because square brackets
2708 look like underexpanded m4. Choose a better fake file name.
2709 Use negative line numbers.
2710 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
2711 * src/location.c (location_print): If line for a boundary is negative,
2712 only print that boundary's file name.
2713 * src/location.h: Document that.
2714 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2715 defaults): Update output.
2716
2717 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
2718
2719 Pacify ./configure --enable-gcc-warnings.
2720 * Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS) because many files
2721 in lib won't compile with it.
2722 * src/local.mk (src_bison_CFLAGS): Use $(WERROR_CFLAGS) here only.
2723
2724 2009-03-31 Akim Demaille <demaille@gostai.com>
2725
2726 bootstrap: --help to stdout.
2727 * bootstrap (usage): Don't send --help to stderr.
2728 Use a here doc instead of a long string.
2729
2730 2009-03-31 Akim Demaille <demaille@gostai.com>
2731
2732 bootstrap: README-hacking no longer exists
2733 * bootstrap (checkout_only_file): Set to HACKING.
2734
2735 2009-03-26 Akim Demaille <demaille@gostai.com>
2736
2737 doc: merge HACKING and README-hacking.
2738 Two files is confusing.
2739 Reported by Alexandre Duret-Lutz.
2740
2741 * README-hacking: Merge into...
2742 * HACKING (Working from the repository): here.
2743
2744 2009-03-26 Akim Demaille <demaille@gostai.com>
2745
2746 doc: update README-hacking.
2747 * README-hacking: We now use git and git submodules.
2748 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
2749
2750 2009-03-26 Akim Demaille <demaille@gostai.com>
2751
2752 lalr1.cc: avoid GCC 4.3 warnings.
2753 GCC 4.3 now warns about "a || b && c" and asks for explicit
2754 parentheses.
2755 Reported by Alexandre Duret-Lutz.
2756 * data/location.cc: Update copyright years.
2757 (Position::operator==): Use parens to make precedence explicit.
2758 Compare lines and columns first, as they are more likely to be
2759 different, and they are faster to compare.
2760
2761 2009-03-26 Akim Demaille <demaille@gostai.com>
2762
2763 gnulib: update.
2764 * gnulib: Update to latest.
2765 * src/local.mk (AM_CFLAGS): Move to...
2766 * Makefile.am: here.
2767 * etc/prefix-gnulib-mk (prefix_assignment): Also transform
2768 AM_CFLAGS.
2769
2770 2009-03-02 Akim Demaille <demaille@gostai.com>
2771
2772 Comment changes.
2773
2774 2009-03-02 Akim Demaille <demaille@gostai.com>
2775
2776 Share b4_yytranslate_define.
2777 * data/lalr1.cc (b4_yytranslate_define): Move to...
2778 * data/c++.m4: here.
2779
2780 2009-03-02 Akim Demaille <demaille@gostai.com>
2781
2782 Use locations in the variant example.
2783 Yes, this obfuscates the point of this example, variants only.
2784 But glr.cc cannot work (yet?) without locations. This change
2785 makes it easier to use this example with glr.cc.
2786
2787 * examples/variant.yy (assert): %define it.
2788 (locations): Request them.
2789 (yylex): Bind the location to the stage.
2790
2791 2009-03-02 Akim Demaille <demaille@gostai.com>
2792
2793 Dub make_TOKEN as a public type interface.
2794 * data/c++.m4 (b4_symbol_constructor_declare)
2795 (b4_symbol_constructor_define): New empty stubs.
2796 (b4_public_types_declare, b4_public_types_define): Use them.
2797 * data/lalr1.cc (b4_symbol_constructor_declare)
2798 (b4_symbol_constructor_declare_)
2799 (b4_symbol_constructor_define_, b4_symbol_constructor_define):
2800 Move to...
2801 * data/variant.hh: here.
2802 Remove the "b4_variant_if" parts, as variant.hh is loaded only if
2803 needed.
2804 * data/lalr1.cc: No longer invoke b4_symbol_constructor_define and
2805 b4_symbol_constructor_declare, as it is now done by
2806 b4_public_types_define and b4_public_types_declare.
2807
2808 2009-03-02 Akim Demaille <demaille@gostai.com>
2809
2810 Coding style changes.
2811 * data/lalr1.cc (b4_symbol_constructor_declaration_)
2812 (b4_symbol_constructor_declarations)
2813 (b4_symbol_constructor_definition_)
2814 (b4_symbol_constructor_definitions)
2815 (b4_yytranslate_definition): Rename as...
2816 (b4_symbol_constructor_declare_)
2817 (b4_symbol_constructor_declare)
2818 (b4_symbol_constructor_define_)
2819 (b4_symbol_constructor_define)
2820 (b4_yytranslate_define): these.
2821 * data/variant.hh (b4_variant_definition): Rename as...
2822 (b4_variant_define): this.
2823
2824 2009-03-02 Akim Demaille <demaille@gostai.com>
2825
2826 Factor b4_assert_if, b4_lex_symbol_if, and b4_variant_if.
2827 * data/bison.m4 (b4_percent_define_if_define): New.
2828 * data/c++.m4 (b4_variant_if): Move to...
2829 * data/bison.m4: Here, using b4_percent_define_if_define.
2830 * data/lalr1.cc (b4_assert_if, b4_lex_symbol_if): Move to...
2831 * data/bison.m4: Here, using b4_percent_define_if_define.
2832
2833 2009-03-02 Akim Demaille <demaille@gostai.com>
2834
2835 Dub symbol_type_base as a public type.
2836 * data/c++.m4 (b4_public_types_declare): Now define
2837 symbol_type_base and symbol_type.
2838 (b4_public_types_define): New.
2839 In both cases, the definitions are taken verbatim from lalr1.cc.
2840 * data/lalr1.cc: Adjust.
2841
2842 2009-03-02 Akim Demaille <demaille@gostai.com>
2843
2844 b4_public_types_declare.
2845 * data/c++.m4 (b4_public_types_declare): New.
2846 * data/glr.cc, data/lalr1.cc: Use it.
2847
2848 2009-03-02 Akim Demaille <demaille@gostai.com>
2849
2850 b4_semantic_type_declare.
2851 * data/c++.m4 (b4_semantic_type_declare): New.
2852 Factors and generalizes what was in glr.cc and lalr1.cc.
2853 * data/variant.hh (b4_semantic_type_declare): Redefine it for
2854 variants.
2855 * data/lalr1.cc, data/glr.cc: Use it.
2856
2857 2009-02-26 Akim Demaille <demaille@gostai.com>
2858
2859 Upgrade gnulib.
2860 * gnulib: Upgrade from master.
2861 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore, m4/.gitignore:
2862 Regen.
2863
2864 2009-02-25 Akim Demaille <demaille@gostai.com>
2865
2866 Remove useless arguments.
2867 * data/glr.c (yy_reduce_print): $$ and @$ are not used and not
2868 relevant.
2869
2870 2009-02-25 Akim Demaille <demaille@gostai.com>
2871
2872 Comment changes.
2873 * data/lalr1.cc: here.
2874
2875 2009-02-25 Akim Demaille <demaille@gostai.com>
2876
2877 Fix glr.cc's debug level handling.
2878 * data/glr.cc (yydebug_): Remove, as it is actually yydebug from
2879 glr.c which is used.
2880 (debug_level, set_debug_level): Adjust.
2881
2882 2009-02-25 Akim Demaille <demaille@gostai.com>
2883
2884 Copyright years.
2885 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
2886
2887 2009-02-25 Akim Demaille <demaille@gostai.com>
2888
2889 Style changes.
2890 * etc/bench.pl.in (generate_grammar_list): Consitently use
2891 location_type, not yy::location.
2892
2893 2009-02-25 Akim Demaille <demaille@gostai.com>
2894
2895 Comment change.
2896 * data/lalr1.cc: here.
2897
2898 2009-02-19 Akim Demaille <demaille@gostai.com>
2899
2900 Make yyparser::error public.
2901 * data/lalr1.cc: here.
2902 There is no good reason to keep it private (and it is convenient
2903 to use it from the scanner for instance). It is already public in
2904 glr.cc.
2905
2906 2009-02-19 Akim Demaille <demaille@gostai.com>
2907
2908 Comment changes.
2909 * data/glr.cc: here.
2910
2911 2009-02-19 Akim Demaille <demaille@gostai.com>
2912
2913 Remove trailing blanks.
2914 The epilogue has its own ending \n, no need to add another.
2915
2916 * data/glr.c, data/lalr1.java, data/yacc.c: dnl when outputing the
2917 epilogue.
2918 * data/glr.cc: dnl when extending the epilogue.
2919 Remove stray "private:".
2920
2921 2009-02-19 Akim Demaille <demaille@gostai.com>
2922
2923 Use b4_c_modern.
2924 * data/c.m4 (b4_c_function_decl): Here.
2925
2926 2009-02-19 Akim Demaille <demaille@gostai.com>
2927
2928 Comment changes.
2929 * data/lalr1.cc: here.
2930
2931 2009-02-19 Akim Demaille <demaille@gostai.com>
2932
2933 Extract variant.hh
2934 * data/variant.hh: New, extracted from...
2935 * data/lalr1.cc: here.
2936 Adjust.
2937 * data/local.mk: Adjust.
2938
2939 2009-02-19 Akim Demaille <demaille@gostai.com>
2940
2941 Extract stack.hh from lalr1.cc.
2942 * data/stack.hh: New.
2943 * data/lalr1.cc: Extract from here.
2944 * data/local.mk: Adjust.
2945
2946 2009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
2947
2948 Add reminder about uploading public key to keys.gnupg.net.
2949 * HACKING (Release Procedure): Here.
2950
2951 2009-01-28 Akim Demaille <demaille@gostai.com>
2952
2953 * NEWS: Update information about 2.4.1 and 2.4.2.
2954
2955 2008-11-04 Akim Demaille <demaille@gostai.com>
2956
2957 Reformat NEWS.
2958 * NEWS: Use more outline-mode markup.
2959 Suggested by Jim Meyering.
2960
2961 2009-01-08 Akim Demaille <demaille@gostai.com>
2962
2963 Fix grep portability issues.
2964 Grep on Solaris does not support -q.
2965 Reported by Summum Bonum.
2966
2967 * NEWS: Add a stub for 2.4.2.
2968 * THANKS: Add Summum Bonum.
2969 * tests/atlocal.in (EGREP): New.
2970 (CC, CXX, XSLTPROC): Make it possible to override them via
2971 envvars.
2972 * tests/java.at: Use $EGREP instead of egrep.
2973 Use AT_CHECK's ignore instead of grep's -q.
2974
2975 2008-12-11 Akim Demaille <demaille@gostai.com>
2976
2977 Pass the token type to yysyntax_error.
2978 * data/yacc.c (yysyntax_error): Take the transated token instead
2979 of the raw number.
2980 Adjust callers.
2981 * TODO: Update.
2982
2983 2008-12-11 Akim Demaille <demaille@gostai.com>
2984
2985 Formatting changes.
2986 * data/glr.c: Formatting changes.
2987
2988 2008-12-11 Akim Demaille <demaille@gostai.com>
2989
2990 Propagate i18n changes into glr.c.
2991 * TODO: Update.
2992 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
2993 building the error message format dynamically.
2994 * data/lalr1.java: Formatting changes.
2995
2996 2008-12-11 Akim Demaille <demaille@gostai.com>
2997
2998 Use testsuite -C.
2999 * tests/local.mk: Replace "cd && testsuite" by "testsuite -C".
3000 Solves problems when top_srcdir is an absolute path.
3001 Suggested by Eric Blake.
3002 * configure.ac: Require Autoconf 2.62.
3003
3004 2008-12-11 Akim Demaille <demaille@gostai.com>
3005
3006 Simplify the i18n of the error messages.
3007 * data/lalr1.cc: Comment changes.
3008 * data/yacc.c (yysyntax_error): Rewrite, using a switch as in
3009 lalr1.cc instead of building dynamically the format string.
3010
3011 2008-12-08 Akim Demaille <demaille@gostai.com>
3012
3013 Fix portability issue in the test suite.
3014 * tests/local.at (AT_MATCHES_CHECK): New.
3015 Based on Perl instead of Sed. Sed has too many portability
3016 pitfalls, not ever Sed is GNU Sed.
3017 * tests/actions.at (Fix user actions without a trailing semicolon):
3018 Use it.
3019
3020 2008-12-08 Akim Demaille <demaille@gostai.com>
3021
3022 Update data/README.
3023 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
3024
3025 2008-12-08 Akim Demaille <demaille@gostai.com>
3026
3027 Install autoconf as a submodule to get m4sugar.
3028 * .gitmodules: Add submodules/autoconf.
3029 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
3030 submodules/autoconf.
3031
3032 2008-12-08 Akim Demaille <demaille@gostai.com>
3033
3034 Test token.prefix in all the skeletons.
3035 * data/java.m4 (b4_token_enum): Use the token.prefix.
3036 * tests/local.at (AT_BISON_OPTION_PUSHDEFS): Define AT_TOKEN_PREFIX.
3037 * tests/calc.at (_AT_DATA_CALC_Y): Use it.
3038 Add checks for yacc.c, glr.c, lalr1.cc and glr.cc.
3039 * tests/java.at: Comment changes.
3040 (AT_CHECK_JAVA_MINIMAL): Define the END token.
3041 (Java parser class and package names): Add token.prefix check.
3042
3043 2008-12-08 Akim Demaille <demaille@gostai.com>
3044
3045 Fix regeneration of atconfig.
3046 * tests/local.mk (tests/atconfig): The rule was incorrect, but
3047 remove it: now that there is no tests/Makefile.am, the top-level
3048 Makefile properly updates atconfig when needed.
3049
3050 2008-12-07 Di-an Jan <dianj@freeshell.org>
3051
3052 Implement the FIXME that ends an user action with a semicolon
3053 if it seems necessary.
3054 * src/scan-code.l (flex rules section): Flag cpp directive from
3055 any `#' to the first unescaped end-of-line. Semicolon is not
3056 needed after `;', `{', '}', or cpp directives and is needed after
3057 any other token (whitespaces and comments have no effect).
3058 * tests/actions.at (Fix user actions without a trailing semicolon):
3059 New test.
3060 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
3061 to make user actions complete statements.
3062 Adjust column numbers in error messages.
3063 * tests/regression.at (Fix user actions without a trailing semicolon):
3064 Remove. Covered by new test.
3065
3066 2008-12-07 Akim Demaille <demaille@gostai.com>
3067
3068 Update gnulib.
3069 * gnulib: Update from master.
3070
3071 2008-12-05 Eric Blake <ebb9@byu.net>
3072
3073 Avoid compiler warning.
3074 * src/output.c (muscle_insert_item_number_table): Delete unused
3075 function.
3076
3077 2008-12-02 Eric Blake <ebb9@byu.net>
3078
3079 Build testsuite with newer autoconf.
3080 * tests/output.at (m4_expand): Don't override in newer autoconf,
3081 where the underlying implementation changed.
3082 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
3083 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
3084 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
3085 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
3086 since some of them contain unbalanced ')'.
3087
3088 2008-12-01 Akim Demaille <demaille@gostai.com>
3089
3090 Use b4_symbol for printers and destructors everywhere.
3091 * data/bison.m4 (b4_symbol_action_location): New.
3092 * data/c.m4 (b4_symbol_actions): Remove.
3093 Adjust all callers to use by b4_symbol_foreach and the corresponding
3094 b4_symbol_printer/destructor macro.
3095 * data/glr.cc: Adjust.
3096 * data/lalr1.java: Adjust the %destructor sanity check.
3097 * src/output.c (symbol_code_props_output): Remove, we no longer
3098 need the b4_symbol_printers/destructors tables.
3099
3100 2008-12-01 Akim Demaille <demaille@gostai.com>
3101
3102 Use b4_symbol_case_.
3103 * data/lalr1.cc, data/bison.m4 (b4_symbol_action): Use
3104 b4_symbol_case_.
3105
3106 2008-12-01 Akim Demaille <demaille@gostai.com>
3107
3108 Move b4_symbol based macro to bison.m4.
3109 * data/lalr1.cc (b4_symbol_, b4_symbol, b4_symbol_if)
3110 (b4_symbol_action, b4_symbol_destructor, b4_symbol_printer)
3111 (b4_symbol_case_, b4_symbol_foreach, b4_type_action_)
3112 (b4_type_foreach): Move to...
3113 * data/bison.m4: Here.
3114 * data/lalr1.cc (b4_symbol_action): Specialize for C++: use
3115 b4_symbol_value_template instead of b4_symbol_value.
3116
3117 2008-12-01 Akim Demaille <demaille@gostai.com>
3118
3119 b4_symbol/type_foreach.
3120 * data/lalr1.cc (b4_symbol_foreach, b4_type_foreach): New.
3121 Use them.
3122
3123 2008-12-01 Akim Demaille <demaille@gostai.com>
3124
3125 Use the symbol properties to output the printer/destructor for lalr1.cc.
3126 Instead of defining complex list of tuples to define various
3127 properties of the symbols, we now prefer to define symbols as
3128 "structs" in m4: using the symbol key (its number), and the
3129 property name, b4_symbol gives it value. Use this to handle
3130 destructors and printers.
3131
3132 * src/output.c (CODE_PROP): New.
3133 (prepare_symbol_definitions): Use it to define the printer and
3134 destructor related attributes of the symbols.
3135 * data/lalr1.cc (b4_symbol_actions): Rename as...
3136 (b4_symbol_action): this.
3137 Use b4_symbol instead of 6 arguments.
3138 (b4_symbol_printer, b4_symbol_destructor): New.
3139 Use them instead of b4_symbol_actions.
3140
3141 2008-12-01 Akim Demaille <demaille@gostai.com>
3142
3143 Avoid capturing variables too easily.
3144 * src/muscle_tab.h (MUSCLE_INSERT_BOOL, MUSCLE_OBSTACK_SGROW): Use
3145 v__ and p__ instead of v and p.
3146
3147 2008-12-01 Akim Demaille <demaille@gostai.com>
3148
3149 Remove spurious empty line before syncline.
3150 * data/bison.m4 (b4_syncline): Don't output an empty line before
3151 the output.
3152
3153 2008-11-26 Akim Demaille <demaille@gostai.com>
3154
3155 Convert lib/Makefile.am into lib/local.mk.
3156 The real problem is rather gnulib.mk, which itself is extracted
3157 from a Makefile.am that gnulib expects to the "recursive". The
3158 tool prefix-gnulib-mk converts such a gnulib.mk to be
3159 non-recursive. Also, some AC_SUBST variables need to be adjusted.
3160
3161 * etc/prefix-gnulib-mk: New.
3162 * bootstrap (slurp): Use it to convert further gnulib.mk.
3163 No longer try to avoid re-creation of lib/gnulib.mk as the changes
3164 are deeper.
3165 * lib/Makefile.am: Rename as...
3166 * lib/local.mk: this.
3167 Adjust to be prefixed.
3168 * Makefile.am, configure.ac: Adjust.
3169 * src/local.mk (AM_CPPFLAGS): Extend it, don't define it.
3170
3171 2008-11-26 Akim Demaille <demaille@gostai.com>
3172
3173 s/_FLAGS/FLAGS/.
3174 * tests/local.mk (TESTSUITE_FLAGS, AUTOTEST_FLAGS): Rename as...
3175 (TESTSUITEFLAGS, AUTOTESTFLAGS): these to compy with the GCS.
3176 Reported by Eric Blake.
3177
3178 2008-11-26 Akim Demaille <demaille@gostai.com>
3179
3180 Use b4_parser_tables_define in glr.cc.
3181 * data/glr.c: Use b4_parser_tables_define instead of defining the
3182 (deterministic integral) tables by hand.
3183
3184 2008-11-26 Akim Demaille <demaille@gostai.com>
3185
3186 Use b4_parser_tables_define in Java.
3187 * data/java.m4 (b4_typed_parser_table): Rename as...
3188 (b4_typed_parser_table_define): this, for consistency.
3189 Accept a comment as $4.
3190 Move $2 into yy*_.
3191 (b4_integral_parser_table): Rename as...
3192 (b4_integral_parser_table_define): this.
3193 * data/lalr1.java: Adjust all uses.
3194 Use b4_parser_tables_define instead of generation by hand.
3195
3196 2008-11-26 Akim Demaille <demaille@gostai.com>
3197
3198 Prepare the convergence bw C style and Java table generation.
3199 * data/bison.m4 (b4_tables_map, b4_tables_declare)
3200 (b4_tables_define): Rename as...
3201 (b4_integral_parser_tables_map, b4_parser_tables_declare)
3202 (b4_parser_tables_define): these.
3203 * data/c.m4 (b4_table_define): Rename as...
3204 (b4_integral_parser_table_define): this.
3205 * data/lalr1.cc: Adjust.
3206 (b4_table_define, b4_table_declare): Rename as...
3207 (b4_integral_parser_table_define)
3208 (b4_integral_parser_table_declare): these.
3209 (yyrline_): Move the comment where it is actually used.
3210 * data/yacc.c: Adjust.
3211 (yyrline): Use b4_integral_parser_table_define.
3212
3213 2008-11-26 Akim Demaille <demaille@gostai.com>
3214
3215 Regen.
3216 * src/parse-gram.h, src/parse-gram.c: Regen.
3217
3218 2008-11-26 Akim Demaille <demaille@gostai.com>
3219
3220 Factor the generation of the (integral) tables bw yacc.c and lalr1.cc.
3221 * data/lalr1.cc (b4_tables_map): Move to...
3222 * data/bison.m4: here.
3223 Update the comment for yytable during the flight.
3224 (b4_tables_declare, b4_tables_define): New.
3225 * data/lalr1.cc: Use them.
3226 * data/c.m4 (b4_table_define): New.
3227 * data/yacc.c: Use b4_tables_define instead of output the tables
3228 by hand.
3229 * tests/regression.at (Web2c Actions): Adjust the expected output,
3230 the order of the tables changed.
3231
3232 2008-11-26 Akim Demaille <demaille@gostai.com>
3233
3234 Get rid of (yy)rhs and (yy)prhs.
3235 These tables are no longer needed in the parsers, and they don't seem to
3236 be useful. They are not documented either.
3237
3238 * src/output.c (prepare_rules): Get rid of rhs and prhs.
3239 Adjust the computation of (yy)r2.
3240
3241 2008-11-26 Akim Demaille <demaille@gostai.com>
3242
3243 Rule length is unsigned.
3244 * src/gram.h, src/gram.c (rule_rhs_length): Return a size_t.
3245
3246 2008-11-26 Akim Demaille <demaille@gostai.com>
3247
3248 Get rid of lalr1-split.cc.
3249 It was no longer maintainer.
3250
3251 * data/lalr1-split.cc: Remove.
3252 * etc/bench.pl.in (bench_fusion_parser): Remove.
3253 Adjust.
3254
3255 2008-11-26 Akim Demaille <demaille@gostai.com>
3256
3257 Use yy* consistently.
3258 * data/glr.c: Now that yyrhs no longer exists as a global
3259 variable, rename local "rhs" variables into "yyrhs" for
3260 consistency.
3261
3262 2008-11-25 Akim Demaille <demaille@gostai.com>
3263
3264 Get rid of yyrhs and yyprhs in glr.c.
3265 * data/glr.c (yyrhs, yyprhs): Remove.
3266 Instead, use the state stack and yystos.
3267
3268 2008-11-25 Akim Demaille <demaille@gostai.com>
3269
3270 Flag glr tests.
3271 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): If glr, declare it
3272 as an Autotest keyword.
3273
3274 2008-11-25 Akim Demaille <demaille@gostai.com>
3275
3276 Prefer TESTSUITE_FLAGS.
3277 TESTSUITEFLAGS is barely readable.
3278
3279 * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS)
3280 for backward compatibility.
3281 Use the former instead of the latter.
3282
3283 2008-11-25 Akim Demaille <demaille@gostai.com>
3284
3285 Get rid of yyrhs and yyprhs in larl1.java.
3286 * data/lalr1.java (yyrhs_, yyprhs_): Remove.
3287 (yy_reduce_print): Rather, use yystos_ and the state stack.
3288
3289 2008-11-25 Akim Demaille <demaille@gostai.com>
3290
3291 Formatting changes.
3292
3293 2008-11-25 Akim Demaille <demaille@gostai.com>
3294
3295 Get rid of yyrhs and yyprhs in yacc.c.
3296 They were used to get the symbol types, given a rule number, when
3297 displaying the top of the stack before a reduction. But the
3298 symbol type is available from the state stack. This has two be
3299 benefits: two tables less in the parser (making it smaller), and a
3300 more consistent use of the three stacks which will help to fuse
3301 them.
3302
3303 * data/yacc.c (yyprhs, yyrhs): Remove.
3304 (YY_REDUCE_PRINT): Pass yyssp to yy_reduce_print.
3305 (yy_reduce_print): Take yyssp as argument.
3306 Use it, together with yystos, to get the symbol type.
3307 * tests/regression.at (Web2c Report): Remove these tables from the
3308 expected output.
3309
3310 2008-11-25 Akim Demaille <demaille@gostai.com>
3311
3312 b4_tables_map.
3313 The point is to factor the generation of the tables across skeletons.
3314 This is language dependant.
3315
3316 * data/c.m4 (b4_comment_): New.
3317 Should be usable to define how to generate tables independently of
3318 the language.
3319 (b4_c_comment): New.
3320 (b4_comment): Bounce to b4_c_comment.
3321 Now support $2 = [PREFIX] for indentation.
3322 * data/lalr1.cc (b4_table_declare): Don't output a comment if
3323 there is no comment.
3324 Indent it properly when there is one.
3325 Output the ending semicolon.
3326 (b4_table_define): Space changes.
3327 Output the ending semicolon.
3328 (b4_tables_map): New.
3329 Use it twice instead of declaring and defining the (integral)
3330 tables by hand.
3331
3332 2008-11-25 Akim Demaille <demaille@gostai.com>
3333
3334 b4_table_declare.
3335 * data/lalr1.cc (b4_table_declare): New.
3336 Use it to declare the tables defined with b4_table_define.
3337 (b4_table_define): Declare a third arg to match b4_table_declare
3338 signature.
3339 Move all the comments around invocations of b4_table_define into
3340 the invocations itselves.
3341 Move things around to have the order for declarations and
3342 definitions.
3343
3344 2008-11-25 Akim Demaille <demaille@gostai.com>
3345
3346 Formatting changes.
3347 * data/lalr1.java: here.
3348
3349 2008-11-25 Akim Demaille <demaille@gostai.com>
3350
3351 b4_args is more general than only C++.
3352 * data/lalr1.cc (b4_args, _b4_args): Move to...
3353 * data/bison.m4: here.
3354
3355 2008-11-21 Di-an Jan <dianj@freeshell.org>
3356
3357 Implement no-XXX arguments for --warnings, --report, --trace.
3358 * src/getargs.c (flags_argmatch): Handles no-XXX.
3359 Fix typo in doxygen comment.
3360
3361 2008-11-21 Akim Demaille <demaille@gostai.com>
3362
3363 Display the changes in cross-options.texi.
3364 * build-aux/cross-options.pl ($sep): New, to separate items.
3365 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Use diff to display the
3366 changes.
3367
3368 2008-11-20 Di-an Jan <dianj@freeshell.org>
3369
3370 Improves options in the manual.
3371 * doc/bison.texinfo (-g, -x): Add space before argument.
3372 (Option Cross Key): Implement FIXME: listing directives also.
3373 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
3374 (Short Option): Special case -d. Put arguments inside @option.
3375 (Bison Directive): Add column, automatically extracted from
3376 src/scan-gram.l (actual name passed as the first argument)
3377 with special case for %define.
3378 * doc/local.mk (doc/cross-options.texi): Pass src/scan-gram.l
3379 to build-aux/cross-options.pl.
3380 * src/getargs.c (usage): Document limitations of cross-options.pl.
3381 * src/scan-gram.l: Likewise.
3382
3383 2008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
3384
3385 Fix unexpanded macros in GLR defines file.
3386 Reported by Csaba Raduly at
3387 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
3388 * THANKS (Csaba Raduly): Add.
3389 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
3390 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
3391 lexer in a separate module that includes the defines file.
3392 (AT_CHECK_CALC): From AT_FULL_COMPILE, request compilation of lexer
3393 source.
3394 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
3395 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
3396 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
3397 (AT_DATA_SOURCE_PROLOGUE): New.
3398 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
3399 (AT_DATA_SOURCE): New.
3400 (AT_FULL_COMPILE): Extend to support an additional source file.
3401
3402 2008-11-18 Akim Demaille <demaille@gostai.com>
3403
3404 More TODO.
3405 * TODO: More short term issues.
3406
3407 2008-11-18 Akim Demaille <demaille@gostai.com>
3408
3409 Regen.
3410 * src/parse-gram.h, src/parse-gram.c: Regen.
3411
3412 2008-11-18 Akim Demaille <demaille@gostai.com>
3413
3414 Use b4_subtract where possible.
3415 * data/lalr1.cc (b4_subtract): Move to...
3416 * data/bison.m4: here.
3417 * data/glr.c (b4_rhs_data): Use it.
3418 * data/yacc.c (b4_rhs_value, b4_rhs_location): Use it.
3419
3420 2008-11-18 Akim Demaille <demaille@gostai.com>
3421
3422 Remove incorrect mode specification.
3423 * data/glr.cc: Don't pretend it's C code.
3424
3425 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
3426
3427 Simplify last patch slightly.
3428 * src/getargs.c (getargs): Here.
3429
3430 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
3431
3432 Fix last warning from --enable-gcc-warnings.
3433 * src/getargs.c (getargs): Don't assign const address to non-const
3434 pointer.
3435
3436 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
3437
3438 Don't let maintainer-*-check targets force a version update.
3439 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
3440 handled.
3441
3442 2008-11-17 Di-an Jan <dianj@freeshell.org>
3443
3444 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
3445 Align menus. Adjust word wrapping. Use node names for menu names.
3446 (Examples): Don't abbreviate node names.
3447 (LocalWords): Remove abbreviations.
3448 (Copying): Make description a sentence.
3449 (Java Action Features): Remove period to match the rest of menu.
3450
3451 2008-11-17 Di-an Jan <dianj@freeshell.org>
3452
3453 Handles several --enable-gcc-warnings.
3454 * src/getargs.c (command_line_location): Set parameters to void.
3455 * src/output.c (symbol_type_name_cmp): Make static.
3456 (symbols_by_type_name): Set parameters to void.
3457 (symbol_definitions_output): Remove unused parameter. Rename as...
3458 (prepare_symbol_definitions): this.
3459 (muscles_output): Move symbol_definitions_output to...
3460 (output): here as prepare_symbol_definitions.
3461 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
3462 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
3463
3464 2008-11-17 Di-an Jan <dianj@freeshell.org>
3465
3466 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
3467 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
3468
3469 2008-11-16 Akim Demaille <demaille@gostai.com>
3470
3471 Add missing $(EXEEXT).
3472 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
3473 "src/bison$(EXEEXT)".
3474 Reported by Di-an Jan.
3475
3476 2008-11-15 Akim Demaille <demaille@gostai.com>
3477
3478 * TODO: Update.
3479
3480 2008-11-15 Akim Demaille <demaille@gostai.com>
3481
3482 Formatting changes.
3483 * tests/input.at: here.
3484
3485 2008-11-15 Akim Demaille <demaille@gostai.com>
3486
3487 Remove duplicate header inclusion.
3488 * src/LR0.c: here.
3489
3490 2008-11-15 Akim Demaille <demaille@gostai.com>
3491
3492 * src/parse-gram.h, src/parse-gram.c: Regen.
3493
3494 2008-11-15 Akim Demaille <demaille@gostai.com>
3495
3496 Support parametric types.
3497
3498 There are two issues to handle: first scanning nested angle
3499 bracket pairs to support types such as std::pair< std::string,
3500 std::list<std::string> > >.
3501
3502 Another issue is to address idiosyncracies of C++: do not glue two
3503 closing angle brackets together (otherwise it's operator>>), and
3504 avoid sticking blindly a TYPE to the opening <, as it can result
3505 in '<:' which is a digraph for '['.
3506
3507 * src/scan-gram.l (brace_level): Rename as...
3508 (nesting): this.
3509 (SC_TAG): New.
3510 Implement support for complex tags.
3511 (tag): Accept
3512 , but not <.
3513 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
3514 (b4_symbol_variant): Leave space around types as parameters.
3515 * examples/variant.yy: Use nested template types and leading ::.
3516 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
3517 Rename as...
3518 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
3519 * tests/c++.at: Test parametric types.
3520
3521 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
3522
3523 Test token.prefix.
3524 This is not sufficient, but we test at least that the make_SYMBOL
3525 interface is not affected by token.prefix. A more general test
3526 will be implemented when the support of token.prefix is generalized
3527 to more skeletons.
3528
3529 * tests/c++.at: One more variant test, using token.prefix.
3530
3531 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
3532
3533 Test the make_TOKEN interface.
3534 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
3535 Factor the common code in yylex.
3536 Use it to test "%define lex_symbol".
3537
3538 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
3539
3540 Formatting change.
3541
3542 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
3543
3544 Simplify code for variants bench marks.
3545 * etc/bench.pl.in (&generate_grammar_list): Define and use
3546 location_type.
3547 Factor the common code in yylex.
3548
3549 2008-11-15 Akim Demaille <demaille@gostai.com>
3550
3551 Better error message.
3552 * bootstrap (find_tool): Fix the error message.
3553
3554 2008-11-15 Akim Demaille <demaille@gostai.com>
3555
3556 Update variant.yy to newest interface.
3557 * examples/variant.yy: Define lex_symbol.
3558 Adjust.
3559
3560 2008-11-15 Akim Demaille <demaille@gostai.com>
3561
3562 Don't use locations in variant.yy.
3563 * examples/variant.yy: Adjust to not using locations.
3564
3565 2008-11-15 Akim Demaille <demaille@gostai.com>
3566
3567 Comment changes.
3568 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
3569 comments for the license.
3570
3571 2008-11-15 Akim Demaille <demaille@gostai.com>
3572
3573 Remove tests/Makefile.am.
3574 * tests/Makefile.am: Rename as...
3575 * tests/local.mk: this.
3576 * Makefile.am, configure.ac: Adjust.
3577 * Makefile.am (DISTCLEANFILES): Define.
3578 (maintainer-check, maintainer-xml-check, maintainer-push-check):
3579 Remove, we no longer need to bounce to the real targets.
3580
3581 2008-11-15 Akim Demaille <demaille@gostai.com>
3582
3583 Comment changes.
3584
3585 2008-11-15 Akim Demaille <demaille@gostai.com>
3586
3587 djgpp/local.mk.
3588 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
3589 * djgpp/local.mk: this new file.
3590
3591 2008-11-15 Akim Demaille <demaille@gostai.com>
3592
3593 Remove doc/Makefile.am.
3594 * doc/Makefile.am: Rename as...
3595 * doc/local.mk: this.
3596 Adjust paths
3597 * Makefile.am, configure.ac: Adjust.
3598 * Makefile.am (MOSTLYCLEANFILES): New.
3599 * src/local.mk: Adjust.
3600
3601 2008-11-15 Akim Demaille <demaille@gostai.com>
3602
3603 Move sc_tight_scope into maint.mk.
3604 It does not work, and I don't know how it was supposed to work: it
3605 seems to be looking for sources in the build tree. I just moved
3606 it at a better place, fixing it is still required.
3607
3608 * src/local.mk (echo): Remove.
3609 (sc_tight_scope): Move to...
3610 * maint.mk: here.
3611
3612 2008-11-15 Akim Demaille <demaille@gostai.com>
3613
3614 Regen.
3615 * src/parse-gram.h, src/parse-gram.h: Regen.
3616
3617 2008-11-15 Akim Demaille <demaille@gostai.com>
3618
3619 Remove src/Makefile.am.
3620 * src/Makefile.am: Rename as...
3621 * src/local.mk: this.
3622 Prefix all the paths with src/.
3623 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
3624 (AM_CPPFLAGS): Find find in builddir/src.
3625 (YACC): Move the flags into...
3626 (AM_YFLAGS): here.
3627 * maint.mk (sc_tight_scope): Disable.
3628 It used to bounce to the version in src/Makefile.am which is now
3629 part of this very Makefile.
3630 * Makefile.am, configure.ac: Adjust.
3631 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
3632 include "..." to find files "here": we are no longer in src/, so
3633 qualify the includes with src/.
3634 * doc/Makefile.am (PREPATH): No longer include the top_builddir
3635 prefix.
3636 (.x.1): Adjust to be able to create src/foo from the top level
3637 Makefile, instead of going bounce to src/Makefile the creation of
3638 foo.
3639
3640 2008-11-15 Akim Demaille <demaille@gostai.com>
3641
3642 Remove useless variable.
3643 * doc/Makefile.am (srcsrcdir): Remove.
3644
3645 2008-11-15 Akim Demaille <demaille@gostai.com>
3646
3647 Remove data/Makefile.am.
3648 * data/Makefile.am: Rename as...
3649 * data/local.mk: this.
3650 Adjust paths.
3651 * Makefile.am, configure.ac: Adjust.
3652
3653 2008-11-15 Akim Demaille <demaille@gostai.com>
3654
3655 Remove etc/Makefile.am.
3656 * etc/Makefile.am: Rename as...
3657 * etc/local.mk: this.
3658 Adjust.
3659 * Makefile.am, configure.ac: Adjust.
3660
3661 2008-11-15 Akim Demaille <demaille@gostai.com>
3662
3663 Remove examples/local.mk.
3664 examples/calc++/Makefile.am might be interesting to keep as is, since
3665 it is an example in itself.
3666
3667 * examples/Makefile.am: Rename as...
3668 * examples/local.mk: this.
3669 Adjust.
3670 * Makefile.am, configure.ac: Adjust.
3671
3672 2008-11-15 Akim Demaille <demaille@gostai.com>
3673
3674 Remove build-aux/Makefile.am.
3675 Recursive Makefiles are really way too slow, let's get rid of some of
3676 them.
3677
3678 * build-aux/Makefile.am: Rename as...
3679 * build-aux/local.mk: this.
3680 Adjust paths.
3681 * Makefile.am, configure.ac: Adjust.
3682
3683 2008-11-15 Akim Demaille <demaille@gostai.com>
3684
3685 Provide convenience constructors for locations and positions.
3686 * data/location.cc (position::position): Accept file, line and
3687 column as arguments with default values.
3688 Always qualify initial line and column literals as unsigned.
3689 (location::location): Provide convenience constructors.
3690
3691 2008-11-15 Akim Demaille <demaille@gostai.com>
3692
3693 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
3694 token type.
3695 Using template buys us nothing, and makes it uselessly complex to
3696 construct a symbol. Besides, it could not be generalized to other
3697 languages, while make_FOO would work in C/Java etc.
3698
3699 * data/lalr1.cc (b4_symbol_): New.
3700 (b4_symbol): Use it.
3701 (b4_symbol_constructor_declaration_)
3702 (b4_symbol_constructor_definition_): Instead of generating
3703 specializations of an overloaded template function, just generate
3704 several functions whose names are forged from the token names
3705 without the token.prefix.
3706 (b4_symbol_constructor_declarations): Generate them for all the
3707 symbols, not just by class of symbol type, now that instead of
3708 specializing a function template by the token, we generate a
3709 function named after the token.
3710 (b4_symbol_constructor_specialization_)
3711 (b4_symbol_constructor_specializations): Remove.
3712 * etc/bench.pl.in: Adjust to this new API.
3713
3714 2008-11-13 Akim Demaille <demaille@gostai.com>
3715
3716 %define token.prefix.
3717 Provide a means to add a prefix to the name of the tokens as
3718 output in the generated files. Because of name clashes, it is
3719 good to have such a prefix such as TOK_ that protects from names
3720 such as EOF, FILE etc. But it clutters the grammar itself.
3721
3722 * data/bison.m4 (token.prefix): Empty by default.
3723 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
3724 * data/lalr1.cc (b4_symbol): Ditto.
3725
3726 2008-11-13 Akim Demaille <demaille@gostai.com>
3727
3728 Compute at M4 time some of the subtractions.
3729 * data/lalr1.cc (b4_subtract): New.
3730 (b4_rhs_data): Use it.
3731
3732 2008-11-13 Akim Demaille <demaille@gostai.com>
3733
3734 symbol::token.
3735 This allows the user to get the type of a token returned by yylex.
3736
3737 * data/lalr1.cc (symbol::token): New.
3738 (yytoknum_): Define when %define lex_symbol, independently of
3739 %debug.
3740 (yytoken_number_): Move into...
3741 (symbol::token): here, since that's the only use.
3742 The other one is YYPRINT which was not officially supported
3743 by lalr1.cc, and anyway it did not work since YYPRINT uses this
3744 array under a different name (yytoknum).
3745
3746 2008-11-13 Akim Demaille <demaille@gostai.com>
3747
3748 YYERRCODE.
3749 * TODO (YYERRCODE): Mention the case of $undef.
3750
3751 2008-11-13 Akim Demaille <demaille@gostai.com>
3752
3753 TODO: YYPRINT.
3754 * TODO (YYPRINT): New.
3755
3756 2008-11-13 Akim Demaille <demaille@gostai.com>
3757
3758 Comment changes.
3759 * data/lalr1.cc, data/yacc.c: Fix the description of the
3760 yytranslate and yytoknum tables.
3761
3762 2008-11-13 Akim Demaille <demaille@gostai.com>
3763
3764 Define make_symbol in the header.
3765 To reach good performances these functions should be inlined (yet
3766 this is to measure precisely). To this end they must be available
3767 to the caller.
3768
3769 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
3770 location_type with the class name.
3771 Since will now be output in the header, declare "inline".
3772 No longer use b4_symbol_constructor_specializations, but
3773 b4_symbol_constructor_definitions in the header.
3774 Don't call it in the *.cc file.
3775
3776 2008-11-13 Akim Demaille <demaille@gostai.com>
3777
3778 Define yytranslate in the header for lex_symbol.
3779 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
3780 into the header file when using %define lex_symbol.
3781 (yytranslate_): Declare inline.
3782
3783 2008-11-13 Akim Demaille <demaille@gostai.com>
3784
3785 Define the constructors of symbol_type in
3786 b4_symbol_constructor_definitions.
3787 The constructors are called by the make_symbol functions, which a
3788 forthcoming patch will move elsewhere. Hence the interest of
3789 putting them together.
3790
3791 The stack_symbol_type does not need to be moved, it is used only
3792 by the parser.
3793
3794 * data/lalr1.cc: Move symbol_type and symbol_base_type
3795 constructors into...
3796 (b4_symbol_constructor_definitions): here.
3797 Adjust.
3798
3799 2008-11-13 Akim Demaille <demaille@gostai.com>
3800
3801 Make it easier to move the definition of yytranslate_.
3802 Forthcoming changes will make it possible to use yytranslate_
3803 from outside the parser implementation file.
3804
3805 * data/lalr1.cc (b4_yytranslate_definition): New.
3806 Use it.
3807
3808 2008-11-13 Akim Demaille <demaille@gostai.com>
3809
3810 Remove useless class specification.
3811 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
3812 to refer to the class name to use a type defined by the class for
3813 arguments of member functions.
3814
3815 2008-11-13 Akim Demaille <demaille@gostai.com>
3816
3817 Finer input type for yytranslate.
3818 This patch is debatable: the tradition expects yylex to return an int
3819 which happens to correspond to token_number (which is an enum). This
3820 allows for instance to return characters (such as '*' etc.). But this
3821 goes against the stronger typing I am trying to have with the new
3822 lex interface which return a symbol_type. So in this case, feed
3823 yytranslate_ with a token_type.
3824
3825 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
3826 expect a token_type.
3827
3828 2008-11-13 Akim Demaille <demaille@gostai.com>
3829
3830 Honor lex-params in %define lex_symbol mode.
3831 * data/lalr1.cc: Use b4_lex_param.
3832
3833 2008-11-13 Akim Demaille <demaille@gostai.com>
3834
3835 Simplify names.
3836 * src/output.c (symbol_definitions_output): Rename symbol
3837 attributes type_name and has_type_name as type and has_type.
3838 * data/lalr1.cc: Adjust uses.
3839
3840 2008-11-13 Akim Demaille <demaille@gostai.com>
3841
3842 Use b4_type_names for the union type.
3843 The union used to compute the size of the variant used to iterate
3844 over the type of all the symbols, with a lot of redundancy. Now
3845 iterate over the lists of symbols having the same type-name.
3846
3847 * data/lalr1.cc (b4_char_sizeof_): New.
3848 (b4_char_sizeof): Use it.
3849 Adjust to be called with a list of numbers instead of a single
3850 number.
3851 Adjust its caller for new-line issues.
3852
3853 2008-11-13 Akim Demaille <demaille@gostai.com>
3854
3855 Define the "identifier" of a symbol.
3856 Symbols may have several string representations, for instance if
3857 they have an alias. What I call its "id" is a string that can be
3858 used as an identifier. May not exist.
3859
3860 Currently the symbols which have the "tag_is_id" flag set are
3861 those that don't have an alias. Look harder for the id.
3862
3863 * src/output.c (is_identifier): Move to...
3864 * src/symtab.c (is_identifier): here.
3865 * src/symtab.h, src/symtab.c (symbol_id_get): New.
3866 * src/output.c (symbol_definitions_output): Use it to define "id"
3867 and "has_id".
3868 Remove the definition of "tag_is_id".
3869 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
3870 "tag_is_id" were used to produce code.
3871 We still use "tag" for documentation.
3872
3873 2008-11-11 Akim Demaille <demaille@gostai.com>
3874
3875 Locations are no longer required by lalr1.cc.
3876 * data/lalr1.cc (_b4_args, b4_args): New.
3877 Adjust all uses of locations to make them optional.
3878 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
3879 (AT_CHECK_NAMESPACE): Check the use of locations.
3880 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
3881 without locations with lalr1.cc.
3882 Test these cases.
3883 * tests/output.at: Check lalr1.cc with and without location
3884 support.
3885 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
3886 Don't use locations.
3887
3888 2008-11-11 Akim Demaille <demaille@gostai.com>
3889
3890 AT_FULL_COMPILE.
3891 * tests/local.at (AT_FULL_COMPILE): New.
3892 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
3893
3894 2008-11-11 Akim Demaille <demaille@gostai.com>
3895
3896 Support parens in calc++.
3897 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
3898 * examples/calc++/test (run): Check the expected output.
3899 Adjust callers.
3900 Check parens too.
3901
3902 2008-11-11 Akim Demaille <demaille@gostai.com>
3903
3904 Simplify lalr1.cc since %defines is mandatory.
3905 * data/lalr1.cc: Remove useless calls to b4_defines_if.
3906
3907 2008-11-11 Akim Demaille <demaille@gostai.com>
3908
3909 TODO: yyfmt.
3910 * TODO (yysyntax_error): New item.
3911
3912 2008-11-11 Akim Demaille <demaille@gostai.com>
3913
3914 Prefer M4 to CPP.
3915 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
3916 YYERROR_VERBOSE.
3917
3918 2008-11-11 Akim Demaille <demaille@gostai.com>
3919
3920 Support i18n of the parse error messages.
3921 * TODO (lalr1.cc/I18n): Remove.
3922 * data/lalr1.cc (yysyntax_error_): Support the translation of the
3923 error messages, as done in yacc.c.
3924 Stay within the yy* pseudo namespace.
3925
3926 2008-11-11 Akim Demaille <demaille@gostai.com>
3927
3928 More TODO.
3929 * TODO (single stack, yysyntax_error): New.
3930
3931 2008-11-11 Akim Demaille <demaille@gostai.com>
3932
3933 Make it possible to return a symbol_type from yylex.
3934 * data/lalr1.cc (b4_lex_symbol_if): New.
3935 (parse): When lex_symbol is defined, expected yylex to return the
3936 complete lookahead.
3937 * etc/bench.pl.in (generate_grammar_list): Extend to support this
3938 yylex interface.
3939 (bench_variant_parser): Exercise it.
3940
3941 2008-11-11 Akim Demaille <demaille@gostai.com>
3942
3943 Remove useless bench case.
3944 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
3945 no longer used.
3946
3947 2008-11-11 Akim Demaille <demaille@gostai.com>
3948
3949 Improve display of directives.
3950 * etc/bench.pl.in (parse_term): Don't add useless eol.
3951
3952 2008-11-11 Akim Demaille <demaille@gostai.com>
3953
3954 Use string_cast in the bench.
3955 * etc/bench.pl.in (generate_grammar_list): Define and use
3956 string_cast.
3957
3958 2008-11-11 Akim Demaille <demaille@gostai.com>
3959
3960 Replace yychar with a Boolean.
3961 * data/lalr1.cc (parse::yychar): Replace by...
3962 (parse::yyempty): this.
3963
3964 2008-11-11 Akim Demaille <demaille@gostai.com>
3965
3966 Factor the tables.
3967 * TODO: New item.
3968
3969 2008-11-11 Akim Demaille <demaille@gostai.com>
3970
3971 Let yytranslate handle the eof case.
3972 * data/lalr1.cc (yytranslate_): Handle the EOF case.
3973 Adjust callers.
3974 No longer expect yychar to be equal to yyeof_, rather, test the
3975 lookahead's (translated) kind.
3976
3977 2008-11-11 Akim Demaille <demaille@gostai.com>
3978
3979 yychar cannot be empty in yyerrlab.
3980 * TODO (yychar == yyempty_): New.
3981 * data/lalr1.cc: Remove the handling of this case.
3982 This eases forthcoming changes related to yychar and yytranslate.
3983
3984 2008-11-11 Akim Demaille <demaille@gostai.com>
3985
3986 Bench: syntactic sugar for %define/#define.
3987 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
3988 (&bench_push_parser, bench_variant_parser): Use this feature.
3989 (&eat): New.
3990 Use it.
3991
3992 2008-11-11 Akim Demaille <demaille@gostai.com>
3993
3994 Less memory pressure on the "list" bench.
3995 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
3996 the values, to limit memory pressure.
3997
3998 2008-11-11 Akim Demaille <demaille@gostai.com>
3999
4000 Introduce make_symbol.
4001 make_symbol provides a means to construct a full symbol (kind,
4002 value, location) in a single shot. It is meant to be a Symbol
4003 constructor, parameterized by the symbol kind so that overloading
4004 would prevent incorrect kind/value pairs. Unfortunately
4005 parameterized constructors do not work well in C++ (unless the
4006 parameter also appears as an argument, which is not acceptable),
4007 hence the use of a function instead of a constructor.
4008
4009 * data/lalr1.cc (b4_symbol_constructor_declaration_)
4010 (b4_symbol_constructor_declarations)
4011 (b4_symbol_constructor_specialization_)
4012 (b4_symbol_constructor_specializations)
4013 (b4_symbol_constructor_definition_)
4014 (b4_symbol_constructor_definitions): New.
4015 Use them where appropriate to generate declaration, declaration of
4016 the specializations, and implementations of the templated
4017 overloaded function "make_symbol".
4018 (variant::variant): Always define a default ctor.
4019 Also provide a copy ctor.
4020 (symbol_base_type, symbol_type): New ctor overloads for value-less
4021 symbols.
4022 (symbol_type): Now public, so that functions such as yylex can use
4023 it.
4024
4025 2008-11-11 Akim Demaille <demaille@gostai.com>
4026
4027 Inform m4 whether a tag is a valid id.
4028 * src/output.c (is_identifier): New.
4029 (symbol_definitions_output): Use it to define tag_is_id.
4030 But maybe this should be done at m4 level?
4031
4032 2008-11-11 Akim Demaille <demaille@gostai.com>
4033
4034 Test 214 was failing: it greps with a pattern containing [ ]*
4035 which obviously meant to catch spaces and tabs, but contained only
4036 spaces. Tabulations in sources are a nuisance, so to simplify the
4037 matter, get rid of all the tabulations in the Java sources. The
4038 other skeletons will be treated equally later.
4039
4040 * data/java.m4, data/lalr1.java: Untabify.
4041 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
4042 tabulations are no longer generated.
4043
4044 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
4045
4046 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
4047 * configure.ac: Adjust usage.
4048 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
4049 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
4050 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
4051
4052 2008-11-10 Di-an Jan <dianj@freeshell.org>
4053
4054 Workaround Java's ``code too large'' problem for parser tables
4055 in most cases, by using one function per initialization.
4056 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
4057 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
4058 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
4059 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
4060 (yytname_): Use b4_typed_parser_table.
4061 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
4062 ``code too large'' error.
4063
4064 2008-11-10 Di-an Jan <dianj@freeshell.org>
4065
4066 * NEWS: Document them.
4067
4068 General Java skeleton improvements.
4069 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
4070 using gcj < 4.3 in the testsuite, according to comments in
4071 gnulib/m4/javacomp.m4.
4072 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
4073 location_type, position_type): Remove extraneous brackets from
4074 b4_percent_define_default.
4075 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
4076 m4_define and m4_define_default.
4077 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
4078 which marks the end of user code with appropriate syncline, like all
4079 the other skeletons.
4080 (b4_user_post_prologue): Add. Don't silently drop.
4081 (yylex): Remove.
4082 (parse): Inline yylex.
4083 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
4084 (%{...%}): Fix typo of %code imports.
4085 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
4086
4087 Support annotations on parser class with %define annotations.
4088 * data/lalr1.java (annotations): Add to parser class modifier.
4089 * doc/bison.texinfo (Java Parser Interface): Document
4090 %define annotations.
4091 (Java Declarations Summary): Document %define annotations.
4092 * tests/java.at (Java parser class modifiers): Test annotations.
4093
4094 Do not generate code for %error-verbose unless requested.
4095 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
4096 Make private. Make conditional on %error-verbose.
4097 (getErrorVerbose, setErrorVerbose): New.
4098 (yytnamerr_): Make conditional on %error-verbose.
4099 (yysyntax_error): Make some code conditional on %error-verbose.
4100 * doc/bison.texinfo (Java Bison Interface): Remove the parts
4101 about %error-verbose having no effect.
4102 (getErrorVerbose, setErrorVerbose): Document.
4103
4104 Move constants for token names to Lexer interface.
4105 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
4106 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
4107 (parse): Qualify EOF to Lexer.EOF.
4108 * doc/bison.texinfo (Java Parser Interface): Move documentation of
4109 EOF and token names to Java Lexer Interface.
4110 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
4111
4112 Make yyerror public.
4113 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
4114 (yyerror): Change to public. Add Javadoc comments. Use longer
4115 parameter names. Make the body rather than the declarator
4116 conditional on %locations.
4117 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
4118
4119 Allow user to add code to the constructor with %code init.
4120 * data/java.m4 (b4_init_throws): New, for %define init_throws.
4121 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
4122 Add %code init to the front of the constructor body.
4123 * doc/bison.texinfo (YYParser.YYParser): Document %code init
4124 and %define init_throws.
4125 (Java Declarations Summary): Document %code init and
4126 %define init_throws.
4127 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
4128 (Java constructor init and init_throws): Add tests.
4129
4130 2008-11-10 Akim Demaille <demaille@gostai.com>
4131
4132 Update TODO.
4133 * TODO (-D): is implemented.
4134 (associativity): Same precedence must have the same associativity.
4135 For instance, how can a * b / c be parsed if * is %left and / is
4136 %right?
4137 (YYERRORCODE, YYFAIL, YYBACKUP): New.
4138
4139 2008-11-10 Akim Demaille <demaille@gostai.com>
4140
4141 Formatting changes.
4142
4143 2008-11-10 Akim Demaille <demaille@gostai.com>
4144
4145 More information about the symbols.
4146 * src/output.c (type_names_output): Document all the symbols,
4147 including those that don't have a type-name.
4148 (symbol_definitions_output): Define "is_token" and
4149 "has_type_name".
4150 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
4151 type-name, now that they are defined too in b4_type_names.
4152
4153 2008-11-10 Akim Demaille <demaille@gostai.com>
4154
4155 Regen.
4156
4157 2008-11-10 Akim Demaille <demaille@gostai.com>
4158
4159 Make parser::yytranslate static.
4160 Small speedup (1%) on the list grammar. And makes yytranslate_
4161 available in non member functions.
4162
4163 * data/lalr1.cc (yytranslate_): Does not need to be a instance
4164 function.
4165
4166 2008-11-10 Akim Demaille <demaille@gostai.com>
4167
4168 Avoid trailing spaces.
4169 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
4170 * data/lalr1.cc: Don't indent before rule and symbol actions, as
4171 they can be empty, and anyway this incorrectly indents the first
4172 action.
4173
4174 2008-11-10 Akim Demaille <demaille@gostai.com>
4175
4176 Comment changes.
4177
4178 2008-11-10 Akim Demaille <demaille@gostai.com>
4179
4180 Use "enum" for integral constants.
4181 This is just nicer to read, I observed no speedup.
4182
4183 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
4184 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
4185 (yyuser_token_number_max_, yyundef_token_): Move into...
4186 (yytranslate_): here.
4187
4188 2008-11-10 Akim Demaille <demaille@gostai.com>
4189
4190 Shortcuts in bench directives.
4191 * etc/bench.pl.in (parse_dirs): New.
4192 Use it.
4193 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
4194 Create the benches in "benches/".
4195
4196 2008-11-10 Akim Demaille <demaille@gostai.com>
4197
4198 Formatting changes.
4199 * data/lalr1.cc: here.
4200
4201 2008-11-10 Akim Demaille <demaille@gostai.com>
4202
4203 Adjust verbose message to using emacs.
4204 * etc/bench.pl.in: Inform compilation-mode when we change the
4205 directory.
4206 (generate_grammar_list): Recognize %define "variant" in addition
4207 to %define variant.
4208
4209 2008-11-10 Akim Demaille <demaille@gostai.com>
4210
4211 Classify symbols by type-name.
4212 * src/uniqstr.h (UNIQSTR_CMP): New.
4213 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
4214 (type_names_output): New.
4215 (muscles_output): Use it.
4216 * data/lalr1.cc (b4_symbol_action_): Remove.
4217 (b4_symbol_case_, b4_type_action_): New.
4218 Adjust uses of b4_symbol_action_ to use b4_type_action_.
4219
4220 2008-11-10 Akim Demaille <demaille@gostai.com>
4221
4222 Change the handling of the symbols in the skeletons.
4223 Before we were using tables which lines were the symbols and which
4224 columns were things like number, tag, type-name etc. It is was
4225 difficult to extend: each time a column was added, all the numbers had
4226 to be updated (you asked for colon $2, not for "tag"). Also, it was
4227 hard to filter these tables when only a subset of the symbols (say the
4228 tokens, or the nterms, or the tokens that have and external number
4229 *and* a type-name) was of interest.
4230
4231 Now instead of monolithic tables, we define one macro per cell. For
4232 instance "b4_symbol(0, tag)" is a macro name which contents is
4233 self-decriptive. The macro "b4_symbol" provides easier access to
4234 these cells.
4235
4236 * src/output.c (type_names_output): Remove.
4237 (symbol_numbers_output, symbol_definitions_output): New.
4238 (muscles_output): Call them.
4239 (prepare_symbols): Define b4_symbols_number.
4240
4241 2008-11-10 Akim Demaille <demaille@gostai.com>
4242
4243 --trace=muscles
4244 * src/getargs.h, src/getargs.c (trace_muscle): New.
4245 (trace_types, trace_args): Support it.
4246 * src/output.c (output_skeleton): Use it.
4247
4248 2008-11-10 Akim Demaille <demaille@gostai.com>
4249
4250 muscles_output.
4251 * src/output.c (muscles_output): New, extracted from...
4252 (output_skeleton): here.
4253 Adjust.
4254
4255 2008-11-10 Akim Demaille <demaille@gostai.com>
4256
4257 Formatting changes.
4258
4259 2008-11-10 Akim Demaille <demaille@gostai.com>
4260
4261 Update the variant example.
4262 * examples/variant.yy: Formatting changes.
4263 One stage build.
4264
4265 2008-11-10 Akim Demaille <demaille@gostai.com>
4266
4267 Support constructor with an argument.
4268 This improves the "list" bench by 2%.
4269
4270 * data/lalr1.cc (variant::build): Add an overloaded version with
4271 an argument.
4272 * tests/c++.at (AT_CHECK_VARIANT): Check it.
4273
4274 2008-11-10 Akim Demaille <demaille@gostai.com>
4275
4276 Test variants.
4277 * tests/c++.at (AT_CHECK_VARIANTS): New.
4278 Use it with and without %define assert.
4279
4280 2008-11-10 Akim Demaille <demaille@gostai.com>
4281
4282 Add %precedence support.
4283 Unfortunately it is not possible to reuse the %prec directive. This
4284 is because to please POSIX, we do not require to end the rules with a
4285 semicolon. As a result,
4286
4287 foo: bar %prec baz
4288
4289 is ambiguous: either a rule which precedence is that of baz, or a rule,
4290 and then a declaration of the precedence of the token baz.
4291
4292 * doc/bison.texinfo: Document %precedence.
4293 (Precedence Only): New.
4294 * src/assoc.h, src/assoc.c (precedence_assoc): New.
4295 * src/conflicts.c (resolve_sr_conflict): Support it.
4296 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
4297 Parse it.
4298 * tests/calc.at: Use %precedence for NEG.
4299 * tests/conflicts.at (%precedence does not suffice)
4300 (%precedence suffices): New tests.
4301
4302 2008-11-09 Akim Demaille <demaille@gostai.com>
4303
4304 Make benches in a sub dirs.
4305 * etc/bench.pl.in ($dir): New.
4306 Use it.
4307 Check the use of constructors with an argument.
4308 (bench_variant_parser): Fix.
4309
4310 2008-11-09 Akim Demaille <demaille@gostai.com>
4311
4312 fix eof condition
4313
4314 2008-11-09 Akim Demaille <demaille@gostai.com>
4315
4316 Fix --help.
4317
4318 2008-11-09 Akim Demaille <demaille@gostai.com>
4319
4320 Require the generation of parse-gram.output.
4321 * src/Makefile.am (YACC): Pass --report=all.
4322
4323 2008-11-09 Akim Demaille <demaille@gostai.com>
4324
4325 Formatting changes.
4326
4327 2008-11-09 Akim Demaille <demaille@gostai.com>
4328
4329 Update TODO.
4330 * TODO: Remove obsolete items.
4331 Update others.
4332
4333 2008-11-09 Akim Demaille <demaille@gostai.com>
4334
4335 Enhance bench.pl.
4336 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
4337 (@token, $grammar, $bench): New.
4338 (generate_grammar_variant): Rename as...
4339 (generate_grammar_list): this.
4340 (generate_grammar): Adjust.
4341 (bench_grammar): Rename as...
4342 (bench): this.
4343 Use it in the various bench-marking routines.
4344 (-b, -g): New options.
4345
4346 2008-11-09 Akim Demaille <demaille@gostai.com>
4347
4348 Use a static hierarchy for symbols in the C++ parser.
4349 * data/lalr1.cc (symbol_base_type, symbol_type)
4350 (stack_symbol_type): Make it a static hierarchy.
4351 Adjust dependencies.
4352
4353 2008-11-09 Akim Demaille <demaille@gostai.com>
4354
4355 bench.pl -d, --directive.
4356 * etc/bench.pl.in (@directive): New.
4357 (&bench_grammar): Use it.
4358 (&bench_list_grammar): New, to provide access to the "variant"
4359 grammar.
4360 Use it.
4361 (getopts): Support -d, --directive.
4362
4363 2008-11-09 Akim Demaille <demaille@gostai.com>
4364
4365 Use inline for small operations.
4366 * data/lalr1.cc (symbol_base_type, symbol_type)
4367 (stack_symbol_type): Declare constructor and other operations as
4368 inline.
4369 (yy_destroy_): Inline.
4370
4371 2008-11-09 Akim Demaille <demaille@gostai.com>
4372
4373 Introduce a hierarchy for symbols.
4374 * data/lalr1.cc (symbol_base_type, symbol_type): New.
4375 (data_type): Rename as...
4376 (stack_symbol_type): this.
4377 Derive from symbol_base_type.
4378 (yy_symbol_value_print_): Merge into...
4379 (yy_symbol_print_): this.
4380 Rename as...
4381 (yy_print_): this.
4382 (yydestruct_): Rename as...
4383 (yy_destroy_): this.
4384 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
4385 (parser::parse): yyla is now of symbol_type.
4386 Use its type member instead of yytoken.
4387
4388 2008-11-09 Akim Demaille <demaille@gostai.com>
4389
4390 Rename data_type and stack_symbol_type.
4391 * data/lalr1.cc (data_type): Rename as...
4392 (stack_symbol_type): this.
4393
4394 2008-11-09 Akim Demaille <demaille@gostai.com>
4395
4396 Handle semantic value and location together.
4397 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
4398 yydata.value and yydata.location.
4399 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
4400 (YY_SYMBOL_PRINT): Now take semantic value and location as a
4401 single arg.
4402 Adjust all callers.
4403 (yydestruct_): New overload for a stack symbol.
4404
4405 2008-11-09 Akim Demaille <demaille@gostai.com>
4406
4407 Push a complete symbol, not connected parts.
4408 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
4409 state, value and location.
4410 Adjust callers.
4411
4412 2008-11-09 Akim Demaille <demaille@gostai.com>
4413
4414 Agregate yylval and yylloc.
4415 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
4416 (parser::yyla): this.
4417
4418 2008-11-09 Akim Demaille <demaille@gostai.com>
4419
4420 Rely on the state stack to display reduction traces.
4421 To display rhs symbols before a reduction, we used information
4422 about the rule reduced, which required the tables yyrhs and
4423 yyprhs. Now use rely only on the state stack to get the same
4424 information.
4425
4426 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
4427 Use them.
4428 (parser::yyrhs_, parser::yyprhs_): Remove.
4429 (parser::yy_reduce_print_): Use the state stack.
4430
4431 2008-11-09 Akim Demaille <demaille@gostai.com>
4432
4433 Fuse yyval and yyloc into yylhs.
4434 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
4435 yylhs.
4436 (parse): Replace yyval and yyloc with yylhs.value and
4437 yylhs.location.
4438 After a user action, compute yylhs.state earlier.
4439 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
4440 fresh error_token.
4441
4442 2008-11-09 Di-an Jan <dianj@freeshell.org>
4443
4444 Remove unused variable.
4445 * src/output.c (type_names_output): Remove unused variable sep.
4446
4447 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
4448
4449 Change tests/output.at quoting.
4450 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
4451 expanding arguments.
4452
4453 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
4454
4455 Don't add a semicolon to actions for %skeleton or %language.
4456 It breaks Java test cases as reported by Akim Demaille.
4457 * src/scan-code.l: Implement.
4458
4459 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
4460
4461 Clean up %skeleton and %language priority implementation.
4462 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
4463 remove static qualifier because others will soon need to see it.
4464 (language_prio): Likewise.
4465 (getargs): Use command_line_prio rather than 0.
4466 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
4467 enum fields.
4468 (skeleton_prio): Extern it.
4469 (language_prio): Extern it.
4470 * src/parse-gram.y: Use grammar_prio rather than 1.
4471
4472 2008-11-07 Akim Demaille <demaille@gostai.com>
4473
4474 Moving push traces into yypush_.
4475 * data/lalr1.cc (yypush_): Now takes a optional trace message.
4476 Adjust all uses.
4477
4478 2008-11-07 Akim Demaille <demaille@gostai.com>
4479
4480 The single-stack C++ parser is now the standard one.
4481 * data/lalr1.cc: Rename as...
4482 * data/lalr1-split.cc: this.
4483 * data/lalr1-fusion.cc: Rename as...
4484 * data/lalr1.cc: this.
4485 * etc/bench.pl.in: Adjust.
4486
4487 2008-11-07 Akim Demaille <demaille@gostai.com>
4488
4489 Avoid empty-if warnings.
4490 Reported by Quentin Hocquet.
4491
4492 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
4493 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
4494
4495 2008-11-07 Akim Demaille <demaille@gostai.com>
4496
4497 Pass command line location to skeleton_arg and language_argmatch.
4498 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
4499 The location argument is now mandatory.
4500 Adjust all dependencies.
4501 (getargs): Use command_line_location.
4502
4503 2008-11-07 Akim Demaille <demaille@gostai.com>
4504
4505 -D, --define.
4506 * src/getargs.c (usage): Document -D.
4507 Fix help string for --locations.
4508 (command_line_location): New.
4509 (short_options, long_options, getargs): Support -D, --define.
4510 (getargs): Move -d support at the right place.
4511 * doc/bison.texinfo (Bison Options): Update.
4512 * tests/input.at (%define, --define): New.
4513
4514 2008-11-07 Akim Demaille <demaille@gostai.com>
4515
4516 Initialize the muscle table before parsing the command line.
4517 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
4518 (getargs): Define file_name.
4519 * src/main.c (main): Initialize muscle_tab before calling
4520 getargs.
4521 * src/muscle_tab.c (muscle_init): No longer define file_name, as
4522 its value is not available yet.
4523
4524 2008-11-07 Akim Demaille <demaille@gostai.com>
4525
4526 Locations without columns for command line arguments.
4527 * src/location.c (location_print): Don't display negative columns.
4528 * src/location.h: Document this.
4529
4530 2008-11-07 Akim Demaille <demaille@gostai.com>
4531
4532 Fix --help.
4533 * src/getargs.c (usage): Fix help string for -W.
4534
4535 2008-11-07 Akim Demaille <demaille@gostai.com>
4536
4537 Handle more general types of option arguments.
4538 * build-aux/cross-options.pl: The argument ends at the first
4539 space, not the first non-symbol character.
4540 Use @var for each word appearing the argument description.
4541
4542 2008-11-07 Akim Demaille <demaille@gostai.com>
4543
4544 Destroy the variants that remain on the stack in case of error.
4545 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
4546 destructor.
4547 Display the value only if yymsg is nonnull.
4548 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
4549
4550 2008-11-07 Akim Demaille <demaille@gostai.com>
4551
4552 Add "%define assert" to variants.
4553 This is used to help the user catch cases where some value gets
4554 ovewritten by a new one. This should not happen, as this will
4555 probably leak.
4556
4557 Unfortunately this uncovered a bug in the C++ parser itself: the
4558 lookahead value was not destroyed between two calls to yylex. For
4559 instance if the previous lookahead was a std::string, and then an int,
4560 then the value of the std::string was correctly taken (i.e., the
4561 lookahead was now an empty string), but std::string structure itself
4562 was not reclaimed.
4563
4564 This is now done in variant::build(other&) (which is used to take the
4565 value of the lookahead): other is not only stolen from its value, it
4566 is also destroyed. This incurs a new performance penalty of a few
4567 percent, and union becomes faster again.
4568
4569 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
4570 (b4_variant_if): New.
4571 (variant::built): New.
4572 Use it whereever the status of the variant changes.
4573 * etc/bench.pl.in: Check the penalty of %define assert.
4574
4575 2008-11-07 Akim Demaille <demaille@gostai.com>
4576
4577 Use "%define variant" in bench.pl.
4578 * etc/bench.pl.in: No longer use the pseudo directive %variants,
4579 just use %define variants.
4580
4581 2008-11-07 Akim Demaille <demaille@gostai.com>
4582
4583 Regen.
4584 * src/parse-gram.h, src/parse-gram.c: Regen.
4585
4586 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
4587
4588 Fix user actions without a trailing semicolon.
4589 Reported by Sergei Steshenko at
4590 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
4591 * THANKS (Sergei Steshenko): Add.
4592 * src/scan-code.l (SC_RULE_ACTION): Fix it.
4593 * tests/regression.at (Fix user actions without a trailing semicolon):
4594 New test case.
4595
4596 2008-11-04 Akim Demaille <demaille@gostai.com>
4597
4598 Use b4_copyright_years.
4599 * data/yacc.c (b4_copyright_years): New.
4600 Fix its value according to the comments in the file.
4601 Use it and undefine it.
4602
4603 2008-11-04 Akim Demaille <demaille@gostai.com>
4604
4605 Formatting changes.
4606 * data/lalr1-fusion.cc, src/parse-gram.y: here.
4607
4608 2008-11-04 Akim Demaille <demaille@gostai.com>
4609
4610 Formatting changes.
4611 * data/lalr1-fusion.cc: here.
4612
4613 2008-11-04 Akim Demaille <demaille@gostai.com>
4614
4615 Use strict on bench.pl.
4616 * etc/bench.pl.in (&run, &generate_grammar): New.
4617 Rename the grammar generating functions for consistency.
4618 Change the interface so that the list of benches to run is passed
4619 as (optionless) arguments.
4620 (&compile): Use &run.
4621
4622 2008-11-04 Akim Demaille <demaille@gostai.com>
4623
4624 Remove spurious initial empty lines.
4625 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
4626 * data/yacc.c: End the @output lines with an @.
4627
4628 2008-11-04 Akim Demaille <demaille@gostai.com>
4629
4630 Improve the display of sizes.
4631 * etc/bench.p.in: Higher precision.
4632 Sort by decreasing size.
4633
4634 2008-11-04 Akim Demaille <demaille@gostai.com>
4635
4636 Don't memcpy C++ structures.
4637 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
4638 arguments.
4639 (variant::build): New overload for
4640 copy-construction-that-destroys.
4641 (variant::swap): New.
4642 (parser::yypush_): Use it in variant mode.
4643
4644 2008-11-04 Akim Demaille <demaille@gostai.com>
4645
4646 Better defaults for bench.pl.
4647 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
4648 default values.
4649 Adjust &verbose uses.
4650 (-q, --quiet): New.
4651
4652 2008-11-04 Akim Demaille <demaille@gostai.com>
4653
4654 Make variant.yy more complex.
4655 std::list cannot be copied via memcpy, they are more demanding than
4656 std::string. Use one std::list to strengthen the test.
4657
4658 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
4659 Adjust.
4660 Create a list of strings, instead of a single large string.
4661
4662 2008-11-04 Akim Demaille <demaille@gostai.com>
4663
4664 bench.pl --bench.
4665 * etc/bench.pl.in (--bench, $bench): New.
4666
4667 2008-11-04 Akim Demaille <demaille@gostai.com>
4668
4669 Sort methods.
4670 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
4671 Define it after as().
4672
4673 2008-11-04 Akim Demaille <demaille@gostai.com>
4674
4675 Useless parens.
4676 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
4677
4678 2008-11-04 Akim Demaille <demaille@gostai.com>
4679
4680 Issue missing synclines after user actions.
4681 * data/c.m4 (b4_case): Issue synclines on the output file.
4682
4683 2008-11-04 Akim Demaille <demaille@gostai.com>
4684
4685 Remove trailing empty line.
4686 * data/lalr1-fusion.cc: Don't add an empty line after the user's
4687 epilogue.
4688
4689 2008-11-04 Akim Demaille <demaille@gostai.com>
4690
4691 Fix output of copyright years.
4692 * data/bison.m4 (b4_copyright): Fix the indentation of the
4693 copyright year paragraph.
4694 Use b4_copyright_years when no years are given.
4695 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
4696 (b4_copyright_years): New.
4697 Use it.
4698
4699 2008-11-04 Akim Demaille <demaille@gostai.com>
4700
4701 Avoid the spurious initial empty line.
4702 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
4703 the end of @output request to suppress the empty line that
4704 results.
4705
4706 2008-11-04 Akim Demaille <demaille@gostai.com>
4707
4708 Remove parser::rhs_number_type.
4709 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
4710 (yyrhs_): Use b4_table_define.
4711
4712 2008-11-04 Akim Demaille <demaille@gostai.com>
4713
4714 Fix iteration type.
4715 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
4716
4717 2008-11-04 Akim Demaille <demaille@gostai.com>
4718
4719 Factor the declaration of the integer tables.
4720 * data/lalr1-fusion.cc (b4_table_define): New.
4721 Use it.
4722
4723 2008-11-03 Akim Demaille <demaille@gostai.com>
4724
4725 Fix indentation of tables in lalr1.cc
4726 * data/lalr1-fusion.cc: Fix the indentation.
4727
4728 2008-11-03 Akim Demaille <demaille@gostai.com>
4729
4730 Destroy the lhs symbols after reduction.
4731 * data/lalr1-fusion.cc (parse): After the user action, when in
4732 variant mode, destroy the lhs symbols.
4733
4734 2008-11-03 Akim Demaille <demaille@gostai.com>
4735
4736 Simplify yysyntax_error_ use.
4737 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
4738 type, but make it unnamed in the declaration when it is not used.
4739
4740 2008-11-03 Akim Demaille <demaille@gostai.com>
4741
4742 Let yy::variant::build return an lvalue.
4743 * data/lalr1-fusion.cc (variant::build): Return a reference to the
4744 object.
4745
4746 2008-11-03 Akim Demaille <demaille@gostai.com>
4747
4748 Define yy::variant only when needed.
4749 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
4750 used.
4751
4752 2008-11-03 Akim Demaille <demaille@gostai.com>
4753
4754 Bench the three-stack lalr1.cc.
4755 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
4756 one-stack one.
4757
4758 2008-11-03 Akim Demaille <demaille@gostai.com>
4759
4760 Fail on parse error in calc++.
4761 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
4762 status.
4763 * examples/calc++/test ($me, $number, $exit, run): New.
4764 Use them to propagate errors to the exit status.
4765
4766 2008-11-03 Akim Demaille <demaille@gostai.com>
4767
4768 Don't specify the skeleton twice in the example.
4769 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
4770 file does what is needed.
4771
4772 2008-11-03 Akim Demaille <demaille@gostai.com>
4773
4774 bench: Improve output.
4775 * etc/bench.pl.in (bench_grammar): Tune the printf format.
4776
4777 2008-11-03 Akim Demaille <demaille@gostai.com>
4778
4779 bench: check impact of %debug on variants.
4780 * etc/bench.pl.in (variant_grammar): Fix the computation of
4781 $variant.
4782 Generate a grammar file that can work with or without %debug.
4783 Do use the @directive.
4784 (bench_variant_parser): Check impact of %debug.
4785 (@directives): Rename all the occurrences to...
4786 (@directive): this, for consistency.
4787
4788 2008-11-03 Akim Demaille <demaille@gostai.com>
4789
4790 bench: report the size too.
4791 * etc/bench.pl.in ($iterations): Defaults to -3.
4792 (&bench_grammar): Require hireswallclock.
4793 Compute and display the size of the result.
4794 More comments.
4795
4796 2008-11-03 Akim Demaille <demaille@gostai.com>
4797
4798 bench: More use of the verbosity level.
4799 * etc/bench.pl.in ($verbose, &verbose): New.
4800 Use them.
4801 More POD documentation.
4802
4803 2008-11-03 Akim Demaille <demaille@gostai.com>
4804
4805 bench.pl: a command line interface
4806 * etc/bench.pl.in: More doc.
4807 Some fixes in the documentation.
4808 ($cflags, $iterations, &help, &getopt): New.
4809 Use them.
4810 (&variant_grammar): Let the number of stages be 10 times what is
4811 specified.
4812
4813 2008-11-03 Akim Demaille <demaille@gostai.com>
4814
4815 Bench the use of Boost.Variants.
4816 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
4817 New.
4818 (&compile): Be ready to compile C++ parsers.
4819 (&bench_push_parser): Move debug information to the outermost
4820 level.
4821 * THANKS: Add Michiel De Wilde.
4822
4823 2008-11-03 Akim Demaille <demaille@gostai.com>
4824
4825 bench.pl: Pass directives as a list instead of as a string.
4826 * etc/bench.pl.in (&directives): New.
4827 (&triangular_grammar, &calc_grammar): Use it to format the Bison
4828 directives.
4829 (&triangular_grammar): Do use the directives (were ignored).
4830 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
4831 directives.
4832
4833 2008-11-03 Akim Demaille <demaille@gostai.com>
4834
4835 Improve genericity of bench.pl.
4836 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
4837 argument.
4838 (&bench_push_parser): New.
4839 Call it.
4840
4841 2008-11-03 Akim Demaille <demaille@gostai.com>
4842
4843 Add documentation to bench.pl.
4844 * etc/bench.pl.in: Comment changes.
4845
4846 2008-11-03 Akim Demaille <demaille@gostai.com>
4847
4848 Fuse the three stacks into a single one.
4849
4850 In order to make it easy to perform benchmarks to ensure that
4851 there are no performance loss, lalr1.cc is forked into
4852 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
4853 lalr1.cc.
4854
4855 Meanwhile, to make sure that lalr1-fusion.cc is correctly
4856 exercized by the test suite, the user must install a symbolic link
4857 from lalr1.cc to it.
4858
4859 Instead of having three stacks (state, value, location), use a
4860 stack of triples. This considerably simplifies the code (and it
4861 will be easier not to require locations as currently does the C++
4862 parser), and also gives a 10% speedup according to
4863 etc/bench (probably mainly since memory allocation is done once
4864 instead of three times).
4865
4866 Another motivation is to make it easier to destruct properly
4867 semantic values: now that they are bound to their state (hence
4868 symbol type) it will be easier to call the appropriate destructor.
4869
4870 These changes should probably benefit the C parser too.
4871
4872 * data/lalr1.cc: Copy as...
4873 * data/lalr1-fusion.cc: this new file.
4874 (b4_rhs_value, b4_rhs_location): New definitions overriding those
4875 from c++.m4.
4876 (state_stack_type, semantic_stack_type, location_stack_type)
4877 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
4878 (data_type, stack_type, yystack_): New.
4879 (YYLLOC_DEFAULT, yypush_): Adjust.
4880 (yyerror_range): Now based on data_type, not location_type.
4881
4882 2008-11-03 Akim Demaille <demaille@gostai.com>
4883
4884 Push the state, value, and location at the same time.
4885 This is needed to prepare a forthcoming patch that fuses the three
4886 stacks into one.
4887
4888 * data/lalr1.cc (parser::yypush_): New.
4889 (parser::yynewstate): Change the semantics: instead of arriving to
4890 this label when value and location have been pushed, but yystate
4891 is to be pushed on the state stack, now the three of them must
4892 have been pushed before. yystate still must be the new state.
4893 This allows to use yypush_ everywhere instead of individual
4894 handling of the stacks.
4895
4896 2008-11-03 Akim Demaille <demaille@gostai.com>
4897
4898 Prefer references to pointers.
4899 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
4900 definition to use references instead of pointers.
4901 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
4902 Take the value and location as references.
4903 Adjust callers.
4904
4905 2008-11-03 Akim Demaille <demaille@gostai.com>
4906
4907 stack::size instead of stack::height.
4908 * data/lalr1.cc (stack::height): Rename as...
4909 (stack::size): this.
4910 Fix the output type.
4911 Comment changes.
4912
4913 2008-11-03 Akim Demaille <demaille@gostai.com>
4914
4915 Use variants to support objects as semantic values.
4916 This patch was inspired by work by Michiel De Wilde. But he used
4917 Boost variants which (i) requires Boost on the user side, (ii) is
4918 slow, and (iii) has useless overhead (the parser knows the type of
4919 the semantic value there is no reason to duplicate this
4920 information as Boost.Variants do).
4921
4922 This implementation reserves a buffer large enough to store the
4923 largest objects. yy::variant implements this buffer. It was
4924 implemented with Quentin Hocquet.
4925
4926 * src/output.c (type_names_output): New.
4927 (output_skeleton): Invoke it.
4928 * data/c++.m4 (b4_variant_if): New.
4929 (b4_symbol_value): If needed, provide a definition for variants.
4930 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
4931 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
4932 (b4_char_sizeof, yy::variant): New.
4933 (parser::parse): If variants are requested, define
4934 parser::union_type, parser::variant, change the definition of
4935 semantic_type, construct $$ before running the user action instead
4936 of performing a default $$ = $1.
4937 * examples/variant.yy: New.
4938 Based on an example by Michiel De Wilde.
4939
4940 2008-11-03 Akim Demaille <demaille@gostai.com>
4941
4942 Parameterize the extraction of semantic values.
4943 To make future changes easier, no longer rely on ".TYPE" being the
4944 way to get a semantic value.
4945
4946 * data/c.m4 (b4_symbol_value): New.
4947 Use it.
4948 * data/c++.m4, data/yacc.c: Use it.
4949 * data/glr.c: Use b4_symbol_value.
4950 (b4_rhs_data): New.
4951 Use it.
4952
4953 2008-11-03 Akim Demaille <demaille@gostai.com>
4954
4955 Prepare easier M4 changes.
4956 * data/lalr1.cc: Use escaped [] instead of literals to prepare
4957 future changes.
4958
4959 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4960
4961 Initiate further development.
4962 * NEWS: Create an empty section for new entries.
4963 * gnulib: Update submodule to HEAD.
4964
4965 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4966
4967 * NEWS: Version 2.4.
4968
4969 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4970
4971 Prepare for next release.
4972 * NEWS: Briefly mention changes since 2.3b.
4973 * README: Say GNU m4 1.4.6, which we've been requiring in release
4974 announcements already, not 1.4.3, which breaks the build.
4975
4976 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
4977
4978 Say %language is experimental.
4979 We're thinking of extending it's effect on output file naming. See the
4980 thread at
4981 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
4982 * NEWS: Say it's experimental.
4983 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
4984 recommend it over %skeleton for now.
4985 (Bison Options): Likewise.
4986 (C++ Bison Interface): Use %skeleton not %language.
4987 (Calc++ Parser): Use %skeleton not %language.
4988 * src/getargs.c (usage): Say it's experimental.
4989
4990 2008-11-01 Di-an Jan <dianj@freeshell.org>
4991 Paolo Bonzini <bonzini@gnu.org>
4992
4993 Support all Java parser class modifiers.
4994 * data/java.m4 (b4_percent_define_get3): New.
4995 (b4_final_if, b4_strictfp_if): New.
4996 * data/lalr1.java (final, strictfp, extends, implements): Support.
4997 * doc/bison.texinfo (final, strictfp, extends, implements): Add
4998 documentation.
4999 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
5000 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
5001 (AT_CHECK_JAVA_GREP): New.
5002 (Java parser class modifiers): New test.
5003 (Java parser class extends and implements): New test.
5004
5005 Model exception propagation better with throws and lex_throws.
5006 * data/java.m4 (b4_list2): New.
5007 (throws): Change default.
5008 * data/lalr1.java (yyaction): Add throws.
5009 (parse): Add lex_throws in addition to throws.
5010 * doc/bison.texinfo (throws, lex_throws): Add documentation.
5011 * tests/java.at (Java throws specifications): New test.
5012
5013 Improve documentation for Java parsers.
5014 * doc/bison.texinfo (Java Parsers): Add subsections.
5015 Don't quote first argument of %define.
5016 (Java Bison Interface): Document output files. Move documentation
5017 of parser class and merge into Java Parser Interface. Document
5018 features that error out. Document directives with no effect.
5019 Move note about Javadoc higher.
5020 (Java Semantic Values): Explicitly mention stype.
5021 Document that generic types cannot be used.
5022 (Java Location Values): Use @deftypeivar. Document constructors.
5023 Correct return value for toString.
5024 (Java Parser Interface): List undocumented constants/fields.
5025 Move documentation of fields added by %parse-param closer to list
5026 of members. Document that token names are added as fields.
5027 Document constructors accurately. Remove error method.
5028 (Java Scanner Interface): Move note on %pure-parser to Java Bison
5029 Interface. Describe %code lexer and yylex accutately.
5030 Remove documentation that does not match the code.
5031 (Java Action Features): New.
5032 (Java Differences): Add reference. Add item on semantic values.
5033 Add note about @{ ... @}. Clarify %% epilogue placement.
5034 (Java Declarations Summary): New.
5035
5036 Fix Java skeleton.
5037 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
5038 (b4_remove_comma): Quote test argument.
5039 (b4_identification): Remove "bison" field.
5040 * tests/java.at (Java parser class and package names): New test.
5041 (Java %parse-param and %lex-param): New test.
5042 (Java stype, position_class and location_class): New test.
5043
5044 2008-10-31 Di-an Jan <dianj@freeshell.org>
5045
5046 * data/lalr1.jave: Update copyright years.
5047 (YYParser): Correct name of "generated from" file in Javadoc:
5048 use b4_file_name instead of @ofile@.
5049 (Location constructor): Correct Javadoc parameter name.
5050 (yylloc): Add missing opening m4 quote after b4_location_if.
5051 This removes a stray [ in the Javadoc of Lexer.getStartPos.
5052 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
5053 (YYParser constructor): Correct Javadoc parameter name.
5054
5055 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
5056
5057 Always put auxiliary code files in the same dir as other output files.
5058 * src/files.c (compute_file_name_parts): When the user specifies
5059 --output but not --file-prefix, extract the directory prefix from the
5060 file prefix not from the grammar file name. This affects the location
5061 of files like location.hh generated by the C++ skeleton. The includes
5062 in the other output files require this fix.
5063 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
5064 for expected output files.
5065 (Output files): Add a test for the above.
5066
5067 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
5068
5069 * gnulib: Update submodule to HEAD.
5070
5071 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
5072
5073 Update copyright year.
5074 * src/files.c: Here.
5075
5076 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
5077
5078 Don't overwrite the input file.
5079 * src/files.c (output_file_name_check): Fatal error if using input file
5080 for output.
5081 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
5082 argument.
5083 (Conflicting output files): Add test.
5084
5085 2008-10-28 Akim Demaille <demaille@gostai.com>
5086
5087 Space changes.
5088 * data/lalr1.cc: Formatting changes.
5089
5090 2008-10-28 Akim Demaille <demaille@gostai.com>
5091
5092 Don't define debugging functions when !YYDEBUG.
5093 * data/lalr1.cc (debug_stream, set_debug_stream)
5094 (debug_level_type, debug_level, set_debug_level): Don't
5095 declare them when YYDEBUG is not defined.
5096 The implementation are already YYDEBUG-aware.
5097
5098 2008-10-28 Akim Demaille <demaille@gostai.com>
5099
5100 Prefer "continue" for empty loop bodies.
5101 * etc/bench.pl.in: Use "continue" instead of {}.
5102
5103 2008-10-28 Akim Demaille <demaille@gostai.com>
5104
5105 Space and comments changes.
5106 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
5107 * data/c.m4, data/lalr1.cc: Space changes.
5108
5109 2008-10-28 Akim Demaille <demaille@gostai.com>
5110
5111 Make gnulib a submodule.
5112 * gnulib: New.
5113 * .gitmodules (gnulib): New.
5114
5115 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
5116
5117 Fix yyerror_range for user-defined location type in C++. Reported by
5118 Georg Sauthoff at
5119 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
5120 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
5121 * THANKS (Georg Sauthoff): Add.
5122
5123 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
5124
5125 Update several administrative files mainly to facilitate releasing.
5126 * HACKING (Administrivia): Make the git-merge-changelog notes more
5127 helpful.
5128 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
5129 (Release Procedure): Update for git and add numerous details that were
5130 previously missing.
5131 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
5132 * maint.mk (announcement): Don't list bison as a bootstrap tool so
5133 that announcements don't claim we bootstrapped with whatever bison
5134 happened to be in PATH. Add flex as a bootstrap tool.
5135 * Makefile.maint: Remove, previously replaced by maint.mk.
5136 * Makefile.cfg: Remove, and migrate settings to...
5137 * cfg.mk: ... here for the sake of `make announcement'.
5138 * bootstrap.conf (gnulib_modules): Add announce-gen.
5139 * README: Say GNU Bison instead of just Bison. Suggested by Karl
5140 Berry.
5141
5142 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
5143
5144 Small but important bugfixes for the Java skeleton.
5145 * data/lalr1.java (yyerror): Change Location to b4_location_type.
5146 (yy_symbol_print): Call toString on yyvaluep.
5147
5148 2008-08-29 Akim Demaille <demaille@gostai.com>
5149
5150 Clarify UPDATED use.
5151 * doc/bison.texinfo: It refers to the last edition of this file,
5152 not to the release date of Bison.
5153 Reported by Joel E. Denny.
5154
5155 2008-08-29 Akim Demaille <demaille@gostai.com>
5156
5157 * README: Update FAQ pointer.
5158 Reported by Joel E. Denny.
5159
5160 2008-08-27 Eric Blake <ebb9@byu.net>
5161
5162 Resync m4sugar from autoconf.
5163 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
5164 (m4_init): Adjust to latest m4.git changes.
5165 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
5166 effects.
5167 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
5168 (_m4_list_cmp): Reduce side effects.
5169
5170 2008-08-27 Akim Demaille <demaille@gostai.com>
5171
5172 Check yyerrok in calc.at.
5173 * tests/calc.at (calc.y): Use yyerrok on "( error )".
5174 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
5175 expected.
5176
5177 2008-08-27 Akim Demaille <demaille@gostai.com>
5178
5179 Support yyerrok in lalr1.cc.
5180 YYBACKUP is still to import back into lalr1.cc.
5181 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
5182
5183 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
5184
5185 For maintainer-check*, don't recompile for a $(VERSION) update.
5186 * cfg.mk: New file.
5187 (_is-dist-target): Override the one in GNUmakefile.
5188 * Makefile.am (EXTRA_DIST): Add cfg.mk.
5189
5190 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
5191
5192 Update for recent change to gnulib.
5193 * src/parse-gram.y: Don't include strverscmp.h. It comes from
5194 string.h now.
5195
5196 2008-08-15 Eric Blake <ebb9@byu.net>
5197
5198 Remaining m4sugar merge from autoconf.
5199 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
5200 * data/m4sugar/foreach.m4: New file, copied from autoconf.
5201 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
5202 * src/output.c (output_skeleton): Tell m4 how to find it.
5203
5204 Partial m4sugar merge from autoconf: m4_map.
5205 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
5206 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
5207 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
5208 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
5209 for empty list.
5210 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
5211 Likewise.
5212 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
5213 declares it.
5214
5215 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
5216
5217 Keep .version and PACKAGE_VERSION in sync.
5218 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
5219 dependency, and add comments justifying this in more detail. Discussed
5220 starting at
5221 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
5222
5223 2008-08-06 Eric Blake <ebb9@byu.net>
5224
5225 Partial m4sugar merge from autoconf: m4_shiftn.
5226 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
5227 (m4_shift2, m4_shift3): New macros.
5228 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
5229 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
5230 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
5231 * data/java.m4 (b4_remove_comma): Likewise.
5232
5233 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
5234 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
5235 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
5236 (m4_init): Consolidate wrapped text into single m4_wrap.
5237 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
5238 in wrapped text.
5239
5240 2008-08-05 Eric Blake <ebb9@byu.net>
5241
5242 Partial m4sugar merge from autoconf: builtins, version.m4.
5243 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
5244 (m4_prepend): Remove, as it is unused and inherently quadratic,
5245 whereas m4_append is linear in newer m4.
5246 (m4_mkstemp): New builtin.
5247 (m4_symbols): Make rename conditional.
5248 (m4_version_prereq): Ensure fatal error if used in bison, which
5249 intentionally lacks version.m4.
5250
5251 Fix comments in m4sugar.
5252 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
5253
5254 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
5255
5256 Update for recent .gitignore fix in Gnulib.
5257 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
5258 anchored .gitignore entries.
5259
5260 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
5261
5262 Set gnu or gnits strictness.
5263 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
5264 development and gnits strictness for releases. Based on Eric Blake's
5265 suggestion at
5266 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
5267
5268 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
5269
5270 * NEWS: Clarify documentation of %language.
5271
5272 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
5273
5274 Support usage of git-merge-changelog.
5275 * .gitattributes: New.
5276 * HACKING: Document usage of git-merge-changelog.
5277 * bootstrap: Install git-merge-changelog entries in .git/config
5278 if appropriate.
5279
5280 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
5281
5282 Remove remaining dependence on CVS Id keyword.
5283 * ChangeLog: For the sake of people still using CVS, don't use dollars
5284 when mentioning Id.
5285 * data/xslt/bison.xsl: Remove Id from header comments, where it was
5286 unusual anyway.
5287 * data/xslt/xml2dot.xsl: Likewise.
5288 * data/xslt/xml2text.xsl: Likewise.
5289 * data/xslt/xml2xhtml.xsl: Likewise.
5290 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
5291 * doc/Makefile.am (neutralize): Remove, no longer needed.
5292 (.x.1): Don't use neutralize.
5293 (edit): Don't substitute for ID.
5294 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
5295
5296 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
5297
5298 Fix dependence on computed configure variables.
5299 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
5300 $(top_srcdir)/configure.ac so that changes to computed variables, such
5301 as PACKAGE_VERSION, are seen.
5302 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
5303
5304 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
5305
5306 Update copyright dates for recent changes.
5307 * Makefile.am: Here.
5308 * src/Makefile.am: Here.
5309 * src/reduce.c: Here.
5310 * tests/reduce.at: Here.
5311
5312 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
5313
5314 Use git-version-gen for version names between releases.
5315 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
5316 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
5317 * .prev-version: New.
5318 * .version.in: Remove.
5319 * ChangeLog: Remove the Id previously used for capturing the CVS
5320 revision.
5321 * GNUmakefile: Remove, now copied from Gnulib.
5322 * Makefile.am: Add code suggested by comments in
5323 build-aux/git-version-gen.
5324 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
5325 .prev-version, and .version.
5326 * NEWS (2.3b+): Rename to...
5327 (?.?): ... this because we're dropping the "+" version naming scheme,
5328 but, in general, we still can't be sure of our next release name.
5329 * bootstrap: Add a quick hack to remove from .gitignore the
5330 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
5331 entry. This should really be fixed in gnulib instead.
5332 * bootstrap.conf (gnulib_modules): Add gnumakefile.
5333 * configure.ac (AC_INIT): Set version name by invoking
5334 build-aux/git-version-gen.
5335 (AC_CONFIG_FILES): Remove .version, now generated by
5336 build-aux/git-version-gen.
5337 * maint.mk: New, copied from coreutils.
5338 * doc/.cvsignore (bison.1): Add.
5339 * doc/.gitignore (/bison.1): Add.
5340 * doc/bison.1: Remove, generated.
5341 * src/.cvsignore (revision.c): Remove.
5342 * src/.gitignore (/revision.c): Remove.
5343 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
5344 (BUILT_SOURCES): Remove revision.c.
5345 (revision.c): Remove.
5346 * src/getargs.c (version): Don't print revision after the VERSION.
5347 * src/revision.h: Remove.
5348
5349 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
5350
5351 Fix untranslatable composition of sentences. Reported by Goran
5352 Uddeborg at
5353 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
5354 * THANKS (Goran Uddeborg): Add.
5355 * src/reduce.c (reduce_print): Report the number of nonterminals and
5356 rules useless in the grammar in separate sentences.
5357 * tests/reduce.at (Useless Rules): Update output.
5358 (Reduced Automaton): Likewise.
5359 (Underivable Rules): Likewise.
5360 (Empty Language): Likewise.
5361
5362 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
5363
5364 Fix some .gitignore and .cvsignore problems.
5365 * bootstrap (insert_sorted_if_absent): Replace all uses with...
5366 (insert_vc_ignore): ... this new function, which prepends `/' to all
5367 .gitignore entries before passing them to insert_sorted_if_absent.
5368 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
5369 .cvsignore files are maintained even though Bison developers run
5370 bootstrap while using Git.
5371 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
5372 unneeded by Bison.
5373 (gnulib): Add.
5374 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
5375 unneeded. Reported by Eric Blake.
5376 * lib/.gitignore (/*~): Add.
5377 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
5378 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
5379 Blake.
5380 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
5381
5382 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
5383
5384 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
5385 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
5386 * bootstrap.conf (gnulib_modules): Add unsetenv.
5387 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
5388 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
5389 (/setenv.m4): Add.
5390 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
5391 the first argument because it may become position-dependent, and unset
5392 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
5393 Add comments explaining these issues in more detail.
5394
5395 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
5396
5397 Add .gitignore everywhere based on .cvsignore.
5398 * .gitignore: New.
5399 * build-aux/.gitignore: New.
5400 * data/.gitignore: New.
5401 * doc/.gitignore: New.
5402 * etc/.gitignore: New.
5403 * examples/.gitignore: New.
5404 * examples/calc++/.gitignore: New.
5405 * lib/.gitignore: New.
5406 * m4/.gitignore: New.
5407 * po/.gitignore: New.
5408 * runtime-po/.gitignore: New.
5409 * src/.gitignore: New.
5410 * tests/.gitignore: New.
5411
5412 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
5413
5414 * NEWS (2.3b+): New section, empty for now.
5415 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
5416
5417 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
5418
5419 * NEWS (2.3b): Update release date since there has been a delay in
5420 getting the announcements and tarballs out.
5421
5422 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
5423
5424 * NEWS: Version 2.3b.
5425 * configure.ac (AC_INIT): Likewise.
5426 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
5427
5428 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
5429
5430 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
5431 been doing it for years.
5432 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
5433 (Release Procedure): Add FIXME about make alpha being unmaintained.
5434
5435 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
5436
5437 * data/yacc.c: Reformat m4 a little for readability.
5438 * src/lalr.c (build_relations): Correct comment.
5439
5440 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5441
5442 DJGPP specific issue.
5443 * djgpp/config.sed: Fixes required to run configure scripts generated
5444 by autoconf 2.62.
5445
5446 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
5447
5448 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
5449 coordinator@translationproject.org.
5450
5451 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
5452
5453 * THANKS: Add Eric Blake.
5454
5455 2008-04-23 Eric Blake <ebb9@byu.net>
5456
5457 Revert prior patch, by working around autoconf regression.
5458 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
5459 ("Output file name: ("): Uncomment test.
5460 ("Output file name: )"): Likewise.
5461 Based on an idea from Noah Misch.
5462
5463 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
5464
5465 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
5466 2.61. Reported by Juan Manuel Guerrero at
5467 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
5468 * tests/output.at ("Output file name: ("): Comment out test case for
5469 now.
5470 ("Output file name: )"): Likewise.
5471
5472 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
5473
5474 * GNUmakefile: Update git-version-gen invocation so make dist
5475 succeeds.
5476
5477 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
5478
5479 Update to the current gnulib CVS repository, and fix trigraph handling
5480 in Bison.
5481 * bootstrap: Update gnulib CVS repository URL.
5482 (symlink_to_dir): Encapsulate the code that guarantees the destination
5483 directory exists into...
5484 (check_dst_dir): ... this new function, and...
5485 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
5486 fail when copying files into lib/uniwidth/.
5487 * src/output.c (prepare_symbols): When writing yytname muscles, where
5488 symbol names will be encoded in C-string literals, tell quotearg to
5489 escape trigraphs. This used to be the default in gnulib.
5490 * tests/regression.at (Token definitions): Because of the change in
5491 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
5492 escapes trigraphs in symbol names. Thus, yytname no longer has
5493 trigraphs unnecessarily doubly escaped. Update test case output.
5494 Extend test case to be sure Bison's own error messages will no longer
5495 have trigraphs in symbol names unnecessarily escaped once.
5496
5497 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
5498
5499 Fix make dist infinite loop reported by Juan Manuel Guerrero at
5500 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
5501 * .cvsignore: Add .version.
5502 * .version.in: New.
5503 * bootstrap.conf (gnulib_modules): Add git-version-gen.
5504 * configure.ac (AC_CONFIG_FILES): Add .version.
5505 * build-aux/.cvsignore: Add git-version-gen.
5506
5507 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
5508
5509 * NEWS (2.3a+): Mention that -g now takes an argument.
5510 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
5511 consistency. Update the -g and -x entries now that they take
5512 arguments. Use brackets to indicate optional arguments.
5513 * src/getargs.c (usage): Explain the relationship between arguments of
5514 long and short options more completely. Document --defines and -d
5515 separately since the former takes an argument but, for POSIX Yacc, the
5516 latter does not.
5517 (short_options): Let -W take an optional argument like --warnings.
5518 (getargs): Sort cases.
5519
5520 2008-02-28 Akim Demaille <demaille@gostai.com>
5521
5522 * doc/bison.texinfo: Fix a few typos.
5523
5524 2008-02-28 Akim Demaille <akim@epita.fr>
5525
5526 * doc/bison.texinfo (Bison Options): Document -W.
5527 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
5528
5529 2008-02-28 Akim Demaille <akim@epita.fr>
5530
5531 * src/getargs.c (short_options): Split and sort for readability.
5532 -g and -x take optional arguments, just like their long options.
5533 * build-aux/cross-options.pl: Use /x to make the regexp easier to
5534 understand.
5535 Fix the handling of $opt which resulted in all the argument to be
5536 considered as optional.
5537
5538 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
5539
5540 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
5541 say its interface is experimental.
5542 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
5543 Java.
5544 (Bison Options): In the -L and --language entry, mention Java.
5545 (Java Bison Interface): Say the interface is experimental.
5546 * src/getargs.c (usage): Mention -L and --language.
5547
5548 * NEWS (2.3a+): Say the push parsing interface is experimental.
5549 * doc/bison.texinfo (Push Decl): Likewise.
5550 (Decl Summary): Likewise in the "%define api.push_pull" entry.
5551 (Push Parser Function): Likewise.
5552 (Pull Parser Function): Likewise.
5553 (Parser Create Function): Likewise.
5554 (Parser Delete Function): Likewise.
5555 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
5556 yypull_parse, and yypush_parse entries.
5557
5558 * NEWS (2.3a+): Mention XML support, and say the schema is
5559 experimental.
5560 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
5561 * src/getargs.c (usage): Say the XML schema is experimental.
5562
5563 * NEWS (2.3a+): Say option instead of flag.
5564
5565 2008-02-21 Wojciech Polak <polak@gnu.org>
5566
5567 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
5568 text.
5569
5570 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
5571
5572 Fix impure push parser compile error reported by Bob Rossi at
5573 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
5574 * data/yacc.c: Clean up whitespace in the output a little.
5575 (yypstate_allocated): Define for impure push parsers regardless of
5576 whether the pull interface is also requested.
5577 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
5578 check impure push parsers without the pull interface.
5579
5580 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
5581 yyerror takes arguments specified by %parse-param while yypstate_new
5582 does not.
5583 * doc/bison.texinfo (Parser Create Function): Document that
5584 yypstate_new returns 0 for multiple impure parser instances.
5585 * tests/push.at (Push Parsing: Multiple impure instances): Update
5586 expected stderr output.
5587
5588 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
5589
5590 * runtime-po/POTFILES.in (push.c): Remove.
5591
5592 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
5593
5594 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
5595 * data/push.c: Rename to...
5596 * data/yacc.c: ... this, overwriting it.
5597 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
5598 `%push-pull-parser' -> `%define api.push_pull "both"'.
5599 Remove old yacc.c tests, and update push.c tests to yacc.c.
5600
5601 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
5602
5603 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
5604 `"%code top" blocks' instead of `%code "top" blocks'.
5605 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
5606 Clean up whitespace in the output a little.
5607
5608 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
5609
5610 Fix documentation problems reported by Tim Josling at
5611 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
5612 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
5613 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
5614 integers. Explain the effect of literal string aliases on error
5615 messages. Copy token 0 documentation from the C++ skeleton
5616 documentation.
5617
5618 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
5619
5620 Accept a token number in a %left, %right, or %nonassoc for POSIX
5621 conformance. Reported by Tim Josling at
5622 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
5623 * NEWS (2.3a+): Mention.
5624 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
5625 and code numbers are treated by precedence declarations.
5626 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
5627 of symbols.1.
5628 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
5629 of symbol.
5630 (symbol.prec): New, just like symbol but allows INT.
5631 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
5632 longer holds.
5633 * tests/regression.at (Token number in precedence declaration): New
5634 test case.
5635
5636 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5637
5638 DJGPP specific issues.
5639 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
5640 be changed. Copyright timestamp adjusted.
5641 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
5642 be changed. Copyright timestamp adjusted.
5643 * djgpp/config.site: Copyright timestamp adjusted.
5644 * djgpp/config_h.sed: Copyright timestamp adjusted.
5645 * djgpp/djunpack.bat: Copyright timestamp adjusted.
5646 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
5647 filename translation list.
5648 * djgpp/subpipe.c (init_subpipe): Check the environment variables
5649 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
5650 files shall be created. Before trying to use the temp dir where the
5651 environment variable points to check that the dir really exists. If
5652 not default to the cwd as temp dir. Copyright timestamp adjusted.
5653 * djgpp/subpipe.h: Copyright timestamp adjusted.
5654 * djgpp/testsuite.sed: Copyright timestamp adjusted.
5655
5656 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
5657
5658 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
5659
5660 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
5661
5662 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
5663 Problem reported by Claudio Saavedra in
5664 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
5665
5666 2008-01-05 Wojciech Polak <polak@gnu.org>
5667
5668 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
5669 document's title with the input grammar file name.
5670
5671 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
5672
5673 Automate regression testing of the XML/XSLT implementation. Discussed
5674 starting at
5675 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
5676 * configure.ac (XSLTPROC): New substitution.
5677 * Makefile.am (maintainer-xml-check): New phony target invoking...
5678 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
5679 invoking make maintainer-check with BISON_TEST_XML=1.
5680 * tests/atlocal.in (XSLTPROC): New.
5681 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
5682 not to report reachable memory when Bison is expected to have a
5683 non-zero exit status and (2) to compare XML/XSLT output with --graph
5684 and --report=all output for every working grammar when
5685 BISON_TEST_XML=1.
5686 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
5687 (AT_BISON_CHECK_XML): New.
5688 (AT_QUELL_VALGRIND): New.
5689 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
5690 (AT_CHECK): ... don't redefine this since this was the old way to
5691 quell Valgrind.
5692 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
5693 AT_BISON_CHECK invocations.
5694 * tests/c++.at: Likewise.
5695 * tests/calc.at: Likewise.
5696 * tests/conflicts.at: Likewise.
5697 * tests/cxx-type.at: Likewise.
5698 * tests/existing.at: Likewise.
5699 * tests/glr-regression.at: Likewise.
5700 * tests/headers.at: Likewise.
5701 * tests/input.at: Likewise.
5702 * tests/java.at: Likewise.
5703 * tests/output.at: Likewise.
5704 * tests/push.at: Likewise.
5705 * tests/reduce.at: Likewise.
5706 * tests/regression.at: Likewise.
5707 * tests/sets.at: Likewise.
5708 * tests/skeletons.at: Likewise.
5709 * tests/synclines.at: Likewise.
5710 * tests/torture.at: Likewise.
5711 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
5712 tends to hang xsltproc.
5713 (Big horizontal): Likewise.
5714
5715 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
5716
5717 In XML output, remove redundant class attribute on symbol element.
5718 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
5719 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
5720 look up a symbol to determine whether it's a nonterminal or terminal.
5721 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
5722 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
5723
5724 Add prec/assoc information to XML output.
5725 * src/gram.c (grammar_rules_print_xml): For each rule that has a
5726 %prec, add a percent_prec attribute.
5727 * src/print-xml.c (print_grammar): For each terminal that has a
5728 precedence or associativity, add a prec or assoc attribute.
5729 (xml_indent): New.
5730 (xml_puts): Use xml_indent.
5731 (xml_printf): Use xml_indent.
5732 * src/print-xml.h (xml_indent): Prototype.
5733
5734 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
5735 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
5736
5737 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
5738
5739 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
5740 (bison:ruleByNumber): ... this for clarity.
5741 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
5742 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
5743 (xsl:template match="reduction"): Update.
5744 (xsl:template match="item"): Update.
5745 (xsl:template match="reduction"): Update.
5746
5747 In the XML output, don't print the list of rules where symbols appear.
5748 Compute it in XSLT instead. Discussed at
5749 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
5750 * data/xslt/bison.xsl (bison:ruleByLhs): New.
5751 (bison:ruleByRhs): New.
5752 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
5753 bison:ruleByRhs.
5754 (xsl:template match="terminal/rule"): Remove.
5755 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
5756 bison:ruleByRhs.
5757 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
5758 Remove.
5759 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
5760 bison:ruleByRhs and mode="number-link" for rule template.
5761 (xsl:template match="terminal/rule"): Remove.
5762 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
5763 bison:ruleByRhs and mode="number-link" for rule template.
5764 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
5765 Rewrite as...
5766 (xsl:template match="rule" mode="number-link"): ... this.
5767 * src/print-xml.c (print_grammar): Don't print the list of rules.
5768
5769 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
5770
5771 Don't let --report affect XML output; always print all information.
5772 Discussed at
5773 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
5774 * src/conflicts.c (log_resolution): Implement.
5775 * src/print-xml.c (print_core): Implement.
5776 (print_state): Implement.
5777 (print_xml): Implement.
5778
5779 * NEWS (2.3a+): Fix quotes.
5780 * src/parse-gram.y (prologue_declaration): For consistency with -v,
5781 don't let %verbose clear the list specified by --report.
5782
5783 2007-11-26 Akim Demaille <akim@epita.fr>
5784
5785 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
5786
5787 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
5788
5789 In the XML output, list useless and unused symbols and rules with the
5790 useful ones and add a "usefulness" attribute. Discussed starting at
5791 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
5792 * src/gram.c (grammar_rules_partial_print_xml): Remove.
5793 (grammar_rules_print_xml): Print all rules instead of just those
5794 useful in the grammar, and add a "usefulness" attribute.
5795 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
5796 * src/print-xml.c (print_rules_useless_in_parser): Remove.
5797 (print_grammar): Print all nonterminals instead of just useful ones,
5798 and add a "usefulness" attribute to nonterminals and terminals.
5799 (print_xml): Don't print a separate "reductions" or
5800 "rules-useless-in-parser" element.
5801 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
5802 (reduce_xml): Remove.
5803 (reduce_token_unused_in_grammar): New.
5804 (reduce_nonterminal_useless_in_grammar): New.
5805 * src/reduce.h (reduce_xml): Remove prototype.
5806 (reduce_token_unused_in_grammar): Add prototype.
5807 (reduce_nonterminal_useless_in_grammar): Add prototype.
5808 * data/xslt/xml2text.xsl: Update for XML changes.
5809 * data/xslt/xml2xhtml.xsl: Update for XML changes.
5810 * tests/reduce.at (Useless Terminals): Update output.
5811 (Useless Rules): Update output.
5812 (Reduced Automaton): Update output.
5813
5814 Say "Terminals unused in grammar" instead of "Unused terminals".
5815 * NEWS (2.3a+): Update.
5816 * doc/bison.texinfo (Understanding): Update example output.
5817 * src/reduce.c (reduce_output): Implement.
5818 * data/xslt/xml2text.xsl: Implement.
5819 * data/xslt/xml2xhtml.xsl: Implement.
5820
5821 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
5822
5823 Accept --report-file=FILE to override the default `.output' filename.
5824 * NEWS (2.3a+): Mention.
5825 * doc/bison.texinfo (Bison Options): Add an entry.
5826 * src/files.c (compute_output_file_names): Don't override
5827 spec_verbose_file if already set.
5828 * src/getargs.c (usage): Document --report-file.
5829 (REPORT_FILE_OPTION): New anonymous enum member.
5830 (long_options): Add entry for it.
5831 (getargs): Add case for it setting spec_verbose_file.
5832
5833 * build-aux/cross-options.pl: Don't record a short option just because
5834 there's an arg.
5835 * doc/.cvsignore: Add yacc.1.
5836
5837 2007-11-14 Akim Demaille <akim@epita.fr>
5838
5839 * doc/yacc.1.in: New.
5840 * configure.ac, doc/Makefile.am: Adjust.
5841 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
5842 config.h symbol.
5843 Use AC_SUBST for assignments too.
5844 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
5845
5846 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
5847
5848 * src/gram.c: Remove comments that duplicate comments in gram.h.
5849
5850 When reporting useless rules and nonterminals, say "useless in grammar"
5851 instead of "useless", and say "useless in parser" instead of "never
5852 reduced". Discussed starting at
5853 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
5854 * NEWS (2.3a+): Mention this change.
5855 * data/xslt/xml2text.xsl: Update output text and expected input XML
5856 element names to match changes below.
5857 * data/xslt/xml2xhtml.xsl: Likewise.
5858 (xsl:template match="bison-xml-report"): Add missing entry in Table of
5859 Contents: "Rules useless in parser due to conflicts".
5860 * doc/bison.texinfo (Decl Summary): Reword a little.
5861 (Understanding): Update example output for changes below.
5862 * src/gram.c: (rule_useful_p): Rename to...
5863 (rule_useful_in_grammar_p): ... this.
5864 (rule_useless_p): Rename to...
5865 (rule_useless_in_grammar_p): ... this.
5866 (rule_never_reduced_p): Rename to...
5867 (rule_useless_in_parser_p): ... this.
5868 (grammar_rules_print): Update for renames.
5869 (grammar_rules_print_xml): Update for renames.
5870 (grammar_rules_never_reduced_report): Rename to...
5871 (grammar_rules_useless_report): ... this since it is used for either
5872 kind of useless rule.
5873 * src/gram.h: Reword comments and update function names in prototypes.
5874 * src/main.c (main): Say "rule useless in parser due to conflicts".
5875 * src/print-xml.c (print_rules_never_reduced): Rename to...
5876 (print_rules_useless_in_parser): ... this, and rename output XML
5877 element "rules-never-reduced" to "rules-useless-in-parser".
5878 (print_xml): Update for rename.
5879 * src/print.c (print_results): Say "Rules useless in parser due to
5880 conflicts".
5881 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
5882 (nonterminals_reduce): Say "nonterminal useless in grammar".
5883 (reduce_output): Say "Nonterminals useless in grammar".
5884 Say "Rules useless in grammar".
5885 (reduce_xml): Rename output XML element "useless" to
5886 "useless-in-grammar".
5887 (reduce_print): Don't report the count of grammatically useless rules
5888 as "rules never reduced" just because %yacc is specified.
5889 In the correct report of this count, say nonterminal(s) and rule(s)
5890 "useless in grammar".
5891 * tests/conflicts.at (S/R in initial): Update expected output.
5892 (Defaulted Conflicted Reduction): Likewise.
5893 (Unreachable States After Conflict Resolution): Likewise.
5894 * tests/existing.at (GNU pic Grammar): Likewise.
5895 * tests/reduce.at (Useless Nonterminals): Likewise.
5896 (Useless Rules): Likewise.
5897 (Reduced Automaton): Likewise.
5898 (Underivable Rules): Likewise.
5899 (Empty Language): Likewise.
5900
5901 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
5902
5903 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
5904 here document and before the EOF so that BSD's implementation of Bourne
5905 shell doesn't parse the delimiter as part of the here document.
5906 * doc/.cvsignore: Add cross-options.texi.
5907 * src/getargs.c (usage): Add a blank line after the warning categories.
5908
5909 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
5910
5911 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
5912
5913 2007-11-05 Akim Demaille <akim@epita.fr>
5914
5915 Remove Id: from bison.1.
5916 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
5917 (perl -0777 -pi -e 's/\.PP\nId): New.
5918 (.x.1): Use it to ignore the version control revision.
5919
5920 2007-11-05 Akim Demaille <demaille@gostai.com>
5921
5922 * build-aux/Makefile.am: Ship cross-options.pl.
5923 * doc/Makefile.am: Always refer to cross-options.texi with
5924 $(srcdir).
5925 (MAINTAINERCLEANFILES): Add it.
5926
5927 2007-11-04 Akim Demaille <demaille@gostai.com>
5928
5929 Generate the long/short option cross-table.
5930 * build-aux/cross-options.pl: New.
5931 * doc/Makefile.am (cross-options.texi): New.
5932 * doc/bison.texinfo: Use it.
5933
5934 2007-11-04 Akim Demaille <demaille@gostai.com>
5935
5936 Generate bison.1 using help2man.
5937 * doc/common.x, doc/bison.x: New.
5938 * doc/Makefile.am (bison.1, .x.1): New.
5939 The code is taken from autoconf-2.61/man/Makefile.am.
5940 * configure.ac: Look for help2man.
5941
5942 2007-11-04 Akim Demaille <demaille@gostai.com>
5943
5944 Complete --help.
5945 * src/getargs.c (usage): Document -W, make it clear that -d,
5946 -g and -x have optional arguments.
5947
5948 2007-11-04 Akim Demaille <demaille@gostai.com>
5949
5950 Find sha1sum when named gsha1sum.
5951 * bootstrap (find_tool): New.
5952 ($SHA1SUM): New.
5953
5954 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
5955
5956 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
5957 at
5958 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
5959 * NEWS (2.3a+): Mention.
5960 * data/bison.m4 (b4_pure_if): Don't define it here.
5961 * data/c.m4 (b4_identification): Depend on individual skeletons to
5962 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
5963 values of the %define variables api.pure or api.push_pull. Define
5964 YYPURE, YYPUSH, and YYPULL accordingly.
5965 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
5966 glr.cc has already defined b4_pure_flag.
5967 * data/push.c: Define b4_pure_if based on `%define api.pure'.
5968 Remove YYPUSH and YYPULL since they're back in b4_identification again.
5969 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
5970 * doc/bison.texinfo (Pure Decl): Update.
5971 (Push Decl): Update.
5972 (Decl Summary): Add api.pure to %define entry.
5973 In %pure-parser entry, say it's deprecated and reference %define.
5974 (Pure Calling): Update.
5975 (Error Reporting): Update.
5976 (C++ Scanner Interface): Update.
5977 (How Can I Reset the Parser): Update.
5978 (Table of Symbols): In %pure-parser entry, say it's deprecated and
5979 reference %define.
5980 * src/getargs.c (pure_parser): Remove global variable.
5981 * src/getargs.h (pure_parser): Remove extern.
5982 * src/output.c (prepare): Don't define pure_flag muscle.
5983 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
5984 wrapper around `%define api.pure'.
5985 * tests/calc.at (Simple LALR Calculator): Update.
5986 (Simple GLR Calculator): Update.
5987 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
5988 Update.
5989 (GLR: Resolve ambiguity, pure, locations): Update.
5990 (GLR: Merge conflicting parses, pure, no locations): Update.
5991 (GLR: Merge conflicting parses, pure, locations): Update.
5992 * tests/glr-regression.at (Uninitialized location when reporting
5993 ambiguity): Update
5994 * tests/input.at (Unused %define api.pure): New test case.
5995 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
5996 AT_PURE_IF and AT_PURE_AND_LOC_IF.
5997 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
5998
5999 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
6000
6001 %define push_pull -> %define api.push_pull. Discussed starting at
6002 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
6003 * data/push.c: Expect the new name.
6004 * data/yacc.c: Likewise.
6005 * doc/bison.texinfo (Push Decl): Update.
6006 (Decl Summary): Update %define entry.
6007 (Push Parser Function): Update.
6008 (Pull Parser Function): Update.
6009 (Parser Create Function): Update.
6010 (Parser Delete Function): Update.
6011 * tests/calc.at (Simple LALR Calculator): Update.
6012 * tests/input.at (%define enum variables): Update.
6013 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
6014 (Push Parsing: Multiple impure instances): Update.
6015 (Push Parsing: Unsupported Skeletons): Update.
6016 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
6017 (Exploding the Stack Size with Malloc): Update.
6018
6019 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
6020 other entries some.
6021
6022 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
6023
6024 For the XML output's terminal element, rename @number to @token-number,
6025 and add @symbol-number. In the nonterminal element, rename @number to
6026 @symbol-number. Discussed starting at
6027 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
6028 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
6029 renames.
6030 (xsl:template match="nonterminal"): Likewise.
6031 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
6032 (xsl:template match="nonterminal"): Likewise.
6033 * src/print-xml.c (print_grammar): Implement.
6034
6035 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6036
6037 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
6038 2007-10-11 change, the child elements here are items not rules.
6039 (xsl:template match="item"): New.
6040 (xsl:template match="rule"): Update for new reduced itemset.
6041 (xsl:template match="point"): Remove.
6042 (xsl:template match="empty"): For consistency with --graph, don't
6043 output "/* empty */".
6044 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
6045 line-wrap, don't pass a negative value as first-line-length since this
6046 won't work with the following changes.
6047 (xsl:template name="line-wrap"): Simplify slightly.
6048 (xsl:template name="ws-search"): Eliminate recursion.
6049 * src/print_graph.c (print_core): Don't print a reduction's lookahead
6050 set next to an item whose dot is not at the end of the RHS even if it
6051 happens to be associated with the same rule.
6052
6053 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
6054
6055 Add %define lr.keep_unreachable_states.
6056 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
6057 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
6058 * src/main.c (main): Implement it.
6059 * tests/conflicts.at (Unreachable States After Conflict Resolution):
6060 Extend to test it, and fix a typo.
6061
6062 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
6063
6064 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
6065 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
6066 the example .output text.
6067 * tests/regression.at (Extra lookahead sets in report): Improve wording
6068 of comments.
6069
6070 2007-10-17 Wojciech Polak <polak@gnu.org>
6071
6072 * src/print-xml.c (print_grammar): Renamed
6073 <terminal> and <nonterminal> attributes:
6074 "type" to "number" and "symbol" to "name".
6075 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
6076 Use new attribute names.
6077 (xsl:template match="nonterminal"): Likewise.
6078 * data/xslt/xml2xhtml.xsl: Likewise.
6079
6080 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
6081
6082 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
6083 (Option Cross Key): Likewise.
6084
6085 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
6086 next to an item whose dot is not at the end of the RHS even if it
6087 happens to be associated with the same rule.
6088 * src/print.c (print_core): Likewise.
6089 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
6090 (Resolved SR Conflicts): Update output.
6091 * tests/regression.at (Extra lookahead sets in report): New test case.
6092
6093 2007-10-11 Wojciech Polak <polak@gnu.org>
6094
6095 * src/print-xml.c (print_core): Remove item set
6096 redundancy.
6097 * data/xslt/bison.xsl (bison:ruleNumber): New key.
6098 Improve processing time. Suggested by Joel E. Denny.
6099 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
6100 Write xsl:param "required" attribute as comment.
6101 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
6102 (xsl:template match="rule"): Support new reduced itemset.
6103 (xsl:template match="point"): Remove.
6104 * data/xslt/xml2xhtml.xsl: Likewise.
6105
6106 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
6107
6108 * src/getargs.c (version): Update copyright year.
6109
6110 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
6111
6112 Make xml2dot.xsl and --graph produce the same output.
6113 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
6114 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
6115 escaped later.
6116 (xsl:template name="output-node"): Use the new escape template instead
6117 of the string-replace template directly.
6118 (xsl:template name="output-edge"): Likewise.
6119 (xsl:template name="escape"): New, escapes backslashes and newlines in
6120 addition to quotation marks.
6121 * src/graphviz.c (start_graph, output_node, output_edge): Add
6122 whitespace to output for legibility.
6123
6124 Make xml2text.xsl and --report produce the same output, and remove the
6125 XML "conflicts" element since a conflict summary is easily extracted
6126 from the automaton.
6127 * data/xslt/bison.xsl: New.
6128 (xsl:template match="state" mode="bison:count-conflicts): New.
6129 * data/xslt/xml2text.xsl: Import bison.xsl.
6130 (xsl:template match="bison-xml-report"): Instead of styling the
6131 "conflicts" element, style the "automaton" element with mode
6132 "conflicts". Unlike the former, the latter lists S/R and R/R
6133 conflicts for a state on the same line.
6134 (xsl:template match="conflicts"): Remove.
6135 (xsl:template match="conflict"): Remove.
6136 (xsl:template match="terminal"): Line-wrap the list of rules in which
6137 the terminal is used.
6138 (xsl:template match="nonterminal"): Likewise for nonterminals.
6139 (xsl:template match="automaton" mode="conflicts"): New.
6140 (xsl:template match="state" mode="conflicts"): New.
6141 (xsl:template name="line-wrap"): New.
6142 (xsl:template name="ws-search"): New.
6143 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
6144 (xsl:template match="bison-xml-report"): Instead of styling the
6145 "conflicts" element, style the "automaton" element with mode
6146 "conflicts."
6147 (xsl:template match="conflicts"): Remove.
6148 (xsl:template match="conflict"): Remove.
6149 (xsl:template match="automaton" mode="conflicts"): New.
6150 (xsl:template match="state" mode="conflicts): New.
6151 * src/conflicts.c (conflicts_output_xml): Remove.
6152 * src/conflicts.h (conflicts_output_xml): Remove prototype.
6153 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
6154 * src/print.c (print_grammar): Consistently wrap at the 66th column so
6155 the corresponding XSLT is easier. Also, never wrap between a word and
6156 the comma that follows it.
6157
6158 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
6159
6160 Improve C++ namespace support. Discussed starting at
6161 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
6162 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
6163 b4_namespace_close): New macros that interpret the %define variable
6164 "namespace" so its value can contain "::" to indicate nested
6165 namespaces.
6166 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
6167 the above macros.
6168 * data/lalr1.cc (b4_namespace): Likewise.
6169 * data/location.cc (b4_namespace): Likewise.
6170 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
6171 inside a new table in the general %define entry. Document `%define
6172 namespace' there as well. Point the %name-prefix entry to it since it
6173 explains it more completely in the case of C++.
6174 (C++ Bison Interface): Mention `%define namespace' instead of
6175 %name-prefix.
6176 (Table of Symbols): Remove the `%define push_pull' entry. The %define
6177 entry suffices.
6178 * tests/c++.at (Relative namespace references): New test case.
6179 (Absolute namespace references): New test case.
6180 (Syntactically invalid namespace references): New test case.
6181 * tests/input.at (C++ namespace reference errors): New test case.
6182
6183 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
6184
6185 Add syncline support and location accessor to internal %define
6186 interfaces.
6187 * data/bison.m4 (b4_percent_define_get_loc): New.
6188 (b4_percent_define_get_syncline): New.
6189 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
6190 (b4_percent_define_default): Record defining location as line 1 rather
6191 than 0 for the sake of synchronizing #line's, and define
6192 b4_percent_define_syncline(VARIABLE).
6193 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
6194 * src/muscle_tab.c (muscle_syncline_grow): New.
6195 (muscle_code_grow): Use muscle_syncline_grow.
6196 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
6197 define b4_percent_define_syncline(VARIABLE).
6198 (muscle_percent_define_get_loc): New.
6199 (muscle_percent_define_get_syncline): New.
6200 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
6201 remove some unused variables.
6202 (muscle_percent_define_default): Record defining location as line 1
6203 rather than 0 for the sake of synchronizing #line's, and define
6204 b4_percent_define_syncline(VARIABLE).
6205 (muscle_percent_define_check_values): Use
6206 muscle_percent_define_get_loc.
6207 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
6208 (muscle_percent_define_get_syncline): Prototype.
6209 * tests/skeletons.at (%define Boolean variables: invalid skeleton
6210 defaults): Update output for location change.
6211 (Complaining during macro argument expansion): Extend to test
6212 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
6213
6214 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
6215
6216 Fix some error-reporting macro bugs.
6217 * data/bison.m4 (b4_cat): New.
6218 (b4_error, b4_error_at): Use b4_cat to send error directives directly
6219 to stdout so they don't become arguments to other macros. Update
6220 comments and add examples.
6221 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
6222 add examples.
6223 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
6224 after printing the error directive so that M4 doesn't report subsequent
6225 problems that are induced by this problem.
6226 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
6227 instead of just in them. Recognize @\n in both places. Both expand to
6228 the empty string. Needed by b4_cat.
6229 * tests/skeletons.at (Complaining during macro argument expansion):
6230 New test case.
6231 (Fatal errors make M4 exit immediately): New test case.
6232
6233 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
6234
6235 Implement --print-datadir.
6236 * src/getargs.c (usage): Mention.
6237 (PRINT_DATADIR_OPTION): New anonymous enum member.
6238 (long_options): Add entry for it.
6239 (getargs): Add case for it calling compute_pkgdatadir.
6240 * src/output.c (output_skeleton): Encapsulate data directory
6241 computation from here...
6242 (prepare): ... and from here...
6243 (compute_pkgdatadir): ... into this new function.
6244 * src/output.h (compute_pkgdatadir): Prototype.
6245
6246 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
6247
6248 * src/print-xml.c (escape_bufs): New static global variable
6249 replacing...
6250 (xml_escape_n): ... the static local variable buf here.
6251 (print_xml): Free memory for escape_bufs.
6252 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
6253
6254 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
6255
6256 Replace `%push-parser' and `%push-pull-parser' with
6257 `%define push_pull "push"' and `%define push_pull "both"'.
6258 `%define push_pull "pull"' is the default.
6259 * doc/bison.texinfo (Push Decl, Push Parser Function,
6260 Pull Parser Function, Parser Create Function, Parser Delete Function):
6261 Update declarations.
6262 (Decl Summary, Table of Symbols): Replace %push-parser and
6263 %push-pull-parser entries with a %define push_pull entry.
6264 * data/bison.m4 (b4_percent_define_check_values): New macro.
6265 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
6266 definitions...
6267 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
6268 definitions...
6269 * data/push.c: ... to here and compute them from the value of the
6270 %define variable push_pull.
6271 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
6272 parsing requests here...
6273 * data/yacc.c: ... hack this to switch to push.c any time
6274 b4_use_push_pull_flag or the %define variable push_pull is set. This
6275 will go away when we mv push.c yacc.c.
6276 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
6277 push parsing is not supported since unused %define variables are
6278 reported anyway.
6279 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
6280 * src/muscle_tab.h (muscle_percent_define_check_values): Update
6281 comments for consistency with b4_percent_define_check_values.
6282 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
6283 muscles.
6284 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
6285 Remove.
6286 (prologue_declaration): Remove %push-parser and %push-pull-parser
6287 rules.
6288 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
6289 * tests/calc.at: Update declarations.
6290 * tests/input.at (%define enum variables): New test case.
6291 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
6292 declaration.
6293 (Push Parsing: Multiple impure instances): Update declaration.
6294 (Push Parsing: Unsupported Skeletons): New test case.
6295 * tests/torture.at (Exploding the Stack Size with Alloca): Update
6296 declaration.
6297 (Exploding the Stack Size with Malloc): Update declaration.
6298
6299 2007-09-24 Wojciech Polak <polak@gnu.org>
6300
6301 Add XSLT transformations.
6302
6303 * data/xslt/xml2dot.xsl: Transform XML into DOT.
6304 * data/xslt/xml2text.xsl: Transform XML into plain text.
6305 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
6306 * data/Makefile.am (xsltdir): New variable.
6307 (dist_xslt_DATA): Add xslt/*.xsl files.
6308
6309 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
6310
6311 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
6312 Problem reported by Wojciech Polak.
6313 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
6314 (xml_printf): Undo change I made on 21 September; that is,
6315 indent 2 spaces, not 1.
6316
6317 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
6318
6319 Pacify ./configure --enable-gcc-warnings.
6320 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
6321 `char const *' instead of `char *'.
6322 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
6323 local variable `sep'.
6324
6325 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
6326
6327 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
6328 elsewhere.
6329 * src/print-xml.c: Prefer "const" after types; that's more consistent.
6330 (xml_printf): Indent just 1 space for level.
6331 (e_char, xlate_char): Remove.
6332 (xml_escape_string): Rewrite to avoid undefined behavior (used
6333 storage that was freed from the stack).
6334 (xml_escape_n): Don't bother checking for subscript error.
6335
6336 2007-09-21 Wojciech Polak <polak@gnu.org>
6337
6338 Add Bison XML Automaton Report.
6339
6340 Add support for an -x option to generate an XML report.
6341 It is not documented yet.
6342 * src/print-xml.c: New file.
6343 * src/print-xml.h: Likewise.
6344 * lib/timevar.def (TV_XML): New var.
6345 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
6346 * src/conflicts.c: Include print-xml.h.
6347 (solved_conflicts_xml_obstack): New var.
6348 (log_resolution, conflicts_solve, conflicts_free):
6349 Add support for XML report.
6350 (conflicts_output_val): New function.
6351 * src/conflicts.h (conflicts_output_val): New decl.
6352 * src/files.c (spec_xml_file): New var.
6353 (compute_output_file_names, output_file_names_free): Add XML support.
6354 * src/files.h (spec_xml_file): New decl.
6355 * src/getargs.c (xml_flag): New var.
6356 (usage, short_options, long_options, getargs): Add XML support.
6357 * src/getargs.h (xml_flag): New decl.
6358 * src/gram.c: Include print-xml.h.
6359 (rule_lhs_print_xml, rule_rhs_print_xml):
6360 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
6361 New functions.
6362 * src/gram.h: Declare external ones.
6363 * src/main.c: Include print-xml.h.
6364 (main): Add XML support.
6365 * src/reduce.c: Include print-xml.h.
6366 (reduce_xml): New function.
6367 * src/reduce.h: Declare it.
6368 * src/state.c: Include print-xml.h.
6369 (state_new): Add XML support.
6370 (state_rule_lookahead_tokens_print_xml): New function.
6371 * src/state.h: Declare it.
6372 (struct state): New member solved_conflicts_xml.
6373 * src/symtab.c (symbol_class_get_string): New function.
6374 * src/symtab.h: Declare it.
6375
6376 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
6377
6378 * GNUmakefile: Switch to coreutils's version.
6379 * bootstrap: Likewise.
6380 * Makefile.cfg: Adjust to new GNUmakefile.
6381 * README-hacking: Likewise.
6382
6383 Import from gnulib:
6384
6385 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
6386 Bruno Haible <bruno@clisp.org>
6387
6388 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
6389 and is a script that invokes bison. Tighten the code. Add comments.
6390
6391 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
6392
6393 Spell "boolean" as "Boolean". Reported by Akim Demaille.
6394 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
6395 * doc/bison.texinfo (Decl Summary): Fix.
6396 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
6397 * tests/input.at (Boolean %define variables): Update output.
6398 * tests/skeletons.at (%define boolean variables: invalid skeleton
6399 defaults): Rename to...
6400 (%define Boolean variables: invalid skeleton defaults): ... this and
6401 update output.
6402
6403 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
6404
6405 In impure push mode, don't allow more than one yypstate to be allocated
6406 since multiple impure parsers would corrupt yynerrs.
6407 * data/push.c (yypstate_allocated): New static global variable
6408 initialized to 0.
6409 (yypull_parse): If yypstate_new returns 0, don't report it as memory
6410 exhaustion if yypstate_allocated is 1, but still return 2.
6411 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
6412 already 1. Otherwise, set it to 1.
6413 (yypstate_delete): Set it to 0.
6414 * tests/push.at (Push Parsing: Multiple impure instances): New test
6415 case.
6416
6417 2007-08-17 Bob Rossi <bob@brasko.net>
6418
6419 * doc/bison.texinfo (Push Decl): Document the push parser.
6420 (Table of Symbols): Ditto.
6421 (Pure Decl): Ditto.
6422 (Decl Summary): Ditto.
6423 (Multiple Parsers, Push Parser Function, Pull Parser Function,
6424 Parser Create Function, Parser Delete Function):
6425 Add new push parser symbols.
6426 (Table of Symbols): Document push-parser, push-pull-parser,
6427 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
6428
6429 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
6430
6431 Update to GPLv3.
6432 * doc/gpl-3.0.texi: New file.
6433 * doc/gpl.texi: Remove.
6434 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
6435 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
6436 * README-hacking, TODO, bootstrap, bootstrap.conf:
6437 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
6438 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
6439 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
6440 * data/lalr1.cc, data/lalr1.java, data/location.cc:
6441 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
6442 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
6443 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
6444 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
6445 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
6446 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
6447 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
6448 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
6449 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
6450 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
6451 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
6452 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
6453 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
6454 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
6455 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
6456 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
6457 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
6458 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
6459 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
6460 * src/complain.c, src/complain.h, src/conflicts.c:
6461 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
6462 * src/files.h, src/flex-scanner.h, src/getargs.c:
6463 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
6464 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
6465 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
6466 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
6467 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
6468 * src/print.c, src/print.h, src/print_graph.c:
6469 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
6470 * src/reduce.h, src/relation.c, src/relation.h:
6471 * src/revision.h, src/scan-code.h, src/scan-code.l:
6472 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
6473 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
6474 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
6475 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
6476 * tests/Makefile.am, tests/actions.at, tests/c++.at:
6477 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
6478 * tests/existing.at, tests/glr-regression.at:
6479 * tests/headers.at, tests/input.at, tests/java.at:
6480 * tests/local.at, tests/output.at, tests/push.at:
6481 * tests/reduce.at, tests/regression.at, tests/sets.at:
6482 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
6483 * tests/torture.at:
6484 Update to GPLv3.
6485
6486 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
6487
6488 Get rid of broken %no-parser, -n, and --no-parser implementation and
6489 documentation.
6490 * TODO: Don't mention them.
6491 * doc/bison.1: Likewise.
6492 * doc/bison.texinfo (Decl Summary): Likewise.
6493 (Bison Options): Likewise.
6494 (Option Cross Key): Likewise.
6495 * src/getargs.c (no_parser_flag): Remove global variable.
6496 (usage): Don't print description of -n and --no-parser.
6497 (long_options): Remove --no-parser entry here.
6498 (getargs): Remove -n case in the switch here.
6499 * src/getargs.h (no_parser_flag): Remove extern.
6500 * tests/regression.at (Web2c Actions): Remove comment that mentions
6501 --no-parser.
6502
6503 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
6504
6505 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
6506 name user variables starting with `yy'. Just pass NULL instead of a
6507 dummy local &yylval to yypush_parse.
6508 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
6509 starting with `yy'.
6510
6511 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
6512
6513 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
6514 true since it's then always used regardless of whether yyoverflow is
6515 defined. Reported by Christian Burger at
6516 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
6517 * THANKS: Add Christian Burger.
6518
6519 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
6520 node names: say "Decl Summary" not "Bison Declaration Summary".
6521
6522 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
6523
6524 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
6525 determine whether this function has already complained about an invalid
6526 value for a %define boolean variable, don't check whether Bison has
6527 ever examined the value. As written, the check was a tautology.
6528 Instead, record and check for this complaint using a separate muscle.
6529
6530 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
6531
6532 Fix push parsing memory leak reported by Brandon Lucia at
6533 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
6534 * THANKS: Add Brandon Lucia.
6535 * data/push.c (yypstate_delete): Free the stack if it was reallocated
6536 but the parse never completed and thus freed it.
6537 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
6538 * tests/testsuite.at: Include push.at.
6539 * test/push.at: New.
6540 (Push Parsing: Memory Leak for Early Deletion): New test case.
6541
6542 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
6543
6544 Improve handling of multiple S/R conflicts in the same state and of S/R
6545 conflicts involving multiple reductions.
6546 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
6547 set for a state here or Bison will abort if it is reassigned on a
6548 later conflicted reduction in the same state.
6549 Similarly, don't finalize and assign the solved conflicts report here
6550 or it will be lost if it is reassigned on a later conflicted reduction
6551 in the same state.
6552 (set_conflicts): Instead, assign them both here after all S/R conflicts
6553 in the state have been fully examined.
6554 * src/print.c (shift_set): Rename to...
6555 (no_reduce_set): ... this.
6556 (print_reductions): Update for rename, and add %nonassoc error action
6557 tokens to no_reduce_set so that, when printing the first remaining
6558 reduction on an error action token, the reduction is enclosed in
6559 brackets.
6560 (print_results): Update for rename.
6561 * tests/conflicts.at (Solved conflicts report for multiple reductions
6562 in a state): New test case.
6563 (%nonassoc error actions for multiple reductions in a state): New test
6564 case.
6565
6566 * src/main.c (main): Don't depend on C99 features.
6567
6568 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
6569
6570 * build-aux/.cvsignore: Add compile.
6571 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
6572 uniwidth.
6573
6574 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
6575
6576 * bootstrap (slurp): Create target directories that don't exist.
6577 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
6578
6579 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
6580
6581 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
6582 than item number.
6583 * closure.c (closure): Likewise.
6584 * state.h (reductions): Comment sorting of rules.
6585 (state): Comment sorting of items.
6586
6587 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
6588
6589 Fix C++ test cases after recent Gnulib changes. Discussed starting at
6590 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
6591 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
6592 definition in order to avoid Gnulib headers since we don't use config.h
6593 here.
6594 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
6595 rather than AT_DATA so that config.h is included.
6596
6597 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
6598
6599 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
6600 instead of fprintf. Guard these functions with #if YYDEBUG instead of
6601 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
6602 and so that YYFPRINTF is guaranteed to be defined here.
6603
6604 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
6605
6606 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
6607 with...
6608 (muscle_percent_define_check_values): ... this more helpful function.
6609 Again, it's not used yet, but it will be.
6610 * src/muscle_tab.h: Likewise.
6611
6612 Improve some comments in parser table construction.
6613 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
6614 (generate_states): Don't mention ruleset, which is internal to closure.
6615 * src/closure.c (closure): Explain sorting of core and itemset, which
6616 is required for this function to behave correctly.
6617 * src/closure.h (closure): Mention sorting.
6618
6619 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
6620
6621 * src/lalr.c (state_lookahead_tokens_count): For code readability,
6622 move the check for disabled transitions to an aver since conflict
6623 resolution hasn't happened yet.
6624
6625 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
6626 labels a state as inconsistent just because it has error transitions.
6627 The original form of this check appeared in revision 1.1 of lalr.c,
6628 which was committed on 1991-12-21. Now (at least), changing the
6629 consistency label on such a state appears to have no useful effect in
6630 any of the places it is examined, which I enumerate below. The key
6631 point to understanding each item in this enumeration is that a state
6632 with an error transition is labelled consistent in the first place only
6633 if it has no rules, so the check cannot matter for states that have
6634 rules. (1) Labelling a state as inconsistent will cause set_conflicts
6635 to try to identify its conflicts, and a state must have *rules* to have
6636 conflicts. (2) Labelling a state as inconsistent will affect how
6637 action_row sets the default *rule* for the state. (3) Labelling a
6638 state as inconsistent will cause build_relations to add lookback edges
6639 to *rules* in that state.
6640 * src/state.h (struct state): Word the comment for member consistent
6641 more carefully.
6642
6643 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
6644
6645 Don't depend on C99 features.
6646 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
6647 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
6648 * src/reader.c (check_and_convert_grammar): Fix for-loop.
6649 * src/state.c (state_mark_reachable_states): Fix for-loop.
6650 (state_remove_unreachable_states): Fix for-loop.
6651
6652 Don't widen struct state with member reachable just to temporarily
6653 record reachability. Instead, use a local bitset.
6654 * src/state.h (struct state): Remove member.
6655 * src/state.c (state_new): Don't initialize it.
6656 (state_mark_reachable_states): Rename to...
6657 (state_record_reachable_states): ... this, and use bitset.
6658 (state_remove_unreachable_states): Use bitset.
6659
6660 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
6661
6662 * src/Makefile.am (yacc): Quote target action commands properly so
6663 that the yacc script isn't corrupt. Reported by Hans Aberg at
6664 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
6665
6666 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
6667 the case of pure parsers. Reported by Frans Englich at
6668 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
6669 * THANKS: Add Frans Englich.
6670
6671 * NEWS (2.3a+): In the %code entry, reference section `Bison
6672 Declaration Summary' from the manual now since the %code summary has
6673 moved there.
6674 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
6675 in the rules section must be terminated by semicolons.
6676
6677 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
6678
6679 Extend the front-end API for %define variables to more completely
6680 mirror the back-end. This will be useful in the future.
6681 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
6682 Update comments to mention the new front-end counterparts of these
6683 macros.
6684 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
6685 for muscle_string_decode and muscle_location_decode.
6686 (muscle_string_decode): New static function.
6687 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
6688 (muscle_percent_define_get, muscle_percent_define_ifdef): New
6689 functions.
6690 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
6691 muscle_percent_define_get to mimic the b4_percent_define_flag_if
6692 implementation more closely.
6693 (muscle_percent_define_invalid_value): New function.
6694 * src/muscle_tab.h (muscle_percent_define_get,
6695 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
6696 Prototype.
6697
6698 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
6699
6700 * NEWS (2.3a+): Mention yesterday's state-removal change.
6701 (2.3a): Remove the %language entry, which was added after 2.3a.
6702 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
6703 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
6704 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
6705 tests/existing.at: Update copyright date.
6706
6707 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
6708
6709 If conflict resolution makes states unreachable, remove those states,
6710 report rules that are then unused, and don't report conflicts in those
6711 states.
6712 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
6713 New global function.
6714 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
6715 function.
6716 * src/main.c (main): After conflict resolution, remove the unreachable
6717 states and update all data structures that reference states by number.
6718 * src/state.c (state_new): Initialize each state's reachable member to
6719 false.
6720 (state_mark_reachable_states): New static function.
6721 (state_remove_unreachable_states): New global function.
6722 * src/state.h (struct state): Add member bool reachable.
6723 (state_remove_unreachable_states): Prototype.
6724 * tests/conflicts.at (Unreachable States After Conflict Resolution):
6725 New test case.
6726 * tests/existing.at (GNU pic Grammar): Update test case output now that
6727 an unused rule is discovered.
6728
6729 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
6730
6731 Minor code cleanup in parser table construction.
6732 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
6733 (new_itemsets, save_reductions): Update for rename to nitemset.
6734 * src/closure.c (nritemset): Rename to...
6735 (nitemset): ... this since the "r" appears to meaningless and isn't
6736 used in the comments.
6737 (closure): Update for rename.
6738 * src/closure.h (nritemset): Update extern to...
6739 (nitemset): ... this.
6740 * src/lalr.c (LA): Fix a typo in comments.
6741 * src/print.c (print_core): Update for rename to nitemset.
6742 * src/print_graph.c (print_graph): Likewise.
6743 * src/state.h: Fix some typos in header comments.
6744
6745 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
6746
6747 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
6748 still sticks to ASCII. Sorry!
6749
6750 * README-hacking: New file, taken mostly from coreutils, with changes
6751 for Bison. Contains much of the contents of:
6752 * README-cvs: Remove.
6753 * bootstrap: Sync from gnulib.
6754 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
6755 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
6756
6757 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
6758
6759 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
6760 Setzer.
6761 (Java Differences): Fix some typos.
6762 * THANKS: Add Sebastian Setzer.
6763
6764 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
6765
6766 * data/java.m4 (b4_single_class_if): Remove.
6767 (b4_abstract_if): Look at "%define abstract".
6768 (b4_lexer_if): New.
6769 (b4_union_name): Rename...
6770 (b4_yystype): ... to this. Map to "%define stype".
6771 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
6772 b4_maybe_throws): Fix quoting.
6773 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
6774 * data/lalr1.java (Lexer interface): Always define.
6775 (Lexer interface within parser class): Remove.
6776 (YYLexer class): New, used when "%code lexer" is present.
6777 (constructor): When "%code lexer" is used, pass %lex-param
6778 to the lexer constructor.
6779 (yylex, yyparse): Remove %lex-param from method invocations
6780 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
6781
6782 * doc/bison.texinfo (Java Bison Interface): Mention "%define
6783 abstract". Rename "%define union_name" to "%define stype".
6784 Rename method names according to previous patch.
6785 (Java Scanner Interface): Describe "%code lexer" instead of
6786 "%pure-parser" and "%define single_class".
6787 (Java Differences): Mention "%code lexer".
6788
6789 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
6790 Include scanner here, using macros from tests/local.at.
6791 (AT_DATA_CALC_Y): Remove final argument.
6792 (_AT_CHECK_JAVA_CALC): Likewise.
6793 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
6794 of %locations and %error-verbose.
6795 (main): Test with and without %lex-param.
6796 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
6797 (AT_BISON_OPTION_POPDEFS): Pop it.
6798
6799 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6800
6801 DJGPP spefic issue. Inhibit the use of disallowed characters for
6802 file name genertion on Win98, WinXP, etc. These are |<>":?*\
6803 and concern testsuite case 46.
6804 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
6805 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
6806 * djgpp/config.bat: Inhibit the use of disallowed characters.
6807
6808 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6809
6810 Miscellaneous %define and %code cleanup.
6811 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
6812 values are interpreted.
6813 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
6814 documentation a little more.
6815 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
6816 muscle_percent_define_insert, muscle_percent_code_grow): New
6817 functions/macros.
6818 * src/muscle_tab.h (muscle_percent_define_insert,
6819 muscle_percent_code_grow): Prototype.
6820 * src/parse-gram.y (prologue_declaration): Use
6821 muscle_percent_define_insert and muscle_percent_code_grow when parsing
6822 %define and %code directives.
6823
6824 Make it easy to share %define boolean variables between the front-end
6825 and back-end. Though not used yet, this will be useful in the future.
6826 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
6827 Bison uses of names rather than just skeleton uses of names.
6828 (b4_percent_define_get, b4_percent_define_ifdef): Rename
6829 b4_percent_define_skeleton_variables(VARIABLE) to
6830 b4_percent_define_bison_variables(VARIABLE).
6831 (b4_percent_code_get, b4_percent_code_ifdef): Rename
6832 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
6833 b4_percent_code_bison_qualifiers(QUALIFIER).
6834 (b4_check_user_names_wrap): Update for renames.
6835 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
6836 muscle_percent_define_default): New functions mimicking
6837 b4_percent_define_flag_if and b4_percent_define_default.
6838
6839 For %define variables, report locations for invalid values and
6840 redefinitions.
6841 * data/bison.m4 (b4_percent_define_flag_if): Read
6842 b4_percent_define_loc(VARIABLE) to report the location of an invalid
6843 value for VARIABLE.
6844 (b4_percent_define_default): Save a special location in
6845 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
6846 must later be reported as invalid.
6847 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
6848 functions.
6849 (muscle_percent_define_insert): Record the location of VARIABLE in
6850 muscle percent_define_loc(VARIABLE), and use it to report the previous
6851 location for a redefinition.
6852 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
6853 (muscle_percent_define_default): Update like b4_percent_define_default.
6854 (muscle_grow_user_name_list): Rename to...
6855 (muscle_user_name_list_grow): ... this for consistency and use
6856 muscle_location_grow.
6857 * src/muscle_tab.h (muscle_location_grow): Prototype.
6858 * tests/input.at (%define errors): Update expected output.
6859 * tests/skeletons.at (%define boolean variables: invalid skeleton
6860 defaults): New test case.
6861
6862 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
6863
6864 * src/print.c (lookahead_set, state_default_rule): Remove.
6865 (print_reductions): Replace state_default_rule invocation with
6866 equivalent use of yydefact, which was computed in token_actions in
6867 tables.c.
6868 (print_results): Don't allocate lookahead_set.
6869
6870 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
6871
6872 * data/lalr1.java: Prefix all private members with yy.
6873
6874 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
6875
6876 Use YYFPRINTF instead of fprintf where appropriate. Reported by
6877 Sebastien Fricker at
6878 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
6879 * THANKS: Add Sebastien Fricker.
6880 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
6881 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
6882 accept a variable number of arguments.
6883
6884 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
6885
6886 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
6887
6888 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6889
6890 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
6891 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
6892 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
6893
6894 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
6895
6896 Undo my 2007-02-07 change, switching back to the c-strcase module
6897 introduced in the 2007-02-03 change. Bruno Haible reported that
6898 the 2007-02-07 change would be dangerous in Turkish if we add a
6899 language whose name contains "i", since "i" is not lowercase "I"
6900 in Turkish.
6901 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
6902 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
6903 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
6904 * m4/.cvsignore: Remove strcase.m4.
6905 * src/getargs.c: Revert 2007-02-07 change, as follows.
6906 Include c-strcase.h.
6907 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
6908
6909 2007-02-11 Bruno Haible <bruno@clisp.org>
6910
6911 Enable the Java related testsuite tests when the only Java compiler
6912 found is a gcj < 4.3. Discussed at
6913 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
6914 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
6915
6916 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
6917
6918 * data/Makefile.am: Update copyright date.
6919 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
6920 yypstate_new returns NULL.
6921 (yypstate_new): Return NULL if malloc does.
6922 * src/reader.c (packgram): Move translation of rule actions from the
6923 beginning of packgram to...
6924 (check_and_convert_grammar): ... here right before packgram is invoked
6925 so it's easier to write more complete comments, and remove redundant
6926 code.
6927
6928 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
6929
6930 As in semantic actions, make @$ in %initial-action, %destructor, and
6931 %printer imply %locations.
6932 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
6933 scanning @$.
6934 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
6935 (@$ in %initial-action implies %locations,
6936 @$ in %destructor implies %locations,
6937 @$ in %printer implies %locations): ... these new test cases.
6938
6939 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
6940
6941 Undo most of the 2007-02-03 change, switching to the strcase module
6942 now that gnulib strcase has been fixed.
6943 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
6944 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
6945 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
6946 * m4/.cvsignore: Add strcase.m4.
6947 * src/getargs.c: Revert 2007-02-03 change, as follows.
6948 Don't include c-strcase.h.
6949 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
6950 strcasecmp has "unspecified behavior" outside the POSIX locale,
6951 but it works fine in practice if at least one argument is ASCII,
6952 as is the case in Bison.
6953
6954 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
6955
6956 * tests/java.at: Skip tests if only one of javac/java is present.
6957 Reported by Joel E. Denny.
6958 * tests/atlocal.in: Adjust copyright years.
6959
6960 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
6961
6962 * data/lalr1.java (Stack): Work around old verifiers that disallow
6963 access to the private fields of an inner class, from the outer class.
6964 We can make Stack's fields public because user code doesn't have access
6965 to the instance of Stack used by parse(). Reported by Paul Eggert.
6966
6967 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
6968
6969 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
6970 the right spot for these files?
6971 * bootstrap.conf (gnulib_modules): Add c-strcase.
6972 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
6973 c-strncasecmp.c.
6974 * src/getargs.c: Include c-strcase.h.
6975 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
6976 to avoid unspecified behavior.
6977
6978 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
6979
6980 * doc/bison.texinfo (Decl Summary): Correct typo.
6981
6982 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
6983
6984 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
6985 Complain if the value does not match empty, "true" or "false".
6986 * data/c++.m4: Adjust default definitions of %define variables.
6987 * data/java.m4: Adjust default definitions of %define variables.
6988 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
6989 to above behavior.
6990 * tests/input.at (Boolean %define variables): Test new behavior.
6991
6992 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
6993
6994 * NEWS: Mention java.
6995 * TODO: Remove things that are done.
6996 * bootstrap.conf: Add javacomp-script and javaexec-script.
6997 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
6998
6999 * data/Makefile.am: Add new files.
7000 * data/java-skel.m4: New.
7001 * data/java.m4: New.
7002 * data/lalr1.java: New.
7003
7004 * doc/bison.texinfo: Put "A Complete C++ Example" under
7005 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
7006 under Other Languages.
7007
7008 * src/getargs.c (valid_languages): Add Java.
7009 * src/getargs.h (struct bison_language): Update size of string fields.
7010
7011 * tests/Makefile.am: Add java.at.
7012 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
7013 * tests/java.at: New.
7014 * tests/testsuite.at: Include it.
7015
7016 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
7017
7018 Clean up.
7019 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
7020 at_directive_argv arguments so these no longer have to be global
7021 variables. Also, update the implementation for the following changes.
7022 (fail_for_at_directive_too_many_args,
7023 fail_for_at_directive_too_few_args): Add at_directive_name argument.
7024 (at_directive_name): Remove as at_directive_argv[0] will be used for
7025 this now.
7026 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
7027 for the directive name.
7028 (at_directive_argc, at_directive_argv): Make these local within
7029 skel_lex instead of global.
7030 (INITIAL): Update directive start action for above changes.
7031 (SC_AT_DIRECTIVE_ARG): Rename to...
7032 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
7033 (SC_AT_DIRECTIVE_SKIP_WS): Update.
7034 (scan_skel): Move yylex_destroy to...
7035 (skel_scanner_free): ... here.
7036 * tests/skeletons.at (installed skeleton file name): Rename to...
7037 (installed skeleton file names): ... this.
7038
7039 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
7040
7041 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
7042 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
7043 Summary" not "Directives".
7044 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
7045 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
7046 since the former is now the more complete one.
7047 (Prologue Alternatives): Likewise and do the same for %defines.
7048 (Table of Symbols): Add summary of %code, add summary of %define, and
7049 move full %code documentation to...
7050 (Decl Summary): ... here for consistency with other entries in these
7051 sections.
7052 Move %define entry in order to keep this list alphabetized.
7053 Reword %define entry a little to put less emphasis on the skeleton
7054 concept, which most users shouldn't have to think about.
7055
7056 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
7057
7058 Adjust to recent gnulib changes.
7059 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
7060 Add string.h, string_.h, unistd_.h, wchar_.h.
7061 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
7062 * src/system.h: Don't include <stpcpy.h>; this is now done by
7063 <string.h>.
7064
7065 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
7066
7067 Simplify implementation of unqualified %code, implement macros for
7068 uniform treatment of boolean %define flags. Document %define.
7069 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
7070 b4_percent_code_ifdef): New.
7071 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
7072 * data/c++.m4: Define default value for global_tokens_and_yystype.
7073 * data/glr.cc: Likewise.
7074 * data/location.cc: Use b4_percent_define_flag_if.
7075
7076 * doc/bison.texinfo (Decl Summary): Document %define.
7077
7078 * src/parse-gram.y (Unqualified %code): Change muscle name to
7079 b4_percent_code().
7080 (content.opt): Default to empty.
7081
7082 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
7083
7084 Implement support for relative and absolute skeleton file names.
7085 Discussed starting at
7086 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
7087 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
7088 (Bison Options): Document in --skeleton entry.
7089 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
7090 full_skeleton can't necessarily hold all of pkgdatadir.
7091 If the specified skeleton file name contains a `/', don't prepend
7092 pkgdatadir.
7093 * src/parse-gram.y (prologue_declaration): If the specified skeleton
7094 file name contains a `/', prepend the grammar file directory.
7095 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
7096 * skeletons.at: New file.
7097 (relative skeleton file names): New test case.
7098 (installed skeleton file names): New test case.
7099 * tests/testsuite.at: Include skeletons.at.
7100
7101 * bootstrap: Update copyright to 2007.
7102
7103 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
7104
7105 * bootstrap: Remove occurrences of .#bootmp from the files.
7106
7107 2007-01-17 Akim Demaille <akim@epita.fr>
7108
7109 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
7110 nonterminals.
7111 Use per-type %printer.
7112
7113 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
7114
7115 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
7116 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
7117 djgpp/config.site, src/files.c, src/files.h, src/main.c,
7118 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
7119 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
7120 tests/glr-regression.at, tests/input.at, tests/local.at,
7121 tests/output.at, tests/torture.at: Update copyright to 2007.
7122
7123 2007-01-16 Akim Demaille <akim@epita.fr>
7124
7125 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
7126 error code.
7127 (Calc++ Scanner): Exit with failure if we can't open the input
7128 file.
7129 Accept "-" standing for stdin.
7130 (Calc++ Top Level): Print the result only if the parsing was
7131 successful.
7132
7133 2007-01-16 Akim Demaille <akim@epita.fr>
7134
7135 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
7136
7137 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
7138 and Joel E. Denny <jdenny@ces.clemson.edu>
7139
7140 Clean up %define and %code implementation in M4 some. Most
7141 importantly, rename all related macros to be in the b4_percent_define
7142 and b4_percent_code namespaces. Also, complete support for `.' in
7143 %define variable names and %code qualifiers.
7144 * data/bison.m4 (b4_check_user_names): Check for special
7145 "SKELETON-NAMESPACE(name)" macros instead of using two nested
7146 m4_foreach loops.
7147 (b4_get_percent_define, b4_get_percent_code): Rename to...
7148 (b4_percent_define_get, b4_percent_code_get): ... these.
7149 Extend documentation with examples.
7150 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
7151 b4_percent_define_skeleton_variables and
7152 b4_percent_code_skeleton_qualifiers.
7153 Expect any value for the %define variable `foo' to be stored in the
7154 macro named `b4_percent_define(foo)'; expect any %code blocks for the
7155 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
7156 expect any unqualified %code blocks to be stored in a macro named
7157 `b4_percent_code_unqualified'.
7158 Use m4_indir so that %define variable names and %code qualifiers can
7159 contain `.', which is allowed by the grammar parser.
7160 (b4_percent_define_default): New macro to set a default value for a
7161 %define variable.
7162 (m4_wrap): Update wrapped code, and fix some underquoting.
7163 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
7164 Expect grammar uses of %define variables and %code qualifiers to be
7165 defined in b4_percent_define_user_variables and
7166 b4_percent_code_user_qualifiers.
7167 * data/c++.m4: Use b4_percent_define_default rather than
7168 m4_define_default. Fix some underquoting. Skeleton usage of %define
7169 variable define_location_comparison now implies skeleton usage of
7170 %define variable filename_type.
7171 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
7172 data/push.c, data/yacc.c: Update macro names.
7173 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
7174 muscle names.
7175
7176 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7177
7178 DJGPP specific issues.
7179
7180 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
7181 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
7182
7183 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
7184
7185 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
7186 run parsers in all tests so that Valgrind is invoked during
7187 maintainer-check-valgrind.
7188 (Duplicate representation of merged trees): Free all semantic values.
7189 (Duplicated user destructor for lookahead): Likewise.
7190
7191 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
7192
7193 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
7194 command-line prefix.
7195 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
7196 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
7197 miss Valgrind messages.
7198 (Exploding the Stack Size with Malloc): Likewise.
7199
7200 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
7201
7202 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
7203 locals. Reported by Juan Manuel Guerrero at
7204 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
7205 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
7206 Fix some indentation also.
7207 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
7208 explaining this issue.
7209
7210 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
7211 and Joel E. Denny <jdenny@ces.clemson.edu>
7212
7213 Simplify union and prologue handling, and escape union and lex/parse
7214 params with digraphs.
7215 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
7216 values to the empty string since these are no longer guaranteed
7217 initialized by the front-end.
7218 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
7219 braces around b4_user_stype since this is no longer done by the
7220 front-end.
7221 * src/files.c, src/files.h (pre_prologue_obstack,
7222 post_prologue_obstack): Remove.
7223 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
7224 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
7225 with digraphs. This fixes lex params and parse params.
7226 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
7227 * src/output.c (prepare): Remove muscle insertion of the prologues.
7228 (output): Remove freeing of pre_prologue_obstack and
7229 post_prologue_obstack.
7230 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
7231 than prologue_augment for prologue parsing so you don't need prologue
7232 obstacks.
7233 (grammar_declaration): For %union RHS, use `braceless' instead of
7234 "{...}" so that braces are already stripped and code is escaped with
7235 digraphs.
7236 * src/reader.c (prologue_augment): Remove.
7237 (reader): Remove initialization of pre_prologue_obstack and
7238 post_prologue_obstack.
7239 * src/reader.h (prologue_augment): Remove.
7240
7241 * data/c.m4: Remove stray parenthesis.
7242
7243 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
7244
7245 Remove quotes from variables names in %define directives and from
7246 qualifiers in %code directives, and restrict the characters that are
7247 allowed in them to M4-friendly ones. For %define, continue to support
7248 the quoted form as a deprecated feature. Discussed starting at
7249 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
7250 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
7251 %code.
7252 * doc/bison.texinfo (Prologue Alternatives): Update.
7253 (Decl Summary): In %defines entry, update mention of `%code requires'
7254 and `%code provides'.
7255 (C++ Location Values): Update %define uses.
7256 (Calc++ Parser Interface): Likewise.
7257 (Calc++ Parser): Likewise, and update `%code requires' uses.
7258 (Table of Symbols): Update %code documentation.
7259 * src/parse-gram.y (prologue_declaration): For %define variables, use
7260 `variable' instead of `STRING'.
7261 (grammar_declaration): For %code qualifiers, use `ID' instead of
7262 `STRING'.
7263 (variable): New nonterminal that takes an `ID' or a `STRING'.
7264 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
7265 and %define uses.
7266 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
7267 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
7268 (%define errors): Update %define uses.
7269
7270 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
7271
7272 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
7273 instead of muscle_insert for %define values so that M4-special
7274 characters are replaced with digraphs.
7275 * tests/input.at (%define errors): Extend to check weird values.
7276
7277 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
7278
7279 Instead of having skeletons declare all valid %define variables and
7280 %code qualifiers, provide macros that retrieve the associated values
7281 and build these lists automatically. Thus Bison will now warn when a
7282 variable or qualifier is not used by the skeleton in the current
7283 invocation regardless of whether it might sometimes be used by that
7284 skeleton in other invocations. Also, move all %define value macros to
7285 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
7286 form, which is replaced by %code.
7287 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
7288 (b4_check_user_names): ... this, and change the series of valid name
7289 arguments to a single list argument for names used in the skeleton
7290 similar to the existing list argument for names used in the grammar.
7291 Warn instead of complaining.
7292 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
7293 values and %code code, to format %code code properly, and to build
7294 lists of all %define variables and %code qualifiers used in the
7295 skeleton: b4_skeleton_percent_define_variables and
7296 b4_skeleton_percent_code_qualifiers.
7297 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
7298 Remove, and...
7299 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
7300 the skeleton names lists can finish building first. In place of
7301 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
7302 expect the lists b4_user_percent_define_variables and
7303 b4_user_percent_code_qualifiers.
7304 * data/c++.m4: Where setting default values for b4_parser_class_name,
7305 b4_location_type, b4_filename_type, b4_namespace, and
7306 b4_define_location_comparison, update their names to the
7307 b4_percent_define_ namespace.
7308 * data/glr.c: Don't use b4_check_percent_define_variables and
7309 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
7310 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
7311 (b4_parser_class_name, b4_namespace): Define these using
7312 b4_get_percent_define for parser_class_name and namespace.
7313 * data/location.cc: Use b4_get_percent_define.
7314 * data/push.c: Don't use b4_check_percent_define_variables and
7315 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
7316 * data/yacc.c: Likewise, and don't call m4_exit in
7317 b4_use_push_for_pull_if or m4_wrap code will never execute.
7318 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
7319 Rename to...
7320 (muscle_grow_user_name_list): ... this for consistency with the
7321 terminology used in bison.m4.
7322 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
7323 %define variable names, and rename muscle used_percent_define_variables
7324 to user_percent_define_variables.
7325 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
7326 user_percent_code_qualifiers.
7327 (content): Remove.
7328 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
7329 {CODE} form is no longer accepted.
7330 * tests/input.at (Reject bad %code qualifiers): Rename to...
7331 (Reject unused %code qualifiers): ... this, and update test output.
7332 (%define error): Update test output.
7333
7334 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
7335
7336 Check for unrecognized %define variables similar to checking for
7337 unrecognized %code qualifiers. Check for redefined %define variables.
7338 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
7339 generalizes...
7340 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
7341 (b4_check_percent_define_variables): New, also wraps it.
7342 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
7343 variables using b4_check_percent_define_variables.
7344 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
7345 all those exercised in the test suite and all those listed in the
7346 `Default values' section of c++.m4. Are there others?
7347 * data/push.c, data/yacc.c: Declare no valid %define variables.
7348 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
7349 similar to muscle_find, but it works even when the muscle stores a
7350 const value.
7351 (muscle_grow_used_name_list): New function for constructing the used
7352 name list muscles that b4_check_for_unrecognized_names requires.
7353 * src/parse-gram.y (prologue_declaration): Warn if a variable is
7354 %define'd more than once. Define the b4_used_percent_define_variables
7355 muscle with muscle_grow_used_name_list.
7356 (grammar_declaration): Abbreviate %code code with
7357 muscle_grow_used_name_list.
7358 * tests/input.at (%define errors): New.
7359
7360 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7361
7362 Provide warn_at, complain_at, and fatal_at function callbacks to the
7363 skeletons, and use this for %code qualifier complaints.
7364 * data/bison.m4 (b4_error_at): New, invoked by...
7365 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
7366 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
7367 @fatal_at(...@) directives.
7368 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
7369 qualifiers in b4_used_percent_code_qualifiers and to use
7370 b4_complain_at.
7371 * src/location.c, src/location.h (boundary_set_from_string): New global
7372 function.
7373 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
7374 function.
7375 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
7376 to b4_used_percent_code_qualifiers.
7377 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
7378 function.
7379 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
7380 (lineno): Rename to...
7381 (out_lineno): ... this so I don't misunderstand it again.
7382 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
7383 here; these newlines are in the input but not the output file.
7384 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
7385 (at_directive_perform): ... this new static function, and add handling
7386 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
7387 directives.
7388 * tests/input.at (Reject bad %code qualifiers): Update test output with
7389 locations and extend.
7390
7391 * tests/output.at (Output file name: [, Output file name: ]): Remove
7392 bogus comment about these tests failing.
7393
7394 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7395
7396 Clean up b4_check_percent_code_qualifiers a little.
7397 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
7398 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
7399 documentation and add examples.
7400 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
7401 qualifiers here.
7402
7403 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
7404
7405 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
7406 unreliable -- especially when they're hidden inside another macro.
7407 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
7408 data/c.m4: Remove m4_divert(-1).
7409 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
7410 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
7411 m4_divert_push(0) and m4_divert_pop(0).
7412 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
7413 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
7414 pushed and popped by m4sugar, should be first on the stack.
7415
7416 Provide warn, complain, and fatal function callbacks to the skeletons.
7417 This provides more flexibility than m4_fatal, improves the error
7418 message format, and captures messages for translation. Discussed
7419 starting at
7420 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
7421 * data/bison.m4 (b4_error): New, invoked by...
7422 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
7423 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
7424 directives. Because these M4 macros might be called when the current
7425 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
7426 the previous removal of uses of m4_divert, which caused trouble.
7427 (b4_check_percent_code_qualifiers): Use b4_complain instead of
7428 m4_fatal to report unrecognized %code qualifiers.
7429 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
7430 push parser requests.
7431 * data/glr.c: Use b4_complain instead of m4_fatal to report
7432 non-deterministic push parser requests.
7433 Update @output usage to @output(...@) form.
7434 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
7435 report missing %defines. Update @output usage to @output(...@) form.
7436 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
7437 @output(...@) form.
7438 * src/main.c (main): Invoke skel_scanner_free.
7439 * src/scan-skel.h (skel_scanner_free): Prototype new function.
7440 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
7441 obstack_for_string from flex-scanner.h.
7442 (YY_DECL): Use to declare skel_lex static.
7443 (decode_at_digraphs): Remove; now handled in the new
7444 SC_AT_DIRECTIVE_ARG start condition.
7445 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
7446 functions.
7447 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
7448 at_directive_argv): New static globals.
7449 (INITIAL): Use fail_for_invalid_at.
7450 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
7451 recognize the start of a generalized `@directive(...@)' form and
7452 start...
7453 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
7454 directive args (using the new obstack_for_string), to decode the
7455 contained @ diagraphs, and to perform the directive. It recognizes
7456 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
7457 @output(...@).
7458 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
7459 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
7460 `@,'.
7461 (scan_skel): Initialize obstack_for_string on the first call.
7462 (skel_scanner_free): New function to free obstack_for_string.
7463 * tests/input.at (Reject bad %code qualifiers): Update test output.
7464
7465 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
7466
7467 Consolidate the 4 prologue alternative directives (%code, %requires,
7468 %provides, and %code-top) into a single %code directive with an
7469 optional qualifier field. Discussed at
7470 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
7471 * NEWS (2.3a+): Rewrite the existing entry for the prologue
7472 alternatives.
7473 * doc/bison.texinfo (Prologue Alternatives): Update.
7474 (Decl Summary): Update to %code "requires" and %code "provides".
7475 (Calc++ Parser): Update to %code "requires".
7476 (Table of Symbols): Remove entries for %requires, %provides, and
7477 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
7478 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
7479 are replaced by b4_percent_code_provides and b4_percent_code_requires,
7480 which are skeleton-specific.
7481 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
7482 declare what %code qualifiers it supports and to complain if any other
7483 qualifiers were used in the grammar.
7484 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
7485 and b4_user_code([b4_percent_code_provides]) in place of
7486 b4_user_requires and b4_user_provides.
7487 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
7488 Add b4_user_code([b4_percent_code_top]) and
7489 b4_user_code([b4_percent_code]).
7490 Invoke b4_check_percent_code_qualifiers.
7491 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
7492 PERCENT_REQUIRES): Remove.
7493 (grammar_declaration): Remove RHS's for %code-top, %provides, and
7494 %requires. Rewrite the %code RHS as the unqualified form defining the
7495 muscle b4_percent_code. Add another RHS for the qualified %code form,
7496 which defines muscles of the form b4_percent_code_QUALIFIER and the
7497 b4_used_percent_code_qualifiers muscle.
7498 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
7499 PERCENT_REQUIRES): Remove.
7500 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
7501 %code "requires" and %code "provides".
7502 * tests/input.at (Reject bad %code qualifiers): New.
7503
7504 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
7505
7506 Use the new code_props interface for destructors and printers.
7507 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
7508 printer_location members, and change the type of the destructor and
7509 printer members to code_props.
7510 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
7511 symbol_printer_get, semantic_type_destructor_set,
7512 semantic_type_printer_set, default_tagged_destructor_set,
7513 default_tagless_destructor_set, default_tagged_printer_set,
7514 default_tagless_printer_set): Use code_props in arguments and return
7515 types in place of char const * and location.
7516 (symbol_destructor_location_get, symbol_printer_location_get): Remove
7517 since the locations are now contained in the return of
7518 symbol_destructor_get and symbol_printer_get.
7519 * src/output.c (symbol_destructors_output, symbol_printers_output):
7520 Replace with...
7521 (symbol_code_props_output): ... this to eliminate duplicate code.
7522 (output_skeleton): Update to use symbol_code_props_output.
7523 * src/reader.c (symbol_should_be_used): Update use of
7524 symbol_destructor_get.
7525 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
7526 Update uses of the various _destructor_set and _printer_set functions.
7527 * src/symtab.c: (default_tagged_destructor_location,
7528 default_tagless_destructor_location, default_tagged_printer_location,
7529 default_tagless_printer_location): Remove since we...
7530 (default_tagged_destructor, default_tagless_destructor,
7531 default_tagged_printer, default_tagless_printer): ... change the type
7532 of these to code_props.
7533 (symbol_new, semantic_type_new, symbol_destructor_set,
7534 semantic_type_destructor_set, symbol_destructor_get,
7535 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
7536 symbol_check_alias_consistency, default_tagged_destructor_set,
7537 default_tagless_destructor_set, default_tagged_printer_set,
7538 default_tagless_printer_set): Update.
7539 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
7540 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
7541 code_props members.
7542 (symbol_print): Use SYMBOL_CODE_PRINT.
7543
7544 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
7545
7546 Use the new code_props interface for rule actions.
7547 * src/symlist.h (symbol_list): Replace action, action_location, and
7548 used members with a code_props action_props member.
7549 * src/reader.c (symbol_should_be_used, grammar_rule_check,
7550 grammar_midrule_action, grammar_current_rule_merge_set,
7551 grammar_current_rule_symbol_append, packgram): Update.
7552 * src/scan-code.h (translate_rule_action): Remove, no longer used.
7553 * src/scan-code.l (handle_action_dollar): Update.
7554 (translate_rule_action): Remove, no longer used.
7555 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
7556
7557 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
7558
7559 Use the new code_props interface in parse-gram.y.
7560 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
7561 Update all uses of translate_* functions to use the new code_props
7562 interface and to use gram_scanner_last_string_free and
7563 code_scanner_last_string_free where possible.
7564 (grammar_declaration): symbol_list_destructor_set and
7565 symbol_list_printer_set now perform the translation, so don't do it
7566 here. Use gram_scanner_last_string_free where possible.
7567 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
7568 translate_code): Remove, no longer used.
7569 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
7570 symbol_list_printer_set): Perform code translation here rather than
7571 depending on the caller to do so.
7572
7573 * src/symlist.h (struct symbol_list): Correct some documentation typos.
7574 * src/scan-gram.h (gram_last_string): Remove declaration.
7575 * src/scan-gram.l (last_string): Declare it static.
7576
7577 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
7578
7579 Encapsulate code properties and related functionality for the various
7580 destructors, printers, and actions into a code_props structure and
7581 interface. This patch merely implements code_props in scan-code.h and
7582 scan-code.l. Future patches will rewrite other modules to use it.
7583 Discussed starting at
7584 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
7585 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
7586 consistently initialize const structs that have an empty location
7587 field.
7588 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
7589 to ensure consistency.
7590 * src/scan-code.h (code_props): New structure.
7591 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
7592 function, macro, and const global variable for initializing a
7593 code_props with no code.
7594 (code_props_plain_init, code_props_symbol_action_init,
7595 code_props_rule_action_init, code_props_translate_code): The rest of
7596 the new code_props functional interface. Among other things, the init
7597 functions set the code_props kind field so that
7598 code_props_translate_code will know whether to behave like
7599 translate_symbol_action, translate_rule_action, or translate_code.
7600 These old translate functions must remain until all other modules are
7601 updated to use the new code_props interface.
7602 (code_scanner_last_string_free): New function similar to
7603 gram_scanner_last_string_free.
7604 (code_scanner_free): Add documentation.
7605 * src/scan-code.l: Implement the new interface.
7606 (code_lex): Make it static, add a code_props* argument, and remove the
7607 rule argument.
7608 (last_string): New static global similar to the one in scan-gram.l.
7609 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
7610 instead of rule.
7611 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
7612 code_props since Bison may one day use this information for destructors
7613 and printers.
7614 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
7615 (handle_action_dollar): Use symbol_list_n_get and set used flag
7616 directly since symbol_list_n_used_set is removed.
7617 (translate_action): Add a code_props* argument and remove the rule,
7618 action, and location arguments. Pass the code_props* on to code_lex.
7619 (translate_rule_action, translate_symbol_action, translate_code):
7620 Rewrite as wrappers around the new code_props interface.
7621 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
7622 it would eventually need to break the encapsulation of code_props.
7623
7624 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
7625
7626 * etc/.cvsignore: New.
7627
7628 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
7629
7630 Add maintainer-push-check to run maintainer-check using push parsing in
7631 place of pull parsing where available.
7632 * Makefile.am (maintainer-push-check): New.
7633 * data/bison.m4 (b4_use_push_for_pull_if): New.
7634 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
7635 appropriately based on their existing values.
7636 (yypush_parse): Don't print push-parser-specific diagnostics if push
7637 parsing is being used in place of pull parsing.
7638 * data/yacc.c: If push parsing should replace pull parsing, redirect to
7639 push.c.
7640 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
7641 variable, and insert b4_use_push_for_pull_flag into muscles.
7642 * tests/Makefile.am (maintainer-push-check): New.
7643
7644 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
7645
7646 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
7647 (whether successful or failed) so that yypush_parse can be invoked
7648 again to start a new parse using the same yypstate.
7649 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
7650 check multiple yypull_parse invocations on the same yypstate. For pull
7651 mode, extend to check multiple yyparse invocations.
7652 (Exploding the Stack Size with Alloca): Extend to try with
7653 %push-pull-parser.
7654 (Exploding the Stack Size with Malloc): Likewise.
7655
7656 * tests/calc.at (Simple LALR Calculator): Don't specify
7657 %skeleton "push.c" since %push-pull-parser implies that now.
7658 * tests/headers.at (export YYLTYPE): Don't check for the push
7659 declarations. Otherwise, this test case can't be used to see if push
7660 mode can truly emulate pull mode.
7661 * tests/input.at (Torturing the Scanner): Likewise.
7662 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
7663 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
7664 AT_YACC_IF, which now includes the case of push mode since %skeleton
7665 need not be used for push mode. This will be more intuitive once
7666 push.c is renamed to yacc.c.
7667
7668 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
7669
7670 For push mode, convert yyparse from a macro to a function, invoke yylex
7671 instead of passing a yylexp argument to yypull_parse, and don't
7672 generate yypull_parse or yyparse unless %push-pull-parser is declared.
7673 Discussed starting at
7674 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
7675 * data/bison.m4 (b4_pull_if): New.
7676 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
7677 * data/push.c: Improve M4 quoting a little.
7678 (b4_generate_macro_args, b4_parenthesize): Remove.
7679 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
7680 any time a pull parser is requested.
7681 Don't #define this as a wrapper around yypull_parse. Instead, when
7682 both push and pull are requested, make it a function that does that
7683 same thing.
7684 (yypull_parse): If there's a b4_prefix, #define this to
7685 b4_prefix[pull_parse] when both push and pull are requested.
7686 Don't define this as a function unless both push and pull are
7687 requested.
7688 Remove the yylexp argument and hard-code yylex invocation instead.
7689 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
7690 %push-parser.
7691 * src/getargs.c (pull_parser): New global initialized to true.
7692 * getargs.h (pull_parser): extern it.
7693 * src/output.c (prepare): Insert pull_flag muscle.
7694 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
7695 (prologue_declaration): Set both push_parser and pull_parser = true for
7696 %push-pull-parser. Set push_parser = true and pull_parser = false for
7697 %push-parser.
7698 * src/scan-gram.l: Don't accept %push_parser as an alternative to
7699 %push-parser since there's no backward-compatibility concern here.
7700 Scan %push-pull-parser.
7701 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
7702 instead of %push-parser.
7703 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
7704 prototype it in the module that calls yyparse.
7705 * tests/input.at (Torturing the Scanner): Likewise.
7706 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
7707
7708 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
7709
7710 Update etc/bench.pl. Optimize push mode a little (the yyn change
7711 deserves most of the credit).
7712 * Makefile.am (SUBDIRS): Add etc subdirectory.
7713 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
7714 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
7715 yytoken, yyval, and yyloc declarations to...
7716 (yyparse or yypush_parse): ... here to improve performance. For
7717 yypush_parse invocations after the first, be sure to assign yyn its old
7718 value again.
7719 (yypstate_new): Don't bother initializing the yyresult field since the
7720 initial value isn't used.
7721 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
7722 remove the #define that, in push mode, set it to yyps->NAME.
7723 * etc/Makefile.am: New.
7724 * etc/bench.pl: Remove and build it instead from...
7725 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
7726 "tests/bison" from the build directory by default rather than just
7727 invoking "bison" from $PATH.
7728 (calc_grammar): Update push parser code: don't declare yylval globally,
7729 don't define yyparse_wrapper, and don't #define yyparse.
7730 (bench_grammar): Update to check all working combinations of yacc.c,
7731 push.c, impure, pure, pull, and push.
7732
7733 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
7734
7735 For push mode, add pull wrappers around yypush_parse.
7736 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
7737 (yypull_parse): New function wrapping yypush_parse.
7738 (yyparse): New #define wrapping yypull_parse.
7739 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
7740 is declared.
7741 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
7742 prototype yylex in the module that calls yyparse, and don't prototype
7743 yyparse there. Otherwise, the yyparse expansion won't compile.
7744 * tests/input.at (Torturing the Scanner): Likewise.
7745
7746 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
7747
7748 Enable push parsers to operate in impure mode. Thus, %push-parser no
7749 longer implies %pure-parser. The point of this change is to move
7750 towards being able to test the push parser code by running the entire
7751 test suite as if %push-parser had been declared.
7752 * data/push.c (yypush_parse): For impure mode, remove the
7753 yypushed_char, yypushed_val, and yypushed_loc arguments.
7754 Instead, declare these as local variables initialized to the global
7755 yychar, yylval, and yylloc.
7756 For the first yypush_parse invocation only, restore the initial values
7757 of these global variables when it's time to read a token since they
7758 have been overwritten.
7759 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
7760 %push-parser.
7761 * tests/calc.at (Simple LALR(1) Calculator): Always declare
7762 %pure-parser along with %push-parser since this test case was designed
7763 for pure push parsers.
7764 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
7765 (AT_YACC_OR_PUSH_IF): New.
7766 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
7767 add a note that it's still wrong for some cases (as it has been for a
7768 while).
7769 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
7770 %push-parser no longer implies %pure-parser.
7771
7772 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
7773
7774 Remove some unnecessary differences between the pull parser code and
7775 the push parser code. This patch enables yynerrs in push mode.
7776 * data/push.c: Reformat M4 a little.
7777 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
7778 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
7779 because push mode is on. Instead, if pure mode is on, move yynerrs
7780 to...
7781 (b4_declare_parser_state_variables): ... here.
7782 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
7783 to yyps->NAME so it can be used in yypush_parse.
7784 (yypush_parse): Don't omit uses of yynerrs in push mode.
7785
7786 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
7787
7788 Fix bug such that the first pushed token's value and location are
7789 sometimes overwritten (sometimes by %initial-action) before being used.
7790 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
7791 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
7792 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
7793 more closely mimic the pull parser logic.
7794 Don't copy the pushed token to yychar, yylval, and yylloc until it's
7795 time to read a token, which is after any initialization of yylval and
7796 yylloc.
7797 (gottoken): Rename label to...
7798 (yyread_pushed_token): ... for clarity and to avoid infringing on the
7799 user namespace.
7800
7801 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
7802
7803 Rearrange initialization of the parser state variables so that the
7804 skeleton doesn't have to have a copy for pull mode and another for push
7805 mode. This patch also fixes at least a bug such that yylloc was not
7806 initialized (with b4_location_initial_line and
7807 b4_location_initial_column) upon calling yypush_parse. However, that
7808 initialization now overwrites the first token's location;
7809 %initial-action assigning @$ already did the same thing, and both bugs
7810 will be fixed in a later patch.
7811 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
7812 (b4_declare_parser_state_variables): Remove initialization of yytoken,
7813 yyss, yyvs, yyls, and yystacksize.
7814 (yypstate_new): Remove initialization of some yypstate fields: yystate,
7815 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
7816 yylsp.
7817 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
7818 yyps->NAME so it can be used in yypush_parse.
7819 (yyparse or yypush_parse): For yypush_parse, don't print the
7820 "Starting parse" diagnostic for invocations after the first.
7821 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
7822 yypush_parse, only do it for the first invocation.
7823 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
7824 initialization to occur in yypush_parse but only on the first
7825 invocation.
7826
7827 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
7828
7829 * data/push.c: Add CPP guards around push parser declarations in both
7830 the header and the code file.
7831 In the code file, move the push parser declarations to the same place
7832 they appear in the header file.
7833 Clean up the M4 some, especially the inconsistent underquoting in
7834 some b4_c_function_def and b4_c_function_decl uses.
7835
7836 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
7837
7838 Encapsulate the push parser state variables into an M4 macro so the
7839 push skeleton doesn't have to list them again for pull mode's yyparse.
7840 For push mode, remove yypush_parse's local equivalents of these
7841 variables to eliminate unnecessary copying between the two sets at
7842 run-time. This patch also fixes at least a bug related to multiple
7843 %initial-action invocations in push mode.
7844 * data/push.c (b4_declare_parser_variables): Rename to...
7845 (b4_declare_scanner_communication_variables): ... this for clarity and
7846 update both uses.
7847 (b4_declare_yyparse_variables): Remove and move its contents to the one
7848 spot where it was invoked.
7849 (b4_declare_parser_state_variables): New macro containing the parser
7850 state variables required by push mode.
7851 (struct yypstate): Replace all fields but yynew with
7852 b4_declare_parser_state_variables.
7853 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
7854 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
7855 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
7856 (yyparse or yypush_parse): For yyparse in pull mode, replace local
7857 parser state variable declarations with
7858 b4_declare_parser_state_variables.
7859 Don't initialize parser state variables when calling yypush_parse since
7860 yypstate_new already does that.
7861 Invoke the user's initial action only upon the first yypush_parse
7862 invocation.
7863 Remove all code that copies between the local parser state variables
7864 and the yypstate.
7865
7866 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
7867
7868 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
7869 prevent a name collision in a future patch where these names will
7870 sometimes be #define'd.
7871 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
7872 since it no longer has the same name as the existing argument.
7873 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
7874
7875 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
7876 and Joel E. Denny <jdenny@ces.clemson.edu>
7877
7878 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
7879 that the argument is case-insensitive, and there's no `=' here.
7880 For the %skeleton entry, mention that %language is better.
7881 (Bison Options): Likewise for --language and --skeleton. Move the
7882 --skeleton entry so that the `Tuning the parser' section is sorted
7883 alphabetically on long options.
7884 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
7885 %language directive in detail here; cross-reference the %language
7886 documentation instead.
7887 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
7888 `%require "2.3b"' so that the example is always up-to-date.
7889 (Table of Symbols): Add entries for %language and %skeleton.
7890 * examples/extexi (normalize): Instead of replacing every %require
7891 argument with the current Bison version, just substitute for
7892 `@value{VERSION}'. This guarantees that we're testing what actually
7893 appears in the documentation.
7894 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
7895 rather than `@VERSION@'.
7896
7897 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
7898
7899 * NEWS: Reword the %language news a bit, and put it earlier.
7900
7901 * src/getargs.c (skeleton_arg): Last arg is now location const *.
7902 Rewrite to simplify the logic.
7903 (language_argmatch): Likewise.
7904 (program_name): We now own this var.
7905 * src/getargs.h (struct bison_language): Use char[] rather than
7906 const char *.
7907
7908 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
7909 Java is supported.
7910 * src/complain.c (program_name): Remove decl; no longer needed.
7911 * src/main.c (program_name): Remove; now belongs to getargs.
7912
7913 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
7914
7915 * NEWS: Document %language.
7916
7917 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
7918
7919 * data/c-skel.m4, data/c++-skel.m4: New files.
7920 * data/glr.c: Complain on push parsers.
7921
7922 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
7923 over %skeleton.
7924 (Decl Summary): Document %language and %skeleton.
7925 (Command line): Document -L.
7926
7927 * examples/extexi: Rewrite %require directive.
7928 * examples/calc++/Makefile.am: Pass VERSION to extexi.
7929
7930 * src/files.c (compute_exts_from_gc): Look in language structure
7931 for .y extension.
7932 (compute_file_name_parts): Check whether .tab should be added.
7933 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
7934 (language, skeleton_arg, language_argmatch): New.
7935 (long_options): Add --language.
7936 (getargs): Use skeleton_arg, add -L/--language.
7937 * src/getargs.h: Include location.h.
7938 (struct bison_language, language, skeleton_arg, language_argmatch): New.
7939 * src/output.c (prepare): Pick default skeleton from struct language.
7940 Don't dispatch C skeletons here.
7941 * src/parse-gram.y (PERCENT_LANGUAGE): New.
7942 (prologue_declaration): Add "%language" rule, use skeleton_arg.
7943 * src/scan-gram.l ("%language"): New rule.
7944
7945 * tests/calc.at: Test %skeleton and %language.
7946 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
7947 (AT_GLR_IF): Look for %skeleton "glr.cc".
7948 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
7949 (AT_YACC_IF): Reject %language.
7950
7951 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
7952
7953 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
7954 since it wasn't used; only the typedef name 'semantic_type' is needed.
7955 Also, omit trailing white space.
7956
7957 * bootstrap: Sync from coreutils.
7958 (gnulib_extra_files): Add build-aux/announce.gen.
7959 (slurp): Adjust .gitignore files like .cvsignore files.
7960 * build-aux/announce-gen: Remove from CVS, since bootstrap
7961 now creates this.
7962
7963 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
7964
7965 Make %push-parser imply %pure-parser. This fixes several bugs; see
7966 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
7967 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
7968 pure_parser = true.
7969 * data/push.c: Don't bother testing b4_push_if when deciding whether
7970 to expand b4_declare_parser_variables globally.
7971 (yypush_parse): Likewise in here.
7972
7973 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
7974 (yy_reduce_print): Reformat M4 for readability.
7975
7976 2006-12-15 Bob Rossi <bob@brasko.net>
7977 and Joel Denny <jdenny@ces.clemson.edu>
7978
7979 * data/push.c (yypstate): Add typedef, and update all uses of
7980 struct yypstate to just yypstate.
7981 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
7982
7983 2006-12-14 Bob Rossi <bob@brasko.net>
7984
7985 * data/push.c (yypush_parse): Declare prototype regardless of
7986 %locations option.
7987
7988 2006-12-14 Bob Rossi <bob@brasko.net>
7989
7990 * data/push.c (yyparse): Remove the prototype and the #define when in
7991 push-parser mode.
7992
7993 2006-12-13 Bob Rossi <bob@brasko.net>
7994
7995 * data/push.c (yypstate_init): Rename to...
7996 (yypstate_new): ... this and use b4_c_function_def.
7997 (yypstate_delete): New.
7998 (yypush_parse): Change parameters yynval and yynlloc to be const.
7999 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
8000 yypstate_delete functions.
8001
8002 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
8003
8004 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
8005 strange test case titles. Reported by Bob Rossi.
8006
8007 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
8008
8009 * TODO: Add pointer to Sylvain Schmitz's work on static detection
8010 of potential ambiguities in GLR grammers.
8011
8012 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
8013
8014 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
8015 `bison ', use m4_index instead of m4_substr since chopping up a string
8016 containing M4-special characters causes problems here.
8017
8018 Fix a couple of bugs related to special characters in user-specified
8019 file names, and make it easier for skeletons to compute output file
8020 names with the same file name prefix as Bison-computed output file
8021 names.
8022 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
8023 b4_parser_file_name and b4_spec_defines_file instead of
8024 @output_parser_name@ and @output_header_name@, which are now redundant.
8025 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
8026 b4_parser_file_name, b4_spec_defines_file, and the new
8027 @basename(FILENAME@) instead of @output_parser_name@ and
8028 @output_header_name@, which inappropriately escaped the file names as
8029 C string literals.
8030 * src/files.c (all_but_ext): Remove static qualifier.
8031 (compute_output_file_names): Move `free (all_but_ext)' to...
8032 (output_file_names_free): ... here since all_but_ext is needed later.
8033 * src/files.h (all_but_ext): Extern.
8034 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
8035 exactly what MUSCLE_INSERT_STRING used to do.
8036 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
8037 characters are escaped properly.
8038 * src/output.c (prepare): Define muscle file_name_all_but_ext as
8039 all_but_ext.
8040 For pkgdatadir muscle, maintain previous functionality by using
8041 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
8042 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
8043 digraphs would never be expanded. Hopefully no one has M4-special
8044 characters in his Bison installation path.
8045 * src/scan-skel.l: Don't parse @output_header_name@ and
8046 @output_parser_name@ anymore since they're now redundant.
8047 In @output, use decode_at_digraphs.
8048 Parse a new @basename command that invokes last_component.
8049 (decode_at_digraphs): New.
8050 (BASE_QPUTS): Remove unused.
8051 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
8052 (Output file name): New tests.
8053
8054 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
8055
8056 Warn about output files that are generated by the skeletons and that
8057 conflict with other output files.
8058 * data/glr.c: Don't generate the header file here when glr.cc does.
8059 * src/files.c (file_names, file_names_count): New static globals.
8060 (compute_output_file_names): Invoke output_file_name_check for files
8061 not generated by the skeletons and remove existing checks.
8062 (output_file_name_check): New function that warns about conflicting
8063 output file names.
8064 (output_file_names_free): Free file_names.
8065 * src/files.h (output_file_name_check): Declare.
8066 * src/scan-skel.l: Invoke output_file_name_check for files generated by
8067 the skeletons.
8068 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
8069 (Conflicting output files): New tests.
8070
8071 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
8072
8073 * doc/bison.texinfo: Fix a couple of typos.
8074
8075 2006-12-08 Bob Rossi <bob@brasko.net>
8076
8077 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
8078 Rename to...
8079 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
8080 update all uses.
8081 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
8082 (yypush_parse): Rename yypvars argument to yyps and remove redundant
8083 local pv.
8084 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
8085 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
8086
8087 2006-12-07 Bob Rossi <bob@brasko.net>
8088 and Joel Denny <jdenny@ces.clemson.edu>
8089
8090 * data/push.c (yypvarsinit): Change return type from void* to struct
8091 yypvars*. No longer cast to void* on return.
8092 (struct yypvars): Remove yylen since it need not be remembered between
8093 yypushparse invocations.
8094 (yypushparse): Don't copy between yylen and pv->yylen.
8095
8096 2006-12-05 Bob Rossi <bob@brasko.net>
8097
8098 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
8099 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
8100 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
8101 (struct yypvars): Remove b4_declare_parser_variables.
8102 (yypvarsinit): Remove init code for removed variables.
8103 (global scope): Do not declare b4_declare_parser_variables if
8104 push or pure mode.
8105 (yypushparse): Add b4_declare_parser_variables.
8106 Init new local variables, and remove init code for removed
8107 yypvars variables.
8108 (yyparse): Delete.
8109 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
8110 and yyparse for other modes.
8111 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
8112 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
8113 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
8114 (AT_PURE_LEX_IF): True if pure or push parser.
8115
8116 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
8117
8118 Document Yacc prologue alternatives and default %destructor's and
8119 %printer's as experimental. Don't mention Java yet. Discussed at
8120 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
8121 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
8122 (2.3a): Annotate this entry to say the old forms of these features were
8123 also experimental.
8124 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
8125 Table of Symbols): Say they're experimental. Comment out any mention
8126 of Java (we'll want this back eventually).
8127
8128 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
8129
8130 Support a file name argument to %defines. Deprecate `=' in
8131 %file-prefix, %name-prefix, and %output. Discussed at
8132 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
8133 * NEWS (2.3a+): Mention.
8134 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
8135 form of %defines, and remove `=' from entries for %file-prefix,
8136 %name-prefix, and %output.
8137 * src/parse-gram.y (prologue_declaration): Implement.
8138 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
8139 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
8140 all but one occurrence of %name-prefix.
8141 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
8142 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
8143 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
8144 occurrence of each of %file-prefix and %output. Add check for %defines
8145 with argument.
8146 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
8147 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
8148 Remove the `=' from %output.
8149
8150 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
8151
8152 Don't escape $ in test case titles since Autoconf 2.61 now does that
8153 correctly.
8154 * tests/actions.at (Default %printer and %destructor are not for error
8155 or $undefined): Here.
8156 (Default %printer and %destructor are not for $accept): Here.
8157 * tests/input.at (Invalid $n and @n): Here.
8158
8159 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
8160
8161 Rename <!> to <>. Discussed starting at
8162 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
8163 * NEWS (2.3a+): Update.
8164 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
8165 Update.
8166 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
8167 * src/scan-gram.l (INITIAL): Implement.
8168 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
8169 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
8170 comment.
8171 * tests/actions.at (Default tagless %printer and %destructor,
8172 Default tagged and per-type %printer and %destructor,
8173 Default %printer and %destructor are not for error or $undefined,
8174 Default %printer and %destructor are not for $accept,
8175 Default %printer and %destructor for mid-rule values): Update.
8176 * tests/input.at (Default %printer and %destructor redeclared,
8177 Unused values with default %destructor): Update.
8178
8179 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
8180
8181 Don't let %prec take a nonterminal.
8182 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
8183 token.
8184 * tests/input.at (%prec takes a token): New test checking that %prec
8185 won't take a nonterminal.
8186
8187 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
8188
8189 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
8190 it was double-quoted.
8191 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
8192 grammar is maintained with Bison's highest standards.
8193 * src/getargs.c: Fix some typos in Doxygen comments.
8194
8195 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
8196
8197 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
8198 later. Reported by Paul Eggert in
8199 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
8200 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
8201 * src/scan-code.l (translate_action): Don't bother invoking
8202 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
8203 (code_scanner_free): Instead of invoking
8204 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
8205 which frees more.
8206 * src/scan-gram.l (gram_scanner_free): Likewise.
8207 * src/scan-skel.l (scan_skel): Likewise.
8208
8209 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
8210
8211 * src/files.c (tr): Change return type to void.
8212 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
8213 has been called previously for the same key.
8214 (muscle_find): Return storage instead of value so that
8215 --enable-gcc-warnings doesn't produce warnings that the return discards
8216 const. aver that the value and storage are the same since storage
8217 could potentially be NULL when value is not.
8218 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
8219 same as 0.
8220
8221 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
8222
8223 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
8224 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
8225 us a slightly cleaner distribution, and also works.
8226 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
8227 gnulib changes.
8228
8229 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
8230 and Paul Eggert <eggert@cs.ucla.edu>
8231
8232 Don't let Bison leak memory except when it complains.
8233 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
8234 (spec_defines_file, dir_prefix): Now char *, not const char *,
8235 since they are freed.
8236 * src/files.c: Likewise.
8237 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
8238 Likewise.
8239 (tr): Now operates in-place. All uses changed.
8240 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
8241 values.
8242 (compute_file_name_parts, compute_output_file_names): Don't store
8243 read-only data in variables that will be freed.
8244 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
8245 src_extension, and header_extension.
8246 (output_file_names_free): New public function to free
8247 spec_verbose_file, spec_graph_file, spec_defines_file,
8248 parser_file_name, and dir_prefix.
8249 * src/getargs.c (getargs): Don't store read-only data in variables that
8250 will be freed.
8251 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
8252 (which previously existed but was unused), and quotearg_free.
8253 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
8254 * src/muscle_tab.c: Likewise.
8255 (muscle_entry): Make the value char const *,
8256 and add a new storage member that is char * and can be freed.
8257 (muscle_entry_free): New private function.
8258 (muscle_init): Use it instead of free.
8259 (muscle_insert, muscle_grow): Update and use new storage member.
8260 (muscle_code_grow): Free the string passed to muscle_grow
8261 since it's not needed anymore.
8262 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
8263 add a new `char *code' member.
8264 ("{...}"): Declare semantic type as code.
8265 * src/scan-code.h (translate_rule_action):
8266 (translate_symbol_action, translate_code, translate_action): Return
8267 `char const *' rather than `char *' since external code should not free
8268 these strings.
8269 * src/scan-code.l: Likewise.
8270 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
8271 which is "{...}" in the parser.
8272 * tests/Makefile.am (maintainer-check-valgrind): Set
8273 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
8274 Valgrind.
8275 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
8276 complain.
8277 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
8278 expecting a non-zero exit status sets --leak-check=summary and
8279 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
8280 this case, and we don't want to hear about it.
8281
8282 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
8283
8284 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
8285 instead of from the template, to simplify configuration a bit.
8286 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
8287 and m4/wint_t.m4, as they are needed with the latest gnulib.
8288
8289 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
8290
8291 Disable unset/unused mid-rule value warnings by default, and recognize
8292 --warnings=midrule-values to enable them. Discussed starting at
8293 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
8294 * NEWS (2.3a+): Mention.
8295 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
8296 warnings): Add entry for midrule-values subargument.
8297 * src/reader.c (symbol_should_be_used): Don't return true just because
8298 the value is a set/used mid-rule value unless
8299 --warnings=midrule-values was specified.
8300 * tests/input.at (Unused values, Unused values before symbol
8301 declarations): Run tests with and without --warnings=midrule-values.
8302
8303 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
8304 than LIST_FREE directly.
8305
8306 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
8307
8308 Finish implementing --warnings=error, which should not be implied by
8309 --warnings=all (or by its synonyms -W and --warnings without
8310 subarguments).
8311 * src/complain.c (set_warning_issued): New function to report that
8312 warnings are being treated as errors and to record an error if so.
8313 Invoke...
8314 (warn_at, warn): ... here.
8315 * src/getargs.c (warnings_args, warnings_types): Reorder so that
8316 "error - warnings are errors" does not appear above "all - all of the
8317 above".
8318 (getargs): For -W and --warnings without subarguments, don't let
8319 FLAGS_ARGMATCH set warnings_error in warnings_flag.
8320 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
8321
8322 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
8323
8324 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
8325 empty subargument list. For example: `bison --warnings= parser.y'.
8326
8327 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
8328
8329 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
8330 the parser header file so that gcc doesn't warn.
8331
8332 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
8333
8334 Split the default %destructor/%printer into two kinds: <*> and <!>.
8335 Discussed starting at
8336 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
8337 * NEWS (2.3a+): Mention.
8338 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
8339 previous change today related to mid-rules.
8340 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
8341 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
8342 (TYPE_TAG_ANY): Add as <*>.
8343 (TYPE_TAG_NONE): Add as <!>.
8344 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
8345 for <*> and <!>.
8346 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
8347 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
8348 * src/symlist.c (symbol_list_default_new): Split into tagged and
8349 tagless versions.
8350 (symbol_list_destructor_set, symbol_list_printer_set): Split
8351 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
8352 SYMLIST_DEFAULT_TAGLESS.
8353 * src/symlist.h: Update symbol_list_default*_new prototypes.
8354 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
8355 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
8356 * src/symtab.c (default_destructor, default_destructor_location,
8357 default_printer, default_printer_location): Split each into tagged and
8358 tagless versions.
8359 (symbol_destructor_get, symbol_destructor_location_get,
8360 symbol_printer_get, symbol_printer_location_get): Implement tagged
8361 default and tagless default cases.
8362 (default_destructor_set, default_printer_set): Split each into tagged
8363 and tagless versions.
8364 * src/symtab.h: Update prototypes.
8365 * tests/actions.at (Default %printer and %destructor): Rename to...
8366 (Default tagless %printer and %destructor): ... this, and extend.
8367 (Per-type %printer and %destructor): Rename to...
8368 (Default tagged and per-type %printer and %destructor): ... this, and
8369 extend.
8370 (Default %printer and %destructor for user-defined end token): Extend.
8371 (Default %printer and %destructor are not for error or $undefined):
8372 Update.
8373 (Default %printer and %destructor are not for $accept): Update.
8374 (Default %printer and %destructor for mid-rule values): Extend.
8375 * tests/input.at (Default %printer and %destructor redeclared): Extend.
8376 (Unused values with default %destructor): Extend.
8377
8378 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
8379
8380 Don't apply the default %destructor/%printer to an unreferenced midrule
8381 value. Mentioned at
8382 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
8383 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
8384 like $@n instead of just @n so that the default %destructor/%printer
8385 logic doesn't see them as user-defined symbols.
8386 (symbol_is_dummy): Check for both forms of the name.
8387 * src/reader.c (packgram): Remove the `$' from each midrule symbol
8388 name for which the midrule value is referenced in any action.
8389 * tests/actions.at (Default %printer and %destructor for mid-rule
8390 values): New test.
8391 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
8392 for change to dummy symbol names.
8393
8394 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
8395
8396 Warn about unset midrule $$ if the corresponding $n is used.
8397 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
8398 $n usage.
8399 (packgram): Before invoking grammar_rule_check on any rule, make sure
8400 all actions have already been scanned in order to set `used' flags.
8401 Otherwise, checking that a midrule's $$ is set will not always work
8402 properly because the midrule check must forward-reference the midrule's
8403 parent rule.
8404 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
8405 warning.
8406
8407 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
8408
8409 More improvements to the documentation of the prologue alternatives:
8410 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
8411 Bison manual.
8412 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
8413 some text to clarify the relative importance of the new directives and
8414 to show how these directives may be viewed as code labels.
8415
8416 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
8417
8418 Similar to the recently removed %before-header, add %code-top as the
8419 alternative to the pre-prologue. Mentioned at
8420 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
8421 Also, let the prologue alternatives appear in the grammar section.
8422 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
8423 (prologue_declaration): Move the existing prologue alternatives to...
8424 (grammar_declaration): ... here and add %code-top.
8425 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
8426
8427 Clean up and extend documentation for the prologue alternatives.
8428 * NEWS (2.3a+): Describe prologue alternatives.
8429 * doc/bison.texinfo (Prologue): Move discussion of prologue
8430 alternatives to...
8431 (Prologue Alternatives): ... this new section, and extend it to discuss
8432 all 4 directives in detail.
8433 (Table of Symbols): Clean up discussion of prologue alternatives and
8434 add %code-top.
8435
8436 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8437
8438 DJGPP specific issues.
8439
8440 * djgpp/config.bat: config.hin has been moved to lib. Adjust
8441 config.bat accordingly.
8442 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
8443 * djgpp/config.site: Likewise.
8444
8445 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
8446
8447 Replace %*-header with %provides, %requires, %code. See discussion at
8448 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
8449
8450 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
8451 (b4_user_start_header): Remove.
8452 * data/glr.c: Use new macros instead of b4_*start_header
8453 and b4_*end_header.
8454 * data/glr.cc: Likewise.
8455 * data/lalr1.cc: Likewise.
8456 * data/push.c: Likewise.
8457 * data/yacc.c: Likewise.
8458
8459 * doc/bison.texinfo: Remove %before-header, rename
8460 %{start,end,after}-header to %requires, %provides, %code.
8461
8462 * src/parse-gram.y: Likewise (also rename token names accordingly).
8463 * src/scan-gram.l: Likewise.
8464 * tests/actions.at: Likewise.
8465
8466 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
8467
8468 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
8469 Problem reported by Joel E. Denny.
8470
8471 2006-10-14 Jim Meyering <jim@meyering.net>
8472
8473 (Sync from coreutils.)
8474 Work also when the working directory (with e.g. coreutils sources)
8475 is version controlled with git, rather than CVS.
8476 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
8477 rather than CVS.
8478 In messages and comments, say e.g., "checked-out sources",
8479 rather than "CVS sources".
8480 (version_controlled_file): New function. Work for git as well as
8481 for CVS. Don't use grep's -q option.
8482 (slurp): Call it here, in place of CVS-specific code.
8483
8484 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
8485
8486 Fix testsuite for ./configure --enable-gcc-warnings:
8487 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
8488 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
8489 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
8490 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
8491 * test/regression.at (Diagnostic that expects two alternatives):
8492 Likewise.
8493
8494 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
8495
8496 * bootstrap.conf (gnulib_modules): Add config-h.
8497 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
8498 worry about HAVE_CONFIG_H.
8499 * lib/abitset.c: Likewise.
8500 * lib/bitset.c: Likewise.
8501 * lib/bitset_stats.c: Likewise.
8502 * lib/bitsetv-print.c: Likewise.
8503 * lib/bitsetv.c: Likewise.
8504 * lib/ebitset.c: Likewise.
8505 * lib/get-errno.c: Likewise.
8506 * lib/lbitset.c: Likewise.
8507 * lib/subpipe.c: Likewise.
8508 * lib/timevar.c: Likewise.
8509 * lib/vbitset.c: Likewise.
8510 * lib/bitset.c: Include "bitset.h" first, to test interface.
8511 * lib/bitset_stats.c: Include "bitset_stats.h" first.
8512 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
8513 * lib/bitsetv.c: Include "bitsetv.h" first.
8514 * lib/get-errno.c: Include "get-errno.h" first.
8515 * m4/.cvsignore: Add config-h.m4.
8516 * tests/actions.at (Default %printer and %destructor for ...):
8517 Adjust expected line numbers in output to reflect removal of #if
8518 HAVE_CONFIG_H lines.
8519 * tests/glr-regression.at (Missed %merge type warnings when ...):
8520 Likewise.
8521 * tests/regression.at (Braced code in declaration in rules section):
8522 Likewise.
8523 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
8524 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
8525 Include <config.h> unconditionally.
8526
8527 * bootstrap: Sync from coreutils, as follows:
8528
8529 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
8530
8531 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
8532 variable was sometimes used without being initialized. This
8533 messed up the installation of the INSTALL file in some cases.
8534
8535 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
8536
8537 * bootstrap (usage, main program, symlink_to_gnulib): Add option
8538 --copy. Inspired by a suggestion from Bruno Haible.
8539
8540 2006-10-03 Jim Meyering <jim@meyering.net>
8541
8542 * bootstrap: Undo last change to this file, since now gnulib-tool
8543 sticks with the automake default in generating dependencies.
8544
8545 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
8546
8547 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
8548 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
8549
8550 * doc/bison.1: Add copyright notice.
8551
8552 * data/glr.c: Don't include <stdarg.h>; not used.
8553
8554 * NEWS: The -g and --graph options now output graphs in Graphviz
8555 DOT format, not VCG format.
8556 * doc/bison.1: Likewise.
8557 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
8558 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
8559 of this change in
8560 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
8561 * TODO: Remove Graphviz entry.
8562 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
8563 remove vcg.c, vcg.h, vcg_defaults.h.
8564 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
8565 * src/graphviz.c, src/graphviz.h: New files.
8566 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
8567 * src/files.h: Make comment more generic.
8568 * src/main.c (main): Likewise.
8569 * src/print_graph.h: Likewise.
8570 * src/getargs.c (usage): Make usage description more generic.
8571 * src/print_graph.c: Include graphviz.h rather than vcg.h.
8572 (static_graph, fgraph): Remove. All uses changed to pass
8573 arguments instead of sharing a static var.
8574 (print_core, print_actions, print_state, print_graph):
8575 Output graphviz format rather than VCG format.
8576 * tests/.cvsignore: Remove *.vcg; add *.dot.
8577 * tests/output.at: Expect *.dot files, not *.vcg files.
8578
8579 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
8580 accommodates the 2006-10-08 change.
8581
8582 2006-10-11 Bob Rossi <bob@brasko.net>
8583
8584 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
8585 (b4_yyssa, b4_yyerror_range): New macros.
8586 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
8587 (yypvarsinit): Remove init of removed fields.
8588 (yypushparse): Remove use of removed fields; use new macros instead.
8589
8590 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
8591
8592 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
8593 in a push parser. Reindent slightly to match yacc.c better.
8594
8595 2006-10-11 Bob Rossi <bob@brasko.net>
8596
8597 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
8598 yymsg_alloc fields.
8599 (yypvarsinit, yypushparse): Remove init of removed fields.
8600 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
8601
8602 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
8603
8604 * THANKS: Add Paolo Bonzini and Bob Rossi.
8605
8606 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
8607
8608 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
8609 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
8610 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
8611 b4_define_user_cde and uses): Remove.
8612 (b4_comment, b4_prefix, b4_sync_start): New.
8613 * data/bison.m4: New file, with most of the content removed from c.m4.
8614 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
8615 * src/output.c (output_skeleton): Pass bison.m4.
8616 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
8617 only if specified.
8618
8619 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
8620
8621 Fix test failure reported by Tom Lane in
8622 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
8623 and try to make such failures easier to catch in the future.
8624 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
8625 that's now the caller's responsibility.
8626 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
8627 Set yychar = YYEOF if it's negative.
8628 * tests/actions.at (yylex): Abort if asked to read past EOF.
8629 * tests/conflicts.at (yylex): Likewise.
8630 * tests/cxx-type.at (yylex): Likewise.
8631 * tests/glr-regression.at (yylex): Likewise.
8632 * tests/input.at (yylex): Likewise.
8633 * tests/regression.at (yylex): Likewise.
8634 * tests/torture.at (yylex): Likewise.
8635
8636 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
8637
8638 Fix problems with translating English-language diagnostics.
8639 * bootstrap: Fix bug introduced in recent bootstrap changes, with
8640 respect to bison-runtime pot generation. The YY_ stuff
8641 wasn't being captured.
8642 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
8643 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
8644 * runtime-po/POTFILES.in: Add data/push.c.
8645
8646 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
8647
8648 Merge bootstrap changes from coreutils.
8649
8650 2006-09-28 Jim Meyering <jim@meyering.net>
8651
8652 Automatically generated dependencies are important even
8653 when all of the sources in a directory come from gnulib.
8654 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
8655 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
8656
8657 2006-09-23 Jim Meyering <jim@meyering.net>
8658
8659 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
8660
8661 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
8662
8663 * bootstrap: Add support for --force.
8664 (usage): New function. Describe usage less tersely.
8665 (CVS_only_file): New var.
8666
8667 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
8668
8669 * data/push.c (YYPUSH_MORE): Make it an enum instead.
8670 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
8671 Adjust white space and comments to match GNU style better.
8672
8673 2006-09-20 Bob Rossi <bob@brasko.net>
8674
8675 * data/push.c (yyresult_get): Remove function.
8676 (YYPUSH_MORE): Add #define.
8677 (yypushparse): Modify return value.
8678
8679 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
8680
8681 * stamp-h.in: Remove; no longer needed.
8682 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
8683 Remove config.h, config.hin, intl (no longer created).
8684 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
8685 stamp-h1.
8686
8687 Sync bootstrap from coreutils, as follows:
8688
8689 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
8690
8691 * bootstrap (symlink_to_gnulib): New function.
8692 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
8693 to copies-of-gnulib.
8694 (cp_mark_as_generated, slurp, gnulib_files):
8695 Avoid making a copy if it's the same as the old version.
8696 (gnulib_files): Add support for this variable (used by Bison).
8697
8698 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
8699
8700 * src/getargs.c (usage): Rework to use conventions similar to
8701 coreutils, to make translation a bit easier and the code a bit
8702 smaller. Problem reported by Tim Van Holder.
8703
8704 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
8705
8706 Use some of gnulib's new modules, taken from coreutils.
8707
8708 * bootstrap: Sync from coreutils, except add support for gnulib_files.
8709 * bootstrap.conf: New file.
8710 (gnulib_modules): Add configmake, inttypes, unistd.
8711 (XGETTEXT_OPTIONS): Add complain, complain_at,
8712 fatal, fatal_at, warn, warn_at, unexpected_end.
8713 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
8714 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
8715 (gl_EARLY): Add.
8716 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
8717 (gl_INIT): Add
8718 (GNULIB_AUTOCONF_SNIPPET): Remove.
8719 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
8720 the pickiest.
8721 * lib/.cvsignore: Add inttypes_.h.
8722 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
8723 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
8724 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
8725 no-longer-necessary initializations.
8726 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
8727 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
8728 use the unistd module.
8729 * src/system.h: Likewise.
8730 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
8731 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
8732 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
8733 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
8734 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
8735 * src/system.h: Include inttypes.h unconditionally, now that we
8736 use the inttypes module. Don't bother to include stdint.h, since
8737 inttypes.h now does that for us.
8738 (LOCALEDIR): Remove, now that we use the configmake module.
8739 * src/getargs.c: Include configmake.h.
8740 * src/main.c: Likewise.
8741 * src/output.c: Likewise.
8742 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
8743 not from $abs_top_builddir, since config.h moved.
8744
8745
8746 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
8747 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
8748
8749 * src/parse-gram.y (symbol_declaration): Don't put statements
8750 before declarations; it's not portable to C89.
8751 * src/scan-code.l (handle_action_at): Likewise.
8752
8753 * src/scan-code.l: Always initialize braces_level; the old code
8754 left it uninitialized and therefore had undefined behavior.
8755
8756 Don't attempt to redefine 'assert', since it runs afoul of
8757 systems where standard headers (mistakenly) include <assert.h>.
8758 Instead, define and use our own alternative, called 'aver'.
8759 * src/reader.c: Don't include assert.h, since we no longer
8760 use assert.
8761 * src/scan-code.l: Likewise.
8762 * src/system.h (assert): Remove, replacing with....
8763 (aver): New function, taking a bool arg. All uses changed.
8764 * src/tables.c (pack_vector): Ensure that aver arg is bool,
8765 not merely an integer.
8766
8767 2006-09-15 Bob Rossi <bob@brasko.net>
8768
8769 Add support for push parsing. Based on the original work of
8770 Odd Arild Olsen <oao@fibula.no>.
8771 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
8772 * data/c.m4 (YYPUSH): New.
8773 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
8774 * data/push.c: New file.
8775 * src/getargs.c (push_parser): New var.
8776 * src/getargs.h (push_parser): New declaration.
8777 * src/output.c (prepare): Add macro insertion of `push_flag'.
8778 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
8779 (prologue_declaration): Parse %push-parser.
8780 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
8781 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
8782 list of removed lines from the traces observed.
8783 (AT_CHECK_CALC_LALR): Added push parser tests.
8784
8785 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
8786
8787 * NEWS: Version 2.3a.
8788 * configure.ac (AC_INIT): Likewise.
8789
8790 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
8791 "#define YYSTYPE int" that caused "make maintainer-check" to fail
8792 due to header ordering dependencies. I don't know why the #define
8793 was there.
8794
8795 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
8796 runtime cost when YYDEBUG is not defined, and so that some tests
8797 that used to fail now work. Problem and initial suggestion by
8798 Paolo Bonzini.
8799 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
8800 * data/glr.cc (b4_parser_class_name):
8801 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
8802 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
8803 (yydebug_) [YYDEBUG]: New member.
8804 (yycdebug_): Now defined only if YYDEBUG.
8805 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
8806 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
8807 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
8808 if YYYDEBUG.
8809 (debug_stream, set_debug_stream, debug_level, set_debug_level):
8810 Define only if YYDEBUG.
8811 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
8812 set_debug_level.
8813 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
8814 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
8815 AT_CHECK_CALC_GLR_CC that are working now.
8816
8817 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
8818
8819 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
8820 We don't need them in glr.cc, and glr.c defines them.
8821 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
8822 assumes that defining it to anything is the same as defining
8823 it to 1. Problem reported by Paolo Bonzini.
8824
8825 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
8826
8827 * data/c.m4 (b4_null, b4_case): Define.
8828 * src/output.c (prepare_symbols): Use b4_null.
8829 (user_actions_output): Use b4_case.
8830
8831 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
8832
8833 * data/glr.c (b4_shared_declarations): Put start-header first,
8834 before any #includes that we generate, so that feature-test
8835 macros work. Problem reported by Michael Deutschmann in
8836 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
8837 * data/lalr1.cc: Likewise.
8838 * doc/bison.texinfo (Prologue): Document that feature-test macros
8839 should be defined before any Bison declarations.
8840 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
8841 that depend on location.hh after, not before, Bison decls, since
8842 we now include location.hh after the first user prologue.
8843
8844 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
8845 Sander Brandenburg in
8846 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
8847 Also, fix minor white space and comment issues.
8848 (Prologue): Mention that it's better to define feature-test macros
8849 before Bison declarations. Problem reported by Michael Deutschmann.
8850
8851 * README-cvs: Fix typo: "&" should be "&&". Problem reported
8852 by Jim Meyering.
8853 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
8854 This adjusts to recent gnulib changes.
8855
8856 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
8857
8858 Finish implementation of per-type %destructor/%printer. Discussed
8859 starting at
8860 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
8861 and
8862 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
8863 * NEWS (2.3+): Add a description of this feature to the default
8864 %destructor/%printer description.
8865 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
8866 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
8867 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
8868 list node contains a semantic type.
8869 * src/symtab.c, src/symtab.h: Extend with a table that associates
8870 semantic types with their %destructor's and %printer's.
8871 (semantic_type_from_uniqstr, semantic_type_get,
8872 semantic_type_destructor_set, semantic_type_printer_set): New functions
8873 composing the public interface of that table.
8874 (symbol_destructor_get, symbol_destructor_location_get,
8875 symbol_printer_get, symbol_printer_location_get): If there's no
8876 per-symbol %destructor/%printer, look up the per-type before trying
8877 the default.
8878 * tests/actions.at (Per-type %printer and %destructor): New test case.
8879 * tests/input.at (Default %printer and %destructor redeclared):
8880 Extend to check that multiple occurrences of %symbol-default in a
8881 single %destructor/%printer declaration is an error.
8882 (Per-type %printer and %destructor redeclared, Unused values with
8883 per-type %destructor): New test cases.
8884
8885 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
8886
8887 Require default %destructor/%printer to be declared using
8888 %symbol-default instead of an empty symbol list, and start working on
8889 new per-type %destructor/%printer. Discussed at
8890 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
8891 * NEWS (2.3+): Add %symbol-default to example.
8892 * bison.texinfo (Freeing Discarded Symbols): Likewise.
8893 (Table of Symbols): Add entry for %symbol-default.
8894 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
8895 (generic_symlist, generic_symlist_item): New nonterminals for creating
8896 a list in which each item is a symbol, semantic type, or
8897 %symbol-default.
8898 (grammar_declaration): Use generic_symlist in %destructor and %printer
8899 declarations instead of symbols.1 or an empty list.
8900 (symbol_declaration, precedence_declaration, symbols.1): Update actions
8901 for changes to symbol_list.
8902 * src/reader.c: Update for changes to symbol_list.
8903 * src/scan-code.l: Likewise.
8904 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
8905 * src/symlist.c, src/symlist.h: Extend such that a list node may
8906 represent a semantic type or a %symbol-default in addition to just an
8907 ordinary symbol. Add switched functions for setting %destructor's and
8908 %printer's.
8909 * tests/actions.at, tests/input.at: Add %symbol-default to all default
8910 %destructor/%printer declarations.
8911
8912 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
8913
8914 Whether the default %destructor/%printer applies to a particular symbol
8915 isn't a question of whether the user *declares* that symbol (in %token,
8916 for example). It's a question of whether the user by any means
8917 *defines* the symbol at all (by simply using a char token, for
8918 example). $end is defined by Bison whereas any other token with token
8919 number 0 is defined by the user. The error token is always defined by
8920 Bison regardless of whether the user declares it with %token, but we
8921 may one day let the user define error as a nonterminal instead.
8922 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
8923 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
8924 the meaning of "user-defined".
8925 * tests/actions.at (Default %printer and %destructor for user-declared
8926 end token): Rename to...
8927 (Default %printer and %destructor for user-defined end token): ...
8928 this.
8929
8930 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
8931 computation of whether to apply the default, don't maintain a list of
8932 every Bison-defined symbol. Instead, just check for a first character
8933 of '$', which a user symbol cannot have, and check for the error token.
8934
8935 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
8936
8937 Don't apply the default %destructor or %printer to the error token,
8938 $undefined, or $accept. This change fits the general rule that the
8939 default %destructor and %printer are only for user-declared symbols,
8940 and it solves several difficulties that are described in the new test
8941 cases listed below.
8942 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
8943 * tests/actions.at (Default %printer and %destructor are not for error
8944 or $undefined, Default %printer and %destructor are not for $accept):
8945 New test cases.
8946
8947 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
8948
8949 Allow %start after the first rule.
8950 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
8951 when parsing the first rule.
8952 (check_and_convert_grammar): Search for it here after all grammar
8953 declarations have been parsed. Skip midrules, which have dummy LHS
8954 nonterminals.
8955 * src/symtab.c (symbol_is_dummy): New function.
8956 * src/symtab.h (symbol_is_dummy): Declare it.
8957 * tests/input.at (%start after first rule): New test.
8958
8959 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
8960
8961 Redo some of the previous commit: add back the ability to use
8962 non-aliased/undeclared string literals since it might be useful to
8963 those declaring %token-table.
8964 * src/reader.c (check_and_convert_grammar): Undo changes in previous
8965 commit: don't worry about complaints from symbols_pack.
8966 * src/symtab.c (symbol_new, symbol_class_set,
8967 symbol_check_alias_consistency): Undo changes in previous commit: count
8968 each string literal as a new symbol and token, assign it a symbol
8969 number, and don't complain about non-aliased string literals.
8970 (symbols_pack): Since symbol_make_alias still does not decrement symbol
8971 and token counts but does still set aliased tokens to the same number,
8972 symbol_pack_processor now leaves empty slots in the symbols array.
8973 Remove those slots.
8974 * tests/regression.at (Undeclared string literal): Remove test case
8975 added in previous commit since non-aliased string literals are allowed
8976 again.
8977 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
8978 remove unnecessary string literal declarations.
8979 * tests/sets.at (Firsts): Likewise.
8980
8981 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
8982
8983 Don't allow an undeclared string literal, but allow a string literal to
8984 be used before its declaration.
8985 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
8986 symbols_pack complained.
8987 * src/symtab.c (symbol_new): Don't count a string literal as a new
8988 symbol.
8989 (symbol_class_set): Don't count a string literal as a new token, and
8990 don't assign it a symbol number since symbol_make_alias does that.
8991 (symbol_make_alias): It's not necessary to decrement the symbol and
8992 token counts anymore. Don't assume that an alias declaration occurs
8993 before any uses of the identifier or string, and thus don't assert that
8994 one of them has the highest symbol number so far.
8995 (symbol_check_alias_consistency): Complain if there's a string literal
8996 that wasn't declared as an alias.
8997 (symbols_pack): Bail if symbol_check_alias_consistency failed since
8998 symbol_pack asserts that every token has been assigned a symbol number
8999 although undeclared string literals have not.
9000 * tests/regression.at (String alias declared after use, Undeclared
9001 string literal): New test cases.
9002 (Characters Escapes, Web2c Actions): Declare string literals as
9003 aliases.
9004 * tests/sets.at (Firsts): Likewise.
9005
9006 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
9007
9008 In the grammar scanner, STRING_FINISH unclosed constructs and return
9009 them to the parser in order to improve error messages.
9010 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
9011 SC_BRACED_CODE, SC_PROLOGUE): Implement.
9012 * tests/input.at (Unclosed constructs): New test case.
9013 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
9014 seen.
9015
9016 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
9017 unused global.
9018
9019 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
9020
9021 Handle string aliases for character tokens correctly.
9022 * src/symtab.c (symbol_user_token_number_set): If the token has an
9023 alias, check and set its alias's user token number instead of its own,
9024 which is set to indicate the alias. Previously, every occurrence of
9025 the character token in the grammar overwrote that alias indicator with
9026 the character code.
9027 * tests/input.at (String aliases for character tokens): New test.
9028
9029 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
9030
9031 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
9032
9033 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
9034
9035 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
9036 to prevent failures when building on older platforms.
9037 Check for autopoint failure.
9038 Set XGETTEXT_OPTIONS to values that check for C format strings,
9039 so that translators are warned about them (this also helps
9040 prevent core dumps).
9041
9042 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
9043 function, since it simplifies our code a bit.
9044
9045 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
9046 rather than -W, so we don't get bogus warnings about sign comparisons.
9047 Add -Wpointer-arith, since that warning is useful (it reports code
9048 that does not conform to C89 and that some compilers reject).
9049 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
9050 since it's no longer needed.
9051
9052 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
9053
9054 Clean up scanners a bit.
9055 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
9056 definitions so gcc won't warn when obstack_for_string is unused.
9057 * src/scan-code.l: config.h and system.h are already #include'd by
9058 scan-code-c.c, so get rid of them here.
9059 * src/scan-gram.l: Likewise.
9060 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
9061 definitions rather than duplicating the rest of it.
9062 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
9063
9064 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
9065
9066 Suppress signed/unsigned comparison warnings for yycheck.
9067 * data/c.m4 (b4_safest_int_type): New macro.
9068 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
9069 a signed int type, cast it to b4_safest_int_type first.
9070 * data/yacc.c: Likewise.
9071 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
9072 also overwritten.
9073
9074 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
9075
9076 * doc/bison.texinfo: Fix some typos.
9077
9078 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
9079
9080 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
9081 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
9082
9083 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
9084 the latest gnulib does this a different way.
9085 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
9086 translation was patched, so stop omitting it.
9087
9088 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
9089
9090 Enable declaration of default %printer/%destructor. Make the parser
9091 use these for all user-declared grammar symbols for which the user does
9092 not declare a specific %printer/%destructor. Thus, the parser uses it
9093 for token 0 if the user declares it but not if Bison generates it as
9094 $end. Discussed starting at
9095 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
9096 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
9097 and
9098 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
9099 * NEWS (2.3+): Mention.
9100 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
9101 declare a %destructor for a mid-rule's semantic value. It's just
9102 impossible to declare one specific to it.
9103 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
9104 code. Describe default %destructor form.
9105 * src/parse-gram.y (grammar_declaration): Parse default
9106 %printer/%destructor declarations.
9107 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
9108 and symbol_destructor_location_get rather than accessing the destructor
9109 and destructor_location members of struct symbol.
9110 (symbol_printers_output): Likewise but for %printer's.
9111 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
9112 again.
9113 * src/symtab.c (default_destructor, default_destructor_location,
9114 default_printer, default_printer_location): New static global
9115 variables to record the default %destructor and %printer.
9116 (symbol_destructor_get, symbol_destructor_location_get,
9117 symbol_printer_get, symbol_printer_location_get): New functions to
9118 compute the appropriate %destructor and %printer for a symbol.
9119 (default_destructor_set, default_printer_set): New functions to set the
9120 default %destructor and %printer.
9121 * src/symtab.h: Prototype all those new functions.
9122 * tests/actions.at (Default %printer and %destructor): New test to
9123 check that the right %printer and %destructor are called, that they're
9124 not called for $end, and that $$ and @$ work correctly.
9125 (Default %printer and %destructor for user-declared end token): New
9126 test to check that the default %printer and %destructor are called for
9127 a user-declared end token.
9128 * tests/input.at (Default %printer and %destructor redeclared, Unused
9129 values with default %destructor): New tests to check related grammar
9130 warnings and errors.
9131
9132 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
9133
9134 Clean up handling of %destructor for the end token (token 0).
9135 Discussed starting at
9136 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
9137 and
9138 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
9139
9140 Make the skeletons consistent in how they pop the end token and invoke
9141 its %destructor.
9142 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
9143 state, which has token number 0, since this would invoke the
9144 %destructor for the end token.
9145 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
9146 until after shifting the end token, or else it won't be popped.
9147 * data/yacc.c (yyparse): Likewise.
9148
9149 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
9150 it's the end token. Upon termination, destroy an unshifted lookahead
9151 even when it's the end token.
9152 * data/lalr1.cc (yy::parser::parse): Likewise.
9153 * data/yacc.c (yyparse): Likewise.
9154
9155 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
9156 value warnings for the end token when the user gives the end token a
9157 %destructor.
9158
9159 * tests/actions.at (Printers and Destructors): Test all the above.
9160
9161 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
9162
9163 Update to latest gnulib and gettext versions.
9164 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
9165 Add fopen-safer.
9166 (gnulib_files): Add m4/warning.m4. Don't worry about files
9167 overwritten by autopoint.
9168 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
9169 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
9170 rejects them.
9171 Don't use autoreconf; instead, invoke autopoint etc. by hand,
9172 so that we can remove the intl files at a better time.
9173 (intl_files_to_remove): Remove aclocal.m4, since it gets
9174 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
9175 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
9176 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
9177 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
9178 Remove datarootdir hack; no longer needed.
9179 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
9180 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
9181 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
9182 strdup.h.
9183 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
9184 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
9185
9186 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
9187
9188 * bootstrap: Adjust to today's change to gnulib-tool by invoking
9189 it with --assume-autoconf='latest-stable'.
9190
9191 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
9192
9193 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
9194 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
9195 YYSTYPE' and `{'.
9196 * src/muscle_tab.h (muscle_grow): Replace the header comments with
9197 those from muscle_tab.c since the old ones are misleading.
9198
9199 2006-07-13 Akim Demaille <akim@epita.fr>
9200
9201 Support %define "KEY" {VALUE}.
9202 * src/scan-code.h, src/scan-code.l (translate_action)
9203 (translate_rule_action, translate_symbol_action, translate_code):
9204 Return char *, not const char *.
9205 * src/parse-gram.y (declaration): Rename as...
9206 (prologue_declaration): this.
9207 (string_content): Remove this nonterminal, use STRING.
9208 (braceless, content, content.opt): New nonterminal.
9209 Use them.
9210 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
9211 as value.
9212 * src/scan-gram.l (getargs.h): Don't include it.
9213
9214 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
9215
9216 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
9217 rather than a for-loop that declares a local bool variable. This
9218 should work around a compatibility problem with a Cray x1e C++
9219 compiler reported by Hung Nguyen in
9220 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
9221 The for-loop was introduced in the 2004-11-17 change but I don't
9222 know why it was needed.
9223
9224 2006-07-12 Akim Demaille <akim@epita.fr>
9225
9226 * data/c.m4: Comment changes.
9227
9228 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
9229
9230 * src/complain.c (error_message, ERROR_MESSAGE): New.
9231 To factor...
9232 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
9233 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
9234
9235 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
9236
9237 * NEWS: Instead of %union, you can define and use your own union type
9238 YYSTYPE if your grammar contains at least one <type> tag.
9239 Your YYSTYPE need not be a macro; it can be a typedef.
9240 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
9241 (Union Decl, Decl Summary): Document this.
9242 * data/glr.c (YYSTYPE): Implement this.
9243 * data/glr.cc (YYSTYPE): Likewise.
9244 * data/lalr1.cc (YYSTYPE): Likewise.
9245 * data/yacc.c (YYSTYPE): Likewise.
9246 * src/output.c (prepare): Output tag_seen_flag.
9247 * src/parse-gram.y (declaration, grammar_declaration):
9248 Use 'union_seen' rather than 'typed' to determine whether
9249 %union has been seen, since grammars can now be typed without
9250 %union.
9251 (symbol_declaration, type.opt, symbol_def):
9252 Keep track of whether a tag has been seen.
9253 * src/reader.c (union_seen, tag_seen): New vars.
9254 (typed): remove.
9255 * src/reader.h (union_seen, tag_seen, typed): Likewise.
9256 * src/scan-code.l (untyped_var_seen): New variable.
9257 (handle_action_dollar): Adjust to above changes.
9258 (handle_action_dollar, handle_action_at):
9259 Improve overflow checking for outlandish numbers.
9260 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
9261 avoid new diagnostics generated by above changes.
9262 * tests/regression.at (YYSTYPE typedef): Add test to check
9263 for type tags without %union.
9264
9265 * src/symlist.c (symbol_list_length): Return int, not unsigned
9266 int, since callers expect int. This may need to get revisited
9267 once we have proper integer overflow checking.
9268
9269 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
9270 object is now static.
9271
9272 * src/getargs.c (flags_argmatch): Return void, not int,
9273 to pacify ./configure --enable-gcc-warnings.
9274
9275 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
9276 since last_string is already defined to FLEX_PREFIX (last_string).
9277
9278 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
9279
9280 Implement --warnings/-W.
9281 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
9282 replaced by...
9283 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
9284 Adjust callers.
9285 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
9286 (warnings_args, warnings_types): New.
9287 (getargs, short_options, long_options): Accept -W/--warnings.
9288 Sort the options by alphabetical order, upper case letter right
9289 before its lower case.
9290
9291 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
9292
9293 Change %merge result type clash warnings to errors. Discussed at
9294 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
9295 * src/reader.c (record_merge_function_type): Use complain_at.
9296 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
9297 declared later): Update test case results.
9298
9299 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
9300
9301 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
9302 to be in alphabetical order.
9303 (trace_args): Spelling fixes.
9304
9305 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
9306
9307 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
9308 so they don't collide with user-defined macros.
9309 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
9310 this was never guaranteed, and now that we're using gnulib stdint,
9311 which defines int_fast16_t to long int, the problem is exposed.
9312
9313 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
9314
9315 * data/c.m4 (b4_basename): Simplify a bit, since we don't
9316 need the full POSIX semantics (and weren't implementing them
9317 anyway).
9318
9319 Adjust to Autoconf 2.60 and today's gnulib.
9320 * bootstrap (gnulib_modules): Add stdint.
9321 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
9322 no longer copies it.
9323 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
9324 since stdint needs the former and wcwidth (which is now required
9325 by mbswidth) needs the latter.
9326 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
9327 work around a compatibility glitch between gettext 0.14.6 and
9328 Autoconf 2.60.
9329 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
9330 Do not check for uintptr_t, since new stdint module does the right
9331 thing.
9332 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
9333 Add stdint.h, stdint_.h, wcwidth.h.
9334 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
9335 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
9336 stdint.m4, wchar_t.m4, wcwidth.m4.
9337 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
9338 usual order for ../lib/*.h files.
9339 (file_name_split): Use last_component, not base_name, to adjust
9340 to gnulib changes.
9341 * src/parse-gram.h: Include <strverscmp.h> in the usual order
9342 for ../lib/*.h files.
9343 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
9344 Define unconditionally, since we now assume the stdint module.
9345 * src/scan-skel.l: Include <dirname.h>.
9346 (BASE_QPUTS): Use last_component, not base_name.
9347 * src/system.h: Include <unlocked-io.h> in the usual order
9348 for ../lib/*.h files. Include <stdint.h> unconditionally,
9349 since we now use the stdint module.
9350 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
9351 HAVE_UINTPTR_T, since we now use the stdint module.
9352 (base_name): Remove decl, since files now include <dirname.h>
9353 to get the decl.
9354
9355 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
9356
9357 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
9358 New, default to 1.
9359 * data/yacc.c, data/glr.c, data/location.cc: Use them.
9360 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
9361 default.
9362 * tests/calc.at: Adjust.
9363
9364 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
9365
9366 * data/c.m4 (b4_basename): New.
9367 (b4_syncline): Also output the location of its invocation (from
9368 the skeleton).
9369 (b4_user_action, b4_define_user_action, b4_user_actions)
9370 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
9371 (b4_user_stype): New.
9372 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
9373
9374 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
9375
9376 In the grammar file, the first column is 1 not 0 on the first line as
9377 on every other line.
9378 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
9379 * tests/input.at (Torturing the Scanner): Update output.
9380
9381 * src/scan-gram.l (scanner_cursor): Declare it static.
9382
9383 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
9384
9385 In warnings, say "previous declaration" rather than "first
9386 declaration".
9387 * src/symtab.c (redeclaration): Do that here.
9388 * src/reader.c (record_merge_function_type): In the case of a result
9389 type clash, report the previous declaration rather than the very first
9390 one in the grammar file.
9391 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
9392 declared later): Add a third declaration to check this behavior.
9393 * tests/input.at (Incompatible Aliases): Update output.
9394
9395 2006-06-27 Akim Demaille <akim@epita.fr>
9396
9397 * doc/Doxyfile.in: New.
9398 * doc/Makefile.am: Use it.
9399 * src/lalr.h, src/symtab.h: Initial doxygenation.
9400
9401 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
9402
9403 Don't miss %merge result type warnings just because the LHS types are
9404 declared after the %merge. This continues the effort of the previous
9405 patch.
9406 * src/reader.c (get_merge_function): Don't set the merger type yet.
9407 (record_merge_function_type): New function for setting the merger type
9408 and checking for clashes.
9409 (grammar_current_rule_merge_set): Set the location of the %merge for
9410 the current rule.
9411 (packgram): Invoke record_merge_function_type for each rule now that
9412 all symbol type declarations have been parsed.
9413 * src/reader.h (merger_list.type_declaration_location): New member
9414 storing the location of the first %merge from which the type for this
9415 merging function was derived.
9416 * src/symlist.h (symbol_list.merger_declaration_location): New member
9417 storing the location of a rule's %merge, if any.
9418 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
9419 declared later): New test to catch the error fixed by the above patch.
9420
9421 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
9422
9423 Get action warnings (grammar_rule_check) right even when symbol
9424 declarations appear after the rules. Discussed at
9425 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
9426 and
9427 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
9428 Don't mistake the type of $$ in a midrule to be that of its parent
9429 rule's $$.
9430 * src/reader.c (grammar_current_rule_end): Don't invoke
9431 grammar_rule_check yet since not all symbol declarations may have been
9432 parsed yet.
9433 (grammar_midrule_action): Likewise.
9434 Don't record whether the midrule's $$ has been used yet since actions
9435 haven't been translated yet.
9436 Record the midrule's parent rule and its RHS index within the parent
9437 rule.
9438 (grammar_current_rule_action_append): Don't translate the action yet
9439 since not all symbol declarations may have been parsed yet and, thus,
9440 warnings about types for $$, $n, @$, and @n can't be reported yet.
9441 (packgram): Translate the action and invoke grammar_rule_check now that
9442 all symbol declarations have been parsed.
9443 * src/scan-code.l (handle_action_dollar): Now that this is invoked
9444 after parsing the entire grammar file, the symbol list here in the case
9445 of a midrule is actually the midrule's empty RHS, so reference its
9446 parent rule's RHS where necessary.
9447 On the other hand, now that you can already know it's a midrule, you
9448 aren't forced to think $$ has the same type as its parent rule's $$.
9449 (handle_action_at): In the case of a midrule, reference the parent rule
9450 where necessary.
9451 * src/symlist.c (symbol_list_new): Initialize new midrule-related
9452 members.
9453 (symbol_list_length): Now that this is invoked after all rules have
9454 been parsed, a NULL symbol (rather than a NULL symbol list node)
9455 terminates a rule. symbol_list_print already does this correctly.
9456 * src/symlist.h (symbol_list.midrule_parent_rule,
9457 symbol_list.midrule_parent_rhs_index): New members so that midrules can
9458 remember their relationships with their parents.
9459 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
9460 fixed by the above patch.
9461 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
9462 implementing...
9463 (Unused values): ... this old test case and...
9464 (Unused values before symbol declarations): ... this new test case.
9465 This one is the same as `Unused values' except that all symbol
9466 declarations appear after the rules in order to catch the rest of the
9467 errors fixed by the above patch.
9468
9469 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
9470
9471 More cleanup.
9472 * src/reader.c (current_rule): Declare it static since it's no longer
9473 used outside this file.
9474 (grammar_current_rule_action_append): Remove redundant arguments from
9475 translate_rule_action invocation.
9476 * src/reader.h (current_rule): Remove this unused extern.
9477 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
9478 * src/scan-code.l (translate_rule_action): Likewise.
9479
9480 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
9481
9482 Clean up yesterday's patch.
9483 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
9484 to...
9485 * src/reader.c (grammar_current_rule_action_append): ... here for
9486 consistency with grammar_current_rule_symbol_append.
9487 * tests/regression.at (Braced code in declaration in rules section):
9488 Make yyerror and yylex static as usual.
9489
9490 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
9491
9492 Fix bug that mistakes braced code in a declaration in the rules section
9493 to be a rule action. Mentioned at
9494 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
9495 * src/scan-gram.l: Move midrule action detection from the start of the
9496 scanning of any braced code to...
9497 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
9498 action. For readability, use $2 and @2 rather than the equivalent
9499 global variables.
9500 * tests/regression.at (Braced code in declaration in rules section):
9501 New test to catch the error fixed by the above patch.
9502
9503 Work on code readability some.
9504 * src/scan-code.l (current_rule): Get rid of this misleading and
9505 redundant declaration: it's actually extern'ed in reader.h.
9506 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
9507 translate_action): Add a rule argument and use it instead of the global
9508 current_rule.
9509 (translate_rule_action): This already receives current_rule through an
9510 argument, so pass it on to translate_action instead of assigning
9511 current_rule to current_rule.
9512 (translate_symbol_action, translate_code): Pass rule = NULL to
9513 translate_action.
9514
9515 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
9516
9517 Rename %before-definitions to %start-header and %after-definitions to
9518 %end-header. Don't use these declarations to separate pre-prologue
9519 blocks from post-prologue blocks. Add new order-independent
9520 declarations %before-header and %after-header as alternatives to the
9521 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
9522 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
9523 * NEWS (2.3+): Update for these changes.
9524 * data/glr.c (b4_before_definitions): Update to...
9525 (b4_start_header): ... this.
9526 (b4_after_definitions): Update to...
9527 (b4_end_header): ... this.
9528 * data/glr.cc: Likewise.
9529 * data/lalr1.cc: Likewise.
9530 * data/yacc.c: Likewise.
9531 * doc/bison.texinfo (The prologue): Update names, and replace remaining
9532 prologue blocks with %*-header declarations.
9533 (Calc++ Parser): Likewise.
9534 (Decl Summary): Update names.
9535 (Table of Symbols): Update description.
9536 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
9537 (PERCENT_END_HEADER): ... this.
9538 (PERCENT_BEFORE_DEFINITIONS): Update to...
9539 (PERCENT_START_HEADER): ... this.
9540 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
9541 (declaration): Update token names and m4 macro names.
9542 When parsing %end-header and %start-header, invoke translate_code
9543 before muscle_code_grow, and no longer set global booleans to remember
9544 whether these declarations have been seen.
9545 Parse new %after-header and %before-header.
9546 * src/reader.c (before_definitions, after_definitions): Remove.
9547 (prologue_augment): Accept a new bool argument to specify whether to
9548 augment the pre-prologue or post-prologue.
9549 * src/reader.h (before_definitions, after_definitions): Remove these
9550 extern's.
9551 (prologue_augment): Add new bool argument.
9552 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
9553 (PERCENT_END_HEADER): ... this.
9554 (PERCENT_BEFORE_DEFINITIONS): Update to...
9555 (PERCENT_START_HEADER): ... this.
9556 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
9557 * tests/actions.at (Printers and Destructors): Update names.
9558
9559 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
9560
9561 Add comparison operators for C++ location classes. Discussed at
9562 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
9563 * data/c++.m4 (b4_define_location_comparison): New boolean %define
9564 declaration indicating whether filename_type has an operator==. If
9565 filename_type is `std::string', it defaults to `1', `0' otherwise.
9566 * data/location.cc: Iff b4_define_location_comparison is `1', add
9567 operator== and operator!= for class position and for class location.
9568
9569 Some minor fixes.
9570 * src/scan-action.l: Remove unused file.
9571 * src/symtab.c (symbol_printer_set): Use printer_location not
9572 destructor_location.
9573 * src/symtab.h (struct symbol): Replace incorrect source comment for
9574 printer members.
9575 * tests/input.at (Incompatible Aliases): Update output with correct
9576 printer location.
9577
9578 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
9579
9580 Don't put the pre-prologue in the header file. For the yacc.c code
9581 file and the glr.c header and code files, move the pre-prologue before
9582 the token definitions. Add new %before-definitions and
9583 %after-definitions to declare code that will go in both the header file
9584 and code file. Discussed at
9585 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
9586 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
9587 and
9588 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
9589 * NEWS (2.3+): Describe these changes.
9590 * data/glr.c (b4_pre_prologue): Move from within to before...
9591 (b4_shared_declarations): ... this.
9592 Add new b4_before_definitions before b4_token_enums.
9593 Add new b4_after_definitions at the end.
9594 * data/glr.cc (b4_pre_prologue): Replace with...
9595 (b4_before_definitions): ... this in the header file.
9596 (b4_after_definitions): New near the end of the header file.
9597 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
9598 code file right before including the header file.
9599 (b4_before_definitions): New in the previous position of
9600 b4_pre_prologue in the header file.
9601 (b4_after_definitions): New near the end of the header file.
9602 * data/yacc.c: Clean up some m4 quoting especially in the header file.
9603 (b4_token_enums_defines): In the code file, move to right before
9604 YYSTYPE for consistency with the header file.
9605 (b4_before_definitions): New right before b4_token_enums_defines in
9606 both the header and code file.
9607 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
9608 header and code file.
9609 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
9610 of prologues for %union dependencies.
9611 (Decl Summary): In %defines description, mention the effect of
9612 %before-definitions and %after-definitions on the header file.
9613 (Calc++ Parser): Forward declare driver in a %before-definitions rather
9614 than in the pre-prologue so that make check succeeds.
9615 (Table of Symbols): Add entries for %before-definitions and
9616 %after-definitions.
9617 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
9618 %before-definitions.
9619 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
9620 (declaration): Parse those declarations and append to
9621 b4_before_definitions and b4_after_definitions, respectively.
9622 * src/reader.c (before_definitions, after_definitions): New bools to
9623 track whether those declarations have been seen.
9624 (prologue_augment): Add to the post-prologue if %union,
9625 %before-definitions, or %after-definitions has been seen.
9626 * src/reader.h (before_definitions, after_definitions): New extern's.
9627 * src/scan-gram.l: Scan the new declarations.
9628 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
9629 prologue block in a %before-definitions or a %after-definitions based
9630 on whether the %union is declared.
9631 * tests/regression.at (Early token definitions with --yacc, Early token
9632 definitions without --yacc): Move tests for token definitions into the
9633 post-prologue since token names are no longer defined in the
9634 pre-prologue.
9635
9636 2006-06-20 Akim Demaille <akim@epita.fr>
9637
9638 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
9639 (symbol_get): Use it.
9640 * src/parse-gram.y: Use it.
9641
9642 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
9643
9644 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
9645 build succeeds when configured with --enable-gcc-warnings.
9646
9647 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
9648
9649 * src/parse-gram.y (char_name): New function.
9650 (CHAR, STRING, string_content): For %printer, properly escape.
9651 (ID): Prefer fputs to fprintf.
9652 (id): Reindent to be consistent with other rules.
9653 Properly quote char.
9654
9655 The Translation Project changed its way of publishing translations
9656 to maintainers. I haven't received any responses to my request
9657 for supporting the old way, or for documenting the new way. I
9658 have modified 'bootstrap' to use screen scraping
9659 (in this case, HTML scraping). This is unreliable and inelegant,
9660 but I don't see any better way. Yuck.
9661 * bootstrap (TP_URL, WGET_COMMAND): New vars.
9662 (get_translations): New function, which uses HTML scraping to
9663 deduce locations of latest translations.
9664 Use this function to grab both bison and bison-runtime .po files.
9665 Don't bother priming the pump for the runtime-po domain any more,
9666 as it's now translated better than bison is.
9667
9668 2006-06-19 Akim Demaille <akim@epita.fr>
9669
9670 * src/scan-gram.l: No longer "parse" things after `%union' until
9671 `{'. Rather, return a single "%union" token.
9672 No longer make symbols: return strings, and leave the conversion
9673 to symbols to the parser.
9674 (SC_PRE_CODE, token_type): Remove.
9675 * src/parse-gram.y (%union): New field `character'.
9676 Sort tokens.
9677 (CHAR): New token.
9678 (ID, ID_COLON): Now that the scanner no longer makes them
9679 identifiers, adjust all uses to invoke symbol_get.
9680 (id_colon): New, wraps the conversion from string to symbol.
9681 (%union): Accept a possible union_name.
9682 (symbol): Now can be a char.
9683 * data/c.m4 (b4_union_name): Leave a default value.
9684 * data/glr.c, data/yacc.c: Use it.
9685
9686 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
9687
9688 For associating token numbers with token names for "yacc.c", don't use
9689 #define statements unless `--yacc' is specified; always use enum
9690 yytokentype. Most important discussions start at:
9691 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
9692 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
9693 and
9694 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
9695 * NEWS (2.3+): Mention.
9696 * data/c.m4 (b4_yacc_if): New.
9697 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
9698 token #define's.
9699 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
9700 on token name definitions.
9701 * src/getargs.c (usage): Capitalize `Yacc' in English.
9702 * src/output.c (prepare): Define b4_yacc_flag.
9703 * tests/regression.at (Early token definitions): Test that tokens names
9704 are defined before the pre-prologue not just before the post-prologue.
9705 Remove this test case and copy to...
9706 (Early token definitions with --yacc): ... this to test #define's.
9707 (Early token definitions without --yacc): ... and this to test enums.
9708
9709 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
9710
9711 * NEWS: Reword the post-2.3 change to not be so optimistic about
9712 removing the old "look-ahead" spelling.
9713 Update previous look-ahead/lookahead change reports.
9714 * REFERENCES: look-ahead -> lookahead (since that's
9715 what he actually wrote).
9716 * doc/refcard.tex: look ahead -> lookahead,
9717 look-ahead -> lookahead
9718
9719 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
9720
9721 For consistency, use `lookahead' instead of `look-ahead' or
9722 `look_ahead'. Discussed starting at
9723 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
9724 and then at
9725 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
9726 * NEWS: For the next release, note the change to `--report'.
9727 * TODO, doc/bison.1: Update English.
9728 * doc/bison.texinfo: Update English.
9729 (Understanding Your Parser, Bison Options): Document as
9730 `--report=lookahead' rather than `--report=look-ahead'.
9731 * src/conflicts.c: Update English in comments.
9732 (lookahead_set): Rename from look_ahead_set.
9733 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
9734 (resolve_sr_conflict): Rename local look_ahead_tokens to
9735 lookahead_tokens, and update other uses.
9736 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
9737 count_rr_conflicts, conflicts_free): Update uses.
9738 * src/getargs.c (report_args): Move "lookahead" before alternate
9739 spellings.
9740 (report_types): Update uses.
9741 (usage): For `--report' usage description, state `lookahead' spelling
9742 rather than `look-ahead'.
9743 * src/getargs.h (report.report_lookahead_tokens): Rename from
9744 report_look_ahead_tokens.
9745 * src/lalr.c: Update English in comments.
9746 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
9747 (state_lookahead_tokens_count): Rename from
9748 state_look_ahead_tokens_count.
9749 Rename local n_look_ahead_tokens to n_lookahead_tokens.
9750 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
9751 Rename local n_look_ahead_tokens to n_lookahead_tokens.
9752 Update other uses.
9753 Update English in output.
9754 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
9755 * src/print.c: Update English in comments.
9756 (lookahead_set): Rename from look_ahead_set.
9757 (print_reduction): Rename argument lookahead_token from
9758 look_ahead_token.
9759 (print_core, state_default_rule, print_reductions, print_results):
9760 Update uses.
9761 * src/print_graph.c: Update English in comments.
9762 (print_core): Update uses.
9763 * src/state.c: Update English in comments.
9764 (reductions_new): Update uses.
9765 (state_rule_lookahead_tokens_print): Rename from
9766 state_rule_look_ahead_tokens_print, and update other uses.
9767 * src/state.h: Update English in comments.
9768 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
9769 (state_rule_lookahead_tokens_print): Rename from
9770 state_rule_look_ahead_tokens_print.
9771 * src/tables.c: Update English in comments.
9772 (conflict_row, action_row): Update uses.
9773 * tests/glr-regression.at
9774 (Incorrect lookahead during deterministic GLR,
9775 Incorrect lookahead during nondeterministic GLR): Rename
9776 print_look_ahead to print_lookahead.
9777 * tests/torture.at: Update English in comments.
9778 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
9779 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
9780 (Many lookahead tokens): Update uses.
9781 * data/glr.c: Update English in comments.
9782 * lalr1.cc: Likewise.
9783 * yacc.c: Likewise.
9784 * src/conflicts.h: Likewise.
9785 * src/lalr.h: Likewise.
9786 * src/main.c: Likewise.
9787 * src/output.c: Likewise.
9788 * src/parse-gram.c: Likewise.
9789 * src/tables.h: Likewise.
9790 * tests/calc.at: Likewise.
9791
9792 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
9793
9794 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
9795
9796 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
9797
9798 * TODO: Add request from Nelson H. F. Beebe to be able to install
9799 Bison without installing the yacc script.
9800
9801 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
9802
9803 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
9804 and yytext if they're already #define'd.
9805 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
9806 * src/scan-code-c.c: ... here.
9807 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
9808 <config.h>.
9809
9810 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
9811
9812 Get Bison to build again when configured with --enable-gcc-warnings.
9813 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
9814 missing #include's.
9815 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
9816 loc argument as it shadows a global.
9817 * src/scan-gram.l: Remove stray comma that prevents boundary_set
9818 invocation.
9819
9820 * src/.cvsignore: Add scan-code.c.
9821
9822 2006-06-07 Akim Demaille <akim@epita.fr>
9823
9824 * src/scan-gram.l: Move the "add a trailing ; to actions" code
9825 to...
9826 * src/scan-code.l: here.
9827 * tests/input.at (Torturing the Scanner): Fix another location
9828 error.
9829
9830 2006-06-07 Akim Demaille <akim@epita.fr>
9831
9832 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
9833
9834 2006-06-06 Akim Demaille <akim@epita.fr>
9835
9836 Extract the parsing of user actions from the grammar scanner.
9837 As a consequence, the relation between the grammar scanner and
9838 parser is much simpler. We can also split "composite tokens" back
9839 into simple tokens.
9840 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
9841 * src/scan-gram.l (add_column_width, adjust_location): Move to and
9842 rename as...
9843 * src/location.h, src/location.c (add_column_width)
9844 (location_compute): these.
9845 Fix the column count: the initial column is 0.
9846 (location_print): Be robust to ending column being 0.
9847 * src/location.h (boundary_set): New.
9848 * src/main.c: Adjust to scanner_free being renamed as
9849 gram_scanner_free.
9850 * src/output.c: Include scan-code.h.
9851 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
9852 Use boundary_set.
9853 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
9854 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
9855 which is now, again, a separate token.
9856 Adjust all dependencies.
9857 Whereever actions with $ and @ are used, use translate_code.
9858 (action): Remove this nonterminal which is now useless.
9859 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
9860 (grammar_current_rule_action_append): Use translate_code.
9861 (packgram): Bound check ruleno, itemno, and rule_length.
9862 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
9863 (last_string, last_braced_code_loc, max_left_semantic_context)
9864 (scanner_initialize, scanner_free, scanner_last_string_free)
9865 (gram_out, gram_lineno, YY_DECL_): Move to...
9866 * src/scan-gram.h: this new file.
9867 (YY_DECL): Rename as...
9868 (GRAM_DECL): this.
9869 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
9870 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
9871 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
9872 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
9873 Move these declarations, and...
9874 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
9875 these to...
9876 * src/flex-scanner.h: this new file.
9877 * src/scan-gram.l (rule_length, rule_length_overflow)
9878 (increment_rule_length): Remove.
9879 (last_braced_code_loc): Rename as...
9880 (gram_last_braced_code_loc): this.
9881 Adjust to the changes of the parser.
9882 Move all the handling of $ and @ into...
9883 * src/scan-code.l: here.
9884 * src/scan-gram.l (handle_dollar, handle_at): Remove.
9885 (handle_action_dollar, handle_action_at): Move to...
9886 * src/scan-code.l: here.
9887 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
9888 scan-code.h, scan-code-c.c, scan-gram.h.
9889 (EXTRA_bison_SOURCES): Add scan-code.l.
9890 (BUILT_SOURCES): Add scan-code.c.
9891 (yacc): Be robust to white spaces.
9892
9893 * tests/conflicts.at, tests/input.at, tests/reduce.at,
9894 * tests/regression.at: Adjust the column numbers.
9895 * tests/regression.at: Adjust the error message.
9896
9897 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
9898
9899 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
9900 Use Akim's wording from
9901 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
9902
9903 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
9904
9905 Between Bison releases, manually append `+' to the previous Bison
9906 release number, and use that as a signal to automatically print the
9907 ChangeLog's CVS Id keyword from --version. Discussed starting at
9908 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
9909 * ChangeLog: Add Id header.
9910 * configure.ac (AC_INIT): Append `+' to `2.3'.
9911 * src/.cvsignore: Add revision.c.
9912 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
9913 (BUILT_SOURCES): Add revision.c.
9914 (revision.c): New target rule. This file defines a new global variable
9915 named revision. It initializes it with either the Id from ChangeLog
9916 or, if VERSION doesn't contain `+', with the empty string.
9917 * src/getargs.c (version): Print the value of revision.
9918 * src/revision.h: Extern revision.
9919
9920 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
9921
9922 * NEWS: Version 2.3.
9923 * configure.ac (AC_INIT): Likewise.
9924
9925 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
9926
9927 * data/glr.c (YYRECOVERING): Define to be a function-like macro
9928 with no arguments, not as an object-like macro. This is for
9929 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
9930 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
9931 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
9932 Document this.
9933
9934 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
9935
9936 * src/getargs.c (usage): Back out yesterday's modification of the
9937 --help output so that we don't have to wait for translation before
9938 releasing 2.3.
9939
9940 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
9941
9942 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
9943 Problem reported by Akim Demaille.
9944
9945 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
9946
9947 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
9948
9949 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
9950
9951 * data/yacc.c (yy_reduce_print): Omit trailing white space in
9952 generated source code. Problem reported by Frans Englich in
9953 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
9954
9955 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
9956
9957 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
9958 shell, not within 'make', so that 'make' by an ordinary builder
9959 (using GNU make) does not worry about configuring gzip. This also
9960 works around a bug reported independently by Keith Thompson and by
9961 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
9962 stderr rather than stdout, messing up the build logs.
9963
9964 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
9965
9966 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
9967 to make sure that YYID will never be unused. This fixes a 'make
9968 maintainer-check' failure caused by the recent changes to the 'Trivial
9969 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
9970 not used.
9971 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
9972
9973 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
9974
9975 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
9976 state before an empty RHS is always resolved here. Only the location
9977 of that state is guaranteed to be resolved, and that's enough. This
9978 fixes the remaining bug reported by Derek M. Jones in
9979 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
9980 * tests/glr-regression.at (Uninitialized location when reporting
9981 ambiguity): Test the above case.
9982 Also, the embedded comments in this test case claim it checks the case
9983 of an empty RHS that has inherited the initial location. However, the
9984 corresponding LHS was already resolved, so yyresolveLocations didn't
9985 actually have reason to modify it. Fix this by forcing
9986 nondeterministic operation at the beginning of the parse.
9987
9988 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
9989
9990 * data/c.m4 (b4_yy_symbol_print_generate):
9991 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
9992 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
9993 of the bugs reported today by Derek M Jones in
9994 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
9995 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
9996 defined to be a type name without parens or brackets.
9997 (Location Type): Similarly for YYLTYPE.
9998 * tests/regression.at (Trivial grammars): Put in a test for this
9999 bug that will be caught by 'make maintainer-check' (though not,
10000 alas, by 'make check' unless your compiler is picky).
10001
10002 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
10003
10004 * NEWS: Version 2.2.
10005 * configure.ac (AC_INIT): Likewise.
10006
10007 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
10008
10009 * data/glr.c (yyreportTree): Make room in yystates for the state
10010 preceding the RHS. This fixes the segmentation fault reported by Derek
10011 M. Jones in
10012 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
10013 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
10014 to the user. Reported for yyreportTree by Derek M. Jones later in the
10015 same thread.
10016 * THANKS: Add Derek M. Jones.
10017 Update my email address.
10018 Fix typo in Steve Murphy's name.
10019
10020 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
10021
10022 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
10023 checking against YYLAST that caused the parser to miss a potential
10024 alternative in its diagnostic.
10025 Problem reported by Maria Jose Moron Fernandez in
10026 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
10027 * data/lalr1.cc (yysyntax_error_): Likewise.
10028 * data/yacc.c (yysyntax_error): Likewise.
10029 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
10030 tokens, in case we run into an older C compiler.
10031 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
10032 Use them to check for the off-by-one error fixed above.
10033
10034 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
10035 YYSIZE_T, not size_t.
10036 * tests/regression.at (Trivial grammars): New test, to catch
10037 the error fixed by the above patch.
10038
10039 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
10040
10041 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
10042 scheme.
10043 Reported by Steve Murphy.
10044
10045 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
10046
10047 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
10048 * data/glr.cc: b4_location_flag is now b4_locations_flag.
10049
10050 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
10051
10052 Implement --trace=m4.
10053 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
10054 * src/output.c (output_skeleton): When set, pass -dV to m4.
10055
10056 Factor the handling of flags in m4.
10057 * src/output.c (prepare): Rename the muscle names debug, defines,
10058 error_verbose to debug_flag, defines_flag, error_verbose_flag.
10059 * data/c.m4: Adjust.
10060 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
10061 Use b4_define_flag_if to define other b4_FLAG_if macros.
10062 (b4_location_if): As a consequence, rename as...
10063 (b4_locations_if): this, for consistency.
10064 Adjust all the skeletons.
10065
10066 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
10067
10068 * etc/bench.pm: Shorten bench names.
10069
10070 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
10071
10072 * src/output.h, src/output.c (error_verbose): Move to...
10073 * src/getargs.h, src/getargs.c: here.
10074 Sort the flags.
10075 Adjust dependencies.
10076
10077 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
10078
10079 * data/c.m4 (b4_copyright): Put the special exception for Bison
10080 skeletons here, so we don't have to put it in each skeleton. All
10081 uses changed. Suggested by Akim Demaille. Also, wrap the
10082 copyright notice, in case it is longer than 80 columns. Replace
10083 comma by newline after title.
10084
10085 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
10086
10087 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
10088 incompatibility, not a bug. Mention that it wasn't fixed as of
10089 flex 2.5.33.
10090
10091 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
10092
10093 * examples/extexi: Enforce the precedence of concatenation over
10094 >>.
10095 Reported by Tommy Nordgren.
10096
10097 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
10098
10099 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
10100 with the member "token".
10101 Reported by Martin Nylin.
10102
10103 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
10104
10105 * data/glr.c: Switch to Bison 2.2 special-exception language in
10106 the copyright notice. Use more-regular format for titles and
10107 copyright notices.
10108 * data/glr.cc: Likewise.
10109 * data/location.cc: Likewise.
10110 * data/yacc.cc: Likewise.
10111 * doc/bison.texinfo (Conditions): Document this.
10112 * NEWS: likewise. Upgrade version to 2.2.
10113
10114 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
10115
10116 * data/glr.cc: Remove dead code.
10117
10118 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
10119
10120 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
10121 that variable and the line breaks the bootstrap. Problem reported
10122 by Juan M. Guerrero.
10123
10124 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
10125
10126 * doc/bison.texinfo (Multiple start-symbols): New.
10127
10128 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
10129
10130 * etc/README, etc/bench.pl: New.
10131
10132 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
10133
10134 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
10135 rule.
10136 Reported by Mickael Labau.
10137 * tests/input.at (Torturing the Scanner): Test it.
10138
10139 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
10140
10141 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
10142 Problem reported by Bob Rossi.
10143
10144 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
10145
10146 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
10147 and didn't really work.
10148 For the index, use @ifnotinfo, not @iftex.
10149 Minor cleanups of spacing and terminology.
10150
10151 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
10152
10153 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
10154 of AT_NAME_PREFIX when %name-prefix is not used.
10155
10156 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
10157
10158 Apply --prefix to C++ skeletons too: they change the namespace.
10159 The test suite already exercize these cases.
10160 * data/c++.m4 (b4_namespace): New.
10161 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
10162 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
10163 * data/yacc.c, data/glr.c: Remove a useless `[]'.
10164 * doc/bison.texinfo: Document it.
10165 (Option Cross Key): Use @multitable in all formats. It looks
10166 nicer, even in TeX outputs.
10167 (Rules): Use the same code whatever the output type is.
10168 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
10169 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
10170 * tests/calc.at: Use it, instead of hard coding `yy'.
10171
10172 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
10173
10174 * TODO: Remove dead items.
10175
10176 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
10177
10178 * doc/FAQ: Remove, merged into...
10179 * doc/bison.texinfo (FAQ): this.
10180 * doc/Makefile.am (EXTRA_DIST): Adjust.
10181
10182 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
10183
10184 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
10185 even if empty.
10186 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
10187 * doc/bison.texinfo (Calc++ Scanner): Use it.
10188
10189 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
10190
10191 Fix two nits reported by twlevo, plus one more that I discovered.
10192
10193 * src/assoc.h (assoc_to_string): Give a name to the arg, as
10194 this is the usual Bison style.
10195 * src/location.h (location_print): Likewise.
10196
10197 * src/reader.h (token_name): Likewise.
10198
10199 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
10200
10201 Fix some nits reported by twlevo.
10202 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
10203 and "POSIX". Use more-modern syntax for URLs. Mention C++
10204 and ask for Java. Don't hardwire OS version numbers. Add
10205 copyright notice.
10206 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
10207 * src/conflicts.c (solved_conflicts_obstack): Now static.
10208
10209 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
10210
10211 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
10212 page. Say "you can use it" not "you may use it" as on the web page;
10213 we're describing capabilities not granting permission.
10214
10215 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
10216
10217 * data/glr.c (yyresolveLocations): Rename local variables to avoid
10218 shadowing warnings. Use usual patter for iterating through RHS.
10219 * tests/glr-regression.at
10220 (Uninitialized location when reporting ambiguity):
10221 Modify yylex so that it uses its argument, rather than trying
10222 to rely on ARGSUSED (which doesn't work for gcc with warnings).
10223 const char -> char const.
10224
10225 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
10226 Don't use tabs inside commands; it messes up 'ps'.
10227 Problem reported by twlevo.
10228
10229 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
10230
10231 * tests/glr-regression.at (Uninitialized location when reporting
10232 ambiguity): New test case.
10233 * data/glr.c (yyresolveLocations): New function, which uses
10234 YYLLOC_DEFAULT.
10235 (yyresolveValue): Invoke yyresolveLocations before reporting an
10236 ambiguity.
10237 * doc/bison.texinfo (Default Action for Locations): Note
10238 YYLLOC_DEFAULT's usage for ambiguity locations.
10239 (GLR Semantic Actions): Cross-reference those notes.
10240
10241 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
10242
10243 * tests/glr-regression.at (Leaked semantic values when reporting
10244 ambiguity): Remove unnecessary union and type declarations.
10245 (Leaked lookahead after nondeterministic parse syntax error): New test
10246 case.
10247 * data/glr.c (yyparse): Check for zero stacks remaining before
10248 attempting to shift the lookahead so that you don't lose it.
10249
10250 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
10251
10252 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
10253 * tests/glr-regression.at (Leaked semantic values when reporting
10254 ambiguity): New test case.
10255 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
10256 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
10257 now unnecessary yystackp parameter.
10258 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
10259 destructors can be called.
10260
10261 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
10262 in existing testcases.
10263
10264 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
10265
10266 Don't leak semantic values for parent RHS when a user action cuts the
10267 parser, and clean up related code a bit.
10268 * tests/glr-regression.at (Leaked merged semantic value if user action
10269 cuts parse): Rename to...
10270 (Leaked semantic values if user action cuts parse): ... this. Add check
10271 for leaked parent RHS values.
10272 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
10273 between an unresolved state (non-empty chain of semantic options) and
10274 an incomplete one (signaled by an empty chain).
10275 (yyresolveStates): Document the interface. Move all manipulation of a
10276 successfully or unsuccessfully resolved yyGLRState to...
10277 (yyresolveValue): ... here so that yyresolveValue always leaves a
10278 yyGLRState with consistent data and thus is easier to understand.
10279 Remove the yyvalp and yylocp parameters since they are always just
10280 taken from the yys parameter. When reporting a discarded merged value
10281 in debugging output, note that it is incompletely merged. Document the
10282 interface.
10283 (yyresolveAction): If resolving any of the RHS states fails, destroy
10284 them all rather than leaking them. Thus, as long as user actions are
10285 written to clean up the RHS correctly, yyresolveAction always cleans up
10286 the RHS of a semantic option. Document the interface.
10287
10288 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
10289
10290 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
10291 led to a segmentation fault in GNU Pascal. Problem reported
10292 by Waldek Hebisch.
10293
10294 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
10295
10296 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
10297 mid-rule action inside a nonterminal symbol in order to declare a
10298 destructor for its semantic value.
10299
10300 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
10301
10302 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
10303 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
10304 __cplusplus && ! defined _STDLIB_H && !
10305 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
10306 defined free))]: Include <stdlib.h> rather than rolling our own
10307 declarations of malloc and free, to avoid problems with
10308 incompatible declarations (using 'throw') C++'s stdlib.h. This
10309 should fix Debian bug 340012
10310 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
10311 reported by Guillaume Melquiond.
10312
10313 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
10314
10315 * NEWS: Clarify symbols versus types in unused-value warnings.
10316
10317 * configure.ac (AC_INIT): Bump version number.
10318
10319 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
10320
10321 * NEWS: Version 2.1a.
10322 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
10323 since C99 requires this.
10324
10325 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
10326
10327 * m4/c-working.m4: New file.
10328 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
10329
10330 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
10331
10332 * Makefile.maint: Merge from coreutils.
10333
10334 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
10335
10336 More portability fixes for problems summarized by Nelson H. F. Beebe.
10337
10338 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
10339 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
10340 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
10341 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
10342 messes up because C++ code is compiled in 32-bit mode but linked
10343 in 64-bit mode.
10344
10345 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
10346
10347 More portability fixes for problems summarized by Nelson H. F. Beebe.
10348
10349 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
10350 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
10351
10352 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
10353 nodist_PROGRAMS, since we don't need to actually compile the
10354 example if we're just doing a plain 'make'. This avoids bothering
10355 the installer unnecessarily about problems due to weird C++
10356 compilers.
10357
10358 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
10359
10360 More portability fixes for problems summarized by Nelson H. F. Beebe.
10361
10362 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
10363 than #include "...", and compile with -I'.'. The old method was
10364 not portable, according to Posix and the C standard, and it does
10365 not work with Sun C 5.7, where previous #line directives affect
10366 the working directory used in later #include "..." directives.
10367
10368 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
10369
10370 Various DJGGP specific issues in /djgpp
10371
10372 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
10373
10374 More portability fixes for problems summarized by Nelson H. F. Beebe.
10375
10376 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
10377 '#include <map>' works and that you can apply ++ to iterators.
10378
10379 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
10380
10381 Work around portability problems summarized by Nelson H. F. Beebe in
10382 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
10383
10384 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
10385 that '#include <string>' works.
10386
10387 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
10388 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
10389 "warning: sorry: semantics of inline function static data `const
10390 unsigned char translate_table[262]' are wrong (you'll wind up with
10391 multiple copies)".
10392
10393 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
10394 or, xor to not_, and_, or_, and xor_, respectively. This works
10395 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
10396 random system header somewhere that includes the equivalent of
10397 <iso646.h>.
10398
10399 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
10400 -E" works; it apparently doesn't work with PathScale EKO Compiler
10401 Suite Version 2.0.
10402
10403 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
10404
10405 During deterministic GLR operation, user actions should be able to
10406 influence the parse by changing yychar. To make this easier to fix and
10407 to make glr.c easier to evolve in general, don't maintain yytoken in
10408 parallel with yychar; just compute yytoken when needed.
10409 * tests/glr-regression.at (Incorrect lookahead during deterministic
10410 GLR): Check that setting yychar in a user action has the intended
10411 effect.
10412 * data/glr.c (yyGLRStack): Remove yytokenp member.
10413 (yyclearin): Don't set *yytokenp.
10414 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
10415 yychar rather than *yytokenp to determine the current lookahead.
10416 Compute yytoken locally when needed.
10417 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
10418 point to.
10419
10420 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
10421 after `--report' documentation.
10422
10423 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
10424
10425 * src/parse-gram.y (grammar_declaration): Location of printer
10426 symbol is @1, not list->location. Bug reported by twlevo.
10427 * tests/input.at (Incompatible Aliases): Adjust to above change.
10428
10429 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
10430
10431 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
10432 all the test at once. This makes the output easier to read in the
10433 normal case.
10434
10435 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
10436 got from <http://bro-ids.org/download.html>. The bug is that
10437 when two actions appeared in succession, the second one was
10438 scanned before the first one was added to the grammar rule
10439 as a midrule action. Bison then output the incorrect warning
10440 "parse.y:905.17-906.36: warning: unused value: $3".
10441 * src/parse-gram.y (BRACED_CODE, action): These are no longer
10442 associated with a value.
10443 (rhs): Don't invoke grammar_current_rule_action_append.
10444 (action): Invoke it here instead.
10445 * src/reader.c (grammar_midrule_action): Now extern.
10446 (grammar_current_rule_action_append): Don't invoke
10447 grammar_midrule_action; that is now the scanner's job.
10448 * src/reader.h (last_string, last_braced_code_loc):
10449 (grammar_midrule_action): New decls.
10450 * src/scan-gram.l (last_string): Now extern, sigh.
10451 (last_braced_code_loc): New extern variable.
10452 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
10453 rule already has an action.
10454 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
10455 * tests/input.at (AT_CHECK_UNUSED_VALUES):
10456 Add some tests to check that the above changes fixed the bug.
10457
10458 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
10459
10460 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
10461 All used changed. Check whether the symbol has a destructor,
10462 not whether it is typed.
10463 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
10464 that the values are still reported as unused. All line numbers
10465 adjusted.
10466
10467 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
10468
10469 Work around a bug in bro 0.8, which underparenthesizes its
10470 definition of YYLLOC_DEFAULT.
10471 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
10472 their arguments.
10473 * data/lalr1.cc: Likewise.
10474 * data/yacc.cc: Likewise.
10475
10476 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
10477
10478 Work around a bug in Pike 7.0, and give the Pike folks a
10479 better way to override the usual int widths.
10480 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
10481 user can override the types.
10482 (short): #undef, to work around a bug in Pike 7.0.
10483 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
10484 (union yyalloc.yyss): Use yytype_int16 rather than short.
10485 All uses changed.
10486 (yysigned_char): Remove.
10487 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
10488 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
10489 * tests/regression.at (Web2c Actions): Adjust to above changes.
10490
10491 * src/reader.c (check_and_convert_grammar): New function.
10492 (reader): Close the input file even if something went wrong during
10493 parsing. Minor file descriptor leak reported by twlevo.
10494
10495 * src/assoc.c (assoc_to_string): Use a default: abort (); case
10496 to pacify gcc -Wswitch-default.
10497 * src/scan-gram.l (adjust_location): Use a default: break; case
10498 to pacify gcc -Wswitch-default.
10499 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
10500 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
10501 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
10502 Move these decls to scan-skel.l, since they don't need to be
10503 visible elsewhere.
10504 * src/scan-skel.l: Accept the above decls.
10505 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
10506 is used.
10507
10508 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
10509
10510 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
10511 since we don't want to insist on a version number at the start
10512 of the changelog every time.
10513 * Makefile.maint: Sync from coreutils a bit better.
10514 (sc_trailing_blank): Renamed from sc_trailing_space.
10515 All uses changed.
10516 (sc_no_if_have_config_h, sc_require_config_h):
10517 (sc_prohibit_assert_without_use): New rules.
10518 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
10519 (sc_dd_max_sym_length): Fix leading spaces in rule.
10520 (sc_system_h_headers): Prefix with @.
10521 (sc_useless_cpp_parens, m4-check): Output line numbers.
10522 (changelog-check): Allow version only in head.
10523 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
10524 satisfy new Makefile.maint rule.
10525 * data/glr.c: Likewise.
10526 * data/glr.cc: Likewise.
10527 * data/lalr1.cc: Likewise.
10528 * data/yacc.c: Likewise.
10529 * lib/ebitsetv.c: Likewise.
10530 * lib/lbitset.c: Likewise.
10531 * lib/subpipe.c: Likewise.
10532 * lib/timevar.c: Likewise.
10533 * src/system.h: Likewise.
10534 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
10535 * djgpp/Makefile.maint: Add copyright notice.
10536 * djgpp/README.in: Likewise.
10537 * djgpp/config.bat: Likewise.
10538 * djgpp/config.site: Likewise.
10539 * djgpp/config_h.sed: Likewise.
10540 * djgpp/djunpack.bat: Likewise.
10541 * djgpp/config.sed: Fix copyright notice to match standard format.
10542 * djgpp/subpipe.h: Likewise.
10543 * lib/bitsetv-print.c: Likewise.
10544 * lib/bitsetv.c: Likewise.
10545 * lib/subpipe.h: Likewise.
10546 * lib/timevar.c: Likewise.
10547 * lib/timevar.h: Likewise.
10548 * djgpp/subpipe.c: Use standard recipe for config.h.
10549 * lib/abitset.c: Likewise.
10550 * lib/bitset.c: Likewise.
10551 * lib/bitset_stats.c: Likewise.
10552 * lib/bitsetv-print.c: Likewise.
10553 * lib/bitsetv.c: Likewise.
10554 * lib/ebitsetv.c: Likewise.
10555 * lib/get-errno.c: Likewise.
10556 * lib/lbitset.c: Likewise.
10557 * lib/subpipe.c: Likewise.
10558 * lib/timevar.c: Likewise.
10559 * lib/vbitset.c: Likewise.
10560 * tests/local.at: Likewise.
10561 * src/scan-gram.l: Don't include verify.h, since system.h does
10562 that for us.
10563 * .x-sc_require_config_h: New file.
10564 * .x-sc_unmarked_diagnostics: New file.
10565
10566 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
10567
10568 Be a bit more systematic about using 'abort'.
10569 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
10570 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
10571 Put 'default: abort ();' before some other case, to satisfy older
10572 pedantic compilers.
10573 * lib/bitset_stats.c (bitset_stats_init): Likewise.
10574 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
10575 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
10576 * src/conflicts.c (resolve_sr_conflict): Likewise.
10577 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
10578 (get_decision_str, get_orientation_str, get_node_alignment_str):
10579 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
10580 (get_linestyle_str, get_arrowstyle_str): Likewise.
10581 * src/conflicts.c (resolve_sr_conflict):
10582 Use a default case rather than one for the one remaining enum
10583 value, to catch invalid enum values as well.
10584 * src/lalr.c (set_goto_map, map_goto):
10585 Prefer "assert (FOO);" to "if (!FOO) abort ();".
10586 * src/nullable.c (nullable_compute, token_definitions_output):
10587 Likewise.
10588 * src/reader.c (packgram, reader): Likewise.
10589 * src/state.c (transitions_to, state_new, state_reduction_find):
10590 Likewise.
10591 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
10592 (symbol_pack): Likewise.
10593 * src/tables.c (conflict_row, pack_vector): Likewise.
10594 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
10595 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
10596 * src/system.h: Don't include <assert.h>.
10597 (assert): New macro.
10598
10599 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
10600 (Destructor Decl, Parser Function, Pure Calling):
10601 Describe rules for braces inside C code more carefully.
10602
10603 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
10604
10605 Fix some porting glitches found by Nelson H. F. Beebe.
10606 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
10607 compilers that don't understand that abort () does not return.
10608 * src/state.c (transitions_to): Likewise.
10609 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
10610 that '#include <cstdlib>' works.
10611 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
10612 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
10613 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
10614 for the benefit of some pre-C99 compilers.
10615
10616 * bootstrap: Undo changes to gnulib files that autoreconf made.
10617
10618 Minor fixups to get 'make maintainer-check' to work.
10619 * configure.ac: Don't use -Wnested-externs, as it's incompatible
10620 with the new verify.h implementation.
10621 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
10622 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
10623 * data/yacc.c (YYUSE): Likewise.
10624 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
10625 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
10626 * src/parse-gram.y (declaration): Don't pass a string constant
10627 to a function that expects char *, since GCC might complain
10628 about the constant value.
10629 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
10630 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
10631 before #defining them.
10632 * tests/glr-regression.at
10633 (Incorrectly initialized location for empty right-hand side in GLR):
10634 In yyerror, use the msg arg.
10635 (Corrupted semantic options if user action cuts parse):
10636 (Incorrect lookahead during deterministic GLR):
10637 (Incorrect lookahead during nondeterministic GLR):
10638 Don't name a local var 'index'; it shadows string.h's 'index'.
10639
10640 2006-01-19 Akim Demaille <akim@epita.fr>
10641
10642 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
10643 location, not just parts of it.
10644
10645 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
10646
10647 * NEWS: Document the fact that multiple %unions are now allowed.
10648 * doc/bison.texinfo (Union Decl): Likewise.
10649 * TODO: This feature is now implemented, so remove it from
10650 the wishlist.
10651
10652 * Makefile.maint: Merge with coreutils Makefile.maint.
10653 (CVS_LIST): Use build-aux version if available.
10654 (VERSION_REGEXP): New macro.
10655 (syntax-check-rules): Add sc_no_if_have_config_h,
10656 sc_prohibit_assert_without_use, sc_require_config_h,
10657 sc_useless_cpp_parens.
10658 (sc_obsolete_symbols): Check for O_NDELAY.
10659 (sc_dd_max_sym_length): Track coreutils.
10660 (sc_unmarked_diagnostics): Look in all files, not just *.c.
10661 (sc_useless_cpp_parens): New rule.
10662 (news-date-check): Look for version or today's date.
10663 (changelog-check): Don't require version number near head.
10664 (copyright-check): Use current year instead of hardwiring 2005.
10665 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
10666 (announcement): Add --gpg-key-ID.
10667
10668 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
10669 with "file system".
10670
10671 Avoid undefined behavior that addressed just before the start of an
10672 array. Problem reported by twlevo.
10673 * src/reader.c (packgram): Prepend a new sentinel before ritem.
10674 * src/lalr.c (build_relations): Rely on new sentinel.
10675 * src/gram.c (gram_free): Adjust to new sentinel.
10676
10677 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
10678
10679 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
10680 yylookaheadNeeds. All uses updated.
10681 (yysplitStack): Rename local yynewLookaheadStatuses to
10682 yynewLookaheadNeeds.
10683 * data/glr-regression.at (Incorrect lookahead during nondeterministic
10684 GLR): In comments, change `lookahead status' to `lookahead need'.
10685
10686 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10687
10688 * data/glr.c (yysplitStack): A little stylistic rewrite.
10689
10690 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10691
10692 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
10693
10694 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
10695
10696 * doc/bison.texinfo: Fix some typos.
10697 (GLR Semantic Actions): New subsection discussing special
10698 considerations because GLR semantic actions might be deferred.
10699 (Actions): Mention look-ahead usage of yylval.
10700 (Actions and Locations): Mention look-ahead usage of yylloc.
10701 (Special Features for Use in Actions): Add YYEOF entry and mention it
10702 in the yychar entry.
10703 In the yychar entry, remove mention of the local yychar case (pure
10704 parser) since this is irrelevant information when writing semantic
10705 actions and since it's already discussed in `Table of Symbols' where
10706 yychar is otherwise described as an external variable.
10707 In the yychar entry, don't call it the `current' look-ahead since it
10708 isn't when semantic actions are deferred.
10709 In the yychar and yyclearin entries, add note about deferred semantic
10710 actions.
10711 Add yylloc and yylval entries discussing look-ahead usage.
10712 (Look-Ahead Tokens): When discussing yychar, don't call it the
10713 `current' look-ahead, and do mention yylval and yylloc.
10714 (Error Recovery): Cross-reference `Action Features' when mentioning
10715 yyclearin.
10716 (Table of Symbols): In the yychar entry, don't call it the `current'
10717 look-ahead.
10718 In the yylloc and yylval entries, mention look-ahead usage.
10719
10720 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
10721
10722 * tests/glr-regression.at: Update copyright year to 2006.
10723
10724 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
10725
10726 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
10727 use during nondeterministic operation to track which stacks have
10728 actually needed the current lookahead.
10729 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
10730 Allocate, deallocate, resize, and otherwise shuffle space for
10731 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
10732 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
10733 appropriately during nondeterministic operation.
10734 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
10735 members to store the current lookahead to be used by the deferred
10736 user action.
10737 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
10738 from which the RHS is taken. Set the lookahead members of the new
10739 yySemanticOption according to the lookahead status for stack yyk.
10740 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
10741 yyaddDeferredAction.
10742 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
10743 members of yySemanticOption before invoking yyuserAction, and then set
10744 them back to their current values afterward.
10745 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
10746 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
10747 * tests/glr-regression.at: Remove `.' from the ends of recent test case
10748 titles for consistency.
10749 (Leaked merged semantic value if user action cuts parse): In order to
10750 suppress lint warnings, use arguments in merge function, and assign
10751 char value < 128 in main.
10752 (Incorrect lookahead during deterministic GLR): New test case.
10753 (Incorrect lookahead during nondeterministic GLR): New test case.
10754
10755 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
10756
10757 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
10758 !yyvaluep as signal that no semantic value is available to print.
10759 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
10760 to print a semantic value.
10761
10762 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
10763
10764 * tests/glr-regression.at: For consistency with my newer test cases,
10765 don't thank myself.
10766
10767 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
10768
10769 * data/glr.c (yyresolveValue): When merging semantic options, if at
10770 least one user action succeeds but a later one cuts the parse, then
10771 destroy the semantic value before returning rather than leaking it.
10772 (yyresolveStates): If a user action cuts the parse and thus
10773 yyresolveValue fails, ignore the (unset) semantic value rather than
10774 corrupting the yyGLRState, and empty the semantic options list since
10775 the user actions should have called all necessary destructors.
10776 Simplify code with YYCHK.
10777 * tests/glr-regression.at (Corrupted semantic options if user action
10778 cuts parse): New test case.
10779 (Undesirable destructors if user action cuts parse): New test case.
10780 Before applying any of this patch, this test case never actually failed
10781 for me... but only because the corrupted semantic options usually
10782 masked this bug.
10783 (Leaked merged semantic value if user action cuts parse): New test
10784 case.
10785
10786 2006-01-05 Akim Demaille <akim@epita.fr>
10787
10788 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
10789
10790 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
10791
10792 * data/c.m4 (b4_c_modern): New macro, with a new provision for
10793 _MSC_VER. Problem reported by Cenzato Marco.
10794 (b4_c_function_def): Use it.
10795 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
10796 b4_c_modern.
10797 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
10798 than rolling our own.
10799
10800 2006-01-04 Akim Demaille <akim@epita.fr>
10801
10802 Also warn about non-used mid-rule values.
10803 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
10804 member.
10805 (symbol_list_new): Adjust.
10806 * src/reader.c (symbol_typed_p): New.
10807 (grammar_rule_check): Use it.
10808 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
10809 Check its rule.
10810 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
10811 Use it.
10812 * tests/actions.at (Exotic Dollars): Adjust.
10813
10814 2006-01-04 Akim Demaille <akim@epita.fr>
10815
10816 * src/reader.c (grammar_midrule_action): If $$ is set in a
10817 mid-rule, move the `used' bit to its lhs.
10818 * tests/input.at (Unused values): New.
10819 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
10820
10821 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
10822
10823 * doc/bison.texinfo (Bison Options): Say more accurately what
10824 --yacc does.
10825 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
10826 about declarations in the grammar when in Yacc mode, as POSIX does
10827 not require a diagnostic when the grammar uses extensions.
10828
10829 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
10830
10831 Warn about dubious constructions like "%token T T".
10832 Reported by twlevo.
10833 * src/symtab.h (struct symbol.declared): New member.
10834 * src/symtab.c (symbol_new): Initialize it to false.
10835 (symbol_class_set): New arg DECLARING, specifying whether
10836 this is a declaration that we want to warn about, if there
10837 is more than one of them. All uses changed.
10838
10839 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
10840 Allow multiple %union directives, whose contents concatenate.
10841 * src/parse-gram.y (grammar_declaration): Likewise.
10842 Use muscle_code_grow, so that we don't need stype_line any more.
10843 All uses changed.
10844
10845 * src/muscle_tab.c (muscle_grow): Fix comment.
10846
10847 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
10848 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
10849 Update copyright year to 2006.
10850
10851 2006-01-03 Akim Demaille <akim@epita.fr>
10852
10853 Have glr.cc pass (some of) the calc.at tests.
10854 * data/glr.cc (b4_parse_param_orig): New.
10855 (b4_parse_param): Improve its definition, and bound it more
10856 clearly in the skeleton.
10857 (b4_epilogue): Append, instead of prepending, in order to keep
10858 #line consistency.
10859 Simplify the generation of auxiliary functions: locations and
10860 purity are mandated.
10861 (b4_global_tokens_and_yystype): Honor it.
10862 * data/location.cc (c++.m4): Don't include it.
10863 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
10864 and AT_SKEL_CC_IF.
10865 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
10866 AT_LALR1_CC_IF.
10867 Be sure to initialize the first position's filename.
10868 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
10869 mandated anyway.
10870 (AT_CHECK_CALC_GLR_CC): New.
10871 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
10872
10873 2006-01-02 Akim Demaille <akim@epita.fr>
10874
10875 * src/output.c (output_skeleton): Don't hard wire the inclusion of
10876 c.m4.
10877 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
10878 * data/glr.cc: Do not include stack.hh.
10879
10880 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
10881
10882 * data/glr.c: Reformat whitespace with tabs.
10883 (b4_lpure_formals): Remove this unused m4 macro.
10884 * tests/cxx-type.at: Reformat whitespace with tabs.
10885 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
10886 since it's a member. Rename type to isNterm for clarity.
10887
10888 2005-12-29 Akim <akim@sulaco.local>
10889
10890 Let glr.cc catch up with symbol_value_print.
10891 * data/glr.cc (b4_yysymprint_generate): Replace by...
10892 (b4_yy_symbol_print_generate): this.
10893 (yy_symbol_print, yy_symbol_value_print): Declare them.
10894
10895 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
10896
10897 * src/location.h (boundary): Note that a line or column equal
10898 to INT_MAX indicates an overflow.
10899 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
10900 (rule_length_overflow, increment_rule_length, add_column_width):
10901 New functions.
10902 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
10903 (<SC_BRACED_CODE>"}"):
10904 Use increment_rule_length rather than incrementing it by hand.
10905 (adjust_location, handle_syncline): Diagnose overflow.
10906 (handle_action_dollar, handle_action_at):
10907 Fix bug with monstrosities like $-2147483648.
10908 Remove now-unnecessary checks.
10909 (scan_integer): Verify assumptions and remove now-unnecessary checks.
10910 (convert_ucn_to_byte): Verify assumptions.
10911 (handle_syncline): New arg LOC. All callers changed.
10912 Don't store through a value derived from char const * pointer.
10913
10914 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
10915 GCC warnings.
10916
10917 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
10918
10919 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
10920 Remove unnecessary forward static decls.
10921
10922 2005-12-27 Akim Demaille <akim@epita.fr>
10923
10924 * src/reader.c (grammar_current_rule_check): Also check that $$
10925 is used.
10926 Take the rule to check as argument, hence rename as...
10927 (grammar_rule_check): this.
10928 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
10929 Rename as...
10930 (grammar_rule_begin, grammar_rule_end): these, for consistency.
10931 (grammar_midrule_action, grammar_symbol_append): Now static.
10932 * tests/torture.at (input): Don't rely on the default action
10933 being always performed.
10934 * tests/calc.at: "Set" $$ even when the action is "cut" with
10935 YYERROR or other.
10936 * tests/actions.at (Exotic Dollars): Instead of using unused
10937 values, check that the warning is issued.
10938
10939 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
10940
10941 * NEWS: Improve wording for unused-value warnings.
10942
10943 2005-12-22 Akim Demaille <akim@epita.fr>
10944
10945 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
10946 (b4_yysymprint_generate): Rename as...
10947 (b4_yy_symbol_print_generate): this.
10948 Generate yy_symbol_print instead of yysymprint.
10949 Generate also yy_symbol_value_print, and use it.
10950
10951 2005-12-22 Akim Demaille <akim@epita.fr>
10952
10953 * NEWS: Warn about unused values.
10954 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
10955 a `used' member.
10956 (symbol_list_n_get, symbol_list_n_used_set): New.
10957 (symbol_list_n_type_name_get): Use symbol_list_n_get.
10958 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
10959 * src/reader.c (grammar_current_rule_check): Check that values are
10960 used.
10961 * src/symtab.c (symbol_print): Accept 0.
10962 * tests/existing.at: Remove the type information.
10963 Empty the actions.
10964 Remove useless actions (beware of mid-rule actions: perl -000
10965 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
10966 * tests/actions.at (Exotic Dollars): Use unused values.
10967 * tests/calc.at: Likewise.
10968 * tests/glr-regression.at (No users destructors if stack 0 deleted):
10969 Likewise.
10970
10971 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
10972 rule_useful_p.
10973
10974 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
10975
10976 Undo 2005-12-01 tentative license wording change. The wording is
10977 still being reviewed by the lawyers, and we don't want to wait for
10978 them before publishing a test release. For now, revert to the
10979 previous wording.
10980 * NEWS: Undo 2005-12-01 change.
10981 * data/glr.c: Revert to previous license wording.
10982 * data/glr.cc: Likewise.
10983 * data/lalr1.cc: Likewise.
10984 * data/location.cc: Likewise.
10985 * data/yacc.c: Likewise.
10986
10987 * NEWS: Reword %destructor vs YYABORT etc.
10988 * data/glr.c: Use American spacing, for consistency.
10989 * data/glr.cc: Likewise.
10990 * data/lalr1.cc: Likewise.
10991 * data/yacc.c: Likewise.
10992 * data/yacc.c: Reformat comments slightly.
10993 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
10994 for consistency. Fix some spelling errors and reword recently-included
10995 text slightly.
10996 * tests/cxx-type.at: Cast results of malloc, for C++.
10997
10998 2005-12-21 Joel E. Denny <address@hidden>
10999
11000 * tests/cxx-type.at: Construct a tree, count the parents of shared
11001 nodes, and free each node once and only once. Previously, the memory
11002 for semantic values was leaked instead.
11003
11004 2005-12-21 Joel E. Denny <address@hidden>
11005
11006 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
11007 (yylval, yylloc): If pure, #define to yystackp->yyval and
11008 yystackp->yyloc similar to yychar and yynerrs.
11009 (yyparse): If pure, remove local yylval and yylloc. Add local
11010 yystackp to accommodate pure definitions of yylval and yylloc.
11011 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
11012 yylvalp and yyllocp to &yylval and &yylloc.
11013 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
11014 namespace. Previously, nerrs and char were missing, but lval and lloc
11015 weren't necessary.
11016 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
11017 yylvalp and yyllocp parameters since, if pure, these are now always
11018 accessible through yystackp. If not pure, they are still accessible
11019 globally.
11020 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
11021 `if (YYID (N))' to pacify lint.
11022
11023 2005-12-21 Akim Demaille <akim@epita.fr>
11024
11025 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
11026 destroy the RHS symbols of a rule.
11027 * data/yacc.c (yylen): Initialize to 0.
11028 Keep its value to the number of items to possibly shift.
11029 In particular, a regular successful parse that ends on YYFINAL by
11030 a (internal) YYACCEPT must not have yylen != 0.
11031 (yyerrorlab, yyreturn): Pop the RHS.
11032 Reorder a bit to emphasize the `shifting' bits of code.
11033 (YYPOPSTACK): Now accept a number of items to pop.
11034 * data/lalr1.cc: Likewise.
11035 * data/glr.c: Formatting changes.
11036 Use goto instead of fall through.
11037 * doc/bison.texinfo (Destructor Decl): Complete.
11038
11039 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
11040
11041 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
11042 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
11043 * djgpp/config.bat: Replace every occurence of the file name
11044 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
11045 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
11046 * djgpp/config.sed: Replace every occurence of the file name
11047 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
11048 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
11049 * djgpp/djunpack.bat: DJGPP specific file.
11050 * djgpp/fnchange.lst: DJGPP specific file.
11051 * djgpp/README.in: Add new information about how to unpack the bison
11052 source on MSDOS and other systems which have 8.3 file name restrictions
11053 using djunpack.bat and fnchange.lst.
11054
11055 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
11056
11057 * bootstrap (build_cvs_prefix): Remove; unused.
11058 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
11059 when getting gnulib.
11060
11061 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
11062
11063 * data/glr.c: Reorder typedef declarations for structs to match order
11064 of struct declarations.
11065 Rename yystack everywhere to yystackp except in yyparse where it's not
11066 a pointer.
11067 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
11068 consistency.
11069 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
11070 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
11071 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
11072 lint.
11073
11074 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
11075
11076 * tests/sets.at (Accept): Fix typos in regular expression used to
11077 sed out the final state number.
11078
11079 Work around portability problem on Solaris 10: flex-generated
11080 files include <stdio.h> before <config.h>, which messes up
11081 because the latter defines __EXTENSIONS__. Address the problem
11082 by creating two new little files that include <config.h> first,
11083 then include the flex-generated files. Rewrite everyone else
11084 to include <config.h> first, as well.
11085 * lib/timevar.c: Always include "config.h".
11086 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
11087 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
11088 (EXTRA_bison_SOURCES): New macro.
11089 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
11090 * src/system.h: Don't include config.h.
11091 * src/LR0.c: Include <config.h> first.
11092 * src/assoc.c: Likewise.
11093 * src/closure.c: Likewise.
11094 * src/complain.c: Likewise.
11095 * src/conflicts.c: Likewise.
11096 * src/derives.c: Likewise.
11097 * src/files.c: Likewise.
11098 * src/getargs.c: Likewise.
11099 * src/gram.c: Likewise.
11100 * src/lalr.c: Likewise.
11101 * src/location.c: Likewise.
11102 * src/main.c: Likewise.
11103 * src/muscle_tab.c: Likewise.
11104 * src/nullable.c: Likewise.
11105 * src/output.c: Likewise.
11106 * src/parse-gram.y: Likewise.
11107 * src/print.c: Likewise.
11108 * src/print_graph.c: Likewise.
11109 * src/reader.c: Likewise.
11110 * src/reduce.c: Likewise.
11111 * src/relation.c: Likewise.
11112 * src/state.c: Likewise.
11113 * src/symlist.c: Likewise.
11114 * src/symtab.c: Likewise.
11115 * src/tables.c: Likewise.
11116 * src/uniqstr.c: Likewise.
11117 * src/vcg.c: Likewise.
11118
11119 * src/parse-gram.y: Fix minor problems uncovered by lint.
11120 (current_lhs, current_lhs_location): Now static.
11121 (current_assoc): Remove unused variable.
11122
11123 Cleanups so that Bison-generated parsers have less lint.
11124 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
11125 Prepend /*ARGSUSED*/, for lint's sake.
11126 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
11127 definition if 'lint' is defined.
11128 (YYID): New macro (or function, if lint).
11129 All uses of /*CONSTCOND*/0 replaced by YYID(0).
11130 * data/yacc.c: Likewise.
11131 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
11132 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
11133 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
11134 is C++ only.
11135 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
11136 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
11137 Use YYID(0) rather than 0, for lint.
11138 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
11139 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
11140
11141 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
11142
11143 * tests/glr-regression.at
11144 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
11145 Close memory leak reported by twlevo.
11146
11147 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
11148
11149 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
11150 all stacks.
11151 (yyparse): Iterate another stack in order to call user destructors.
11152 * tests/glr-regression.at (No users destructors if stack 0 deleted):
11153 New test case.
11154 (Duplicated user destructor for lookahead): This test now is expected
11155 to succeed.
11156
11157 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
11158
11159 * NEWS: Document the following change.
11160 * data/yacc.c: Say "parser skeleton" rather than "file", since
11161 it's no longer just a file.
11162 * data/glr.c: Grant a special exception for C GLR parsers, that
11163 reads like the already-existing exception for C LALR(1) parsers.
11164 * data/glr.cc: Likewise.
11165 * data/lalr1.cc: Likewise.
11166 * data/location.cc: Likewise.
11167 * data/yacc.c: Reword the "written by" statement to clarify that
11168 it was the parser skeleton, not the entire output file.
11169 * data/glr.c: Written by Paul Hilfinger.
11170 * data/glr.cc: Written by Akim Demaille.
11171 * data/lalr1.cc: Likewise.
11172
11173 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
11174
11175 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
11176 Fix typos in previous change that broke 'make check'.
11177 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
11178 supported in C.
11179 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
11180 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
11181 We can revert this once things settle down.
11182
11183 * src/conflicts.c (conflicts_print): Don't print file name twice
11184 when %expect fails because there were no conflicts.
11185 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
11186 change.
11187 * tests/conflicts.at (%expect not enough, %expect too much):
11188 (%expect with reduce conflicts): Adjust to new behavior.
11189
11190 2005-11-18 Akim Demaille <akim@epita.fr>
11191
11192 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
11193 errors.
11194 * NEWS: Document this.
11195 * doc/bison.texinfo (Expect Decl): Likewise.
11196
11197 2005-11-16 Akim Demaille <akim@epita.fr>
11198
11199 Generalize the display of semantic values and locations in traces.
11200 * data/glr.c (yy_reduce_print): Fix indices (again).
11201 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
11202 literal integers.
11203 * data/lalr1.cc (yyreduce_print): Rename as...
11204 (yy_reduce_print): this.
11205 Display values and locations.
11206 * data/yacc.c (yy_reduce_print): Likewise.
11207 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
11208 (yysymprint): Move higher to be visible from yy_reduce_print).
11209 (yyparse): Adjust.
11210 * tests/calc.at: Adjust the expected length of the traces.
11211
11212 2005-11-14 Akim Demaille <akim@epita.fr>
11213
11214 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
11215 from 1 to N, while values and location start at 0.
11216 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
11217
11218 2005-11-14 Akim Demaille <akim@epita.fr>
11219
11220 * data/glr.c (yy_reduce_print): Fix the $ number.
11221
11222 2005-11-14 Akim Demaille <akim@epita.fr>
11223
11224 "Use" parse parameters.
11225 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
11226 * data/glr.c, data/glr.cc: Use them.
11227 * data/glr.c (YYUSE): Have a C++ definition that supports
11228 non-pointer types.
11229
11230 2005-11-14 Akim Demaille <akim@epita.fr>
11231
11232 * data/glr.c (yyexpandGLRStack): Declare only if defined.
11233
11234 2005-11-14 Akim Demaille <akim@epita.fr>
11235
11236 * data/glr.cc: New.
11237 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
11238
11239 2005-11-12 Akim Demaille <akim@epita.fr>
11240
11241 Let position and location be PODs.
11242 * data/location.cc (position::initialize, location::initialize): New.
11243 (position::position, location::location): Define only if
11244 b4_location_constructors is defined.
11245 * data/lalr1.cc (b4_location_constructors): Define it for backward
11246 compatibility.
11247 * doc/bison.texinfo (Initial Action Decl): Use initialize.
11248
11249 2005-11-12 Akim Demaille <akim@epita.fr>
11250
11251 * data/lalr1.cc: Move the body of the ctor and dtor into the
11252 parser file (instead of the header).
11253 Wrap the implementations in a "namespace yy".
11254
11255 2005-11-12 Akim Demaille <akim@epita.fr>
11256
11257 Have glr.c include its header file when created.
11258 * data/glr.c (b4_shared_declarations): New.
11259 Output them verbatim in the parser if !%defines, otherwise
11260 output then in the header file, and include it instead.
11261
11262 2005-11-11 Akim Demaille <akim@epita.fr>
11263
11264 * data/glr.c: Comment changes.
11265
11266 2005-11-11 Akim Demaille <akim@epita.fr>
11267
11268 When yydebug, report semantic and location values for reductions.
11269 * data/glr.c (yy_reduce_print): Report the semantic values and the
11270 locations.
11271 (YY_REDUCE_PRINT): Adjust.
11272 (yyglrReduce): Use them.
11273 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
11274 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
11275 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
11276 traces.
11277
11278 2005-11-10 Akim Demaille <akim@epita.fr>
11279
11280 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
11281 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
11282 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
11283
11284 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
11285
11286 * m4/cxx.m4, examples/Makefile.am: Don't build
11287 examples/calc++ if no C++ compiler is available. (trivial change)
11288
11289 2005-11-09 Akim Demaille <akim@epita.fr>
11290
11291 * src/scan-skel.l: Use a couple of asserts.
11292
11293 2005-11-03 Akim Demaille <akim@epita.fr>
11294
11295 In some (weird) cases, the final state number is incorrect.
11296 Reported by Alexandre Duret-Lutz.
11297 * src/LR0.c (state_list_append): Remove the computation of
11298 final_state.
11299 (save_reductions): Do it here.
11300 (get_state): Alpha conversion.
11301 (generate_states): Use a for loop.
11302 * src/gram.h (item_number_is_rule_number)
11303 (item_number_is_symbol_number): New.
11304 * src/state.c: Use assert.
11305 * src/system.h: Include assert.h.
11306 * tests/sets.at (Accept): New.
11307
11308 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
11309
11310 * data/glr.c (yyfill): Adjust comment.
11311 (yyresolveAction): Initialize default location properly
11312 for empty right-hand sides.
11313 (yydoAction): Ditto.
11314 Add comment explaining apparently dead code.
11315 * tests/glr-regression.at
11316 (Incorrectly initialized location for empty right-hand side in GLR):
11317 New test.
11318
11319 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
11320
11321 * bootstrap (cleanup_gnulib): New function. Use it to clean up
11322 gnulib when interrupted. This fixes some race conditions and
11323 works around some portability problems (one noted by Paul
11324 Hilfinger).
11325
11326 2005-10-22 Akim <akim@epita.fr>
11327
11328 * Makefile.cfg: Adjust to config -> build-aux.
11329 Reported by twledo.
11330
11331 2005-10-21 Akim Demaille <akim@epita.fr>
11332
11333 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
11334 the %parse-params.
11335 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
11336 * data/yacc.c (b4_Pure_if): Rename as...
11337 (b4_yacc_pure_if): this.
11338 (YY_SYMBOL_PRINT, yyparse): Adjust.
11339 * doc/bison.texinfo: Formatting changes.
11340
11341 2005-10-21 Akim Demaille <akim@epita.fr>
11342
11343 Finish the transition config -> build-aux.
11344 * configure.ac, Makefile.am: Use build-aux.
11345 * config/prev-version, config/announce-gen, config/Makefile.am:
11346 Move to...
11347 * build-aux/prev-version, build-aux/announce-gen,
11348 * build-aux/Makefile.am: here.
11349
11350 2005-10-14 Akim Demaille <akim@epita.fr>
11351
11352 * examples/calc++/test: Use set -x only when VERBOSE.
11353
11354 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
11355
11356 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
11357 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
11358
11359 2005-10-13 Akim Demaille <akim@epita.fr>
11360
11361 * src/scan-skel.l: Output the base name parts of the parser and
11362 header file names.
11363 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
11364 additional checks.
11365 Use this to exercise C++ outputs in subdirs.
11366 Reported by Oleg Smolsky.
11367
11368 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
11369
11370 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
11371 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
11372 Problem reported by John P. Hartmann.
11373 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
11374 already defined it.
11375
11376 2005-10-12 Akim Demaille <akim@epita.fr>
11377
11378 * src/parse-gram.y (version_check): Exit 63 to please missing
11379 (stands for "version mismatch).
11380 * tests/input.at, doc/bison.texinfo: Adjust.
11381
11382 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
11383
11384 Work around portability problems with Visual Age C compiler
11385 (xlc and xlC_r) reported by John P. Hartmann.
11386 * data/location.cc (initial_column, initial_line): Remove.
11387 All uses replaced by 0 and 1.
11388 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
11389 that xlc complains about.
11390 * src/scan-skel.l (skel_wrap): Likewise.
11391 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
11392 as __STDC__.
11393 * data/yacc.c (YYMODERN_C): New macro, which also looks at
11394 __STDC_VERSION__. Use it everywhere instead of looking at
11395 __STDC__ and __cplusplus.
11396
11397 2005-10-10 Akim Demaille <akim@epita.fr>
11398
11399 * examples/calc++/test: Be quiet unless VERBOSE.
11400
11401 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
11402
11403 * data/c.m4 (yydestruct, yysymprint):
11404 Use YYUSE instead of casting to void.
11405 * data/glr.c (YYUSE): New macro.
11406 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
11407 Use it instead of rolling our own.
11408 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
11409 (YYCHK1):
11410 Use /*CONSTCOND*/ to suppress lint warnings.
11411 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
11412 (YY_STACK_PRINT): Use 'false' not '0'.
11413 (YYUSE): New macro.
11414 (yysymprint_, yydestruct_): Use it instead of rolling our own.
11415 * data/yacc.c (YYUSE): New macro.
11416 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
11417 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
11418 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
11419
11420
11421 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
11422 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
11423
11424 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
11425
11426 Undo the parts of the unlocked-I/O change that substituted
11427 putc or puts for printf. This might hurt performance a bit,
11428 but some people prefer the printf style.
11429 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
11430 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
11431 All uses replaced by YYFPRINTF and YYDPRINTF.
11432 * data/yacc.c: Likewise.
11433 * lib/bitset.c (bitset_print): Likewise.
11434 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
11435 putc and puts.
11436 * lib/lbitset.c (debug_lbitset): Likewise.
11437 * src/closure.c (print_firsts, print_fderives): Likewise.
11438 * src/gram.c (grammar_dump): Likewise.
11439 * src/lalr.c (look_ahead_tokens_print): Likewise.
11440 * src/output.c (escaped_output): Likewise.
11441 (user_actions_output): Break apart two printfs.
11442 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
11443 * src/reduce.c (reduce_print): Likewise.
11444 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
11445 * src/system.h: Include unlocked-io.h rathe than stdio.h.
11446
11447 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
11448 Use assignments rather than casts-to-void to suppress
11449 unused-variable warnings. This pacifies 'lint'.
11450 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
11451 unused-variable warnings.
11452
11453 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
11454
11455 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
11456
11457 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
11458
11459 Use unlocked I/O for a minor performance improvement on hosts like
11460 GNU/Linux and Solaris that support unlocked I/O. The basic idea
11461 is to use the gnlib unlocked-io module, and to prefer putc and
11462 puts to printf when either will work (since the latter doesn't
11463 come in an unlocked flavor).
11464 * bootstrap (gnulib_modules): Add unlocked-io.
11465 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
11466 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
11467 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
11468 and similarly for puts and putc and printf.
11469 * data/yacc.c: Likewise.
11470 * lib/bitset.c (bitset_print): Likewise.
11471 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
11472 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
11473 to printf.
11474 * lib/lbitset.c (debug_lbitset): Likewise.
11475 * src/closure.c (print_firsts, print_fderives): Likewise.
11476 * src/gram.c (grammar_dump): Likewise.
11477 * src/lalr.c (look_ahead_tokens_print): Likewise.
11478 * src/output.c (escaped_output): Likewise.
11479 (user_actions_output): Coalesce two printfs.
11480 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
11481 * src/reduce.c (reduce_print): Likewise.
11482 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
11483 * src/system.h: Include unlocked-io.h rather than stdio.h.
11484
11485 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
11486 this confuses xgettext.
11487
11488 2005-10-02 Akim Demaille <akim@epita.fr>
11489
11490 * bootstrap (gnulib_modules): Add strverscmp.
11491 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
11492 * m4/.cvsignore: Add strverscmp.m4.
11493 * src/parse-gram.y (%require): New token, new rule.
11494 (version_check): New.
11495 * src/scan-gram.l (%require): Adjust.
11496 * tests/input.at (AT_REQUIRE): New.
11497 Use it.
11498 * doc/bison.texinfo (Require Decl): New.
11499 (Calc++ Parser): Use %require.
11500
11501 2005-10-02 Akim Demaille <akim@epita.fr>
11502
11503 * data/location.cc: New.
11504
11505 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
11506 Akim Demaille <akim@epita.fr>
11507
11508 Make sure -odir/foo.cc creates dir/location.hh etc.
11509 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
11510 (spec_file_prefix, spec_verbose_file, spec_graph_file)
11511 (spec_defines_file): Now const.
11512 (dir_prefix): New.
11513 (short_base_name): Remove.
11514 * src/files.c: Adjust.
11515 (dirname.h): Include.
11516 (base_name): Don't prototype it.
11517 (finput): Remove, duplicates gram_in.
11518 (full_base_name, short_base_name): Replace by...
11519 (all_but_ext, all_but_tab_ext): these.
11520 (compute_base_names): Rename as...
11521 (compute_file_name_parts): this.
11522 Update to compute the new variables, including dir_prefix.
11523 Adjust dependencies.
11524 * src/output.c (prepare): Output them.
11525 * src/reader.c: Adjust to use gram_in, not finput.
11526 * src/scan-skel.l (@dir_prefix@): New.
11527
11528 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
11529
11530 * lib/subpipe.c: New function end_of_output_subpipe() added
11531 to allow support for non-posix systems. This is a no-op function
11532 for posix systems.
11533
11534 * lib/subpipe.h: New function end_of_output_subpipe() added
11535 to allow support for non-posix systems. This is a no-op function
11536 for posix systems.
11537
11538 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
11539 handle the lack of pipe/fork functionality on non-posix systems.
11540
11541 * djgpp/Makefile.maint: DJGPP specific file.
11542
11543 * djgpp/README.in: DJGPP specific file.
11544
11545 * djgpp/config.bat: DJGPP specific configuration file.
11546
11547 * djgpp/config.sed: DJGPP specific configuration file.
11548
11549 * djgpp/config.site: DJGPP specific configuration file.
11550
11551 * djgpp/config_h.sed: DJGPP specific configuration file.
11552
11553 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
11554
11555 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
11556
11557 2005-10-02 Akim Demaille <akim@epita.fr>
11558
11559 * data/location.cc: New, extract from...
11560 * data/lalr1.cc: here.
11561 (location.hh): Include it after the user prologue, in case the
11562 filename type is defined by the user.
11563 Forward declation location and position before the pre-prologue.
11564 (yyresult_): Rename as...
11565 (yyresult): this, it's a local variable, not an attribute.
11566 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
11567
11568 2005-10-01 Akim Demaille <akim@epita.fr>
11569
11570 * examples/extexi: Restore the #line generation.
11571
11572 2005-09-30 Akim Demaille <akim@epita.fr>,
11573 Alexandre Duret-Lutz <adl@gnu.org>
11574
11575 Move the token type and YYSTYPE in the parser class.
11576 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
11577 (parser::token): New, from the moved free definition of tokens.
11578 (parser::semantic_value): Now a full definition instead of an
11579 indirection to YYSTYPE.
11580 (b4_post_prologue): No longer included in the header file, but
11581 in the implementation file.
11582 * doc/bison.texi (C+ Language Interface): Update.
11583 * src/parse-gram.y: Support unary %define.
11584 * tests/actions.at: Define global_tokens_and_yystype for backward
11585 compatibility until we update the tests.
11586 * tests/calc.at: Idem.
11587 (first_line, first_column, last_line, last_column): Define for lalr1.cc
11588 to simplify the code.
11589
11590 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
11591
11592 Port to SunOS 4.1.4, which lacks strtoul and strerror.
11593 Ah, the good old days! Problem reported by Peter Klein.
11594 * bootstrap (gnulib_modules): Add strerror, strtoul.
11595 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
11596 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
11597
11598 2005-09-29 Akim Demaille <akim@epita.fr>
11599
11600 * data/c.m4 (b4_error_verbose_if): New.
11601 * data/lalr1.cc: Use it.
11602 (YYERROR_VERBOSE_IF): Remove.
11603 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
11604 parser members, replaced by...
11605 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
11606 local variables.
11607 (yysyntax_error_): Takes the state number as argument.
11608 (yyreduce_print_): Use the argument yyrule, not the former
11609 attribute yyn_.
11610
11611 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
11612
11613 * bootstrap (gnulib_modules): Add verify.
11614 * lib/.cvsignore: Add verify.h.
11615 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
11616 * src/system.h (verify): Remove.
11617 Include verify.h instead.
11618 * src/tables.c (tables_generate): Use new API for 'verify'.
11619
11620 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
11621
11622 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
11623 local variables whose names begin with 'yy'.
11624 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
11625 Trivial changes from Joel E. Denny.
11626
11627 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
11628 it itself.
11629 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
11630 don't use alloca any more.
11631
11632 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
11633 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
11634 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
11635 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
11636 to match yacc.c, to test more hosts.
11637
11638 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
11639
11640 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
11641 doesn't affect behavior.
11642 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
11643 Solaris, AIX, MSC.
11644 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
11645 This works a bit better with glibc, if user code has already included
11646 stdlib.h.
11647 * doc/bison.texinfo (Bison Parser): Document that users can't
11648 arbitrarily use malloc and free for other purposes. Document
11649 that <alloca.h> and <malloc.h> might be included.
11650 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
11651 user must declare alloca.
11652
11653 * HACKING (release): Forwarn the Translation Project about
11654 stable releses.
11655
11656 2005-09-20 Akim Demaille <akim@epita.fr>
11657
11658 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
11659
11660 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
11661
11662 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
11663 (YYSTACK_ALLOC_MAXIMUM): Use it.
11664 (yysyntax_error): New function.
11665 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
11666 multiple syntax errors are reported, and alloca is being used.
11667 Instead, reallocate buffers twice as big each time, so that
11668 we waste at most half the allocated memory. Start with a small
11669 (128-byte) buffer that will suffice in most cases anyway.
11670 Use yysyntax_error to do most of the work.
11671
11672 * doc/bison.texinfo (Error Reporting, Table of Symbols):
11673 yynerrs is the number of errors reported, not the number of
11674 errors encountered.
11675
11676 * tests/glr-regression.at (Duplicated user destructor for lookahead):
11677 Mark it as expected to fail.
11678 Cast result of malloc; problem reported by twlevo@xs4all.nl.
11679 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
11680 Don't start user-code symbols with "yy", to avoid name space problems.
11681
11682 2005-09-19 Akim Demaille <akim@epita.fr>
11683
11684 Remove the traits, failed experiment.
11685 It never proved useful, and anyway because of the current
11686 definition, it was not possible to have several specialization of
11687 this traits, making it useless.
11688 * data/lalr1.cc (yy:traits): Remove.
11689 Inline its definitions in the parser class.
11690
11691 2005-09-19 Akim Demaille <akim@epita.fr>
11692
11693 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
11694 least Mac OSX with a /usr/local install of gettext.
11695
11696 2005-09-19 Akim Demaille <akim@epita.fr>
11697
11698 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
11699 and yytoken for similarity with the other skeletons.
11700
11701 2005-09-19 Akim Demaille <akim@epita.fr>
11702
11703 * NEWS, configure.ac: update version number to 2.1a.
11704
11705 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
11706
11707 * NEWS: Version 2.1.
11708
11709 * NEWS: Remove notice of yytname change, since it was never in an
11710 official release.
11711 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
11712 diagnostic.
11713 * src/output.c (prepare): Likewise.
11714 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
11715 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
11716 is not defined. This is an awful hack, but it's enough for now.
11717 All callers changed.
11718 * tests/glr-regression-at (make_value): Args are const pointers now,
11719 to avoid GCC warning.
11720 (Duplicated user destructor for lookahead): New test. Currently
11721 skipped. It fails on my host but I'm not sure it'll always fail.
11722
11723 2005-09-16 Akim Demaille <akim@epita.fr>
11724
11725 * src/symtab.h (struct symbol): Declare the printer and destructor
11726 as const, to avoid accidental calls to free.
11727 (symbol_destructor_set, symbol_printer_set): Adjust.
11728 * src/symtab.c: Adjust.
11729
11730 2005-09-16 Akim Demaille <akim@epita.fr>
11731
11732 * data/c.m4 (b4_token_enums): New.
11733 (b4_token_defines): Rename as...
11734 (b4_token_enums_defines): this.
11735 (b4_token_defines): New, output only the #defines.
11736 * data/yacc.c, data/glr.c: Adjust.
11737 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
11738 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
11739 as default values.
11740
11741 2005-09-16 Akim Demaille <akim@epita.fr>
11742
11743 * data/lalr1.cc (yylex_): Remove, inline its code.
11744 (yyreport_syntax_error_): Remove, replaced by...
11745 (yysyntax_error_): this which returns a string and leaves to the
11746 caller the call to the users' error function.
11747 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
11748 Move from members of the parser object...
11749 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
11750 to local variables of the parse function.
11751
11752 2005-09-16 Akim Demaille <akim@epita.fr>
11753
11754 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
11755 since it's in Bison's name space.
11756
11757 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
11758
11759 * data/glr.c (yyresolveValue): Add default case to pacify
11760 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
11761
11762 * NEWS: Document when yyparse started to return 2.
11763 * doc/bison.texinfo (Parser Function): Document when yyparse
11764 returns 2.
11765
11766 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
11767 (b4_filename_type): Renamed back from b4_file_name_type. All uses
11768 changed.
11769 (class position): file_name -> filename (reverting). All uses changed.
11770
11771 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
11772
11773 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
11774 do anything if $@ exists. This reverts part of the 2005-07-07
11775 patch.
11776
11777 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
11778
11779 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
11780 contains obsolete information and isn't worth distributing as a
11781 separate file anyway.
11782 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
11783 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
11784 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
11785 (yyparse): Abort if user code uses longjmp to throw an unexpected
11786 value.
11787
11788 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
11789
11790 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
11791 Suggested by twlevo@xs4all.nl.
11792
11793 * data/glr.c (YYCHK1): Do not assume YYE is in range.
11794 This avoids a diagnostic from gcc -Wswitch-enum.
11795 Problem reported by twlevo@xs4all.nl.
11796
11797 * doc/bison.texinfo: Don't use "filename", as per GNU coding
11798 standards. Use "file name" or "file" or "name", depending on
11799 the context.
11800 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
11801 not to hack/foo.tab.c.
11802 (Calc++ Top Level): 2nd arg of main is not const.
11803 * data/glr.c: b4_filename -> b4_file_name.
11804 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
11805 All uses changed.
11806 (class position): filename -> file_name. All uses changed.
11807 * data/yacc.c: b4_filename -> b4_file_name.
11808 * lib/bitset.h: filename -> file_name in local vars.
11809 * lib/bitset_stats.c: Likewise.
11810 * src/files.c: Likewise.
11811 * src/scan-skel.l ("@output ".*\n): Likewise.
11812 * src/files.c (file_name_split): Renamed from filename_split.
11813 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
11814
11815 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
11816
11817 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
11818 to accommodate latest gnulib.
11819
11820 * tests/glr-regression.at (Duplicate representation of merged trees):
11821 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
11822
11823 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
11824 needed.
11825
11826 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
11827
11828 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
11829 All uses changed. Invoke user destructor after an error during a
11830 split parse (trivial change from Joel E. Denny).
11831
11832 * tests/glr-regression.at
11833 (User destructor after an error during a split parse): New test case.
11834 Problem reported by Joel E. Denny in:
11835 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
11836
11837 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
11838
11839 * README-cvs: Give URLs for recommended tools.
11840 Mention Gzip version problem, and bootstrapping issues.
11841 Remove troubleshooting section, as it's somewhat obsolete.
11842
11843 * bootstrap (no_cache): New var, to accommodate different wget
11844 variants. Use it instead of '-C off'. Problem reported by
11845 twlevo@xs4all.nl.
11846
11847 * data/glr.c (yydestroyStackItem): New function.
11848 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
11849 debugging information. Problem reported by Joel E. Denny.
11850
11851 2005-08-25 Akim Demaille <akim@epita.fr>
11852
11853 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
11854
11855 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
11856
11857 * data/glr.c (yyrecoverSyntaxError, yyreturn):
11858 Don't invoke destructor on unresolved entries.
11859 * tests/glr-regression.at
11860 (User destructor for unresolved GLR semantic value): New test case.
11861 Problem reported by Joel E. Denny in:
11862 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
11863
11864 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
11865
11866 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
11867 Add strnlen.c.
11868 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
11869 lib-prefix.m4, po.m4.
11870
11871 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
11872 in yydestruct diagnostic, since it might not be an error.
11873 Problem reported by Joel Denny near end of
11874 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
11875 * data/lalr1.cc (yyerturn): Likewise.
11876 * data/yacc.c (yyreturn): Likewise.
11877 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
11878
11879 * src/files.c: Remove obsolete FIXME comment.
11880
11881 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
11882 with the other templates, and to fix bogus run-on messages such
11883 as the one reported at the end of
11884 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
11885 All callers changed to avoid the newline.
11886 (yyprocessOneStack): Output two lines rather than one, to accommodate
11887 the above change. This changes the debug output format slightly.
11888
11889 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
11890 reported by Joel E. Denny in
11891 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
11892 (trivial change).
11893 * tests/glr-regression.at (Duplicate representation of merged trees):
11894 New test, from Joel E. Denny in:
11895 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
11896 * THANKS: Add Joel E. Denny.
11897
11898 * configure.ac (AC_INIT): Bump to 2.0c.
11899
11900 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
11901
11902 * NEWS: Version 2.0b.
11903
11904 * Makefile.am (SUBDIRS): Put examples before tests, so that
11905 "make check" doesn't finish with "All 1 tests passed".
11906
11907 * tests/regression.at (Token definitions): Don't rely on
11908 AT_PARSER_CHECK for data that contains backslashes. It currently
11909 uses 'echo', and 'echo' isn't portable if its argument contains
11910 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
11911 that the byte '\0xff' is not printable in the C locale; it is,
11912 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
11913 not printable, so use '\0x81' to test.
11914
11915 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
11916 version of GCC, since the macro is used with non-GCC compilers.
11917
11918 Fix core dump reported by Pablo De Napoli in
11919 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
11920 * tests/regression.at (Invalid inputs with {}): New test.
11921 * src/parse-gram.y (token_name): Translate type before using
11922 it as an index.
11923
11924 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
11925 the user's name space. All uses changed to __attribute__
11926 ((__unused__)).
11927 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
11928 Add __attribute__ ((__noreturn__)).
11929
11930 * etc/clcommit: Remove. We weren't using it, and it failed
11931 "make maintainer-distcheck".
11932 * Makefile.maint: Merge from coreutils.
11933 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
11934 (syntax-check-rules): Change list of rules as described below.
11935 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
11936 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
11937 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
11938 (sc_trailing_space): New rules.
11939 (sc_xalloc_h_in_src): Remove.
11940 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
11941 (sc_space_tab, sc_error_exit_success, sc_changelog):
11942 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
11943 (makefile-check, po-check, author_mark_check):
11944 (makefile_path_separator_check, copyright-check):
11945 Use grep -n, to make it easier to find violations.
11946 Use CVS_LIST and CVS_LIST_EXCEPT.
11947 (header_regexp, h_re): Remove.
11948 (dd_c): New macro.
11949 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
11950 (my-distcheck): Use more-modern GCC flags.
11951 (signatures, %.asc): Remove.
11952 (rel-files, announcement): Remove signatures.
11953 Restore old updating code, even though we don't use it, so
11954 that we're the same as coreutils.
11955 (alpha, beta, major): Depend on news-date-check.
11956 Make the upload commands.
11957
11958 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
11959 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
11960 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
11961 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
11962 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
11963 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
11964 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
11965 * tests/sets.at: Likewise.
11966
11967 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
11968 we comment out the Autoconf version number.
11969 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
11970 it's error-prone and "make maintainer-distcheck" rejects it.
11971
11972 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
11973 Indent calls to "error" to pacify "make maintainer-distcheck",
11974 when the calls are not intended to be translated.
11975 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
11976
11977 * src/Makefile.am (DEFS): Use +=, to pacify
11978 "make maintainer-distcheck".
11979 (bison_SOURCES): Add scan-skel.h.
11980 (sc_tight_scope): New rule, from coreutils.
11981
11982 * src/files.c (src_extension, header_extension):
11983 Now static, not extern.
11984 * src/getargs.c (short_options): Likewise.
11985 * src/muscle_tab.c (muscle_table): Likewise.
11986 * src/parse-gram.y (current_class, current_type, current_prec):
11987 Likewise.
11988 * src/reader.c (grammar_end, previous_rule_end): Likewise.
11989 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
11990 * src/main.c (main): Cast bindtextdomain and textdomain calls to
11991 void, to avoid warning when NLS is disabled.
11992 * src/output.c: Include scan-skel.h.
11993 (scan_skel): Remove decl, since scan-skel.h does this.
11994 (output_skeleton):
11995 Indent calls to "error" to pacify "make maintainer-distcheck".
11996 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
11997 * src/reader.h (gram_end, gram_lineno): New decls to pacify
11998 "make maintainer-distcheck".
11999 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
12000 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
12001 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
12002 (skel_lex_destroy, scan_skel): Move these decls to...
12003 * src/scan-skel.h: New file.
12004 * src/uniqstr.c (uniqstr_assert):
12005 Indent calls to "error" to pacify "make maintainer-distcheck".
12006
12007 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
12008 not @VAR@.
12009
12010 * tests/torture.at: Revamp to avoid misuse of atoi that
12011 "make maintainer-distcheck" complained about.
12012
12013 * examples/extexi (message): Don't print a message more than once,
12014 and omit line-number decoration that makes Emacs compile think
12015 that informative messages are worth worrying about.
12016
12017 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
12018
12019 * configure.ac: Update version number.
12020
12021 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
12022 accidentally.
12023 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
12024 autogenerated by the maintainer.
12025 * examples/calc++/.cvsignore: Add *.yy.
12026
12027 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
12028 * lib/bitset_stats.c (bitset_stats_init): Likewise.
12029 * lib/bitsetv.c (bitsetv_alloc): Likewise.
12030
12031 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
12032
12033 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
12034 from maintainer-distcheck about casting the argument of 'free'.
12035
12036 * NEWS: Mention recent yytname changes.
12037 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
12038
12039 * bootstrap: For translations that have not yet been upgraded to
12040 the new runtime-po domain, prime the pump by extracting the
12041 relevant strings from the obsolete translations. This code can be
12042 removed once the bison-runtime domain has been translated by each
12043 team.
12044
12045 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
12046 now that token names are already quoted.
12047
12048 Fix problem reported by Anthony Heading.
12049 * data/glr.c (YYTOKEN_TABLE): New macro.
12050 (yytname): Define if YYTOKEN_TABLE.
12051 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
12052 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
12053 (YYERROR_VERBOSE): Define the same way the other skeletons do.
12054 * src/output.c (prepare_symbols): Output token_table_flag.
12055
12056 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
12057
12058 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
12059 again if the first call fails.
12060
12061 * data/glr.c (yytnamerr): New function.
12062 (yyreportSyntaxError): Use it to dequote most string literals.
12063 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
12064 with other skeletons. All uses changed.
12065 (yytnameerr_): New function.
12066 (yyreport_syntax_error): Use it to dequote most string literals.
12067 * data/yacc.c (yytnamerr): New function.
12068 (yyerrlab): Use it to decode most string literals.
12069 * doc/bison.texinfo (Decl Summary, Calling Convention):
12070 Clarify quoting convention of yytname.
12071 * src/output.c (prepare_symbols): Quote all names. This undoes
12072 the 2005-04-17 change, which is now accomplished (mostly) via
12073 changes in the parsers as described above.
12074 * tests/regression.at (Token definitions, Web2c Actions):
12075 Undo most 2005-04-17 change here, too.
12076
12077 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
12078
12079 Fix more problems reported by twlevo@xs4all.nl.
12080 * tests/cxx-type.at: Don't pipe output of ./types through sed to
12081 remove trailing spaces. This loses the exit status of ./types,
12082 and isn't needed since ./types shouldn't be emitting trailing
12083 spaces.
12084 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
12085 as the stack isn't valid in that case.
12086
12087 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
12088 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
12089 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
12090 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
12091 is used.
12092 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
12093 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
12094 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
12095 Likewise.
12096
12097 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
12098 overly-picky compilers that reject 'char *foo = "bar";'.
12099
12100 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
12101 to FILE * parameter, not to stderr. This fixes a typo introduced
12102 in the 2005-07-12 change.
12103
12104 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
12105 warnings from GCC 4.
12106
12107 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
12108 (yyglrShiftDefer, yysplitStack):
12109 Remove unused parameters b4_pure_formals. All uses changed.
12110 (yyglrShift): Remove unused parameters b4_user_formals.
12111 All uses changed.
12112 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
12113
12114 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
12115
12116 Destructor cleanups and regularization among the three skeletons.
12117 * NEWS: Document the behavior changes.
12118 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
12119 stack before failing, as the cleanup code will do it for us now.
12120 * data/lalr1.cc (yyerrlab): Likewise.
12121 * data/glr.c (yyparse): Pop everything off the stack before
12122 freeing it, so that destructors get called properly.
12123 * data/lalr1.cc (yyreturn): Likewise.
12124 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
12125 This is more consistent.
12126 * doc/bison.texinfo (Destructor Decl): Mention more reasons
12127 why destructors might be called. 1.875 -> 2.1.
12128 (Destructor Decl, Decl Summary, Table of Symbols):
12129 Some English-language cleanups for %destructor.
12130 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
12131 Add output line for destructor of start symbol.
12132 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
12133 because of that same extra output line.
12134
12135 * NEWS: Document minor wording changes in diagnostics of
12136 Bison-generated parsers.
12137 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
12138 Remove unused formals. All uses changed.
12139 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
12140 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
12141 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
12142 Rename yyoverflowab to yyexhaustedlab.
12143 When memory exhaustion occurs during syntax-error reporting,
12144 report it separately rather than in a single diagnostic; this
12145 eases translation.
12146 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
12147 (Memory Exhausted): Renamed from Parser Stack Overflow.
12148 Revamp wording slightly to prefer "memory exhaustion".
12149 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
12150
12151 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
12152
12153 Add i18n support to the GLR skeleton. Partially fix the C++
12154 skeleton; a C++ expert needs to finish this. Remove debugging
12155 msgids; there's little point to having them translated, since they
12156 can be understood only by someone who can read the
12157 (English-language) source code.
12158
12159 Generate runtime-po/bison-runtime.pot automatically, so that we
12160 don't have to worry about garbage getting in that file. We'll
12161 make sure after the next official release that old msgids don't
12162 get lost. See
12163 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
12164
12165 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
12166 Now auto-generated.
12167 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
12168 Fix typos in explanations of the runtime file.
12169 * bootstrap: Change gettext keyword from YYI18N to YY_.
12170 Use standard Makefile.in.in in runtime-po, since we'll arrange
12171 for backward-compatible bison-runtime.po files in a different way.
12172 * data/glr.c (YY_): New macro, from yacc.c.
12173 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
12174 Translate messages intended for users.
12175 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
12176 the wording in the other skeletons. We don't know that the memory
12177 is virtual.
12178 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
12179 Use same method that yacc.c uses.
12180 Don't translate debugging messages.
12181 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
12182 it doesn't work (yet), and requires C++ expertise to fix.
12183 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
12184 Move defn to a more logical place, to be consistent with other
12185 skeletons.
12186 Don't translate debugging messages.
12187 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
12188 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
12189 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
12190 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
12191
12192 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
12193 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
12194 void, not int.
12195 * tests/glr-regression.at (Badly Collapsed GLR States):
12196 Likewise.
12197 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
12198 yylex should return 0 at EOF rather than aborting.
12199
12200 Improve tests for stack overflow in GLR parser.
12201 Problem reported by twlevo@xs4all.nl.
12202 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
12203 All uses removed.
12204 (yyStackOverflow): Just longjmp, but with value 2 so that caller
12205 can handle the problem.
12206 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
12207 (yyparse): New local variable yyresult to record the result.
12208 Use result of setjmp to set it, rather than storing itinto
12209 struct.
12210 (yyDone): Remove label.
12211 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
12212 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
12213 if YYABORT is used).
12214 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
12215 yyparse status; put status > 1 into diagnostic.
12216 Check that status==2 works.
12217 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
12218 Use exit status 3 for failure to open (which shouldn't happen).
12219
12220 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
12221
12222 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
12223 1 on syntax error; just let yyparse do its thing.
12224 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
12225 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
12226 (Exploding the Stack Size with Alloca):
12227 (Exploding the Stack Size with Malloc):
12228 Expect exit status 2, not 1, since the parser is supposed to blow
12229 its stack. Problem reported by twlevo@xs4all.nl.
12230
12231 * data/glr.c (yyparse): Don't assume that the initial calls
12232 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
12233 Print a stack-overflow message and fail instead.
12234 Initialize the line-number information before creating the stack,
12235 so that the stack-overflow message can report line zero safely.
12236
12237 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
12238
12239 Fix problems reported by twlevo@xs4all.nl.
12240 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
12241 (yyuserMerge): Provide a default case if b4_mergers is empty.
12242 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
12243 * tests/glr-regression.at
12244 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
12245 Add casts to pacify C++ compilers.
12246 * tests/glr-regression.at (Improper merging of GLR delayed action
12247 sets): Declare yylex before using it.
12248 * tests/Makefile.am (maintainer-check-g++): Fix a stray
12249 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
12250 test for valgrind; valgrind is independent of g++.
12251 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
12252 for compatibility with POSIX 1003.1-2001 (if running coreutils).
12253 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
12254 Use a destructor, so that we can expand the stack. Change
12255 YYSTYPE to char * so that we can free it. Cast result of malloc.
12256
12257 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
12258
12259 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
12260 a valgrind failure. Problem reported by twlevo@xs4all.nl.
12261
12262 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
12263
12264 * PACKAGING: New file, suggested by Bruno Haible and taken from
12265 similar wording in gettext's PACKAGING file.
12266 * NEWS: Mention PACKAGING.
12267 * Makefile.am (EXTRA_DIST): Add PACKAGING.
12268
12269 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
12270
12271 * NEWS: Document recent i18n improvements.
12272 * bootstrap: Get runtime translations into runtime-po.
12273 Create runtime-po files automatically, if possible.
12274 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
12275 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
12276 does not infringe on the user's name space.
12277 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
12278 * doc/bison.texinfo (Internationalization): Revamp the English
12279 and Texinfo syntax a bit, to try to make it clearer.
12280 (Bison Options, Option Cross Key): Mention --print-localedir.
12281 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
12282 YYENABLE_NLS. Quote a bit more.
12283 * runtime-po/.cvsignore: New file.
12284 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
12285 * runtime-po/Rules-quot: Remove; now created by bootstrap.
12286 * runtime-po/quot.sed: Likewise.
12287 * runtime-po/boldquot.sed: Likewise.
12288 * runtime-po/en@quot.header: Likewise.
12289 * runtime-po/en@boldquot.header: Likewise.
12290 * runtime-po/insert-header.sin: Likewise.
12291 * runtime-po/remove-potcdate.sin: Likewise.
12292 * runtime-po/Makevars: Likewise.
12293 * runtime-po/LINGUAS: Likewise.
12294 * runtime-po/de.po: Likewise; we will rely on the translation project
12295 to maintain this, so "bootstrap" should get it.
12296 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
12297 its value.
12298 * src/main.c (main): Bind the bison-runtime domain, too.
12299
12300 2005-07-12 Bruno Haible <bruno@clisp.org>
12301
12302 * data/yacc.c: Include <libintl.h> when NLS is enabled.
12303 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
12304 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
12305 * runtime-po: New directory.
12306 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
12307 $(DOMAIN).pot-update rule, so that old messages are never dropped.
12308 * runtime-po/Rules-quot: New file, copied from po/.
12309 * runtime-po/quot.sed: Likewise.
12310 * runtime-po/boldquot.sed: Likewise.
12311 * runtime-po/en@quot.header: Likewise.
12312 * runtime-po/en@boldquot.header: Likewise.
12313 * runtime-po/insert-header.sin: Likewise.
12314 * runtime-po/remove-potcdate.sin: Likewise.
12315 * runtime-po/Makevars: New file.
12316 * runtime-po/POTFILES.in: New file.
12317 * runtime-po/LINGUAS: New file.
12318 * runtime-po/bison-runtime.pot: New file.
12319 * runtime-po/de.po: New file.
12320 * m4/bison.m4: New file.
12321 * Makefile.am (SUBDIRS): Add runtime-po.
12322 (aclocaldir, aclocal_DATA): New variables.
12323 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
12324 Define aclocaldir.
12325 * src/getargs.c (usage): Document --print-localedir option.
12326 (PRINT_LOCALEDIR_OPTION): New enum item.
12327 (long_options): Add --print-localedir option.
12328 (getargs): Handle --print-localedir option.
12329 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
12330 (Internationalization): New section.
12331
12332 2005-07-12 Akim Demaille <akim@epita.fr>
12333
12334 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
12335 for consistency with the rest of the code.
12336 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
12337 Add separators.
12338
12339 2005-07-12 Akim Demaille <akim@epita.fr>
12340
12341 * src/parse-gram.y: Use %printer instead of YYPRINT.
12342
12343 2005-07-12 Akim Demaille <akim@epita.fr>
12344
12345 * src/symtab.h, src/symtab.c (symbol_print): New.
12346 * src/symlist.h, src/symlist.c (symbol_list_print): New.
12347 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
12348
12349 2005-07-12 Akim Demaille <akim@epita.fr>
12350
12351 * data/glr.c (b4_syncline): Fix (swap) the definitions of
12352 b4_at_dollar and b4_dollar_dollar.
12353
12354 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
12355
12356 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
12357 and Pennello's paper.
12358
12359 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
12360
12361 * data/yacc.c (yyparse): Undo previous patch. Instead,
12362 set yylsp[0] and yyvsp[0] only if the initial action
12363 sets yylloc and yylval, respectively.
12364
12365 * data/yacc.c (yyparse): In the initial action, set
12366 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
12367 This avoids the use of undefined variables if the initial
12368 action does not set yylloc and/or yylval.
12369
12370 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
12371
12372 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
12373 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
12374 Remove from CVS. These files are automatically generated.
12375 * examples/extexi: Clarify that this file is now part of Bison,
12376 not GNU M4, and that it works with any POSIX-compatible Awk.
12377 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
12378 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
12379 so that we also get calc++-parser.yy. Geneate it.
12380 Use $(AWK), not gawk, since any conforming Awk will do.
12381 Put comment before action, since older 'make' can't handle comment
12382 in action.
12383 $(BUILT_SOURCES): List all built sources, not just some of them.
12384 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
12385 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
12386 $($(calc_sources_generated)): Remove unnecessary test for existence
12387 of target. (This had a shell syntax error anyway; a stray "x".)
12388 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
12389 calc++-parser.yy.
12390 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
12391
12392 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
12393 implied by the other modules.
12394
12395 2005-07-06 Akim Demaille <akim@epita.fr>
12396
12397 Bind examples/calc++ to the package.
12398 * examples/calc++/Makefile: Remove, replaced by...
12399 * examples/calc++/Makefile.am: ... this new file.
12400 * examples/calc++/test: Remove input.
12401 * examples/calc++/compile: Remove.
12402 * examples/Makefile.am: New.
12403 * configure.ac, Makefile.am: Adjust.
12404 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
12405
12406 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
12407
12408 * data/glr.c (yyFail): Drastically simplify; since the format argument
12409 never had any % directives, we can simply pass it to yyerror.
12410 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
12411 be modified later, as that is the usual style in glr.c.
12412 Problems reported by Paul Hilfinger.
12413
12414 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
12415 and size overflow errors.
12416 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
12417 in case the user prolog sets feature-test macros like _GNU_SOURCE.
12418 (YYSIZEMAX): New macro.
12419 (yystpcpy): New function, taken from yacc.c.
12420 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
12421 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
12422 so that we don't have to maintain their signatures.
12423 (yyFail): Check for buffer overflow, by using vsnprintf rather
12424 than vsprintf. Allocate a bigger buffer if possible.
12425 Report an error if buffer allocation fails.
12426 (yyStackOverflow): New function.
12427 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
12428 the initialization was successful. It might fail if storage was
12429 exhausted.
12430 (yyexpandGLRStack): Add more checks for storage allocation failure.
12431 Use yyStackOverflow to report failures.
12432 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
12433 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
12434 Don't assume stack number fits in int.
12435 (yysplitStack): Check for storage allocation failure.
12436 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
12437 can print diagnostics on storage allocation failure. All callers
12438 changed.
12439 (yyresolveValue): Use yybool for boolean.
12440 (yyreportSyntaxError): Check for size-calculation overflow.
12441 This code is taken from yacc.c.
12442 (yyparse): Check for storage allocation errors when allocating
12443 the initial stack.
12444
12445 2005-07-05 Akim Demaille <akim@epita.fr>
12446
12447 Extract calc++ from the documentation.
12448 * doc/bison.texinfo (Calc++): Add the extraction marks.
12449 * examples/extexi: New, from the aborted GNU Programming 2E.
12450 Separate the different paragraph of a file with empty lines.
12451 * examples/Makefile: Use it to extract the whole calc++ example.
12452
12453 2005-06-24 Akim Demaille <akim@epita.fr>
12454
12455 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
12456 class typedefs.
12457
12458 2005-06-22 Akim Demaille <akim@epita.fr>
12459
12460 * doc/bison.texinfo (C++ Language Interface): First stab.
12461 (C++ Parsers): Remove.
12462
12463 2005-06-22 Akim Demaille <akim@epita.fr>
12464
12465 * data/lalr1.cc (yylex_): Honor %lex-param.
12466
12467 2005-06-22 Akim Demaille <akim@epita.fr>
12468
12469 Start a set of simple examples.
12470 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
12471 * examples/calc++/calc++-driver.hh,
12472 * examples/calc++/calc++-parser.yy,
12473 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
12474 * examples/calc++/compile, examples/calc++/test: New.
12475
12476 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
12477
12478 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
12479 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
12480 which stems from the 2005-05-27 patch.
12481
12482 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
12483
12484 * data/glr.c: Modify treatment of unused parameters to permit use
12485 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
12486
12487 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
12488
12489 Fix infringement on user name space reported by Janos Zoltan Szabo.
12490 * data/yacc.c (yyparse): strlen -> yystrlen.
12491
12492 2005-05-30 Akim Demaille <akim@epita.fr>
12493
12494 * data/lalr1.cc (_): New.
12495 Translate the various messages.
12496
12497 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
12498
12499 Fix infringement on user name space reported by Bruno Haible.
12500 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
12501 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
12502 the user's name space.
12503 (alloca): Include <stdlib.h> to get it, if it's not built in.
12504 (YYMALLOC, YYFREE): Define only if needed.
12505 (malloc, free): Declare, but only if needed, as this infringes on
12506 the user name space.
12507
12508 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
12509
12510 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
12511 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
12512 with %d format.
12513 * lib/ebitset.c (min, max): Undef before defining.
12514 * lib/vbitset.c (min, max): Likewise.
12515 * lib/subpipe.c (create_subpipe): Save local variables in case
12516 vfork clobbers them.
12517
12518 2005-05-24 Bruno Haible <bruno@clisp.org>
12519
12520 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
12521 error message syntax used by gcc-4.0.
12522
12523 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
12524
12525 * README: Mention m4 1.4.3. Remove obsolete advice about
12526 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
12527
12528 * bootstrap: Remove workaround for problem I encountered with
12529 gettext 0.14.1; it seems to be fixed now.
12530
12531 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
12532
12533 * NEWS: Version 2.0a.
12534
12535 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
12536 the previous change.
12537
12538 Various maintainer cleanups.
12539 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
12540 conftest*, for benefit of CVS commands run at the same time as
12541 "configure". Add build-aux, since "bootstrap" now creates it and
12542 its subfiles.
12543 * Makefile.cfg (move_if_change): Remove.
12544 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
12545 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
12546 (po_repo, do-po-update, po-update, wget_files, get-targets):
12547 (config.guess-url_prefix, config.sub-url_prefix):
12548 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
12549 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
12550 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
12551 Remove.
12552 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
12553 this is now the recommended name.
12554 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
12555 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
12556 ylwrap. These files now go into build-aux.
12557 * config/move-if-change: Remove.
12558 * config/prev-version.txt: Bump from 1.75 to 2.0.
12559
12560 * bootstrap: Add stdio-safer, unistd-safer modules.
12561 Remove m4/glibc2.m4 (introduced by latest gnulib, but
12562 we don't need it).
12563 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
12564 fopen-safer.c, stdio-safer.h, unistd-safer.h.
12565 * lib/subpipe.c: Include "unistd-safer.h".
12566 (create_subpipe): Make sure all the newly-created
12567 file descriptors are > 2, so that diagnostics don't
12568 get sent down them (which might cause Bison to hang, in theory).
12569 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
12570 * src/files.c (xfopen): Use fopen_safer, not fopen.
12571
12572 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
12573 yesterday's yacc.c fix.
12574
12575 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
12576
12577 * data/glr.c, data/lalr1.cc: Update copyright date.
12578
12579 Fix a destructor bug reported by Wolfgang Spraul in
12580 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
12581 * data/yacc.c (yyabortlab): Don't call destructor, and
12582 don't set yychar to EMPTY.
12583 (yyoverflowlab): Don't call destructor.
12584 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
12585 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
12586 since we no longer output the message "discarding lookahead token
12587 end of input ()".
12588
12589 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
12590
12591 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
12592 fix a small glitch in debugging output.
12593 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
12594 after YY_SYMBOL_PRINT where needed.
12595
12596 (struct yyGLRState): Add some comments.
12597 (struct yySemanticOption): Add some comments.
12598 (union yyGLRStackItem): Add comment.
12599
12600 (yymergeOptionSets): Correct this to properly perform the union,
12601 avoiding infinite reported by Michael Rosien.
12602 Update comment.
12603
12604 * tests/glr-regression.at: Add test for GLR merging error reported
12605 by M. Rosien.
12606
12607 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
12608
12609 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
12610 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
12611 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
12612 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
12613 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
12614 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
12615 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
12616 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
12617 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
12618 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
12619 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
12620 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
12621 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
12622 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
12623 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
12624 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
12625 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
12626 src/derives.h, src/files.c, src/files.h, src/getargs.c,
12627 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
12628 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
12629 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
12630 src/output.h, src/parse-gram.c, src/parse-gram.h,
12631 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
12632 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
12633 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
12634 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
12635 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
12636 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
12637 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
12638 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
12639 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
12640 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
12641 tests/reduce.at, tests/regression.at, tests/sets.at,
12642 tests/synclines.at, tests/testsuite.at, tests/torture.at:
12643 Update FSF postal mail address.
12644
12645 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
12646
12647 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
12648 Problem reported by Ralf Menzel.
12649
12650 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
12651
12652 * tests/actions.at: Test that stack overflow invokes destructors.
12653 From Marcus Holland-Moritz.
12654 * data/yacc.c (yyerrlab): Move the code that destroys the stack
12655 from here....
12656 (yyreturn): to here. That way, destructors are called properly
12657 even if the stack overflows, or the user calls YYACCEPT or
12658 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
12659 (yyoverflowlab): Destroy the lookahead.
12660
12661 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
12662
12663 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
12664
12665 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
12666
12667 * NEWS: Bison-generated C parsers no longer quote literal strings
12668 associated with tokens.
12669 * src/output.c (prepare_symbols): Don't escape strings,
12670 since users don't want to see C escapes.
12671 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
12672 in diagnostics.
12673 * tests/input.at (Torturing the Scanner): Likewise.
12674 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
12675
12676 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
12677
12678 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
12679 the data size is known to be too small and we can't increase it.
12680 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
12681
12682 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
12683
12684 * src/parse-gram.y: Include quotearg.h.
12685 (string_as_id): Quote $1 before using it as a key, since the
12686 lexer no longer quotes it for us.
12687 (string_content): Don't strip quotes, since lexer no longer
12688 quotes it for us.
12689 * src/scan-gram.l: Include quotearg.h.
12690 ("\""): Omit quote.
12691 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
12692 a key, since the rest of the lexer doesn't quote it.
12693 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
12694 * tests/regression.at (Token definitions): Check for backslashes
12695 in token strings.
12696
12697 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
12698 (YYSIZE_T): Define to unsigned long int when using an older compiler.
12699 (yyparse): Revamp code to generate long syntax error message, to
12700 make it easier to translate, and to avoid problems with arithmetic
12701 overflow. Change "virtual memory" to "memory" in diagnostic, since
12702 we don't know whether the memory is virtual.
12703
12704 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
12705
12706 * NEWS: Bison-generated C parsers now use the _ macro to
12707 translate strings.
12708 * data/yacc.c (_) [!defined _]: New macro.
12709 All English strings wrapped inside this macro.
12710 * doc/bison.texinfo (Bison Parser): Document _.
12711 * po/POTFILES.in: Include src/parse-gram.c, since it now
12712 includes translateable strings that parse-gram.y doesn't.
12713
12714 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
12715
12716 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
12717 reverting the 2004-10-11 change to this function.
12718 (symbol_check_alias_consistency): Don't call symbol_type_set
12719 if the type name is already correct.
12720 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
12721
12722 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
12723
12724 * tests/regression.at (Token definitions): Don't use a token named
12725 c, as that generates a "#define c ..." that runs afoul of buggy
12726 stdlib.h that uses the identifier c as a member of struct
12727 drand48_data. Problem reported by Horst Wente.
12728
12729 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
12730
12731 * bootstrap: Change translation URL from
12732 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
12733 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
12734 redirection glitches. Problem reported by twlevo@xs4all.nl.
12735
12736 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
12737
12738 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
12739 after operands; POSIX says this isn't portable for the c99 command.
12740
12741 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
12742
12743 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
12744 immediately if a data overrun has occurred; this may help us track
12745 down what may be a spurious failure on MacOS.
12746
12747 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
12748
12749 Respond to problems reported by twlevo@xs4all.nl.
12750
12751 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
12752
12753 * src/vcg.h: Comment fix.
12754 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
12755 (G_CMAX): Change to -1 instead of INT_MAX.
12756
12757 * data/yacc.c (yyparse): Omit spaces before #line.
12758
12759 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
12760
12761 * src/tables.c (state_number_to_vector_number): Put it inside an
12762 "#if 0", since it's not currently used. Problem reported by
12763 Roland McGrath.
12764
12765 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
12766
12767 * src/output.c (escaped_output): Renamed from
12768 escaped_file_name_output, since we now use it for symbol tags as
12769 well. All uses changed.
12770 (symbol_destructors_output, symbol_printers_output):
12771 Escape symbol tags too.
12772 Problem reported by Matyas Forstner in
12773 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
12774
12775 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
12776 not needed.
12777 * src/output.c (user_actions_output, token_definitions_output,
12778 symbol_destructors_output, symbol_printers_output): Likewise.
12779 * src/reader.c (prologue_augment): Likewise.
12780 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
12781
12782 * src/vcg.c (output_edge): Don't quote linestyle arg.
12783 Problem reported by twlevo@xs4all.nl.
12784
12785 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
12786
12787 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
12788 example, reported by Derek M Jones. Also, make the example even
12789 more outrageous, to better illustrate how bad the problem is.
12790
12791 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
12792
12793 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
12794 putsym. Typo reported by Sebastian Piping.
12795
12796 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
12797
12798 * doc/bison.texinfo (Language and Grammar): some -> same
12799 (Epilogue): int he -> in the
12800 Typos reported by Sebastian Piping via Justin Pence.
12801
12802 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
12803
12804 * tests/glr-regression.at (Improper handling of embedded actions
12805 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
12806 embedded actions and $-N in GLR parsers", work around an Autoconf bug
12807 with dollar signs in test names.
12808 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
12809 for a similar reason.
12810
12811 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
12812
12813 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
12814 wants to redefine G_VIEW.
12815
12816 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
12817
12818 * src/vcg.c (get_view_str): Remove case for normal_view.
12819 Problem reported by twlevo@xs4all.nl.
12820
12821 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
12822
12823 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
12824 Problem reported by twlevo@xs4all.nl.
12825
12826 * doc/bison.texinfo: Change @dircategory from "GNU programming
12827 tools" to "Software development". Requested by Richard Stallman
12828 via Karl Berry.
12829
12830 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
12831
12832 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
12833 Problem reported by twlevo@xs4all.nl.
12834
12835 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
12836
12837 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
12838 keyword; it's not needed with modern compilers, and it doesn't
12839 affect correctness with older compilers. Suggested by
12840 twlevo@xs4all.nl.
12841
12842 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
12843
12844 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
12845 gcc -Wswitch-default.
12846 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
12847 * data/yacc.c (yyparse): Likewise.
12848
12849 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
12850
12851 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
12852 already. Let config.h define any nonstandard values.
12853
12854 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
12855
12856 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
12857 for the benefit of slower hosts. Problem reported by
12858 Nelson H. F. Beebe.
12859
12860 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
12861
12862 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
12863 being defined and not used.
12864 * data/lalr1.cc (yyparse): Likewise.
12865 Use "if (false)" rather than "if (0)".
12866
12867 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
12868
12869 * TODO: Mention that we should allow NUL bytes in tokens.
12870
12871 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
12872
12873 * src/scan-skel.l (<<EOF>>): Don't close standard output.
12874 Problem reported by Hans Aberg.
12875
12876 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
12877
12878 * src/getargs.c (version): Happy new year; update overall
12879 program copyright date from 2004 to 2005.
12880
12881 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
12882 Problem reported by Hans Aberg.
12883 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
12884 (Output file names.): Add a test for the case when standard output
12885 is closed.
12886
12887 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
12888
12889 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
12890 to fix an oversight in the Bison 2.0 manual.
12891
12892 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
12893
12894 * NEWS: Version 2.0. Reformat the existing news items since
12895 1.875, so that related items are grouped together.
12896 * configure.ac (AC_INIT): Bump version to 2.0.
12897 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
12898
12899 * tests/torture.at (Exploding the Stack Size with Alloca): Set
12900 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
12901 otherwise, we're not testing alloca. Unfortunately there's no
12902 simple way to consult HAVE_ALLOCA here.
12903
12904 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
12905 for yymsg, too.
12906
12907 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
12908 hand. This avoids a warning about comparing int to size_t when
12909 GCC warnings are enabled.
12910
12911 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
12912
12913 * NEWS: Bison-generated parsers no longer default to using the
12914 alloca function (when available) to extend the parser stack, due
12915 to widespread problems in unchecked stack-overflow detection.
12916 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
12917 responsibility to set it to a positive value. This lets the user
12918 specify a value that is not a preprocessor constant.
12919 * data/yacc.c (YYMAXDEPTH): Likewise.
12920 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
12921 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
12922 to be a compile-time constant. However, explain the constraints on it.
12923 Also, explain the constraints on YYINITDEPTH.
12924 (Table of Symbols): Explain that alloca is no longer the default.
12925 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
12926 to 1.
12927
12928 * doc/bison.texinfo (Location Default Action): Mention that n must
12929 be zero when k is zero. Suggested by Frank Heckenbach.
12930
12931 2004-12-22 Akim Demaille <akim@epita.fr>
12932
12933 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
12934 (parser::state_type, parser::semantic_type, parser::location_type):
12935 Private, not public.
12936 (parser::parse): Return ints, not bool.
12937 Returning a bool introduces a problem: 0 corresponds to false, and
12938 it seems weird to return false on success. Returning true changes
12939 the conventions for yyparse.
12940 Alternatively we could return void and send an exception.
12941 There is no clear consensus (yet?).
12942 (state_stack, semantic_stack, location_stack): Rename as...
12943 (state_stack_type, semantic_stack_type, location_stack_type): these.
12944 Private, not public.
12945 * tests/c++.at: New.
12946 * tests/testsuite.at, tests/Makefile.am: Adjust.
12947
12948 2004-12-21 Akim Demaille <akim@epita.fr>
12949
12950 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
12951
12952 2004-12-21 Akim Demaille <akim@epita.fr>
12953
12954 Don't impose std::string for filenames.
12955
12956 * data/lalr1.cc (b4_filename_type): New.
12957 (position::filename): Use it.
12958 (parser.hh): Move the inclusion of stack.hh and location.hh below
12959 the user code, so that needed headers for the filename type can be
12960 included first.
12961 Forward declare them before the user code.
12962 * tests/Makefile.am (check-local, installcheck-local): Pass
12963 TESTSUITEFLAGS to the TESTSUITE.
12964
12965 2004-12-20 Akim Demaille <akim@epita.fr>
12966
12967 Use more STL like names: my_class instead of MyClass.
12968
12969 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
12970 (SemanticStack, SemanticType, StateStack, StateType)
12971 (TokenNumberType, Stack, Slice, Traits, Parser::location)
12972 (Parser::value): Rename as...
12973 (location_stack, location_type, rhs_number_type, semantic_stack)
12974 (semantic_type, state_stack, state_type, token_number_type, stack)
12975 (slice, traits, parser::yylloc, parser::yylval): these.
12976
12977 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
12978
12979 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
12980
12981 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
12982 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
12983
12984 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
12985
12986 Remove uses of 'short int' and 'unsigned short int'. This raises
12987 some arbitrary limits. It uses more memory but nowadays that's
12988 not much of an issue.
12989
12990 This change does not affect the generated parsers; that's a different
12991 task, as some users will want to conserve memory there.
12992
12993 Ideally we should use size_t to represent all object counts, and
12994 something like ptrdiff_t to represent signed differences of object
12995 counts; but that will require more code-cleanup than I have the
12996 time to do right now.
12997
12998 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
12999 Use size_t, not int or short int, to count objects.
13000 * src/closure.c (nritemset, closure): Likewise.
13001 * src/closure.h (nritemset, closure): Likewise.
13002 * src/nullable.c (nullable_compute): Likewise.
13003 * src/print.c (print_core): Likewise.
13004 * src/print_graph.c (print_core): Likewise.
13005 * src/state.c (state_compare, state_hash): Likewise.
13006 * src/state.h (struct state): Likewise.
13007 * src/tables.c (default_goto, goto_actions): Likewise.
13008
13009 * src/gram.h (rule_number, rule): Use int, not short int.
13010 * src/output.c (prepare_rules): Likewise.
13011 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
13012 errs, reductions): Likewise.
13013 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
13014 Likewise.
13015 * src/tables.c (vector_number, tally, action_number,
13016 ACTION_NUMBER_MINIMUM): Likewise.
13017 * src/output.c (muscle_insert_short_int_table): Remove.
13018
13019 2004-12-17 Akim Demaille <akim@epita.fr>
13020
13021 * data/lalr1.cc: Extensive Doxygenation.
13022 (error_): Rename as...
13023 (error): this, since it is visible to the user.
13024 Adjust callers.
13025 (Parser::message): Now an automatic variable from...
13026 (Parser::yyreport_syntax_error_): here.
13027 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
13028 Parser::error.
13029 * tests/input.at: Escape $.
13030
13031 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
13032
13033 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
13034 Parenthesize rhs to avoid obscure problems with mistakes like
13035 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
13036 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
13037 b4_rhs_location): Likewise.
13038 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
13039 b4_rhs_location): Likewise.
13040
13041 2004-12-16 Akim Demaille <akim@epita.fr>
13042
13043 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
13044 yacc.c: be sure to stay within yycheck_.
13045 * tests/actions.at: Re-enable C++ tests.
13046
13047 2004-12-16 Akim Demaille <akim@epita.fr>
13048
13049 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
13050 real.
13051
13052 2004-12-16 Akim Demaille <akim@epita.fr>
13053
13054 Use #define to handle the %name-prefix.
13055
13056 * data/glr.c, data/yacc.c: Comment changes.
13057 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
13058 so that one can refer to yylex in the parser file, and have it
13059 renamed, as is the case with other skeletons.
13060
13061 2004-12-16 Akim Demaille <akim@epita.fr>
13062
13063 Move lalr1.cc internals into yy*.
13064
13065 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
13066 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
13067 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
13068 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
13069 (empty_, final_, terror_, errcode_, ntokens_)
13070 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
13071 (looka_, ilooka_, error_range_, nerrs_):
13072 Rename as...
13073 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
13074 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
13075 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
13076 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
13077 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
13078 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
13079 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
13080 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
13081 these.
13082
13083 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
13084
13085 Fix some problems reported by twlevo at xs4all.
13086 * src/symtab.c (symbol_new): Report an error if the input grammar
13087 contains too many symbols. This is better than calling abort() later.
13088 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
13089 (struct node, struct graph):
13090 Rename member expand to stretch. All uses changed.
13091 (struct graph): Remove member layoutalgorithm. All uses removed.
13092 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
13093 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
13094 All uses changed.
13095 (N_STRETCH): Rename from N_EXPAND. All uses changed.
13096
13097 2004-12-15 Akim Demaille <akim@epita.fr>
13098
13099 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
13100 Add more Doxygen comments.
13101 (symprint_, stack_print_, reduce_print_, destruct_, pop)
13102 (report_syntax_error_, translate_): Rename as...
13103 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
13104 (yypop_, yyreport_syntax_error_, yytranslate_): this.
13105
13106 2004-12-15 Akim Demaille <akim@epita.fr>
13107
13108 * data/lalr1.cc (lex_): Rename as...
13109 (yylex_): this.
13110 Move the trace here.
13111 Take the %name-prefix into account.
13112 Reported by Alexandre Duret-Lutz.
13113
13114 2004-12-15 Akim Demaille <akim@epita.fr>
13115
13116 Simplify the C++ parser constructor.
13117
13118 * data/lalr1.cc (debug_): Rename as...
13119 (yydebug_): so that the parser's internals are always in the yy*
13120 pseudo namespace.
13121 Adjust uses.
13122 (b4_parse_param_decl): Remove the leading comma as it is now only
13123 called as unique argument list.
13124 (Parser::Parser): Remove the constructor accepting a location and
13125 an initial debugging level.
13126 Remove from the other ctor the argument for the debugging level.
13127 (debug_level_type, debug_level, set_debug_level): New.
13128
13129 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
13130 constructor calls.
13131
13132 2004-12-15 Akim Demaille <akim@epita.fr>
13133
13134 Remove b4_root related material: failure experiment
13135 (which goal was to allow to derive from a class).
13136
13137 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
13138 definitions and uses.
13139
13140 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
13141
13142 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
13143 not 2, since it's not portable to subtract 1 from the start of an
13144 array. The new item 0 is never set or used. All uses changed.
13145
13146 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
13147 the default definition of YYLLOC_DEFAULT. Problem reported
13148 by Frank Heckenbach.
13149
13150 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
13151
13152 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
13153 the normal case and one for the error case. Just use the
13154 first one uniformly. Problem reported by Frank Heckenbach.
13155 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
13156 use exactly the same macro in both places.
13157 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
13158 so that the normal-case YYRHSLOC works for the error case too.
13159 All uses changed.
13160 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
13161 (YYLLOC_DEFAULT): Use the same macro as glr.c.
13162 * doc/bison.texinfo (Location Default Action): Don't claim that
13163 we have an array of locations. Use the same macro for both glr
13164 and lalr parsers. Mention YYRHSLOC. Mention what happens when
13165 the index is 0.
13166
13167 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
13168
13169 * HACKING: Update email addresses to send announcements to.
13170
13171 * configure.ac (AC_INIT): Bump version to 1.875f.
13172
13173 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
13174
13175 * NEWS: Version 1.875e.
13176 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
13177
13178 * src/scan-skel.l: Include "complain.h", for "fatal".
13179
13180 * src/relation.h (relation_print, relation_digraph):
13181 Relation sizes are of type relation_node, not size_t (this is
13182 merely a doc fix, since the two types are equivalent).
13183 (relation_transpose): Relation sizes are of type relation_node,
13184 not int.
13185 * src/relation.c: Likewise.
13186 (top, infinity): Now of type relation_node, not int.
13187 (traverse, relation_transpose): Use relation_node, not int.
13188
13189 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
13190 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
13191 (yyparse): Remove unused local introduced in 2004-10-25 patch.
13192
13193 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
13194 specifying whether the test should be skipped. Use it tp
13195 specify that the [%defines %skeleton "lalr1.cc"] tests currently
13196 fail on some hosts, and should be skipped.
13197
13198 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
13199
13200 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
13201 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
13202 unless otherwise specified below.
13203
13204 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
13205 to allocate kernel_base, kernel_items, kernel_size, since
13206 they needn't be initialized to 0.
13207 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
13208 * src/closure.c (new_closure): Likewise, for itemset.
13209 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
13210 * src/lalr.c (set_goto_map): Likewise, for temp_map.
13211 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
13212 (build_relations): Likewise for edge, states1, includes.
13213 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
13214 * src/reader.c (packgram): Likewise, for ritem, rules.
13215 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
13216 * src/relation.c (relation_digraph): Likewise for VERTICES.
13217 (relation_transpose): Likewise for new_R, end_R.
13218 * src/symtab.c (symbols_token_translations_init): Likewise for
13219 token_translations.
13220 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
13221 (token_actions): Likewise for yydefact, actrow, conflrow,
13222 conflict_list.
13223 (save_column): Likewise for froms[symno], tos[symno].
13224 (goto_actions): Likewise for state_count.
13225 (pack_table): Likewise for base, pos, check.
13226 (tables_generate): Likewise for width.
13227
13228 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
13229 for initial core. Just have a separate core, so we needn't worry
13230 about whether kernel_size and kernel_base are initialized.
13231
13232 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
13233 kernel_size, kernel_items): Remove unnecessary initialization.
13234 * src/conflicts.c (conflicts): Likewise.
13235 * src/derives.c (derives): Likewise.
13236 * src/muscle_tablc (muscle_insert): Likewise.
13237 * src/relation.c (relation_digraph): Likewise.
13238 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
13239 conflrow, conflict_table, conflict_list, table, check):
13240 Likewise.
13241
13242 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
13243 This is because all callers pass unsigned int.
13244 * src/closure.h (new_closure): Likewise.
13245
13246 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
13247 (build_relations): Initialize includes[i] in all cases.
13248 * src/reader.c (packgram): Always initialize rules[ruleno].prec
13249 and rules[ruleno].precsym. Initialize members in order.
13250 * src/relation.c (relation_transpose): Always initialize new_R[i]
13251 and end_R[i].
13252 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
13253
13254 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
13255 conflict_list[0] was always 0, but now it isn't initialized.
13256
13257 * src/table.c (table_grow): When conflict_table grew, the grown
13258 area wasn't cleared. Fix this.
13259
13260 * lib/.cvsignore: Add strdup.c, strdup.h.
13261 * m4/.cvsignore: Add strdup.m4.
13262
13263 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
13264
13265 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
13266 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
13267 GOTO_NUMBER_MAXIMUM, since we occasionally compute
13268 ngotos + 1 without checking for overflow.
13269 (build_relations): Use END_NODE, not -1, to denote end of edges.
13270 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
13271 build_relations): Use goto_number, not int, for goto numbers.
13272 * src/tables.c (save_column, default_goto): Likewise.
13273
13274 2004-11-23 Akim Demaille <akim@epita.fr>
13275
13276 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
13277 of #defining from yystype.
13278 Don't typedef yystype, C++ does not need it.
13279 This lets it possible to forward declare it as union.
13280
13281 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
13282
13283 * bootstrap (gnulib_modules): Add extensions.
13284 Problem reported by Jim Meyering.
13285
13286 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
13287
13288 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
13289 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
13290 src/system.h, src/tables.c: XFREE -> free, to accommodate
13291 recent change to gnulib xalloc.h.
13292 Problem reported by Jim Meyering.
13293
13294 2004-11-17 Akim Demaille <akim@epita.fr>
13295
13296 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
13297
13298 2004-11-17 Akim Demaille <akim@epita.fr>,
13299 Alexandre Duret-Lutz <adl@gnu.org>
13300
13301 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
13302 changes.
13303 (YYCDEBUG): Adjust.
13304 Use it instead of cdebug_.
13305 (Parser::debug_stream, Parser::set_debug_stream): New.
13306 (Parser::symprint_): Define cdebug_ for temporary backward
13307 compatibility.
13308 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
13309 debug_stream ().
13310
13311 2004-11-17 Akim Demaille <akim@epita.fr>
13312
13313 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
13314 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
13315 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
13316 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
13317
13318 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
13319
13320 * data/glr.c (yyloc_default): Remove; not used.
13321 Problem reported by Frank Heckenbach.
13322
13323 2004-10-25 Akim Demaille <akim@epita.fr>
13324
13325 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
13326 Introduce another definition to address simple location arrays.
13327 (yyGLRStack): New member: yyerror_range.
13328 (yyrecoverSyntaxError, yyparse): Update it.
13329 (yyrecoverSyntaxError): Use it when shifting the error token to
13330 have an accurate range, equivalent to the one computed by both
13331 yacc.c and lalr1.cc.
13332 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
13333 that column numbers start at column 0, as per GNU Coding
13334 Standards, the others tests, and the doc.
13335 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
13336 Adjust to the above change (first column is 0).
13337 And adjust the location of the "<error>", now covering the whole
13338 line.
13339
13340 2004-10-22 Akim Demaille <akim@epita.fr>
13341 and Paul Eggert <eggert@cs.ucla.edu>
13342
13343 Remove some arbitrary limits on goto numbers and relations.
13344 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
13345 initial values, since they're never used.
13346 (set_goto_map): ngotos is now unsigned, so test for overflow
13347 by seeing whether it wraps around to zero.
13348 * src/lalr.h (goto_number): Now size_t, not short int.
13349 (GOTO_NUMBER_MAXIMUM): Remove.
13350 * src/relation.c (relation_print, traverse, relation_transpose):
13351 Check for END_NODE rather than looking at sign.
13352 * src/relation.h (END_NODE): New macro.
13353 (relation_node): Now size_t, not short int.
13354
13355 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
13356
13357 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
13358 keyword, not an identifier. Problem reported by Baron Schwartz in
13359 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
13360
13361 2004-10-11 Akim Demaille <akim@epita.fr>
13362
13363 * src/symtab.c (symbol_check_alias_consistency): Also check
13364 type names, destructors, and printers.
13365 Reported by Alexandre Duret-Lutz.
13366 Recode the handling of associativity and precedence in terms
13367 of symbol_precedence_set.
13368 Accept no redeclaration at all, not even equal to the previous
13369 value.
13370 (redeclaration): New.
13371 Use it to factor redeclaration complaints.
13372 (symbol_make_alias): Don't set the type of the alias, let
13373 symbol_check_alias_consistency do it as for other features.
13374 * src/symtab.h (symbol): Add new member prec_location, and
13375 type_location.
13376 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
13377 * tests/input.at (Incompatible Aliases): New.
13378
13379 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
13380
13381 .cvsignore fixes to accommodate gnulib changes,
13382 and the practice of naming build directories "_build".
13383 * .cvsignore: Add "_*". Sort.
13384 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
13385 * m4/.cvsignore: Add "*_gl.m4".
13386
13387 2004-10-06 Akim Demaille <akim@epita.fr>
13388
13389 * src/parse-gram.y (add_param): Fix the truncation of trailing
13390 spaces.
13391
13392 2004-10-05 Akim Demaille <akim@epita.fr>
13393
13394 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
13395 whether the reducion was empty or not. This leaves room to
13396 improve the use of YYLLOC_DEFAULT in such a case.
13397 lalr1.cc is still experimental, so changing this is acceptable.
13398 And finally, there are probably not many users who changed the
13399 handling of locations in GLR, so changing is admissible too.
13400
13401 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
13402 empty reduction, set @$ to an empty location ending the previously
13403 stacked symbol.
13404 Adjust uses to make sure the code is triggered on empty
13405 reductions.
13406 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
13407 expected output: empty reductions have empty locations.
13408
13409 2004-09-29 Akim Demaille <akim@epita.fr>
13410
13411 * data/lalr1.cc: Move towards a more standard C++ coding style
13412 for templates: Class < T > -> Class<T>.
13413
13414 2004-09-29 Akim Demaille <akim@epita.fr>
13415
13416 * data/lalr1.cc: Reinstall the former ctor, for sake of
13417 compatibility, but warn it will be removed.
13418 Move towards a more standard C++ coding style (i.e., type *var ->
13419 type* var).
13420
13421 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
13422
13423 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
13424 since it's less likely to work if NULs are involved in the future.
13425
13426 2004-09-27 Akim Demaille <akim@epita.fr>
13427
13428 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
13429
13430 2004-09-27 Akim Demaille <akim@epita.fr>
13431
13432 * data/lalr1.cc (b4_parse_param_decl_1): New.
13433 (b4_parse_param_decl): Use it to have different names between attribute
13434 and argument names.
13435 (b4_cc_constructor_call): Likewise.
13436
13437 2004-09-24 Akim Demaille <akim@epita.fr>
13438
13439 * src/parse-gram.y (add_param): Strip the leading and trailing
13440 blanks from a formal argument declaration.
13441 (YY_LOCATION_PRINT): New.
13442
13443 2004-09-24 Akim Demaille <akim@epita.fr>
13444
13445 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
13446 after the location.
13447
13448 2004-09-24 Akim Demaille <akim@epita.fr>
13449
13450 * doc/bison.texinfo (Table of Symbols): Sort.
13451
13452 2004-09-21 Akim Demaille <akim@epita.fr>
13453
13454 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
13455 the useless parentheses.
13456 Suggested by Paul Eggert.
13457
13458 2004-09-20 Akim Demaille <akim@epita.fr>
13459
13460 Let the initial-action act on the look-ahead, and use it for the
13461 "initial push" (corresponding to an hypothetical beginning-of-file).
13462 And let lalr1.cc honor %initial-action.
13463
13464 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
13465 example.
13466 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
13467 (Parser::Parser): Remove the ctor that used to initialize it.
13468 (Parser::parse): Like in the other skeletons, issue the "starting
13469 parse" message before any action.
13470 Honor %initial-action.
13471 Initialize the stacks with the lookahead.
13472 * data/yacc.c: Let $$ and @$ in %initial-action designate the
13473 look-ahead.
13474 Push them in the stacks.
13475 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
13476
13477 2004-09-20 Akim Demaille <akim@epita.fr>
13478
13479 * doc/bison.texinfo (Initial Action Decl): New.
13480
13481 2004-09-20 Akim Demaille <akim@epita.fr>
13482
13483 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
13484 clearer criterion to define it.
13485 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
13486 When reducing on an empty RHS, use the latest stacked location as
13487 location.
13488 yylloc is not always available.
13489 * data/glr.c: Likewise.
13490 Also, honor initial-actions.
13491
13492 2004-09-20 Akim Demaille <akim@epita.fr>
13493
13494 * data/yacc.c (YY_LOCATION_PRINT): New.
13495 Define when we know YYLTYPE's structure, i.e., when the default
13496 YYLLOC_DEFAULT is used.
13497 * data/c.m4 (b4_yysymprint_generate): Use it.
13498 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
13499 value of the result.
13500 (error_start_): Replace with...
13501 (error_range_): this location array.
13502 This allows to replace code relying on the implementation of
13503 locations by portable code.
13504 * data/yacc.c (yylerrsp): Replace with...
13505 (yyerror_range): this.
13506 Every time a token is popped, update yyerror_range[0], to have an
13507 accurate location for the error token.
13508 * data/glr.c (YY_LOCATION_PRINT): New.
13509 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
13510 deference a pointer.
13511 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
13512 report the location in %printers.
13513
13514 * src/scan-skel.l: Instead of abort, report error messages to ease
13515 understanding skeleton scanning failures.
13516
13517 2004-09-16 Akim Demaille <akim@epita.fr>
13518
13519 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
13520 (iterator, const_iterator): these, to be more in the C++ spirit.
13521 Also, return reverse iterators so that when displaying the stack
13522 we display its bottom first.
13523 (Parser::stack_print_, Parser::reduce_print_): Match the messages
13524 from yacc.c.
13525 We should probably use vector here though.
13526
13527 2004-09-16 Akim Demaille <akim@epita.fr>
13528
13529 Have more complete shift traces.
13530
13531 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
13532 to report Shifts instead of ad hoc YYDPRINTF invocations,
13533 including for the error token.
13534 * data/lalr1.cc (symprint_): Output the location.
13535 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
13536 output the location within the %printer.
13537 Activate GLR tests, at least to make sure they compile properly.
13538 They still don't pass though.
13539 * tests/calc.at: Adjust expect verbose output, since now "Entering
13540 state..." is on a different line than the "Shifting" message.
13541
13542 2004-09-08 Akim Demaille <akim@epita.fr>
13543
13544 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
13545 Bison directive from the Bison file to the invocation of this
13546 macro, so that these directives are passed to
13547 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
13548 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
13549 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
13550 the extra Bison directives instead of the whole series.
13551 Change the grammar so that there are recoverable errors, and
13552 unrecoverable errors. Now we can have the parser give up before
13553 consuming the whole input. As a result we now can observe that
13554 the lookahead is freed when needed.
13555 Change the parser source to parse argv[1] instead of a hard coded
13556 string.
13557 Simplify yylex, and give a value and location to EOF.
13558 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
13559 passed directives already coded in the file.
13560 Add some tests to check the location of "error".
13561 For some tests, the C++ parser is correct, and not yacc.c.
13562 For other tests, they provide different, but unsatisfying, values,
13563 so keep the C++ value so that at least one parser is "correct"
13564 according to the test suite.
13565 (Actions after errors): Remove, this is subsumed by the
13566 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
13567
13568 2004-09-06 Akim Demaille <akim@epita.fr>
13569
13570 * data/lalr1.cc: Adjust the indentation of the labels.
13571 (Parser::pop): New.
13572 Use it.
13573
13574 2004-09-06 Akim Demaille <akim@epita.fr>
13575
13576 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
13577 argument, an informative message.
13578 Call YY_SYMBOL_PRINT.
13579 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
13580 * data/lalr1.cc (destruct_): Likewise.
13581 In addition, no longer depend on b4_yysymprint_generate and
13582 b4_yydestruct_generate to generate these functions, do it "by
13583 hand".
13584
13585 2004-09-03 Akim Demaille <akim@epita.fr>
13586
13587 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
13588 invoked, yydestruct the lookahead.
13589 * tests/calc.at (Calculator $1): Update the expected lengths of
13590 traces: there is an added line for the discarded lookahead.
13591 * doc/bison.texinfo (Destructor Decl): Some rewording.
13592 Define "discarded" symbols.
13593
13594 2004-09-02 Akim Demaille <akim@epita.fr>
13595
13596 * data/lalr1.cc (translate_, destruct_): No reason to be static.
13597
13598 2004-09-02 Akim Demaille <akim@epita.fr>
13599
13600 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
13601 (YYDSYMPRINTF): Rename as...
13602 (YY_SYMBOL_PRINT): this.
13603 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
13604 two.
13605 Use it instead of direct symprint_ calls.
13606 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
13607 one.
13608
13609 2004-09-02 Akim Demaille <akim@epita.fr>
13610
13611 * data/lalr1.cc (b4_yysymprint_generate): New.
13612 (symprint_): New member function, defined when YYDEBUG.
13613 Use it consistently instead of token/nterm debugging output by
13614 hand.
13615 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
13616 %printer calls to use cdebug_ when using lalr1.cc.
13617
13618 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
13619
13620 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
13621 with #ifdef YYDEBUG.
13622
13623 2004-08-26 Akim Demaille <akim@epita.fr>
13624
13625 * doc/bison.texinfo (Implementing Loops): Rename as...
13626 (Implementing Gotos/Loops): this.
13627
13628 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
13629
13630 Adjust to latest gnulib.
13631 * bootstrap (gnulib_modules): Add xalloc-die.
13632 Set LC_ALL=C so that file names sort consistently.
13633 Prefer the gnulib copies of gettext.m4, glibc21.m4,
13634 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
13635 uintmax_t.m4, ulonglong.m4.
13636 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
13637 po.m4 since we are now using _gl.m4 instead.
13638
13639 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
13640
13641 * src/scan-action.l: Remove. Scanning of semantic actions is
13642 handled in scan-gram.l.
13643
13644 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
13645
13646 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
13647
13648 * src/location.h (struct): The file member is a uniqstr.
13649 (equal_boundaries): Use UNIQSTR_EQ for comparison.
13650
13651 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
13652
13653 Fix bug with non-%union parsers that have printers or destructors,
13654 which led to a Bison core dump. Reported by Peter Fales in
13655 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
13656
13657 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
13658 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
13659 not to our own type.
13660 * src/output.c (symbol_destructors_output, symbol_printers_output):
13661 Don't assume %union.
13662 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
13663 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
13664 UNION-FLAG. All callers changed.
13665 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
13666 Use type char, not unsigned int, when declaring an array of char;
13667 this lets us remove a cast.
13668 (Printers and Destructors): Add non-%union test cases.
13669
13670 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
13671
13672 * doc/bison.texinfo: Minor editorial changes, mostly to the new
13673 GLR writeups. E.g., avoid frenchspacing and the future tense,
13674 change "lookahead" to "look-ahead", and change "wrt" to "with
13675 respect to".
13676
13677 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
13678
13679 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
13680 New sections, split off from the GLR Parsers section. Put the new
13681 Simple GLR Parser near the start of the GLR section, for clarity.
13682 Rewrite connective text.
13683
13684 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
13685
13686 * doc/bison.texinfo (Simple GLR Parsers): New section.
13687
13688 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
13689
13690 * NEWS, TODO, doc/bison.texinfo:
13691 Use "look-ahead" instead of "lookahead", to be consistent.
13692 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
13693 while we're fixing "look-ahead".
13694 * src/conflicts.c (shift_set): Renamed from shiftset.
13695 (look_ahead_set): Renamed from lookaheadset.
13696 * src/print.c: Likewise.
13697 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
13698 name for "lookahead".
13699 (report_types, usage): Likewise.
13700 * src/getargs.h (report_look_ahead_tokens): Renamed from
13701 report_lookaheads.
13702 * src/lalr.c (compute_look_ahead_tokens): Renamed from
13703 compute_lookaheads.
13704 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
13705 (look_ahead_tokens_print): Renamed from lookaheads_print.
13706 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
13707 state_rule_lookaheads_print.
13708 * src/state.h: Likewise.
13709 (reductions.look_ahead_tokens): Renamed from lookaheads.
13710 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
13711 AT_DATA_LOOKAHEADS_GRAMMAR.
13712
13713 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
13714
13715 * README: Update location of patched M4 distribution.
13716
13717 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
13718
13719 Don't assume the C++ compiler takes the same arguments as the C compiler
13720 (trivial change).
13721 * configure.ac (O0CXXFLAGS): New var.
13722 * tests/atlocal.in (CXXFLAGS): Use it.
13723
13724 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
13725
13726 Fix some "make check" problems with C++ reported by
13727 Albert Chin-A-Young for Tru64 C++ in this thread:
13728 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
13729
13730 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
13731 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
13732 Output to a .cc file for C++, not to a .c file.
13733 * tests/calc.at (AT_CHECK_CALC): Likewise.
13734 * tests/regression.at (AT_CHECK_DANCER): Likewise.
13735 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
13736
13737 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
13738
13739 * tests/calc.at, tests/actions.at: Workaround for SGI
13740 C++ compiler. (trivial change)
13741
13742 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
13743
13744 Spent a few hours checking out which prerequisite versions the
13745 current sources actually require. I went all the way back to
13746 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
13747 a seemingly endless set of combinations of versions more recent
13748 than that. The bottom line is that the current sources require
13749 fairly recent versions of the build tools, and it'll be some work
13750 to change this.
13751 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
13752 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
13753 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
13754 Add comments explaining why those particular versions are
13755 currently needed.
13756
13757 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
13758 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
13759 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
13760
13761 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
13762 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
13763
13764 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
13765
13766 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
13767 0.11.5. Suggested by Bruno Haible.
13768 * bootstrap: Remove gettext version checking.
13769
13770 * doc/bison.texinfo (Decl Summary): Also mention that %union
13771 can depend on prerequisite types. Problem reported by Tim
13772 Van Holder.
13773
13774 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
13775
13776 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
13777 * README-alpha: Don't tell people not to package this.
13778
13779 * bootstrap: Don't assume $(...) works; use `...` instead.
13780 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
13781 gettext better.
13782
13783 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
13784 put into the -d output file, and mention what to do if YYSTYPE is
13785 defined as a macro.
13786
13787 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
13788
13789 Undo change made earlier today: it caused autopoint to not bring
13790 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
13791 autopoint's.
13792
13793 * bootstrap: Check that gettext version matches what's in
13794 configure.ac. Warn users to ignore robots.txt ERROR 404.
13795 * bootstrap: Undo today's earlier change (logged below).
13796 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
13797
13798 The gettext version checking is causing more trouble than it's
13799 curing; remove it. Problem reported by Paul Hilfinger.
13800
13801 * bootstrap: Issue a warning that one can expect a message
13802 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
13803 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
13804
13805 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
13806
13807 Ensure that the C++ compiler used for testing actually works on a
13808 simple test program; if not, skip the C++-related tests. Problem
13809 reported by Vin Shelton in:
13810 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
13811
13812 * m4/cxx.m4: New file.
13813 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
13814 * tests/atlocal.in (BISON_CXX_WORKS): Add.
13815 * tests/local.at (AT_COMPILE_CXX): Use it.
13816
13817 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
13818
13819 * data/glr.c (yylloc): Output this macro even if locations are not
13820 being generated, as the GLR parser needs it even in that case.
13821 Problem reported by Troy A. Johnson
13822 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
13823
13824 * configure.ac (AC_INIT): Update to 1.875e.
13825
13826 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
13827
13828 * NEWS: Version 1.875d.
13829 * configure.ac (AC_INIT): Likewise.
13830 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
13831
13832 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
13833 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
13834 lalr1.cc runs afoul of the first, and the last two are no longer
13835 supported by GCC 3.4.0.
13836 * README: Mention GNU m4 1.4 or later; mention m4 patches.
13837 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
13838
13839 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
13840
13841 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
13842 unsigned int, for compatibility with latest gnulib hash module.
13843 * src/state.c (state_hash, state_hasher): Likewise.
13844 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
13845 * src/uniqstr.c (hash_uniqstr): Likewise.
13846
13847 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
13848
13849 * NEWS: Unescaped newlines are no longer allowed in char & strings.
13850
13851 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
13852 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
13853 character and string literals.
13854 (unexpected_end): New function.
13855 (unexpected_eof): Use it.
13856 (unexpected_newline): New function.
13857 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
13858 actions.
13859
13860 * NEWS: Document %expect-rr.
13861
13862 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
13863 Fix typo by replacing $1 with $option.
13864 Remove more 'intl'-related files.
13865 Don't DEFUN AM_INTL_SUBDIR twice.
13866
13867 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
13868 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
13869 strtoul.c.
13870 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
13871 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
13872 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
13873 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
13874 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
13875 * src/.cvsignore: Add *.output.
13876
13877 * src/parse-gram.y: Put copyright notice inside %{ %} so it
13878 gets copied to the output file.
13879
13880 2004-04-28 Paul Eggert <eggert@twinsun.com>
13881
13882 Get files from the gnulib and po repositories, instead of relying
13883 on them being in our CVS. Upgrade to latest versions of gnulib
13884 and Automake.
13885
13886 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
13887 * bootstrap: Bootstrap from gnulib and po repositories.
13888 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
13889 * README-cvs: Document these changes. Remove version numbers from
13890 mentions of build tools, since they change so often. Mention Flex.
13891
13892 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
13893 (gl_USE_SYSTEM_EXTENSIONS): Add.
13894 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
13895 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
13896 does this for us.
13897 (AC_ISC_POSIX): Remove; we no longer support this
13898 ancient OS, as it gets in the way of latest Autoconf & gnulib.
13899 (AC_HEADER_STDC): Remove: we now assume C89 or better.
13900 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
13901 Do not check for C89 headers, except for locale.h which is used
13902 by the Yacc library and must port to K&R hosts.
13903 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
13904 Do not check for C89 functions, except for setlocale which is
13905 used by the Yacc library.
13906 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
13907 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
13908 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
13909 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
13910 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
13911 AM_GNU_GETTEXT): Remove; now done by:
13912 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
13913 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
13914 for us.
13915
13916 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
13917 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
13918 Define to empty, as gnulib.mk will do the rest for us.
13919 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
13920 for us.
13921 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
13922 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
13923
13924 * src/files.c: Include gnulib's xstrndup.h.
13925
13926 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
13927 (REALLOC): Use xnrealloc, for likewise.
13928 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
13929 (strnlen, memrchr): Remove decls; functions no longer used.
13930 Include <stpcpy.h>.
13931
13932 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
13933 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
13934 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
13935 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
13936 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
13937 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
13938 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
13939 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
13940 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
13941 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
13942 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
13943 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
13944 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
13945 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
13946 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
13947 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
13948 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
13949 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
13950 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
13951 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
13952 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
13953 Remove, as these files are now generated automatically
13954 by bootstrap or automake.
13955
13956 * po/ChangeLog: Remove: all but one entry was a duplicate
13957 of this file, and I moved that 2000-11-02 entry here.
13958
13959 * config/.cvsignore: Add Makefile, depcomp, install-sh.
13960 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
13961 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
13962 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
13963 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
13964 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
13965 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
13966 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
13967 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
13968 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
13969 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
13970 xstrndup.h.
13971 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
13972 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
13973 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
13974 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
13975 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
13976 * src/.cvsignore: Remove *_.c.
13977
13978
13979 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
13980 support it. (The latest stable gzip doesn't.)
13981
13982 2004-04-27 Paul Eggert <eggert@twinsun.com>
13983
13984 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
13985 case, as stos_ is now used by destructors due to the 2004-02-09
13986 change.
13987
13988 Remove more K&R C support.
13989 * lib/libiberty.y (PARAMS): Remove. All uses removed.
13990 * lib/subpipe.c (errno): Remove decl.
13991 Include <stdlib.h> unconditionally.
13992 (EXIT_FAILURE): Remove macro.
13993 * src/complain.c (vfprintf, strerror): Remove.
13994 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
13995 unconditionally.
13996 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
13997 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
13998 (strchr, strspn, memchr): Remove decls.
13999 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
14000 unconditionally. Do not declare perror.
14001 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
14002 unconditionally.
14003
14004 * src/complain.c (_): Remove useless defn, as system.h defines this.
14005
14006 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
14007 with latest obstack.h.
14008 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
14009 to procedure types, as obstack.h now does that for us.
14010 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
14011
14012 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
14013 so that this include file can stand alone.
14014 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
14015 does this now. Include subpipe.h first after config.h, to
14016 test whether it can stand alone.
14017
14018 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
14019 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
14020 unused declaration.
14021
14022 * tests/synclines.at (%union synch line): Put a dummy member in
14023 the union, because empty unions aren't allowed in C. Caught
14024 by GCC 3.4.0.
14025
14026 2004-04-13 Jim Meyering <jim@meyering.net>
14027
14028 * src/conflicts.c (conflicts_print): Correct format string typo:
14029 use `%%' to produce literal `%'. (trivial change)
14030
14031 2004-03-30 Paul Eggert <eggert@twinsun.com>
14032
14033 * src/getargs.c (version): Update copyright year to 2004.
14034
14035 * data/c.m4 (b4_int_type): Use 'short int' rather than
14036 'short', and similarly for 'long', 'unsigned', etc.
14037 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
14038 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
14039 yy_yypstack, yydumpstack): Likewise.
14040 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
14041 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
14042 Likewise.
14043 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
14044 yy_stack_print, yyparse): Likewise.
14045 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
14046 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
14047 * lib/bitset.c (bitset_print): Likewise.
14048 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
14049 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
14050 * lib/bitsetv.c (bitsetv_dump): Likewise.
14051 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
14052 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
14053 Likewise.
14054 * src/LR0.c (allocate_itemsets): Likewise.
14055 * src/gram.h (rule_number, rule): Likewise.
14056 * src/lalr.h (goto_number): Likewise.
14057 * src/nullable.c (nullable_compute): Likewise.
14058 * src/output.c (prepare_rules): Likewise.
14059 * src/relation.c (relation_print, relation_digraph): Likewise.
14060 * src/relation.h (relation_node): Likewise.
14061 * src/state.h (state_number, transitions, errs, reductions,
14062 struct state): Likewise.
14063 * src/symtab.h (symbol_number, struct symbol): Likewise.
14064 * src/tables.c (vector_number, tally, action_number,
14065 default_goto, goto_actions): Likewise.
14066 * tests/existing.at (GNU Cim Grammar): Likewise.
14067 * tests/regression.at (Web2c Actions): Likewise.
14068
14069 * src/output.c (muscle_insert_short_int_table): Renamed from
14070 muscle_insert_short_table. All uses changed.
14071
14072 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
14073
14074 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
14075 (declaration): Replace expected_conflicts with expected_sr_conflicts.
14076 Add %expect-rr rule.
14077
14078 * src/scan-gram.l: Recognize %expect-rr.
14079
14080 * src/conflicts.h (expected_sr_conflicts): Rename from
14081 expected_conflicts.
14082 (expected_rr_conflicts): Declare.
14083
14084 * src/conflicts.c (expected_sr_conflicts): Rename from
14085 expected_conflicts.
14086 (expected_rr_conflicts): Define.
14087 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
14088 for GLR parsers.
14089 Use expected_sr_conflicts in place of expected_conflicts.
14090 Warn if expected_rr_conflicts used in non-GLR parser.
14091
14092 * doc/bison.texinfo: Add documentation for %expect-rr.
14093
14094 2004-03-08 Paul Eggert <eggert@gnu.org>
14095
14096 Add support for hex token numbers. Suggested by Odd Arild Olsen in
14097 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
14098
14099 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
14100 in lalr1.cc.
14101 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
14102 * src/scan-gram.l (scan_integer): New function.
14103 ({int}): Use it.
14104 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
14105 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
14106 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
14107 Say "long int", not "long", for uniformity with GNU style.
14108
14109 2004-02-25 Paul Eggert <eggert@twinsun.com>
14110
14111 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
14112 compilers. This fixes a problem with Intel's C++ compiler being
14113 chatty, reported by Guido Trentalancia in
14114 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
14115
14116 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
14117
14118 Support %destructor and merge error locations in lalr1.cc.
14119
14120 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
14121 (Parser::stos_): Define unconditionally.
14122 (Parser::destruct_): New method. Generate its body with
14123 b4_yydestruct_generate.
14124 (Parser::error_start_): New attribute.
14125 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
14126 token which are discarded.
14127 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
14128 error_start_ when erroneous token are discarded.
14129 (Parser::parse) <yyerrlab1>: Compute the location of the error
14130 token so that it covers all the discarded tokens.
14131 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
14132 it can be called with `%skeleton "lalr1.cc"', and do that.
14133
14134 2004-02-02 Paul Eggert <eggert@twinsun.com>
14135
14136 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
14137 $(top_srcdir)/lib and ../lib. This fixes a bug reported
14138 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
14139 There's no need to mention top_builddir since Automake does that
14140 for us.
14141 (INCLUDES): Remove, as Automake says it's obsolescent.
14142 Contents migrated into AM_CPPFLAGS as described above.
14143 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
14144
14145 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
14146
14147 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
14148 (yyreportSyntaxError): Handle case where lookahead token is
14149 YYEMPTY.
14150
14151 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14152
14153 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
14154 resulting parsers are compilable with C++.
14155
14156 2003-12-23 Paul Eggert <eggert@twinsun.com>
14157
14158 * config/depcomp, config/install-sh: Sync with Automake 1.8.
14159 * src/output.c (output_skeleton): Rename local var.
14160 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
14161 Bison tokens, as this runs afoul of the 2003-10-07 change that
14162 disallowed NUL bytes in character constants or string literals.
14163
14164 * tests/local.at: Require Autoconf 2.59's Autotest.
14165 * tests/testsuite.at: Don't include local.at, since we now assume
14166 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
14167 including it.
14168 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
14169 multiple inclusion warnings.
14170
14171 2003-12-02 Akim Demaille <akim@epita.fr>
14172
14173 * doc/bison.texinfo (How Can I Reset the Parser): More about start
14174 conditions.
14175 From Bruno Haible.
14176
14177 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
14178
14179 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
14180
14181 2003-10-07 Paul Eggert <eggert@twinsun.com>
14182
14183 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
14184 if testsuite doesn't exist.
14185
14186 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
14187 literals, unfortunately.
14188 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
14189 Complain about NUL bytes in character constants or string literals.
14190
14191 2003-10-05 Paul Eggert <eggert@twinsun.com>
14192
14193 * NEWS: Don't document %no-default-prec, as it's still
14194 too experimental.
14195 * doc/bison.texinfo: Document %no-default-prec only if
14196 the defaultprec flag is set. Normally it's not.
14197
14198 2003-10-04 Paul Eggert <eggert@twinsun.com>
14199
14200 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
14201 non-modifiable lvalue, instead of a modifiable one.
14202 * doc/bison.texinfo (Actions): Document that $$ can
14203 be assigned to. Do not claim that $$ and $N are
14204 array element references: user code should not rely on this.
14205
14206 2003-10-01 Paul Eggert <eggert@twinsun.com>
14207
14208 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
14209 (grammar_declaration): Use it.
14210 * src/scan-gram.l: New token %no-default-prec.
14211 * tests/conflicts.at: Revamp tests to use %no-default-prec.
14212 * NEWS, doc/bison.texinfo: Document the above.
14213
14214 2003-10-01 Akim Demaille <akim@epita.fr>
14215
14216 VCG no longer supports long_straight_phase.
14217
14218 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
14219 * src/print_graph.c (print_graph): Adjust.
14220
14221 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
14222 and Paul Eggert <eggert@twinsun.com>
14223
14224 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
14225 Table of Symbols): Document %default-prec.
14226 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
14227 (grammar_declaration): Set default_prec on %default-prec.
14228 * src/scan-gram.l (%default-prec): New token.
14229 * src/reader.h (default_prec): New flag.
14230 * src/reader.c: Likewise.
14231 (packgram): Handle it.
14232 * tests/conflicts.at (%default-prec without %prec,
14233 %default-prec with %prec, %default-prec 1): New tests.
14234
14235 2003-09-30 Paul Eggert <eggert@twinsun.com>
14236
14237 * tests/testsuite.at: Include local.at, not input.at, fixing
14238 a typo in the 2003-08-25 patch.
14239
14240 2003-08-27 Akim Demaille <akim@epita.fr>
14241
14242 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
14243 GCC warnings.
14244
14245 2003-08-26 Akim Demaille <akim@epita.fr>
14246
14247 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
14248 "<\#" to avoid magic from Gnus when posting parts of this script.
14249
14250 2003-08-26 Akim Demaille <akim@epita.fr>
14251
14252 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
14253 (Parser::parse): here.
14254 Adjust: nerrs and errstatus is now replaced by...
14255 (Parser::nerrs_, Parser::errstatus_): New.
14256
14257 2003-08-25 Akim Demaille <akim@epita.fr>
14258
14259 * config/announce-gen, Makefile.cfg: New.
14260 * Makefile.am: Adjust.
14261 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
14262 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
14263
14264 2003-08-25 Akim Demaille <akim@epita.fr>
14265
14266 When reducing initial empty rules, Bison parser read an initial
14267 location that is not defined. This results in garbage, and that
14268 affects Bison's own parser. Therefore we need (i) to extend Bison
14269 to support a means to initialize this location, and (ii) to use
14270 this CVS Bison to fix CVS Bison's parser.
14271
14272 * src/reader.h, reader.c (epilogue_augment): Remove, replace
14273 with...
14274 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
14275 * src/parse-gram.y: Adjust.
14276 (%initial-action): New.
14277 (%error-verbose): Since we require CVS Bison, there is no reason
14278 not to use it.
14279 * src/scan-gram.l: Adjust.
14280 * src/Makefile.am (YACC): New, to make sure we use our own parser.
14281 * data/yacc.c (yyparse): Use b4_initial_action.
14282
14283 2003-08-25 Akim Demaille <akim@epita.fr>
14284
14285 * doc/bison.texinfo: Don't promote stdout for error messages.
14286
14287 2003-08-25 Akim Demaille <akim@epita.fr>
14288
14289 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
14290 From Alexandre Duret-Lutz.
14291
14292 2003-08-25 Akim Demaille <akim@epita.fr>
14293
14294 Version 1.875c.
14295
14296 2003-08-25 Akim Demaille <akim@epita.fr>
14297
14298 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
14299 Use them.
14300
14301 2003-08-25 Akim Demaille <akim@epita.fr>
14302
14303 * data/lalr1.cc (Parser::reduce_print_): New.
14304 Use it.
14305
14306 2003-08-25 Akim Demaille <akim@epita.fr>
14307
14308 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
14309 error recovery loops. This patch is based on
14310 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
14311 Also, augment the similarity between lalr1.cc and yacc.c.
14312 Note: the locations of error recovery rules are not correct yet.
14313
14314 * data/lalr1.cc: Comment changes to augment the similarity between
14315 lalr1.cc and yacc.c.
14316 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
14317 (yyerrlab1): Remove, but where it used to be (now the bottom part of
14318 yyerrlab), when hitting EOF, pop the whole stack here instead of
14319 merely falling thru the default error handling mechanism.
14320 (yyerrorlab): New label, with the old contents of YYERROR,
14321 plus the following change: pop the stack of rhs corresponding
14322 to the production that invoked YYERROR. That is how Yacc
14323 behaves (required by POSIX).
14324 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
14325 fail.
14326
14327 2003-08-25 Akim Demaille <akim@epita.fr>
14328
14329 Tune local.at so that people can "autom4te -l autotest calc.at -o
14330 calc" for instance, to extract a sub test suite.
14331
14332 * tests/testsuite.at: Move the initialization, Autotest version
14333 requirement, and AT_TESTED invocation into...
14334 * tests/local.at: here.
14335 * tests/testsuite.at: Include it for compatibility with Autoconf
14336 2.57.
14337 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
14338 be ignore.
14339
14340 2003-08-04 Paul Eggert <eggert@twinsun.com>
14341
14342 Rework code slightly to avoid gcc -Wtraditional warnings.
14343 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
14344 The returned value is now stored in *YY0. All callers changed.
14345 * src/output.c (merge_output): Adjust to the above change.
14346
14347 2003-07-26 Paul Eggert <eggert@twinsun.com>
14348
14349 * data/glr.c (YYASSERT): New macro.
14350 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
14351 yyresolveStates, yyprocessOneStack):
14352 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
14353 Derived from a suggestion by Frank Heckenbach.
14354
14355 2003-07-25 Paul Eggert <eggert@twinsun.com>
14356
14357 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
14358 for portability to K&R C (after ansi2knr, presumably). See
14359 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
14360 by Frank Heckenbach, though I have omitted the structure-initialization
14361 part of his glr-knr.diff patch since I recall that the Portable
14362 C Compiler didn't require that change.
14363
14364 Let the user specify how to allocate and free memory.
14365 Derived from a suggestion by Frank Heckenbach in
14366 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
14367 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
14368 All uses of free, malloc, realloc changed to use these macros,
14369 and unnecessary casts removed.
14370 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
14371
14372 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
14373
14374 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
14375 use s.empty() rather than s == "" to test for empty string; see
14376 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
14377 (trivial change)
14378
14379 2003-06-25 Akim Demaille <akim@epita.fr>
14380
14381 * config/depcomp, config/install-sh: Update from masters.
14382
14383 2003-06-20 Paul Eggert <eggert@twinsun.com>
14384
14385 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
14386 and return properly parenthesized result.
14387 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
14388 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
14389 Remove unnecessary parentheses from uses.
14390 * doc/bison.texinfo (Location Default Action): Describe the
14391 conventions for parentheses.
14392
14393 2003-06-19 Paul Eggert <eggert@twinsun.com>
14394
14395 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
14396 yyreportTree): Do not assume that size_t is the same width as int,
14397 when printing sizes. Print sizes using an unsigned format.
14398 Problem reported by Frank Heckenbach in
14399 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
14400
14401 Port to Forte Developer 7 C compiler.
14402 * data/glr.c (struct YYLTYPE): If locations are not being used,
14403 declare a single dummy member, as empty structs do not conform
14404 to the C standard.
14405 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
14406 the Forte Developer 7 C compiler complains that end-of-loop
14407 code is not reached.
14408
14409 2003-06-17 Paul Eggert <eggert@twinsun.com>
14410
14411 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
14412 avoid warnings from picky compilers about redefinition of PARAMS.
14413
14414 2003-06-17 Paul Eggert <eggert@twinsun.com>
14415
14416 Version 1.875b.
14417
14418 * NEWS: Document 1.875b.
14419
14420 * lib/bbitset.h: Do not include config.h; that's the includer's job.
14421 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
14422 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
14423 Don't use 'index' in comments, as it's a builtin fn on some hosts.
14424 * lib/bitset_stats.c: Include gettext.h unconditionally, as
14425 per recent gettext manual's suggestion.
14426 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
14427 Use prototypes, not old-style definitions.
14428 * lib/lbitset.c (lbitset_unused_clear): Likewise.
14429 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
14430 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
14431 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
14432 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
14433 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
14434 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
14435 vbitset_or_and_cmp, vbitset_copy): Likewise.
14436
14437 * lib/libiberty.h: Do not include config.h; that's the includer's job.
14438 Do not include <stdlib.h>.
14439 (PARAMS): Define unconditionally for C89.
14440 (ATTRIBUTE_NORETURN): Remove.
14441 (ATTRIBUTE_UNUSED): Define unconditionally.
14442
14443 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
14444 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
14445 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
14446 * lib/vbitset.c, lib/vbitset.h: New files.
14447 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
14448 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
14449 from libbitset.
14450
14451 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
14452 `How Can I Reset @code{yyparse}', since texinfo does not allow
14453 arbitrary @ in node names.
14454
14455 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
14456 shouldn't be needed according to the gettext 0.12.1 documentation
14457 but which seem to be needed anyway: codeset.m4 glibc21.m4
14458 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
14459 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
14460 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
14461
14462 * lib/.cvsignore: Add stdbool.h.
14463 * m4/.cvsignore: Add nls.m4, po.m4.
14464
14465 Upgrade to CVS gnulib.
14466 * stdbool_.h: File renamed from stdbool.h.in.
14467 * configure.ac (AM_STDBOOL_H): Invoke this instead of
14468 AC_HEADER_STDBOOL.
14469 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
14470 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
14471 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
14472 (MOSTLYCLEANFILES): New var.
14473 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
14474 (stdbool.h): New rule.
14475 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
14476 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
14477 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
14478 m4/quote.m4: Upgrade to today's gnulib.
14479
14480 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
14481 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
14482 the tests right now.
14483 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
14484 yyerror are declared before use; C99 requires this.
14485
14486 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14487
14488 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
14489 first.
14490 (yyrecoverSyntaxError): Correct the logic for setting and testing
14491 yyerrState.
14492 Correct comment on handling EOF.
14493 Allow states with only a default reduction, rather than failing
14494 (I can't quite reconstruct why these were not allowed before).
14495
14496 Fixes to avoid problem that $-N rules in GLR parsers can cause
14497 buffer overruns, corrupting state.
14498
14499 * src/output.c (prepare_rules): Output max_left_semantic_context
14500 definition.
14501 * src/reader.h (max_left_semantic_context): New variable declaration.
14502 * src/scan-gram.l (max_left_semantic_context): Define.
14503 (handle_action_dollar): Update max_left_semantic_context.
14504 * data/glr.c (YYMAXLEFT): New definition.
14505 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
14506 (yyresolveAction): Ditto.
14507
14508 Fixes to problems with location handling in GLR parsers reported by
14509 Frank Heckenbach (2003/06/05).
14510
14511 * data/glr.c (YYLTYPE): Make trivial if locations not used.
14512 (YYRHSLOC): Add parentheses, and define only if locations used.
14513 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
14514 locations not used.
14515 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
14516 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
14517
14518 * tests/cxx-type.at: Exercise location information; update tests
14519 to differentiate output with and without locations.
14520 Remove forward declarations of yylex and yyerror---caused errors
14521 because default YYLTYPE not yet defined.
14522 Change semantic actions to compute strings, rather than printing
14523 them directly (to test proper passing of semantics values). Change
14524 output to prefix notation and update test data and expected results.
14525 (yylex): Track locations.
14526 (stmtMerge): Return value rather than printing, and include arguments
14527 in value.
14528
14529 2003-06-03 Paul Eggert <eggert@twinsun.com>
14530
14531 Avoid warnings generated by GCC 2.95.4 when Bison is
14532 configured with --enable-gcc-warnings.
14533 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
14534 yy::]b4_parser_class_name[::translate_,
14535 yy::Stack::operator[] (unsigned),
14536 yy::Stack::operator[] (unsigned) const,
14537 yy::Slice::operator[] (unsigned),
14538 yy::Slice::operator[] (unsigned) const):
14539 Rename local vars to avoid warnings.
14540 * tests/glr-regression.at (Improper handling of embedded actions
14541 and $-N in GLR parsers): Remove unused local variable from yylex.
14542 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
14543 (void) as arg when not pure, since we now assume C89 when building
14544 Bison. Pacify GCC by using parameter.
14545
14546 2003-06-02 Paul Eggert <eggert@twinsun.com>
14547
14548 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
14549 yy::Location::lines, yy::Location::columns): Rename arguments
14550 to avoid shadowing; this removes a warning generated by GCC 3.3.
14551
14552 2003-06-01 Paul Eggert <eggert@twinsun.com>
14553
14554 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
14555 to g++, as GCC 3.3 complains if you do it.
14556 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
14557 everything that WARNING_CFLAGS has, except omit warnings
14558 not suitable for C++.
14559 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
14560 * tests/atlocal.in (CXXFLAGS): New var.
14561 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
14562
14563 Fix a GLR parser bug I reported in February; see
14564 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
14565 The problem was that GLR parsers did not conform to the C standard,
14566 because actions like { $1 = $2 + $3; } expanded to expressions
14567 that invoked YYFILL in separate subexpressions, and YYFILL assigned
14568 to a local variable. The C standard says that expressions
14569 like (var = f ()) + (var = f ()) have undefined behavior.
14570 Another problem was that GCC sometimes issues warnings that
14571 yyfill and its parameters are unused.
14572
14573 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
14574 as possibly unused.
14575 (yyfill): New function.
14576 (YYFILL): Use it.
14577 (yyuserAction): Change type of yynormal to bool, so that it matches
14578 the new yyfill signature. Mark it as possibly unused.
14579
14580
14581 Follow up on a bug I reported in February, where a Bison-generated
14582 parser can loop. Provide a test case and a fix for yacc.c. I
14583 don't have a fix for lalr1.cc or for glr.c, unfortunately.
14584 The original bug report is in:
14585 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
14586
14587 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
14588 macro's size was becoming unwieldy.
14589 (yyerrlab): Do not discard an empty lookahead symbol, as this
14590 might destroy garbage.
14591 (yyerrorlab): New label, with the old contents of YYERROR,
14592 plus the following change: pop the stack of rhs corresponding
14593 to the production that invoked YYERROR. That is how Yacc
14594 behaves, and POSIX requires this behavior.
14595 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
14596 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
14597 Define 'alarm' to do nothing if unistd.h is not available.
14598 Add a new rule "exp: '-' error;" to test the above change to
14599 data/yacc.c. Use 'alarm' to abort any test taking longer than
14600 10 seconds, as it's probably looping.
14601 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
14602 Also, the new yacc.c generates two fewer diagnostics for an
14603 existing test.
14604
14605 2003-05-24 Paul Eggert <eggert@twinsun.com>
14606
14607 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
14608 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
14609 This fixes a problem reported by John Bowman when the Compaq/HP
14610 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
14611 -ansi -Wall -gall).
14612 * data/yacc.c (union yyalloc): Likewise.
14613 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
14614
14615 Switch from 'int' to 'bool' where that makes sense.
14616
14617 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
14618 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
14619 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
14620 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
14621 Return or accept bool, not int. All callers changed.
14622 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
14623 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
14624 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
14625 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
14626 bitset_or_and_cmp_): Likewise.
14627 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
14628 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
14629 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
14630 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
14631 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
14632 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
14633 bitset_stats_or_and_cmp): Likewise.
14634 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
14635 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
14636 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
14637 ebitset_xor_cmp): Likewise.
14638 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
14639 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
14640 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
14641 lbitset_xor_cmp): Likewise.
14642 * lib/bbitset.h: Include <stdbool.h>.
14643 (struct bitset_vtable): The following members now return bool, not
14644 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
14645 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
14646 or_and_cmp).
14647 * src/conflicts.c (count_rr_conflicts): Likewise.
14648 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
14649 All uses changed.
14650 * lib/ebitset.c (ebitset_obstack_init): Likewise.
14651 * lib/lbitset.c (lbitset_obstack_init): Likewise.
14652 * src/getargs.c (debug_flag, defines_flag, locations_flag,
14653 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
14654 graph_flag): Likewise.
14655 * src/getargs.h (debug_flag, defines_flag, locations_flag,
14656 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
14657 graph_flag): Likewise.
14658 * src/output.c (error_verbose): Likewise.
14659 * src/output.h (error_verbose): Likewise.
14660 * src/reader.c (start_flag, typed): Likewise.
14661 * src/reader.h (typed): Likewise.
14662 * src/getargs.c (LOCATIONS_OPTION): New constant.
14663 (long_options, getargs): Use it.
14664 * src/lalr.c (build_relations): Use bool, not int.
14665 * src/nullable.c (nullable_compute): Likewise.
14666 * src/print.c (print_reductions): Likewise.
14667 * src/tables.c (action_row, pack_vector): Likewise.
14668 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
14669 * src/output.c (prepare): Use it.
14670 * src/output.c (token_definitions_output,
14671 symbol_destructors_output, symbol_destructors_output): Use string,
14672 not boolean integer, to keep track of whether to output separator.
14673 * src/print_graph.c (print_core): Likewise.
14674 * src/state.c (state_rule_lookaheads_print): Likewise.
14675
14676 * config/install-sh: Sync from automake 1.7.5.
14677
14678 2003-05-14 Paul Eggert <eggert@twinsun.com>
14679
14680 * src/parse-gram.y (rules_or_grammar_declaration): Require a
14681 semicolon after a grammar declaration, in the interest of possible
14682 future changes to the Bison input language.
14683 Do not allow a stray semicolon at the start of the grammar.
14684 (rhses.1): Allow one or more semicolons after any rule, including
14685 just before "|" as required by POSIX.
14686 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
14687 grammar.
14688
14689 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
14690
14691 %parse-param support for lalr1.cc.
14692
14693 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
14694 b4_cc_constructor_calls, b4_cc_constructor_call,
14695 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
14696 definitions.
14697 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
14698 parse-param arguments.
14699 (yy::b4_parser_class_name): Declare instance variables to
14700 hold parse-param arguments.
14701 * tests/calc.at: s/value/semantic_value/ because value clashes
14702 with a member of yy::b4_parser_class_name. Adjust C++ code
14703 to handle %parse-param. Enable %parse-param test in C++.
14704
14705 2003-05-12 Paul Eggert <eggert@twinsun.com>
14706
14707 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
14708 English a bit. Fix fclose typo. Change "const char" to "char
14709 const", and use ANSI C rather than K&R for "main". Suggest
14710 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
14711 and suggest yy_switch_to_buffer.
14712
14713 2003-05-05 Paul Eggert <eggert@twinsun.com>
14714
14715 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
14716 C89. This avoids a diagnostic on compilers that define __STDC__
14717 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
14718 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
14719
14720 2003-05-03 Paul Eggert <eggert@twinsun.com>
14721
14722 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
14723 Do not overrun array bounds.
14724 This should fix a bug reported today by Olatunji Oluwabukunmi in
14725 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
14726
14727 2003-04-29 Akim Demaille <akim@epita.fr>
14728
14729 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
14730 * src/getargs.c, src/getargs.h: here, as bool, not int.
14731 (nondeterministic_parser): New.
14732 * src/parse-gram.y, src/scan-gram.l: Support
14733 %nondeterministic-parser.
14734 * src/output.c (prepare): Use nondeterministic_parser instead
14735 of glr_parser where appropriate.
14736 * src/tables.c (conflict_row, action_row, save_row)
14737 (token_actions, token_actions, pack_vector): Ditto.
14738
14739 2003-04-29 Akim Demaille <akim@epita.fr>
14740
14741 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
14742
14743 2003-04-29 Akim Demaille <akim@epita.fr>
14744
14745 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
14746 with %pure-parser and %locations to exercise the patch from Yakov
14747 Markovitch below.
14748
14749 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
14750
14751 * data/yacc.c: (b4_lex_param): Corrected for the case where
14752 %lex-param is provided and %pure-parser isn't.
14753
14754 2003-04-27 Paul Eggert <eggert@twinsun.com>
14755
14756 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
14757 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
14758 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
14759 if it is not defined.
14760 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
14761
14762 2003-04-26 Paul Eggert <eggert@twinsun.com>
14763
14764 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
14765 Declare to be of type suitable for the ninf value itself, not of
14766 type suitable for the corresponding table, since the latter might
14767 be unsigned but the ninf value might be negative. This fixes a
14768 bug reported by Alexandre Duret-Lutz in
14769 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
14770
14771 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
14772 invokes it. We shouldn't invoke it twice because it will attempt
14773 to put error.o in the archive twice. This fixes a glitch reported
14774 by Martin Mokrejs in
14775 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
14776
14777 2003-04-21 Paul Eggert <eggert@twinsun.com>
14778
14779 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
14780 to gnulib.
14781
14782 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
14783
14784 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
14785 Fix obvious typo that results in uncompilable GLR parsers
14786 when both %pure-parser and %locations are used. (trivial change)
14787
14788 2003-04-17 Paul Eggert <eggert@twinsun.com>
14789
14790 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
14791 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
14792 Do not insert the expected token via unput, as this runs afoul
14793 of a POSIX-compatibility bug in flex 2.5.31.
14794 All uses changed to BEGIN the parent state,
14795 since we no longer insert the expected token via unput.
14796 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
14797 that is no longer emitted after the above change.
14798
14799 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
14800 the first one. This change is from Paul Hilfinger, and it fixes
14801 regression reported by Werner Lemberg in
14802 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
14803
14804 (resolve_sr_conflict): Don't invoke state_errs_set
14805 unless one or more tokens have been explicitly made errors.
14806 Otherwise, the above change causes Bison to abort.
14807
14808 * tests/existing.at (GNU pic Grammar): New test case, taken from
14809 Lemberg's email.
14810
14811 2003-03-31 Akim Demaille <akim@epita.fr>
14812
14813 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
14814
14815 2003-03-31 Akim Demaille <akim@epita.fr>
14816
14817 * src/output.c (prepare_symbols): Avoid trailing spaces in the
14818 output.
14819
14820 2003-03-31 Akim Demaille <akim@epita.fr>
14821
14822 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
14823 From Paul Hilfinger.
14824
14825 2003-03-29 Akim Demaille <akim@epita.fr>
14826
14827 * m4/error.m4: Do not put under dynamic conditions some code which
14828 expansion is under static control.
14829
14830 2003-03-29 Akim Demaille <akim@epita.fr>
14831
14832 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
14833
14834 2003-03-29 Akim Demaille <akim@epita.fr>
14835
14836 * doc/bison.texinfo (Strings are Destroyed): New.
14837
14838 2003-03-13 Paul Eggert <eggert@twinsun.com>
14839
14840 * .cvsignore: Add configure.lineno.
14841 * src/.cvsignore: Add yacc.
14842 * tests/.cvsignore: Add testsuite.log.
14843 * doc/fdl.texi: Sync with latest FSF version.
14844
14845 2003-03-12 Paul Eggert <eggert@twinsun.com>
14846
14847 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
14848 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
14849 cursor, instead of leaving it undefined. This fixes a bug
14850 reported by Tim Van Holder in
14851 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
14852 * tests/input.at (Torturing the Scanner): Test the scanner on
14853 an empty input file, which was Tim Van Holder's test case.
14854
14855 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
14856 <sys/resource.h> can be included, include sys/time.h and
14857 sys/times.h first, if available. This works around the SunOS
14858 4.1.4 porting bug reported by Bruce Becker in
14859 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
14860
14861 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
14862 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
14863 AC_HEADER_SYS_WAIT.
14864
14865 Merge changes from gnulib. This was prompted because the CVS
14866 snapshot didn't build on Solaris 7 due to strnlen problems.
14867
14868 These changes need to be merged back into gnulib:
14869 * lib/hash.c: Include <stdbool.h> unconditionally.
14870 * m4/onceonly.m4 (m4_quote): New macro.
14871 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
14872 Quote AC_FOREACH variable-expansions properly.
14873 The 2003-01-03 obstack.h change also needs merging.
14874 {end of changes requiring merging}
14875
14876 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
14877 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
14878 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
14879 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
14880 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
14881 New files, imported from gnulib.
14882 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
14883 above.
14884
14885 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
14886 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
14887 gnulib sources.
14888
14889 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
14890 Add.
14891 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
14892 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
14893 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
14894 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
14895 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
14896 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
14897 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
14898 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
14899 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
14900 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
14901 (jm_PREREQ_ARGMATCH): Remove.
14902 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
14903 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
14904
14905 * src/system.h: Include <stdbool.h> unconditionally.
14906
14907 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
14908 assuming at least C89 in the bitset code for some time now.
14909
14910 2003-03-03 Akim Demaille <akim@epita.fr>
14911
14912 * ro.po: New.
14913
14914 2003-03-02 Akim Demaille <akim@epita.fr>
14915
14916 * doc/bison.texinfo (Table of Symbols): Reactivate the
14917 documentation for %lex-param, and %parse-param.
14918
14919 2003-03-02 Akim Demaille <akim@epita.fr>
14920
14921 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
14922 generate verbose error messages.
14923 Use the number of tokens as an upper bound in yytname, as it
14924 cannot be a non terminal.
14925
14926 2003-03-02 Akim Demaille <akim@epita.fr>
14927
14928 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
14929 message.
14930
14931 2003-03-02 Akim Demaille <akim@epita.fr>
14932
14933 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
14934 Use them to exercise yycheck overrun.
14935 Based on Andrew Suffield's grammar.
14936
14937 2003-03-02 Akim Demaille <akim@epita.fr>
14938
14939 Create tests/local.at for Bison generic testing macros.
14940
14941 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
14942 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
14943 This new file.
14944 * tests/calc.at (AT_CHECK_CALC): Adjust.
14945 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
14946 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
14947 * tests/local.at: here.
14948 (AT_COMPILE_CXX): Tags the tests using it as c++.
14949 Ignore the test if CXX is not functional.
14950
14951 2003-03-01 Paul Eggert <eggert@twinsun.com>
14952
14953 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
14954 not loc->end, since loc->end might contain garbage and this leads
14955 to undefined behavior on some platforms.
14956 (id_loc, token_start): Use (IF_LINTed) initial values that do not
14957 depend on *loc, so that the reader doesn't give the the false
14958 impression that *loc is initialized.
14959 (<INITIAL>"%%"): Do not bother setting code_start, since its value
14960 does not survive the return.
14961
14962 2003-03-01 Akim Demaille <akim@epita.fr>
14963
14964 * src/scan-gram.l (code_start): Always initialize it when entering
14965 into yylex, as SC_EPILOGUE is activated *before* the corresponding
14966 yylex invocation. An alternative would be making it static, but
14967 then it starts with the second %%'s beginning, instead of its end.
14968
14969 2003-02-28 Paul Eggert <eggert@twinsun.com>
14970
14971 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
14972 around a UnixWare 7.1.1 porting bug reported by John Hughes in
14973 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
14974
14975 2003-02-26 Paul Eggert <eggert@twinsun.com>
14976
14977 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
14978 Remove Sequent/Pyramid discussion (nobody uses them any more).
14979 Merge VMS and MS-DOS discussion; these ports may well be dead
14980 but let's keep mentioning them for now. Put <> around email
14981 addresses. Add copyright notice.
14982
14983 2003-02-24 Paul Eggert <eggert@twinsun.com>
14984
14985 * data/glr.c (yy_reduce_print): yylineno -> yylno,
14986 to avoid collision with flex use of yylineno.
14987 Problem reported by Bruce Lilly in
14988 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
14989 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
14990 * data/yacc.c (yy_reduce_print): Likewise.
14991
14992 * config/depcomp: Sync with Automake 1.7.3.
14993
14994 2003-02-21 Akim Demaille <akim@epita.fr>
14995
14996 * data/lalr1.cc: Use temporary variables instead of casts to
14997 change integer types.
14998 Suggested by Paul Eggert.
14999
15000 2003-02-21 Akim Demaille <akim@epita.fr>
15001
15002 * doc/bison.texinfo: Use "location" consistently to refer to @n,
15003 to avoid confusions with lalr1.cc's notion of Position.
15004 Suggested by Paul Eggert.
15005
15006 2003-02-20 Akim Demaille <akim@epita.fr>
15007
15008 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
15009 before initial_columns.
15010 (location.hh): Use consistent variable names when defining the
15011 operator<<.
15012 Use "last" so that we subtract from Positions, not from unsigned.
15013
15014 2003-02-20 Akim Demaille <akim@epita.fr>
15015
15016 * data/lalr1.cc (position.hh): New subfile, including the extended
15017 and Doxygen'ed documentation of class Position.
15018 (location.hh): Use it.
15019 Document a` la Doxygen.
15020 With the help of Benoit Perrot.
15021
15022 2003-02-20 Akim Demaille <akim@epita.fr>
15023
15024 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
15025 AT_YACC_IF.
15026 Redefine AT_YYERROR_SEES_LOC_IF using it.
15027 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
15028 not defined.
15029 Don't use the location in yy::Parser::error_ and
15030 yy::Parser::print_ when not %locations.
15031 Activate more lalr1.cc tests.
15032
15033 2003-02-19 Akim Demaille <akim@epita.fr>
15034
15035 * data/lalr1.cc: When displaying a line number, be sure to make it
15036 an int.
15037
15038 2003-02-19 Akim Demaille <akim@epita.fr>
15039
15040 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
15041 Remove, useless.
15042 (YYABORT, YYACCEPT, YYERROR): New.
15043 * tests/calc.at: Renable the lalr1.cc test.
15044
15045 2003-02-19 Akim Demaille <akim@epita.fr>
15046
15047 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
15048 error recovery, mixing with/without pops and discarding of the
15049 lookahead.
15050 Exercise YYERROR.
15051 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
15052
15053 2003-02-17 Paul Eggert <eggert@twinsun.com>
15054
15055 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
15056 * tests/testsuite.at (AT_COMPILE): Use them.
15057 This fixes the testsuite problem reported by Robert Lentz in
15058 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
15059
15060 2003-02-12 Paul Eggert <eggert@twinsun.com>
15061
15062 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
15063 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
15064 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
15065 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
15066 Check for malloc failure, for consistency with yacc.c.
15067 (yytname_size): Remove, for consistency with yacc.c.
15068
15069 The bug still remains in data/lalr1.cc, as I didn't have time
15070 to fix it there.
15071
15072 2003-02-06 Akim Demaille <akim@epita.fr>
15073
15074 * configure.ac (GXX): Rename as...
15075 (CXX): this, to keep the original Autoconf semantics.
15076 Require 2.57.
15077 * data/lalr1.cc: Fix b4_copyright invocations.
15078 If YYDEBUG is not defined, don't depend upon name_ being defined.
15079 (location.hh): Include string and iostream.
15080 (Position::filename): New member.
15081 (Position::Position ()): New.
15082 (operator<< (Position)): New.
15083 (operator- (Position, int)): New.
15084 (Location::first, Location::last): Rename as...
15085 (Location::begin, Location::end): these, to mock the conventional
15086 iterator names.
15087 (operator<< (Location)): New.
15088 * tests/atlocal.in (CXX): New.
15089 * tests/testsuite.at (AT_COMPILE_CXX): New.
15090 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
15091 locations in a more synthetic way.
15092 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
15093 lalr1.cc is used.
15094 Adjust the C locations to match those from Emacs: first column is
15095 column 0.
15096 Change all the expected results.
15097 Conform to the GCS: simplify the locations when applicable.
15098 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
15099 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
15100 these CPP macros with the m4 macros new defined by...
15101 (AT_CHECK_PUSHDEFS): this, i.e.:
15102 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
15103 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
15104 New macros.
15105 (AT_CHECK_POPDEFS): Undefine them.
15106 (AT_CHECK_CALC_LALR1_CC): New.
15107 Use it for the first lalr1.cc test.
15108
15109 2003-02-04 Akim Demaille <akim@epita.fr>
15110
15111 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
15112 Location as is defined.
15113
15114 2003-02-04 Akim Demaille <akim@epita.fr>
15115
15116 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
15117 name_ being defined.
15118
15119 2003-02-03 Paul Eggert <eggert@twinsun.com>
15120
15121 * src/gram.h (start_symbol): Remove unused decl.
15122
15123 Use more-consistent naming conventions for local vars.
15124
15125 * src/derives.c (derives_compute): Change type of local var from
15126 int to rule_number.
15127 * src/gram.c (grammar_rules_partial_print): Likewise.
15128 * src/print.c (print_core): Likewise.
15129 * src/reduce.c (reduce_grammar_tables): Likewise.
15130
15131 * src/gram.c (grammar_dump): Change name of item_number *
15132 local var from r to rp.
15133 * src/nullable.c (nullable_compute): Likewise.
15134
15135 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
15136
15137 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
15138 for symbol or symbol_number var.
15139 * src/reader.c (grammar_start_symbol_set): Likewise.
15140 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
15141 Likewise.
15142 * src/state.c (transitions_to): Likewise.
15143 * src/state.h: Likewise.
15144 * src/tables.c (symbol_number_to_vector_number): Likewise.
15145
15146 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
15147 char * var.
15148
15149 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
15150 var.
15151
15152 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
15153 var.
15154
15155 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
15156 Use str, not s, for char * var. Use ch, not c, for character var.
15157 Use size for size var.
15158
15159 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
15160 char * var.
15161 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
15162 uniqstr var.
15163 * src/uniqstr.h: Likewise.
15164
15165 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
15166 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
15167 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
15168 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
15169 param to have same name as that of enum, so that we don't use
15170 "s" to stand for a non-state.
15171
15172 2003-02-02 Akim Demaille <akim@epita.fr>
15173
15174 * src/scan-skel.l: Scan more than one inert character per yylex
15175 invocation.
15176
15177 2003-02-01 Paul Eggert <eggert@twinsun.com>
15178
15179 Version 1.875a.
15180
15181 * po/LINGUAS: Add ms.
15182
15183 2003-01-30 Akim Demaille <akim@epita.fr>
15184
15185 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
15186
15187 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15188
15189 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
15190 of $1.
15191
15192 Changes in response to error report by S. Eken: GLR mode does not
15193 handle negative $ indices or $ indices in embedded rules correctly.
15194 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
15195
15196 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
15197 (b4_rhs_location): Ditto.
15198 (yyfill): New function to copy from stack tree into array
15199 incrementally.
15200 (yyuserAction): Modify to allow incremental move of semantic values
15201 to rhs array when in GLR mode.
15202 Define YYFILL to use in user-defined actions to fill semantic array
15203 as needed.
15204 Remove dummy use of yystack, as there is now a guaranteed use.
15205 (yydoAction): Modify to allow incremental move of semantic values
15206 to rhs array when in GLR mode.
15207 (yyresolveAction): Ditto.
15208 (yyglrShiftDefer): Update comment.
15209 (yyresolveStates): Use X == NULL for pointers, not !X.
15210 (yyglrReduce): Ditto.
15211 (yydoAction): Ditto
15212
15213 * tests/glr-regr1.at: Rename to ...
15214 * tests/glr-regression.at: Add new regression test for the problems
15215 described above (adapted from S. Eken).
15216 Update copyright notice.
15217 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
15218 * tests/Makefile.am: Ditto.
15219
15220 2003-01-28 Paul Eggert <eggert@twinsun.com>
15221
15222 * data/lalr1.cc: Do not use @output_header_name@ unless
15223 b4_defines_flag is set. This fixes two bugs reported by
15224 Tim Van Holder in
15225 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
15226 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
15227
15228 2003-01-21 Paul Eggert <eggert@twinsun.com>
15229
15230 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
15231 we don't need to worry about yyerrlab1 being reported as an
15232 "unused label" by non-GCC C compilers. The downside is that if
15233 locations are used then a couple of statements are duplicated each
15234 time YYERROR is invoked, but the upside is that the warnings
15235 should vanish.
15236 (yyerrlab1): Move code to YERROR.
15237 (yyerrlab2): Remove. Change uses back to yyerrlab1.
15238 This reverts some of the 2002-12-27 change.
15239
15240 2003-01-17 Paul Eggert <eggert@twinsun.com>
15241
15242 * src/output.c (symbol_printers_output): Fix typo that led
15243 to core dump. Problem reported by Antonio Rus in
15244 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
15245
15246 2003-01-13 Akim Demaille <akim@epita.fr>,
15247 Quoc Peyrot <chojin@lrde.epita.fr>,
15248 Robert Anisko <anisko_r@lrde.epita.fr>
15249
15250 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
15251 when the stacks contain one element, as the loop would otherwise
15252 free the last state, and then use the top state (the one we just
15253 popped). This means that the initial elements will not be freed
15254 explicitly, as is the case in yacc.c; it is not a problem, as
15255 these elements have fake values.
15256
15257 2003-01-11 Paul Eggert <eggert@twinsun.com>
15258
15259 * NEWS: %expect-violations are now just warnings, reverting
15260 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
15261 bootstrapping problem reported by Matthias Klose; see
15262 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
15263 * src/conflicts.c (conflicts_print): Likewise.
15264 * tests/conflicts.at (%expect not enough, %expect too much,
15265 %expect with reduce conflicts): Likewise.
15266 * doc/bison.texinfo (Expect Decl): Document this. Also mention
15267 that the warning is enabled if the number of conflicts changes
15268 (not necessarily increases).
15269
15270 * src/getargs.c (version): Update copyright year.
15271
15272 2003-01-09 Akim Demaille <akim@epita.fr>
15273
15274 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
15275
15276 2003-01-08 Paul Eggert <eggert@twinsun.com>
15277
15278 * Makefile.maint (WGETFLAGS):
15279 New macro, containing "-C off" to disable proxy caches.
15280 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
15281 (rel-check): Use $(WGET) instead of wget.
15282
15283 2003-01-06 Paul Eggert <eggert@twinsun.com>
15284
15285 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
15286 the GLR paper of Scott, Johnstone and Hussain.
15287
15288 2003-01-04 Paul Eggert <eggert@twinsun.com>
15289
15290 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
15291 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
15292 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
15293 (EXTRA_LIBRARIES): New var, for liby.a.
15294 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
15295 (EXTRA_SCRIPTS): New var, for yacc.
15296
15297 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
15298 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
15299 Problem reported by Nelson H. F. Beebe.
15300
15301 2003-01-03 Paul Eggert <eggert@twinsun.com>
15302
15303 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
15304 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
15305 when compiling Bison 1.875's `bitset bset = obstack_alloc
15306 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
15307
15308 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
15309 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
15310 grow to a huge size with typical invocation.
15311
15312 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
15313 Use the pattern recommended by Autoconf 2.57, except also protect
15314 against double-definition.
15315 * src/system.h: Likewise.
15316 Portability issues reported by Nelson H. F. Beebe.
15317
15318 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
15319 All uses changed. Provide a definition in both C and C++.
15320 (yytrue, yyfalse): Define even if defined (__cplusplus).
15321
15322 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
15323 Reported by Nelson H. F. Beebe.
15324
15325 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
15326
15327 2003-01-02 Paul Eggert <eggert@twinsun.com>
15328
15329 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
15330 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
15331 Bug reported by Nelson H. F. Beebe.
15332
15333 2003-01-01 Paul Eggert <eggert@twinsun.com>
15334
15335 * Version 1.875.
15336
15337 2002-12-30 Paul Eggert <eggert@twinsun.com>
15338
15339 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
15340 Moved here from...
15341 (<INITIAL>","): Here. This causes stray "," to be treated
15342 more uniformly.
15343
15344 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
15345 last brace in braced code when not in Yacc mode, for compatibility
15346 with Bison 1.35. This resurrects the 2001-12-15 patch to
15347 src/reader.c.
15348
15349 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
15350 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
15351
15352 2002-12-28 Paul Eggert <eggert@twinsun.com>
15353
15354 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
15355 that of SYM's type. This fixes Debian bug 168069, reported by
15356 Thomas Olsson.
15357
15358 2002-12-28 Paul Eggert <eggert@twinsun.com>
15359
15360 Version 1.75f.
15361
15362 Switch back to the Yacc style of conflict reports, undoing some
15363 of the 2002-07-30 change.
15364 * doc/bison.texinfo (Understanding): Use Yacc style for
15365 conflict reports. Also, use new way of locating rules.
15366 * src/conflicts.c (conflict_report):
15367 Renamed from conflict_report_yacc, removing the old
15368 'conflict_report'. Translate the entire conflict report at once,
15369 so that we don't assume that "," has the same interpretation in
15370 all languages.
15371 (conflicts_output): Use Yacc-style conflict report for each state,
15372 instead of our more-complicated style.
15373 (conflicts_print): Use Yacc-style conflict report, except print
15374 the input file name when not emulating Yacc.
15375 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
15376 Conflicted Reduction, %expect not enough, %expect too much,
15377 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
15378 * tests/existing.at (GNU Cim Grammar): Likewise.
15379 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
15380
15381 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
15382 fatal): Don't invoke fflush; it's not needed and it might even be
15383 harmful for stdout, as stdout might not be open.
15384 * src/reduce.c (reduce_print): Likewise.
15385
15386 2002-12-27 Paul Eggert <eggert@twinsun.com>
15387
15388 Fix a bug where error locations were not being recorded correctly.
15389 This problem was originally reported by Paul Hilfinger in
15390 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
15391
15392 * data/yacc.c (yyparse): New local var yylerrsp, to record the
15393 top of the location stack's error locations.
15394 (yyerrlab): Set it. When discarding a token, push its location
15395 onto yylerrsp so that we don't lose track of the error's end.
15396 (yyerrlab1): Now is only the target of YYERROR, so that we can
15397 properly record the location of the action that failed. For GCC
15398 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
15399 GCC warning about yyerrlab1 being unused if YYERROR is unused.
15400 (yyerrlab2): New label, which yyerrlab now falls through to.
15401 Compute the error's location by applying YYLLOC_DEFAULT to
15402 the locations of all the symbols that went into the error.
15403 * doc/bison.texinfo (Location Default Action): Mention that
15404 YYLLOC_DEFAULT is also invoked for syntax errors.
15405 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
15406 Error locations include the locations of all the tokens that were
15407 discarded, not just the last token.
15408
15409 2002-12-26 Paul Eggert <eggert@twinsun.com>
15410
15411 * src/files.c: Include quote.h.
15412 (compute_output_file_names): Warn if we detect conflicting
15413 outputs to the same file. This should catch the misunderstanding
15414 exemplified by Debian Bug 165349, reported by Bruce Stephens..
15415
15416 * src/conflicts.c (conflicts_print): If the user specifies
15417 "%expect N", report an error if there are any reduce/reduce
15418 conflicts. This is what the manual says should happen.
15419 This fixes Debian bug 130890, reported by Anthony DeRobertis.
15420 * tests/conflicts.at (%expect with reduce conflicts): New test.
15421
15422 Don't use m4_include on relative file names, as it doesn't work as
15423 desired if there happens to be a file with that name under ".".
15424
15425 * m4sugar/version.m4: Remove; it was included but it wasn't used.
15426 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
15427 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
15428 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
15429 * src/output.c (output_skeleton): Use full path names when
15430 specifying a file to include; don't rely on include path, as
15431 it's unreliable when the working file contains a file with
15432 that name.
15433
15434 2002-12-25 Paul Eggert <eggert@twinsun.com>
15435
15436 Remove obsolete references to bison.simple and bison.hairy.
15437 Problem mentioned by Aubin Mahe in
15438 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
15439 * data/glr.c: Comment fix.
15440 * doc/bison.1: Remove references. Also, mention "yacc".
15441
15442 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
15443 with -g option.
15444
15445 * src/parse-gram.y (declaration): Use enum "report_states" rather
15446 than its numeric value 1.
15447
15448 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
15449 opening a new one. This fixes Debian bug 165349, reported by
15450 Bruce Stephens.
15451
15452 2002-12-24 Paul Eggert <eggert@twinsun.com>
15453
15454 Version 1.75e.
15455
15456 * Makefile.maint (cvs-update): Don't assume that the shell
15457 supports $(...), as Solaris sh doesn't.
15458
15459 * src/parse-gram.y (lloc_default): Remove test for empty
15460 nonterminals at the end, since it didn't change the result.
15461
15462 2002-12-24 Paul Eggert <eggert@twinsun.com>
15463
15464 If the user does not define YYSTYPE as a macro, Bison now declares it
15465 using typedef instead of defining it as a macro. POSIX requires this.
15466 For consistency, YYLTYPE is also declared instead of defined.
15467
15468 %union directives can now have a tag before the `{', e.g., the
15469 directive `%union foo {...}' now generates the C code
15470 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
15471 The default union tag is `YYSTYPE', for compatibility with Solaris 9
15472 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
15473 instead of `yyltype'.
15474
15475 `yystype' and `yyltype' are now obsolescent macros instead of being
15476 typedefs or tags; they are no longer documented and will be
15477 withdrawn in a future release.
15478
15479 * data/glr.c (b4_location_type): Remove.
15480 (YYSTYPE): Renamed from yystype.
15481 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
15482 (struct YYLTYPE): Renamed from struct yyltype.
15483 (YYLTYPE): Renamed from yyltype.
15484 (yyltype, yystype): New (and obsolescent) macros,
15485 for backward compatibility.
15486 * data/yacc.c: Likewise.
15487
15488 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
15489 does not specify a union tag. This is for compatibility with
15490 Solaris 9 yacc.
15491
15492 * src/parse-gram.y (add_param): 2nd arg is now char * not char
15493 const *, since it is now modified by stripping surrounding { }.
15494 (current_braced_code): Remove.
15495 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
15496 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
15497 trailing " {...}". Now of type <chars>.
15498 (grammar_declaration): Adjust to bundled tokens.
15499 (code_content): Remove; stripping is now done by add_param.
15500 (print_token_value): Print contents of bundled tokens.
15501 (token_name): New function.
15502
15503 * src/reader.h (braced_code, current_braced_code): Remove.
15504 (token_name): New decl.
15505
15506 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
15507 token_type, not braced_code code_kind. All uses changed.
15508 (SC_PRE_CODE): New state, for scanning after a keyword that
15509 has (or usually has) an immediately-following braced code.
15510 (token_type): New local var, to keep track of which token type
15511 to return when scanning braced code.
15512 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
15513 <INITIAL>"%parse-param", <INITIAL>"%printer",
15514 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
15515 instead of returning a token type immediately.
15516 (<INITIAL>"{"): Set token type.
15517 (<SC_BRACED_CODE>"}"): Use it.
15518 (handle_action_dollar, handle_action_at): Now returns bool
15519 indicating success. Fail if ! current_rule; this prevents a core dump.
15520 (handle_symbol_code_dollar, handle_symbol_code_at):
15521 Remove; merge body into caller.
15522 (handle_dollar, handle_at): Complain in invalid contexts.
15523
15524 * NEWS, doc/bison.texinfo: Document the above.
15525 * NEWS: Fix years and program names in copyright notice.
15526
15527 2002-12-17 Paul Eggert <eggert@twinsun.com>
15528
15529 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
15530 Reporting, Table of Symbols): Omit mentions of %lex-param and
15531 %parse-param from the documentation for now.
15532
15533 2002-12-15 Paul Eggert <eggert@twinsun.com>
15534
15535 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
15536 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
15537 lookahead symbol, and which sets yychar in parser actions) and it
15538 disagreed with the Bison documentation. Bug
15539 reported by Andrew Walrond.
15540
15541 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
15542 as the caller now does that.
15543 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
15544 (YYEMPTY): Parenthesize right hand side, since others use it.
15545 (yyparse): Don't assume that our generated code is the only code
15546 that sets yychar.
15547
15548 2002-12-13 Paul Eggert <eggert@twinsun.com>
15549
15550 Version 1.75d.
15551
15552 POSIX requires a "yacc" command.
15553 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
15554 (MOSTLYCLEANFILES): Add yacc.
15555 (yacc): New rule.
15556 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
15557 as an alias for bison y.
15558
15559 * po/LINGUAS: Add da.
15560
15561 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
15562 problem with latest <getopt.h>.
15563 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
15564
15565 * doc/fdl.texi: Upgrade to 1.2.
15566 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
15567 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
15568 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
15569 gnulib.
15570 * config/install-sh: Sync with autotools.
15571
15572 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
15573 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
15574 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
15575 locations are requested.
15576 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
15577 locations are requested.
15578
15579 2002-12-12 Paul Eggert <eggert@twinsun.com>
15580
15581 Remove unportable casts and storage allocation tricks.
15582 While we're at it, remove almost all casts, since they
15583 usually aren't needed and are a sign of trouble.
15584
15585 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
15586
15587 * src/derives.c (derives_compute): Do not subtract NTOKENS from
15588 the pointer DSET returned by malloc; this isn't portable.
15589 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
15590 Similarly for DERIVES.
15591 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
15592 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
15593 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
15594
15595 * src/derives.c (derives_compute): Do not bother invoking
15596 int_of_rule_number, since rule numbers are integers.
15597
15598 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
15599 rather than XMALLOC (char, N).
15600
15601 * src/files.c (filename_split): Rewrite to avoid cast.
15602
15603 * src/gram.h (symbol_number_as_item_number,
15604 item_number_as_symbol_number, rule_number_as_item_number,
15605 item_number_as_rule_number):
15606 Now inline functions rather than macros, to avoid casts.
15607 * src/state.h (state_number_as_int): Likewise.
15608 * src/tables.c (state_number_to_vector_number,
15609 symbol_number_to_vector_number): Likewise.
15610
15611 * src/gram.h (int_of_rule_number): Remove; no longer used.
15612
15613 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
15614 since the resulting storage is always stored into.
15615
15616 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
15617 where it's needed.
15618
15619 * src/muscle_tab.c (muscle_m4_output):
15620 Now inline. Return bool, not int.
15621 * src/state.c (state_compare): Likewise.
15622 * src/symtab.c (symbol_check_defined,
15623 symbol_check_alias_consistency, symbol_pack, symbol_translation,
15624 hash_compare_symbol, hash_symbol):
15625 Likewise.
15626 * src/uniqstr.c (uniqstr_print): Likewise.
15627 * src/muscle_tab.c (muscle_m4_output_processor):
15628 New function, to avoid casts.
15629 * src/state.c (state_comparator, stage_hasher): Likewise.
15630 * src/symtab.c (symbol_check_defined_processor,
15631 symbol_check_alias_consistency_processor, symbol_pack_processor,
15632 symbol_translation_processor, hash_symbol_comparator,
15633 hash_symbol_hasher): Likewise.
15634 * src/uniqstr.c (uniqstr_print_processor): Likewise.
15635 * src/muscle_tab.c (muscles_m4_output):
15636 Use new functions instead of casting old functions unportably.
15637 * src/state.c (state_hash_new): Likewise.
15638 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
15639 symbols_token_translations_init):
15640 Likewise.
15641 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
15642
15643 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
15644 var instead of casting to long, to avoid casts.
15645 (prepare_states): Use MALLOC rather than alloca, so that we don't
15646 have to worry about alloca.
15647 * src/state.c (state_hash_lookup): Likewise.
15648
15649 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
15650 local var instead of casting to unsigned char, to avoid casts.
15651
15652 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
15653 STATE_ALLOC): Remove.
15654 (transitions_new, errs_new, reductions_new, state_new): Use malloc
15655 rather than calloc, and use offsetof to avoid allocating slightly
15656 too much storage.
15657 (state_new): Initialize all members.
15658
15659 * src/state.c (state_hash): Use unsigned accumulator, not signed.
15660
15661 * src/symtab.c (symbol_free): Remove; unused.
15662 (symbol_get): Remove cast in lhs of assignment.
15663 (symbols_do): Now static. Accept generic arguments, not
15664 hashing-related ones.
15665
15666 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
15667 (symbol_processor): Remove.
15668 (symbols_do): Remove decl; now static.
15669
15670 * src/system.h (alloca): Remove; decl no longer needed.
15671 (<stddef.h>): Include, for offsetof.
15672 (<inttypes.>, <stdint.h>): Include if available.
15673 (uintptr_t): New type, if system lacks it.
15674 (CALLOC, MALLOC, REALLOC): New macros.
15675 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
15676 new macros.
15677
15678 * src/tables.c (table_size): Now int, to pacify GCC.
15679 (table_grow, table_ninf_remap): Use signed table size.
15680 (save_row): Don't bother initializing locals when not needed.
15681 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
15682 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
15683
15684 * src/vcg.h: Correct misspellings.
15685
15686 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
15687
15688
15689 * src/getargs.c (getargs): Don't assume EOF == -1.
15690
15691 2002-12-09 Paul Eggert <eggert@twinsun.com>
15692
15693 Change identifier spellings to avoid collisions with names
15694 that are reserved by POSIX.
15695
15696 Don't use names ending in _t, since POSIX reserves them.
15697 For consistency, remove _e and _s endings -- they're weren't
15698 needed to remove ambiguity. All uses changed.
15699 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
15700 turn was just renamed from struniq_t.
15701 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
15702 which in turn was just renamed from struniq_processor_t.
15703 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
15704 in turn was renamed from hash_compare_struniq_t.
15705 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
15706 (state_list): Renamed from state_list_t.
15707 * src/assoc.h (assoc): Renamed from assoc_t.
15708 * src/conflicts.c (enum conflict_resolution): Renamed from
15709 enum conflict_resolution_e.
15710 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
15711 (rule_list): Renamed from rule_list_t.
15712 * src/getargs.h (enum trace): Renamed from enum trace_e.
15713 (enum report): Renamed from enum report_e.
15714 * src/gram.h (item_number): Renamed from item_number_t.
15715 (rule_number): Renamed from rule_number_t.
15716 (struct rule_s): Remove the "rule_s" part; not used.
15717 (rule): Renamed from rule_t.
15718 (rule_filter): Renamed from rule_filter_t.
15719 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
15720 (goto_list): Renamed from goto_list_t.
15721 * src/lalr.h (goto_number): Renamed from goto_number_t.
15722 * src/location.h (location): Renamed from location_t.
15723 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
15724 and moved here from:
15725 * src/muscle_tab.h (muscle_entry_t): here.
15726 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
15727 (rule_list): Renamed from rule_list_t.
15728 * src/print_graph.c (static_graph): Renamed from graph.
15729 * src/reader.h (braced_code): Renamed from braced_code_t.
15730 Remove brace_code_e tag.
15731 * src/relation.h (relation_node): Renamed from relation_node_t.
15732 (relation_nodes): Renamed from relation_nodes_t.
15733 (relation): Renamed from relation_t.
15734 * src/state.h (state_number): Renamed from state_number_t.
15735 (struct state): Renamed from struct state_s.
15736 (state): Renamed from state_t.
15737 (transitions): Renamed from transitions_t. Unused (and
15738 misspelled) transtion_s tag removed.
15739 (errs): Renamed from errs_t. Unused errs_s tag removed.
15740 (reductions): Renamed from reductions_t. Unused tag
15741 reductions_s removed.
15742 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
15743 (struct symbol_list): Renamed from struct symbol_list_s.
15744 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
15745 (struct symbol): Renamed from struct symbol_s.
15746 (symbol): Renamed from symbol_t.
15747 * src/tables.c (vector_number): Renamed from vector_number_t.
15748 (action_number): Renamed from action_t.
15749 * src/tables.h (base_number): Renamed from base_t.
15750 * src/vcg.h (enum color): Renamed from enum color_e.
15751 (enum textmode): Renamed from enum textmode_e.
15752 (enum shape): Renamed from enum shape_e.
15753 (struct colorentry): Renamed from struct colorentry_s.
15754 (struct classname): Renamed from struct classname_s.
15755 (struct infoname): Renamed from struct infoname_s.
15756 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
15757 (enum decision): Renamed from enum decision_e.
15758 (enum orientation): Renamed from enum orientation_e.
15759 (enum alignment): Renamed from enum alignment_e.
15760 (enum arrow_mode): Renamed from enum arrow_mode_e.
15761 (enum crossing_type): Renamed from enum crossing_type_e.
15762 (enum view): Renamed from enum view_e.
15763 (struct node): Renamed from struct node_s.
15764 (node): Renamed from node_t.
15765 (enum linestyle): Renamed from enum linestyle_e.
15766 (enum arrowstyle): Renamed from enum arrowstyle_e.
15767 (struct edge): Renamed from struct edge.
15768 (edge): Renamed from edge_t.
15769 (struct graph): Renamed from struct graph_s.
15770 (graph): Renamed from graph_t.
15771 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
15772 Rename value_t -> value.
15773 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
15774 value_t_as_yystype -> value_as_yystype.
15775
15776 Don't include <errno.h> in the mainstream code, since it
15777 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
15778 * lib/get-errno.c, lib/get-errno.h: New files.
15779 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
15780 get-errno.c.
15781 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
15782 * src/output.c (output_skeleton): Likewise.
15783 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
15784 instead of errno.
15785 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
15786 Likewise.
15787 (handle_action_dollar, handle_action_at): Likewise.
15788 * src/system.h: Do not include <errno.h>.
15789 (TAB_EXT): Renamed from EXT_TAB.
15790 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
15791
15792 Avoid str[a-z]*, since <string.h> reserves that name space.
15793 Change all instances of "struniq" in names to "uniqstr", and
15794 likewise for "STRUNIQ" and "UNIQSTR".
15795 * src/uniqstr.c: Renamed from src/struniq.c.
15796 * src/uniqstr.h: Renamed from src/struniq.h.
15797 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
15798 * src/files.c (strsuffix): Remove; unused.
15799 (concat2): Renamed from stringappend. Now static.
15800 * src/files.h (strsuffix, stringappend): Remove; unused.
15801 * src/parse-gram.y (<chars>): Renamed from <string>.
15802 (<uniqstr>): Renamed from <struniq>.
15803 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
15804 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
15805 (struct graph_s.expand): Renamed from struct graph_s.stretch.
15806 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
15807 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
15808 (N_EXPAND): Renamed from N_STRETCH.
15809
15810 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
15811 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
15812 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
15813 Remove; unused.
15814 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
15815 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
15816 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
15817 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
15818 (BASE_MAXIMUM): Renamed from BASE_MAX.
15819 (BASE_MINIMUM): Renamed from BASE_MIN.
15820 (ACTION_MAX): Remove; unused.
15821 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
15822 Unnecessary casts removed from above defines.
15823
15824
15825 Fix misspelling in names.
15826 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
15827 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
15828 G_NODE_ALIGNEMENT.
15829
15830
15831 * lib/timevar.c (timevar_report): Renamed from time_report,
15832 for consistency with other names.
15833 * lib/timevar.h (timevar_report): New decl.
15834 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
15835
15836
15837 Sort include-file uses.
15838
15839 Reorder all include files under src to be in the order "system.h".
15840 then the ../lib include files in angle brackets (alphabetized),
15841 then the . include files in double-quotes (alphabetized). Fix
15842 dependency breakages encountered in this process, as follows:
15843 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
15844 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
15845 * src/state.h: Include "symtab.h".
15846
15847 2002-12-08 Paul Eggert <eggert@twinsun.com>
15848
15849 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
15850 since this causes problems when __file__ contains character
15851 sequences like "@" that are treated specially by src/scan-skel.l.
15852 Instead, just use the file's basename. This fixes the bug
15853 reported by Martin Mokrejs in
15854 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
15855
15856 2002-12-06 Paul Eggert <eggert@twinsun.com>
15857
15858 Add support for rules that do not have trailing semicolons, as
15859 POSIX requires. Improve the quality of locations in Bison
15860 diagnostics.
15861
15862 * src/location.c: Include <quotearg.h>.
15863 (empty_location): Now const.
15864 (location_print): New function. Follow the recommendation of the
15865 GNU Coding Standards for locations that span file boundaries.
15866 * src/location.h: Do not include <quotearg.h>; no longer needed.
15867 (boundary): New type.
15868 (location_t): Use it. This allows locations to span file boundaries.
15869 All member uses changed: file -> start.file or end.file (as needed),
15870 first_line -> start.line, first_column -> start.column,
15871 last_line -> end.line, last_column -> end.column.
15872 (equal_boundaries): New function.
15873 (LOCATION_RESET, LOCATION_STEP): Remove.
15874 (LOCATION_PRINT): Remove. All callers changed to use location_print.
15875 (empty_location): Now const.
15876 (location_print): New decl.
15877 * src/parse-gram.y (lloc_default): New function, which handles
15878 empty locations more accurately.
15879 (YYLLOC_DEFAULT): Use it.
15880 (%token COLON): Remove.
15881 (%token ID_COLON): New token.
15882 (rules): Use it.
15883 (declarations, rules): Remove trailing semicolon.
15884 (declaration, rules_or_grammar_declaration):
15885 Allow empty (";") declaration.
15886 (symbol_def): Remove empty actions; no longer needed.
15887 (rules_or_grammar_declaration): Remove trailing semicolon.
15888 (semi_colon.opt): Remove.
15889 * src/reader.h: Include location.h.
15890 (scanner_cursor): New decl.
15891 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
15892 rolling our own.
15893 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
15894 of *loc.
15895 (STEP): Remove. No longer needed, now that adjust_location does
15896 the work. All uses removed.
15897 (scanner_cursor): New var.
15898 (adjust_location): Renamed from extend_location. It now sets
15899 *loc and adjusts the scanner cursor. All uses changed.
15900 Don't bother testing for CR.
15901 (handle_syncline): Remove location arg; now updates scanner cursor.
15902 All callers changed.
15903 (unexpected_end_of_file): Now accepts start boundary of token or
15904 comment, not location. All callers changed. Update scanner cursor,
15905 not the location.
15906 (SC_AFTER_IDENTIFIER): New state.
15907 (context_state): Renamed from c_context. All uses changed.
15908 (id_loc, code_start, token_start): New local vars.
15909 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
15910 processing of Yacc white space and equivalents here.
15911 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
15912 instead of returning ID immediately, since we need to search for
15913 a subsequent colon.
15914 (<INITIAL>"'", "\""): Save token_start.
15915 (<INITIAL>"%{", "{", "%%"): Save code_start.
15916 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
15917 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
15918 BEGIN context_state at end, not INITIAL.
15919 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
15920 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
15921 Return correct token start.
15922 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
15923 the start of a character, string or multiline comment is found.
15924 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
15925 Reduction): Adjust reported locations to match the more-precise
15926 results now expected.
15927 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
15928 * tests/reduce.at (Useless Rules, Reduced Automaton,
15929 Underivable Rules): Likewise.
15930 * tests/regression.at (Invalid inputs): No longer `expecting ";"
15931 or "|"' now that so many other tokens are allowed by the new grammar.
15932
15933 * src/complain.h (current_file): Remove duplicate decl;
15934 current_file is now owned by files.h.
15935 * src/complain.c, src/scan-gram.l: Include files.h.
15936
15937 2002-12-06 Paul Eggert <eggert@twinsun.com>
15938
15939 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
15940 promotes to int; it might be unsigned int.
15941 * data/yacc.c (yy_reduce_print): Likewise.
15942
15943 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
15944 be #defined in the prologue, not in the Bison declarations.
15945 This fixes Debian Bug 102878, reported by Shaul Karl.
15946
15947 2002-12-02 Paul Eggert <eggert@twinsun.com>
15948
15949 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
15950 * lib/strtoul.c: New file, from gnulib.
15951 This fixes a porting bug reported by Peter Klein in
15952 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
15953
15954 2002-11-30 Paul Eggert <eggert@twinsun.com>
15955
15956 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
15957 and put only a forward declaration in the prologue. This is for
15958 consistency with the other scanner helper functions.
15959
15960 Type clashes now generate warnings, not errors, since it
15961 appears that POSIX may allow some grammars with type clashes.
15962 * src/reader.c (grammar_current_rule_check): Warn about
15963 type clashes instead of complaining.
15964 * tests/input.at (Type Clashes): Expect warnings, not complaints.
15965
15966 Add Yacc library, since POSIX requires it.
15967 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
15968 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
15969 * lib/main.c, lib/yyerror.c: New files.
15970
15971 gram_error can be static; it need not be extern.
15972 * src/reader.h (gram_error): Remove decl.
15973 * src/parse-gram.y (gram_error): Now static. Add static decl.
15974 (print_token_value): Omit parameter names from forward decl,
15975 for consistency.
15976
15977 2002-11-29 Paul Eggert <eggert@twinsun.com>
15978
15979 * doc/bison.texinfo: Emphasize that yylex and yyerror must
15980 be declared before being used. E.g., one should typically
15981 declare them in the prologue. Use GNU coding style in examples.
15982 Put "const" consistently after the type it modifies. Mention
15983 that C99 supports "inline". Mention that yyerror traditionally
15984 returns "int".
15985
15986 %parse-param and %lex-param now take just one argument, the
15987 declaration; the argument name is deduced from the declaration.
15988
15989 * doc/bison.texinfo (Parser Function, Pure Calling, Error
15990 Reporting, Table of Symbols): Document this.
15991 * src/parse-gram.y (add_param): New function.
15992 (COMMA): Remove.
15993 (declaration): Implement new rule for %parse-param and %lex-param.
15994 * src/scan-gram.l: "," now elicits a warning, rather than being
15995 a token; this is more compatible with byacc.
15996 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
15997
15998 2002-11-27 Paul Eggert <eggert@twinsun.com>
15999
16000 Rename identifiers to avoid real and potential collisions.
16001
16002 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
16003 to avoid collision with lex macro described by Bruce Lilly in
16004 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
16005 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
16006 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
16007 * src/parse-gram.y (print_token_value): Renamed from yyprint.
16008 All uses changed.
16009 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
16010 The name "yycontrol" violates the name space rules, and this stuff
16011 wasn't being used anyway.
16012 (input): Remove action; this stuff wasn't being used.
16013 (gram_error): Rename local variable yylloc -> loc.
16014 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
16015 (YY_DECL): Don't use "yy" at start of local variables.
16016 All uses changed, e.g., yylloc -> loc.
16017 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
16018 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
16019 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
16020 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
16021
16022 * src/parse-gram.y (gram_error): loc is now const *.
16023 * src/reader.h (gram_error): Likewise.
16024
16025 2002-11-24 Paul Eggert <eggert@twinsun.com>
16026
16027 Version 1.75c.
16028
16029 * tests/actions.at (Actions after errors): Use an output format
16030 more similar to that of the Printers and Destructors test.
16031 Test the position of the ';' token too.
16032 (Printers and Destructors): Likewise.
16033 (Printers and Destructors: %glr-parser): Remove for now, to avoid
16034 unnecessarily alarming people when the test fails.
16035
16036 * data/yacc.c (yyerrlab1): Move this label down, so that the
16037 parser does not discard the lookahead token if the user code
16038 invokes YYERROR. This change is required for POSIX conformance.
16039
16040 * lib/error.c: Sync with gnulib.
16041
16042 2002-11-22 Paul Eggert <eggert@twinsun.com>
16043
16044 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
16045 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
16046 * lib/xmalloc.c: Likewise.
16047
16048 2002-11-20 Paul Eggert <eggert@twinsun.com>
16049
16050 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
16051
16052 2002-11-20 Paul Eggert <eggert@twinsun.com>
16053
16054 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
16055 should use `if (! x) abort ();' rather than `assert (x);', and
16056 anyway it's one less thing to worry about configuring.
16057
16058 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
16059 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
16060 and replace all instances of assert with abort.
16061 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
16062 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
16063
16064 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
16065 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
16066 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
16067 hash_find_entry, hash_rehash, hash_insert): Likewise.
16068 * src/conflicts.c (resolve_sr_conflict): Likewise.
16069 * src/lalr.c (set_goto_map, map_goto): Likewise.
16070 * src/nullable.c (nullable_compute): Likewise.
16071 * src/output.c (prepare_rules, token_definitions_output): Likewise.
16072 * src/reader.c (packgram, reader): Likewise.
16073 * src/state.c (state_new, state_free, state_transitions_set,
16074 state_reduction_find): Likewise.
16075 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
16076 symbol_pack): Likewise.
16077 * src/tables.c (conflict_row, pack_vector): Likewise.
16078 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
16079 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
16080 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
16081 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
16082
16083 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
16084 (ARGMATCH_CONSTRAINT): New macro.
16085 (ARGMATCH_ASSERT): Use it.
16086
16087 * src/system.h (verify): New macro.
16088 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
16089 rather than assert.
16090 * src/tables.c (tables_generate): Likewise.
16091
16092 * src/struniq.c (struniq_assert): Now returns void, and aborts
16093 if the assertion is false.
16094 (struniq_assert_p): Remove.
16095 * src/struniq.h: Likewise.
16096
16097 2002-11-18 Paul Eggert <eggert@twinsun.com>
16098
16099 * data/glr.c (yygetLRActions): Replace `yyindex' with
16100 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
16101 This fixes the regression with Sun ONE Studio 7 cc that I reported in
16102 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
16103
16104 2002-11-18 Akim Demaille <akim@epita.fr>
16105
16106 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
16107 space.
16108 From Tim Van Holder.
16109
16110 2002-11-17 Paul Eggert <eggert@twinsun.com>
16111
16112 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
16113 to "SyntaxError" for consistency with my 2002-11-15 change.
16114
16115 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
16116 not define to {}, since this breaks the common use of `YYDPRINTF
16117 ((...));' if a single statement is desired (e.g. before `else').
16118 Work around GCC warnings by surrounding corresponding calls with
16119 {} if needed.
16120 (yyhasResolvedValue): Remove unused function.
16121 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
16122 loop body.
16123 (yyreportSyntaxError): Renamed from yyreportParseError.
16124 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
16125 All uses changed.
16126 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
16127 extern when possible. Remove unused initializations.
16128
16129 2002-11-16 Akim Demaille <akim@epita.fr>
16130
16131 Augment the similarity between GLR and LALR traces.
16132
16133 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
16134 (YY_REDUCE_PRINT): New.
16135 (yyparse): Use them.
16136 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
16137 YYDPRINT here.
16138 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
16139 state reached after the reduction/recovery, since...
16140 (yyparse, yyprocessOneStack): Report the state we are entering in.
16141
16142 2002-11-16 Akim Demaille <akim@epita.fr>
16143
16144 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
16145 Add support for --trace=skeleton.
16146 * src/scan-skel.l: %option debug.
16147 Scan strings of non-@ or \n instead of character by character.
16148 (scan_skel): Handle trace_skeleton.
16149 (QPUTS): New.
16150 (@output_parser_name@, @output_header_name@): ``Restore'' their
16151 support (used to be M4 macros).
16152 * data/yacc.c: Quote larger chunks, a la glr.c.
16153 * data/lalr1.cc: Likewise.
16154 The header guards are no longer available, so use some other
16155 string than `YYLSP_NEEDED'.
16156
16157 2002-11-16 Akim Demaille <akim@epita.fr>
16158
16159 Make the ``Printers and Destructors'' test more verbose, taking
16160 `yacc.c''s behavior as (possibly wrong) reference.
16161
16162 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
16163 instead of fprint on stdout.
16164 Set and report the last_line of the symbols.
16165 Consistently display values and locations.
16166
16167 2002-11-16 Paul Eggert <eggert@twinsun.com>
16168
16169 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
16170
16171 2002-11-15 Paul Eggert <eggert@twinsun.com>
16172
16173 * tests/actions.at (Actions after errors): New test case.
16174
16175 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
16176 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
16177 tests/action.at, tests/calc.at, tests/conflicts.at,
16178 tests/cxx-type.at, tests/regression.at:
16179 "parse error" -> "syntax error" for POSIX compatibility.
16180 "parsing stack overflow..." -> "parser stack overflow" so
16181 that code matches Bison documentation.
16182
16183 2002-11-15 Akim Demaille <akim@epita.fr>
16184
16185 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
16186 take two BRACED_CODE, not two string_content.
16187 Free the scanner's obstack when we are done.
16188 (code_content): New.
16189 * tests/calc.at: Adjust.
16190 * doc/bison.texinfo: Adjust.
16191 Also, make sure to include the `,' for these declarations.
16192
16193 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
16194
16195 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
16196 definition; avoids potential autoreconf problems.
16197
16198 2002-11-15 Akim Demaille <akim@epita.fr>
16199
16200 Always check the value returned by yyparse.
16201
16202 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
16203 returned by yyparse.
16204 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
16205 Adjust calls.
16206 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
16207 returned by yyparse.
16208
16209 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16210
16211 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
16212 on input.at test.
16213
16214 2002-11-14 Paul Eggert <eggert@twinsun.com>
16215
16216 * src/output.c (output_skeleton): Call xfopen instead of
16217 duplicating xfopen's body.
16218
16219 Fix bugs reported by Nelson H. F. Beebe in
16220 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
16221
16222 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
16223 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
16224 Group compiler. Instead, use "$CC -E bar.c". Include the .h
16225 file twice in the grammar, as an extra check.
16226
16227 * tests/input.at (Torturing the Scanner): Surround the
16228 backslash-newline tests with "#if 0", to make it less likely that
16229 we'll run into compiler bugs. Bring back solitary \ inside
16230 comment, but add a closing comment to work around HP C bug. Don't
16231 test backslash-newline in C character constant.
16232
16233 2002-11-14 Akim Demaille <akim@epita.fr>
16234
16235 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
16236 status of the compiler.
16237 Calling `exit 1' is no longer needed.
16238 Reported by Nelson H. F. Beebe.
16239
16240 2002-11-14 Akim Demaille <akim@epita.fr>
16241
16242 * tests/atlocal.in (CPPFLAGS): We have config.h.
16243 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
16244 New.
16245 * tests/actions.at, tests/calc.at, tests/conflicts.at,
16246 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
16247 * tests/regression.at, tests/torture.at: Use them for all the
16248 grammars that are to be compiled.
16249 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
16250 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
16251 * doc/bison.texinfo (GLR Parsers): Document `inline'.
16252
16253 2002-11-14 Akim Demaille <akim@epita.fr>
16254
16255 * doc/bison.texinfo: Various formatting changes (alignments in
16256 samples, additional @group/@end group, GCS in samples.
16257 Use @deffn instead of simple @table to define the directives,
16258 macros, variables etc.
16259
16260 2002-11-13 Paul Eggert <eggert@twinsun.com>
16261
16262 Fix some bugs reported by Albert Chin-A-Young in
16263 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
16264
16265 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
16266 -o c"; the HP C compiler chatters during compilation.
16267 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
16268 * tests/headers.at (export YYLTYPE): Likewise.
16269
16270 * tests/input.at (Torturing the Scanner): Remove lines containing
16271 solitary backslashes, as they tickle a bug in the HP C compiler.
16272
16273 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
16274 comments, since they're not portable. Use GNU coding style.
16275
16276 2002-11-13 Akim Demaille <akim@epita.fr>
16277
16278 * data/yacc.c: Leave bigger chunks of quoted text.
16279 (YYDSYMPRINTF): New.
16280 Use it to report symbol activities.
16281 * data/glr.c (YYDSYMPRINTF): New.
16282 Use it.
16283
16284 2002-11-12 Paul Eggert <eggert@twinsun.com>
16285
16286 Version 1.75b.
16287
16288 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
16289 (yyglrReduce): Return yyok, not 0.
16290 This should avoid the enumerated-type warnings reported
16291 by Nelson H. F. Beebe in
16292 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
16293
16294 * lib/bbitset.h (BITSET_INLINE): Remove.
16295 * lib/bitset.h [! BITSET_INLINE]: Remove.
16296 (bitset_set, bitset_reset, bitset_test): Rename local vars
16297 to avoid shadowing warnings by GCC.
16298
16299 * data/glr.c (inline): Remove #define. It's the user's
16300 responsibility to #define it away, just like 'const'.
16301 This fixes one of the bugs reported by Nelson H. F. Beebe in
16302 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
16303
16304 * Makefile.maint (po-check): Scan .l and .y files instead of the
16305 .c and the .h files that they generate. This fixes the bug
16306 reported by Tim Van Holder in:
16307 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
16308 Look for N_ as well as for _. Try to avoid matching #define for
16309 N_ and _.
16310 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
16311 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
16312 * src/scan-gram.l: Revamp regular expressions so that " and '
16313 do not confuse xgettext.
16314
16315 * src/struniq.h (struniq_new): Do not declare the return type
16316 to be 'const'; this violates the C standard.
16317 * src/struniq.c (struniq_new): Likewise.
16318
16319 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
16320
16321 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
16322 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
16323 linker.
16324
16325 2002-11-12 Akim Demaille <akim@epita.fr>
16326
16327 * Makefile.maint: Sync with Autoconf:
16328 (local_updates): New.
16329
16330 2002-11-12 Akim Demaille <akim@epita.fr>
16331
16332 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
16333
16334 2002-11-12 Akim Demaille <akim@epita.fr>
16335
16336 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
16337 locations.
16338
16339 2002-11-12 Akim Demaille <akim@epita.fr>
16340
16341 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
16342 not yyvalue.
16343
16344 2002-11-12 Akim Demaille <akim@epita.fr>
16345
16346 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
16347 Use it to test the GLR parser.
16348
16349 2002-11-12 Akim Demaille <akim@epita.fr>
16350
16351 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
16352 defines it.
16353 * data/glr.c (yystos): New.
16354 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
16355 (YYDSYMPRINT): New.
16356 (yyval): Don't define it, it is handled via M4.
16357 (yyrecoverParseError): Free verbosely the discarded symbols.
16358 * data/yacc.c (yysymprint): Remove, rather...
16359 (b4_yysymprint_generate): invoke.
16360 * data/c.m4 (b4_yysymprint_generate): New.
16361 Accept pointers as arguments, as opposed to the version from
16362 yacc.c.
16363 (b4_yydestruct_generate): Likewise.
16364 * tests/cations.at (Printers and Destructors): Use Bison directives
16365 instead of CPP macros.
16366 Don't rely on internal details.
16367
16368 2002-11-12 Akim Demaille <akim@epita.fr>
16369
16370 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
16371 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
16372 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
16373 it against YYEMPTY and so forth), work on yytoken (i.e., set
16374 it to YYEMPTY etc.).
16375 (yydestruct): Replace with a b4_yydestruct_generate invocation.
16376 (b4_symbol_actions): Remove.
16377 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
16378 for 0, end-of-input.
16379
16380 2002-11-12 Akim Demaille <akim@epita.fr>
16381
16382 * doc/bison.texinfo (Destructor Decl): New.
16383
16384 2002-11-12 Akim Demaille <akim@epita.fr>
16385
16386 * src/tables.c (tables_generate): Use free for pointers that
16387 cannot be NULL, not XFREE.
16388 (pack_vector): Use assert, not fatal, for bound violations.
16389 * src/state.c (state_new): Likewise.
16390 * src/reader.c (reader): Likewise.
16391 * src/lalr.c (set_goto_map): Likewise.
16392 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
16393 the file name.
16394
16395 2002-11-12 Akim Demaille <akim@epita.fr>
16396
16397 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
16398 Restore.
16399 * src/scan-gram.l (last_string): Is global to the file, not to
16400 yylex.
16401 * src/parse-gram.y (input): Don't append the epilogue here,
16402 (epilogue.opt): do it here, and free the scanner's obstack.
16403 * src/reader.c (epilogue_set): Rename as...
16404 (epilogue_augment): this.
16405 * data/c.m4 (b4_epilogue): Defaults to empty.
16406
16407 2002-11-12 Akim Demaille <akim@epita.fr>
16408
16409 * src/getargs.c (long_options): Remove duplicates.
16410 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
16411 Remove.
16412 * doc/bison.rnh: Remove.
16413 * doc/bison.texinfo (VMS Invocation): Remove.
16414
16415 2002-11-12 Akim Demaille <akim@epita.fr>
16416
16417 * src/struniq.h, src/struniq.c (struniq_t): Is const.
16418 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
16419
16420 Use struniq for symbols.
16421
16422 * src/symtab.h (symbol_t): The tag member is a struniq.
16423 (symbol_type_set): Adjust.
16424 * src/symtab.c (symbol_new): Takes a struniq.
16425 (symbol_free): Don't free the tag member.
16426 (hash_compare_symbol_t, hash_symbol_t): Rename as...
16427 (hash_compare_symbol, hash_symbol): these.
16428 Use the fact that tags as struniqs.
16429 (symbol_get): Use struniq_new.
16430 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
16431 Returns a strniq.
16432 * src/reader.h (merger_list, grammar_currentmerge_set): The name
16433 and type members are struniqs.
16434 * src/reader.c (get_merge_function)
16435 (grammar_current_rule_merge_set): Adjust.
16436 (TYPE, current_type): Are struniq.
16437
16438 Use struniq for file names.
16439
16440 * src/files.h, src/files.c (infile): Split into...
16441 (grammar_file, current_file): these.
16442 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
16443 * src/reduce.c (reduce_print): Likewise.
16444 * src/getargs.c (getargs): Likewise.
16445 * src/complain.h, src/complain.c: Likewise.
16446 * src/main.c (main): Call struniqs_new early enough to use it for
16447 file names.
16448 Don't free the input file name.
16449
16450 2002-11-12 Akim Demaille <akim@epita.fr>
16451
16452 * src/symtab.c (symbol_free): Remove dead deactivated code:
16453 type_name are properly removed.
16454 Don't use XFREE to free items that cannot be NULL.
16455 * src/struniq.h, src/struniq.c: New.
16456 * src/main.c (main): Initialize/free struniqs.
16457 * src/parse-gram.y (%union): Add astruniq member.
16458 (yyprint): Adjust.
16459 * src/scan-gram.l (<{tag}>): Return a struniq.
16460 Free the obstack bit that used to store it.
16461 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
16462
16463 2002-11-11 Paul Eggert <eggert@twinsun.com>
16464
16465 Revamp to fix many (but not all) of the C- and M4-related quoting
16466 problems. Among other things, this fixes the Bison bug reported
16467 by Jan Hubicka when processing the Bash grammar; see:
16468 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
16469
16470 Use new @ escapes consistently. Represent brackets with @{ and @}
16471 rather than @<:@ and @:>@, since this works a bit better with dumb
16472 editors like vi. Represent @ with @@, since @ is now consistently
16473 an escape. Use @oline@ and @ofile@ rather than __oline__ and
16474 __ofile__, to avoid unexpected expansions. Similarly, use @output
16475 rather than #output.
16476
16477 * data/c.m4 (b4_copyright): Omit file name from comment, since
16478 the file name could contain "*/".
16479 (b4_synclines_flag): Don't quote the 2nd argument; it should already
16480 be quoted. All uses changed.
16481
16482 * data/glr.c: Use new @ escapes consistently.
16483 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
16484 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
16485 Remove, since they couldn't handle arbitrary characters in file
16486 names.
16487 * data/lalr1.cc: Likewise.
16488 * data/yacc.c: Likewise.
16489
16490 * src/files.c (output_infix): Remove; all uses removed.
16491 * src/files.h: Likewise.
16492
16493 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
16494 mishandled funny characters in file names, and anyway it isn't
16495 needed any more.
16496 * data/yacc.c: Likewise.
16497 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
16498
16499 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
16500 * data/yacc.c: Likewise.
16501
16502 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
16503 strings now.
16504 (muscle_init): Quote filename as a C string.
16505 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
16506 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
16507 * src/output.c (escaped_file_name_output): New function.
16508 (prepare_symbols): Quote tokens for M4.
16509 (prepare): Don't insert output_infix, output_prefix,
16510 output_parser_name, output_header_name; this is now down by scan-skel.
16511 Insert skeleton as a C string.
16512
16513 * src/output.c (user_actions_output, symbol_destructors_output,
16514 symbol_printers_output): Quote filenames for C and M4.
16515 * src/reader.c (prologue_augment, epilogue_set): Likewise.
16516
16517 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
16518 escapes other than \\ and \'; this simplifies the code.
16519 (<SC_STRING>): Likewise, for \\ and \".
16520 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
16521 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
16522 Use new escapes @{ and @} for [ and ].
16523
16524 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
16525 them with auto vars.
16526 Switch to new escape scheme, where @ is the escape character uniformly.
16527 Abort if a stray escape character is found. Avoid unbounded input
16528 buffer when parsing non-escaped text.
16529
16530 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
16531 __oline__, #output, $@, and @{ do not have unintended meanings.
16532
16533 2002-11-09 Paul Eggert <eggert@twinsun.com>
16534
16535 Fix the test failure due to GCC warnings described in
16536 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
16537 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
16538 evaluate to 0 if it's impossible for NINF to be in the respective
16539 table.
16540 (yygetLRActions, yyrecoverParseError): Use them.
16541
16542 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
16543 counted in the token inserted at end of file. Now takes
16544 location_t *, not location_t, so that the location can be
16545 adjusted. All uses changed.
16546
16547 * tests/regression.at (Invalid inputs): Adjust wording in
16548 diagnostic to match the new behavior.
16549
16550 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
16551 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
16552 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
16553 abort ();'. This reduces the runtime of the "Many lookaheads"
16554 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
16555 GCC 3.2.
16556
16557 2002-11-07 Paul Eggert <eggert@twinsun.com>
16558
16559 * src/parse-gram.y (CHARACTER): Remove unused token.
16560 All uses removed.
16561
16562 * src/scan-gram.l: Remove stack option. We no longer use the
16563 stack, since the stack was never deeper than 1; instead, use the
16564 new auto var c_context to record the stacked value.
16565
16566 Remove nounput option. At an unexpected end of file, we now unput
16567 the minimal input necessary to end cleanly; this simplifies the
16568 code.
16569
16570 Avoid unbounded token sizes where this is easy.
16571
16572 (unexpected_end_of_file): New function.
16573 Use it to systematize the error message on unexpected EOF.
16574 (last-string): Now auto, not static.
16575 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
16576 (scanner_last_string_free): Remove; not used.
16577 (percent_percent_count): Move decl to just before use.
16578 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
16579 not the (never otherwised-used) CHARACTER.
16580
16581 2002-11-07 Akim Demaille <akim@epita.fr>
16582
16583 Let yyerror always receive the msg as last argument, so that
16584 yyerror can be variadic.
16585
16586 * data/yacc.c (b4_yyerror_args): New.
16587 Use it when calling yyerror.
16588 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
16589 Use it when calling yyerror.
16590 * doc/bison.texinfo (Error Reporting): Adjust.
16591 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
16592 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
16593
16594 2002-11-06 Akim Demaille <akim@epita.fr>
16595
16596 #line should have quoted strings.
16597 Ideally, this should be done by m4_quotearg.
16598
16599 * src/scan-skel.l: Include quotearg.h.
16600 Quote __ofile__.
16601 * src/output.c (symbol_printers_output)
16602 (symbol_destructors_output): Quote the file name.
16603
16604 2002-11-06 Akim Demaille <akim@epita.fr>
16605
16606 * tests/regression.at (Invalid inputs): Adjust to the recent
16607 messages.
16608
16609 2002-11-06 Akim Demaille <akim@epita.fr>
16610
16611 Restore --no-lines.
16612 Reported by Jim Kent.
16613
16614 * data/c.m4 (b4_syncline): New.
16615 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
16616 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
16617 * src/output.c (user_actions_output): Likewise.
16618 (prepare): Define 'b4_synclines_flag'.
16619 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
16620
16621 2002-11-06 Akim Demaille <akim@epita.fr>
16622
16623 * src/main.c (main): Free `infile'.
16624 * src/scan-gram.l (handle_syncline): New.
16625 Recognize `#line'.
16626 * src/output.c (user_actions_output, symbol_destructors_output)
16627 (symbol_printers_output): Use the location's file name, not
16628 infile.
16629 * src/reader.c (prologue_augment, epilogue_set): Likewise.
16630
16631 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16632
16633 * src/tables.c (matching_state): Don't allow states to match if
16634 either has GLR conflict entries.
16635
16636 2002-11-05 Paul Eggert <eggert@twinsun.com>
16637
16638 * src/scan-gram.l: Use more accurate diagnostics, e.g.
16639 "integer out of range" rather than "invalid value".
16640 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
16641 accordingly.
16642
16643 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
16644 Also, remove one static variable in the scanner.
16645
16646 * src/scan-gram.l (braces_level): Now auto, not static.
16647 Initialize to zero if the compiler is being picky.
16648 (INITIAL): Clear braces_level instead of incrementing it.
16649 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
16650 as POSIX 1003.1-2001 requires.
16651 * src/system.h (IF_LINT): New macro, taken from coreutils.
16652 * configure.ac: Define "lint" if --enable-gcc-warnings.
16653
16654 2002-11-05 Akim Demaille <akim@epita.fr>
16655
16656 * src/scan-gram.l: When it starts with `%', complain about the
16657 whole directive, not just that `invalid character: %'.
16658
16659 2002-11-04 Akim Demaille <akim@epita.fr>
16660
16661 * Makefile.maint: Update from Autoconf.
16662 (update, cvs-update, po-update, do-po-update): New.
16663
16664 2002-11-04 Akim Demaille <akim@epita.fr>
16665
16666 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
16667 and yyerror.
16668 Have yyerror `use' its arguments.
16669 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
16670 returns true when location & yacc & pure & parse-param.
16671 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
16672
16673 2002-11-04 Akim Demaille <akim@epita.fr>
16674
16675 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
16676 clashes.
16677 * src/scan-gram.l: Use [\'] instead of ['] to pacify
16678 font-lock-mode.
16679 Use complain_at.
16680 Use quote, not quote_n since LOCATION_PRINT no longer uses the
16681 slot 0.
16682
16683 2002-11-03 Paul Eggert <eggert@twinsun.com>
16684
16685 * src/reader.c (get_merge_function, grammar_current_rule_check):
16686 Use consistent diagnostics for reporting type name clashes.
16687 Quote the types with <>, for consistency with Yacc.
16688 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
16689
16690 2002-11-03 Akim Demaille <akim@epita.fr>
16691
16692 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
16693 New.
16694 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
16695 (b4_parse_param): Remove.
16696 Use b4_identification.
16697 Propagate b4_pure_args where needed to pass them to yyerror.
16698 * data/glr.m4 (b4_parse_param): Remove.
16699 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
16700 (b4_lpure_formals): New.
16701 Use b4_identification.
16702 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
16703 b4_user_formals and b4_user_args.
16704 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
16705 (yyreportAmbiguity): When using a pure parser, also need
16706 the location, and the parse-params.
16707 Adjust callers.
16708 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
16709 When using a pure parser, also need the parse-params.
16710 Adjust callers.
16711 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
16712 (%pure-parser + %parse-param) LALR and GLR parsers.
16713 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
16714 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
16715 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
16716 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
16717 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
16718 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
16719 * doc/bison.texinfo: Untabify the whole file.
16720 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
16721 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
16722 (Error Reporting): Adjust to these new directives.
16723 Document %error-verbose, deprecate YYERROR_VERBOSE.
16724
16725 2002-11-03 Akim Demaille <akim@epita.fr>
16726
16727 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
16728 AT_CHECK_CALC_GLR invocations to use % directives, instead of
16729 command line options.
16730 * tests/cxx-type.at: Formatting changes.
16731
16732 2002-11-03 Paul Eggert <eggert@twinsun.com>
16733
16734 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
16735 to count columns correctly, and to check for invalid inputs.
16736
16737 Use mbsnwidth to count columns correctly. Account for tabs, too.
16738 Include mbswidth.h.
16739 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
16740 (extend_location): New function.
16741 (YY_LINES): Remove.
16742
16743 Handle CRLF in C code rather than in Lex code.
16744 (YY_INPUT): New macro.
16745 (no_cr_read): New function.
16746
16747 Scan UCNs, even though we don't fully handle them yet.
16748 (convert_ucn_to_byte): New function.
16749
16750 Handle backslash-newline correctly in C code.
16751 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
16752 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
16753 all uses changed.
16754 (tag, splice): New EREs. Do not allow NUL or newline in tags.
16755 Use {splice} wherever C allows backslash-newline.
16756 YY_STEP after space, newline, vertical-tab.
16757 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
16758
16759 (letter, id): Don't assume ASCII; e.g., spell out a-z.
16760
16761 ({int}, handle_action_dollar, handle_action_at): Check for integer
16762 overflow.
16763
16764 (YY_STEP): Omit trailing semicolon, so that it's more like C.
16765
16766 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
16767 as well as \000. Check for UCHAR_MAX, not 255.
16768 Allow \x with an arbitrary positive number of digits, as in C.
16769 Check for overflow here.
16770 Allow \? and UCNs, for compatibility with C.
16771
16772 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
16773 with quote slot used by complain_at.
16774
16775 * tests/input.at: Add tests for backslash-newline, m4 quotes
16776 in symbols, long literals, and funny escapes in strings.
16777
16778 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
16779 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
16780 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
16781 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
16782 * m4/mbswidth.m4: New file, from GNU coreutils.
16783
16784 * doc/bison.texinfo (Grammar Outline): Document // comments.
16785 (Symbols): Document that trigraphs have no special meaning in Bison,
16786 nor is backslash-newline allowed.
16787 (Actions): Document that trigraphs have no special meaning.
16788
16789 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
16790 no longer used.
16791
16792 2002-11-02 Paul Eggert <eggert@twinsun.com>
16793
16794 * src/reader.c: Don't include quote.h; not needed.
16795 (get_merge_function): Reword warning to be consistent with
16796 type clash diagnostic in grammar_current_rule_check.
16797
16798 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
16799 bug in trigraph handling.
16800
16801 * src/output.c (prepare_symbols): When printing token names,
16802 escape "[" as "@<:@" and likewise for "]".
16803
16804 * src/system.h (errno): Remove declaration, as we are now
16805 assuming C89 or better, and C89 guarantees errno.
16806
16807 2002-10-30 Paul Eggert <eggert@twinsun.com>
16808
16809 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
16810 Check for close failures.
16811 * src/files.h (xfclose): Return void, not int, since it always
16812 returned zero.
16813 * src/files.c (xfclose): Likewise. Report I/O error if ferror
16814 indicates one.
16815 * src/output.c (output_skeleton): Use xfclose rather than fclose
16816 and ferror. xfclose now checks ferror.
16817
16818 * data/glr.c (YYLEFTMOST_STATE): Remove.
16819 (yyreportTree): Use a stack-based leftmost state. This avoids
16820 our continuing battles with bogus warnings about initializers.
16821
16822 2002-10-30 Akim Demaille <akim@epita.fr>
16823
16824 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
16825 #if.
16826
16827 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16828
16829 * tests/glr-regr1.at: New test for reported regressions.
16830 * tests/testsuite.at: Add glr-regr1.at test.
16831 * tests/Makefile.am: Add glr-regr1.at test.
16832
16833 2002-10-24 Paul Eggert <eggert@twinsun.com>
16834
16835 Version 1.75a.
16836
16837 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
16838 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
16839 we use malloc. Don't assume 'A' through 'Z' are contiguous.
16840 Don't assume strdup exists; POSIX says its an XSI extension.
16841 Check for buffer overflow on input.
16842
16843 2002-10-24 Akim Demaille <akim@epita.fr>
16844
16845 * src/output.c (output_skeleton): Don't disable M4sugar comments
16846 too soon: it results in comments being expanded.
16847 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
16848 first output.
16849
16850 2002-10-24 Akim Demaille <akim@epita.fr>
16851
16852 * data/yacc.c (m4_int_type): New.
16853 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
16854 char' as only yacc.c wants K&R portability.
16855 * data/glr.c (yysigned_char): Remove.
16856 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
16857 Reported by Quoc Peyrot.
16858
16859 2002-10-23 Paul Eggert <eggert@twinsun.com>
16860
16861 * src/main.c (main): With --trace=time, report times even if a
16862 non-fatal error occurs. Formerly, the times were reported in some
16863 such cases but not in others.
16864 * src/reader.c (reader): Just return if a complaint has been issued,
16865 instead of exiting, so that 'main' can report times.
16866
16867 2002-10-22 Akim Demaille <akim@epita.fr>
16868
16869 * src/system.h: Include sys/types.
16870 Reported by Bert Deknuydt.
16871
16872 2002-10-23 Paul Eggert <eggert@twinsun.com>
16873
16874 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
16875 Suggested by Art Haas.
16876
16877 2002-10-22 Paul Eggert <eggert@twinsun.com>
16878
16879 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
16880 decl; not needed any more.
16881 * src/main.c (main): Use return to exit, undoing yesterday's change.
16882 The last OS that we could find where this wouldn't work is
16883 SunOS 3.5, and that's too old to worry about now.
16884
16885 * data/glr.c (struct yyltype): Define members even when not
16886 doing locations. This is more consistent with yacc.c, and it
16887 works around the following bug reports:
16888 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
16889 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
16890
16891 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
16892 @acronym consistently. Standardize on "Yacc" instead of "YACC",
16893 "Algol" instead of "ALGOL". Give a bit more history about BNF.
16894
16895 2002-10-22 Akim Demaille <akim@epita.fr>
16896
16897 * data/README: New.
16898
16899 2002-10-21 Paul Eggert <eggert@twinsun.com>
16900
16901 Be consistent about 'bool'; the old code used an enum in one
16902 module and an int in another, and this violates the C standard.
16903 * m4/stdbool.m4: New file, from coreutils 4.5.3.
16904 * configure.ac (AC_HEADER_STDBOOL): Add.
16905 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
16906 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
16907 * src/symtab.c (hash_compare_symbol_t): Likewise.
16908 * src/system.h (bool, false, true): Use a definition consistent
16909 with ../lib/hash.c. All uses changed.
16910
16911 * src/complain.c (warning_issued): Renamed from warn_message_count,
16912 so that we needn't worry about integer overflow (!).
16913 Now of type bool. All uses changed.
16914 (complaint_issued): Renamed from complain_message_count; likewise.
16915
16916 * src/main.c (main): Use exit to exit with failure.
16917
16918 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
16919 rather than 1 and 0.
16920 * src/main.c (main): Likewise.
16921 * src/getargs.c (getargs): Likewise.
16922 * src/reader.c (reader): Likewise.
16923
16924 * src/getarg.c (getargs): Remove duplicate code for
16925 "Try `bison --help'".
16926
16927 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
16928 What was that "2" for?
16929
16930 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
16931 * src/getargs.c (usage): Likewise.
16932
16933 * src/getargs.c (getargs): When there are too few operands, report
16934 the last one. When there are too many, report the first extra
16935 one. This is how diffutils does it.
16936
16937 2002-10-20 Paul Eggert <eggert@twinsun.com>
16938
16939 Remove K&R vestiges.
16940 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
16941 * src/complain.c (VA_START): Remove. Assume prototypes.
16942 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
16943 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
16944 fatal): Assume prototypes.
16945 * src/complain.h: Assume prototypes.
16946 * src/system.h (PARAMS): Remove.
16947 Include <limits.h> unconditionally, since it's guaranteeed even
16948 for a freestanding C89 compiler.
16949 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
16950 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
16951
16952 2002-10-20 Akim Demaille <akim@epita.fr>
16953
16954 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
16955 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
16956 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
16957 (yyresolveStates, yyresolveAction, yyresolveStack)
16958 (yyprocessOneStack): Use them.
16959 (yy_reduce_print): New.
16960 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
16961
16962 2002-10-20 Akim Demaille <akim@epita.fr>
16963
16964 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
16965 arguments and output `void'.
16966 (b4_c_function): Rename as...
16967 (b4_c_function_def): this.
16968 (b4_c_function_decl, b4_c_ansi_function_def)
16969 (b4_c_ansi_function_decl): New.
16970 Change the interpretation of the arguments: before `int, foo', now
16971 `int foo, foo'.
16972 * data/yacc.c (yyparse): Prototype and define thanks to these.
16973 Adjust b4_c_function_def uses.
16974 * data/glr.c (yyparse): Likewise, but ANSI only.
16975
16976 2002-10-20 Akim Demaille <akim@epita.fr>
16977
16978 * src/output.c (prepare): Move the definition of `tokens_number',
16979 `nterms_number', `undef_token_number', `user_token_number_max'
16980 to...
16981 (prepare_tokens): Here.
16982 (prepare_tokens): Rename as...
16983 (prepare_symbols): this.
16984 (prepare): Move the definition of `rules_number' to...
16985 (prepare_rules): here.
16986 (prepare): Move the definition of `last', `final_state_number',
16987 `states_number' to...
16988 (prepare_states): here.
16989 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
16990
16991 2002-10-20 Akim Demaille <akim@epita.fr>
16992
16993 * src/tables.h, src/tables.c, src/output.c: Comment changes.
16994
16995 2002-10-20 Akim Demaille <akim@epita.fr>
16996
16997 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
16998 * data/c.m4: here.
16999
17000 2002-10-20 Akim Demaille <akim@epita.fr>
17001
17002 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
17003 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
17004 `pair'.
17005 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
17006 `name' to...
17007 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
17008 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
17009 These.
17010
17011 2002-10-19 Paul Eggert <eggert@twinsun.com>
17012
17013 Do not create a temporary file, as that involves security and
17014 cleanup headaches. Instead, use a pair of pipes.
17015 Derived from a suggestion by Florian Krohm.
17016 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
17017 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
17018 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
17019 (BISON_PREREQ_SUBPIPE): Add.
17020 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
17021 Add subpipe.h, subpipe.c.
17022 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
17023 * po/POTFILES.in: Add lib/subpipe.c.
17024 * src/output.c: Include "subpipe.h".
17025 (m4_invoke): Remove decl.
17026 (scan_skel): New decl.
17027 (output_skeleton): Use pipe rather than temporary file for m4 input.
17028 Check that m4sugar.m4 is readable, to avoid deadlock.
17029 Check for pipe I/O error.
17030 * src/scan-skel.l (readpipe): Remove decl.
17031 (scan_skel): New function, to be used in place of m4_invoke.
17032 Read from stream rather than file.
17033
17034 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
17035 float, as this generates a warning on Solaris 8 + GCC 3.2 with
17036 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
17037 this generates a more-accurate value anyway.
17038
17039 * lib/timevar.c (timervar_accumulate): Rename locals to
17040 avoid confusion with similarly-named more-global.
17041 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
17042
17043 * src/output.c (prepare): Use xstrdup to convert char const *
17044 to char *, to avoid GCC warning.
17045
17046 2002-10-19 Akim Demaille <akim@epita.fr>
17047
17048 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
17049 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
17050 Use them to have `calc.y' ready for %pure-parser.
17051 * data/yacc.c (YYLEX): Pass a yylex return type to
17052 b4_c_function_call.
17053
17054 2002-10-19 Akim Demaille <akim@epita.fr>
17055
17056 Prototype support of %lex-param and %parse-param.
17057
17058 * src/parse-gram.y: Add the definition of the %lex-param and
17059 %parse-param tokens, plus their rules.
17060 Drop the `_' version of %glr-parser.
17061 Add the "," token.
17062 * src/scan-gram.l (INITIAL): Scan them.
17063 * src/muscle_tab.c: Comment changes.
17064 (muscle_insert, muscle_find): Rename `pair' as `probe'.
17065 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
17066 (muscle_entry_s): The `value' member is no longer const.
17067 Adjust all dependencies.
17068 * src/muscle_tab.c (muscle_init): Adjust: use
17069 MUSCLE_INSERT_STRING.
17070 Initialize the obstack earlier.
17071 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
17072 (muscle_pair_list_grow): New.
17073 * data/c.m4 (b4_c_function_call, b4_c_args): New.
17074 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
17075 * tests/calc.at: Use %locations, not --locations.
17076 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
17077
17078 2002-10-19 Akim Demaille <akim@epita.fr>
17079
17080 * src/getargs.c (usage): Take status as argument and exit
17081 accordingly.
17082 Report the traditional `Try ... --help' message when status != 0.
17083 (usage, version): Don't take a FILE * as arg, it is pointless.
17084 (getargs): When there is an incorrect number of arguments, make it
17085 an error, and report it GNUlically thanks to `usage ()'.
17086
17087 2002-10-18 Paul Eggert <eggert@twinsun.com>
17088
17089 * data/glr.c (yyreportParseError): Don't assume that sprintf
17090 yields the length of the printed string, as this is not true
17091 on SunOS 4.1.4. Reported by Peter Klein.
17092
17093 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
17094 * tests/conflicts.at (%nonassoc and eof): Likewise.
17095 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
17096
17097 2002-10-17 Akim Demaille <akim@epita.fr>
17098
17099 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
17100 * src/getargs.c (trace_types, trace_args): Adjust.
17101 * src/reader.c (grammar_current_rule_prec_set)
17102 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
17103 Standardize error messages.
17104 And s/@prec/%prec/!
17105 (reader): Use trace_flag to enable scanner/parser debugging,
17106 instead of an adhoc scheme.
17107 * src/scan-gram.l: Remove trailing debugging code.
17108
17109 2002-10-16 Paul Eggert <eggert@twinsun.com>
17110
17111 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
17112 MUSCLE_TAB_H.
17113
17114 * NEWS: Officially drop support for building Bison with K&R C,
17115 since it didn't work anyway and it's not worth worrying about.
17116 * Makefile.maint (wget_files): Remove ansi2knr.c.
17117 (ansi2knr.c-url_prefix): Remove.
17118 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
17119 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
17120 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
17121
17122 2002-10-15 Paul Eggert <eggert@twinsun.com>
17123
17124 Stop using the "enum_" trick for K&R-style function definitions;
17125 it confused me, and I was the author! Instead, assume that people
17126 who want to use K&R C compilers (when using these modules in GCC,
17127 perhaps?) will run ansi2knr.
17128
17129 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
17130 All uses of "enum_" changed to "enum ".
17131 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
17132 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
17133
17134 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
17135 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
17136 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
17137 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
17138 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
17139 abitset_not, abitset_ones, abitset_or, abitset_or_and,
17140 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
17141 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
17142 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
17143 Use function prototypes; this removes the need for declaring
17144 static functions simply to provide their prototypes.
17145 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
17146 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
17147 bitset_count_, bitset_create, bitset_dump, bitset_first,
17148 bitset_free, bitset_init, bitset_last, bitset_next,
17149 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
17150 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
17151 bitset_print, bitset_release_memory, bitset_toggle_,
17152 bitset_type_choose, bitset_type_get, bitset_type_name_get,
17153 debug_bitset): Likewise.
17154 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
17155 * lib/bitset_stats.c (bitset_log_histogram_print,
17156 bitset_percent_histogram_print, bitset_stats_and,
17157 bitset_stats_and_cmp, bitset_stats_and_or,
17158 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
17159 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
17160 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
17161 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
17162 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
17163 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
17164 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
17165 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
17166 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
17167 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
17168 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
17169 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
17170 bitset_stats_zero): Likewise.
17171 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
17172 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
17173 bitsetv_dump, debug_bitsetv): Likewise.
17174 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
17175 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
17176 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
17177 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
17178 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
17179 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
17180 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
17181 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
17182 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
17183 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
17184 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
17185 Likewise.
17186 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
17187 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
17188 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
17189 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
17190 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
17191 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
17192 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
17193 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
17194 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
17195 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
17196 lbitset_xor_cmp, lbitset_zero): Likewise.
17197
17198 2002-10-14 Akim Demaille <akim@epita.fr>
17199
17200 Version 1.75.
17201
17202 2002-10-14 Akim Demaille <akim@epita.fr>
17203
17204 * tests/Makefile.am (maintainer-check-posix): New.
17205
17206 2002-10-14 Akim Demaille <akim@epita.fr>
17207
17208 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
17209 member.
17210
17211 2002-10-14 Akim Demaille <akim@epita.fr>
17212
17213 * src/tables.c (table_ninf_remap): base -> tab.
17214 Reported by Matt Rosing.
17215
17216 2002-10-14 Paul Eggert <eggert@twinsun.com>
17217
17218 * tests/action.at, tests/calc.at, tests/conflicts.at,
17219 tests/cxx-type.at, tests/headers.at, tests/input.at,
17220 tests/regression.at, tests/synclines.at, tests/torture.at:
17221 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
17222 so that the tests still work even if POSIXLY_CORRECT is set.
17223 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
17224
17225 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
17226 for portability to K&R hosts. Fix typo: signed char is guaranteed
17227 only to 127, not to 128.
17228 * data/glr.c (yysigned_char): New type.
17229 * data/yacc.c (yysigned_char): Likewise.
17230 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
17231
17232 2002-10-13 Paul Eggert <eggert@twinsun.com>
17233
17234 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
17235 true due to limited range of data type" warning from GCC.
17236
17237 * data/c.m4 (b4_token_defines): Protect against double-inclusion
17238 by wrapping enum yytokentype's definition inside #ifndef
17239 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
17240
17241 2002-10-13 Akim Demaille <akim@epita.fr>
17242
17243 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
17244 Un yy- yyrhs to avoid the name clash with the global YYRHS.
17245
17246 2002-10-13 Akim Demaille <akim@epita.fr>
17247
17248 * Makefile.maint: Update from Autoconf 2.54.
17249 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
17250
17251 2002-10-13 Akim Demaille <akim@epita.fr>
17252
17253 * src/print.c (print_state): Separate the list of solved conflicts
17254 from the other items.
17255 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
17256
17257 2002-10-13 Akim Demaille <akim@epita.fr>
17258
17259 Let nondeterministic skeletons be usable with deterministic
17260 tables.
17261
17262 With the patch, GAWK compiled by GCC without -O2 passes its test
17263 suite using a GLR parser driven by LALR tables. It fails with -O2
17264 because `struct stat' gives two different answers on my machine:
17265 88 (definition of an auto var) and later 96 (memset on this var).
17266 Hence the stack is badly corrumpted. The headers inclusion is to
17267 blame: if I move the awk.h inclusion before GLR's system header
17268 inclusion, the two struct stat have the same size.
17269
17270 * src/tables.c (pack_table): Always create conflict_table.
17271 (token_actions): Always create conflict_list.
17272 * data/glr.c (YYFLAG): Remove, unused.
17273
17274 2002-10-13 Akim Demaille <akim@epita.fr>
17275
17276 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
17277 (O0FLAGS): New.
17278 (VALGRIND, GXX): New.
17279 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
17280 * tests/bison.in: Run $PREBISON a pre-command.
17281 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
17282 (maintainer-check-g++): New.
17283 * Makefile.am (maintainer-check): New.
17284
17285 2002-10-13 Akim Demaille <akim@epita.fr>
17286
17287 * data/glr.c: Formatting changes.
17288 Tweak some trace messages to match yacc.c's.
17289
17290 2002-10-13 Akim Demaille <akim@epita.fr>
17291
17292 GLR parsers sometimes raise parse errors instead of performing the
17293 default reduction.
17294 Reported by Charles-Henry de Boysson.
17295
17296 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
17297 check the length of the traces when %glr.
17298 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
17299 GLR's traces.
17300 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
17301 Test GLR parsers.
17302 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
17303 (yyltype): Remove the yy prefix from the member names.
17304 (yytable): Complete its comment.
17305 (yygetLRActions): Map error action number from YYTABLE from
17306 YYTABLE_NINF to 0.
17307 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
17308 (which was a bug: it should have been YYTABEL_NINF, and yet it was
17309 not satisfying as we could compare an YYACTION computed from
17310 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
17311 only value for error actions.
17312 (yyreportParseError): In verbose parse error messages, don't issue
17313 `error' in the list of expected tokens.
17314 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
17315 next action to perform to match glr.c's decoding.
17316 (yytable): Complete its comment.
17317
17318 2002-10-13 Paul Eggert <eggert@twinsun.com>
17319
17320 Fix problem reported by Henrik Grubbstroem in
17321 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
17322 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
17323 because the Bison parser reads the second action before reducing
17324 the first one.
17325 * src/scan-gram.l (rule_length): New static var.
17326 Use it to keep track of the rule length in the scanner, since
17327 we can't expect the parser to be in lock-step sync with the scanner.
17328 (handle_action_dollar, handle_action_at): Use this var.
17329 * tests/actions.at (Exotic Dollars): Test for the problem.
17330
17331 2002-10-12 Paul Eggert <eggert@twinsun.com>
17332
17333 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
17334 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
17335 Include <sys/time.h> when checking for clock_t and struct tms.
17336 Use same include order as source.
17337 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
17338 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
17339
17340 * lib/timevar.c: Update copyright date and clarify comments.
17341 (get_time) [IN_GCC]: Keep the GCC version for reference.
17342
17343 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
17344 GCC version as of today, then merge Bison's changes.
17345 Change "GCC" to "Bison" in copyright notice. timevar.def's
17346 author is Akim, so change that too.
17347
17348 * src/reader.c (grammar_current_rule_check):
17349 Don't worry about the default action if $$ is untyped.
17350 Prevents bogus warnings reported by Jim Gifford in
17351 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
17352
17353 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
17354 * data/glr.c, data/lalr1.cc, data/yacc.c:
17355 Output token definitions before the first part of user declarations.
17356 Fixes compatibility problem reported by Jim Gifford for kbd in
17357 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
17358
17359 2002-10-11 Paul Eggert <eggert@twinsun.com>
17360
17361 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
17362 (yyparse): here. This undoes some of the 2002-07-25 change.
17363 Compatibility problem reported by Ralf S. Engelschall with
17364 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
17365
17366 2002-10-11 Akim Demaille <akim@epita.fr>
17367
17368 * tests/regression.at Characters Escapes): New.
17369 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
17370 characters.
17371 Reported by Jan Nieuwenhuizen.
17372
17373 2002-10-11 Akim Demaille <akim@epita.fr>
17374
17375 * po/id.po: New.
17376
17377 2002-10-10 Paul Eggert <eggert@twinsun.com>
17378
17379 Portability fixes for bitsets; this also avoids several GCC
17380 warnings.
17381
17382 * lib/abitset.c: Include <stddef.h>, for offsetof.
17383 * lib/lbitset.c: Likewise.
17384
17385 * lib/abitset.c (abitset_bytes): Return a size that is aligned
17386 properly for vectors of objects. Do not assume that adding a
17387 header size to a multiple of a word size yields a value that is
17388 properly aligned for the whole union.
17389 * lib/bitsetv.c (bitsetv_alloc): Likewise.
17390
17391 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
17392 unique names for structures.
17393 * lib/ebitset.c (ebitset_bytes): Likewise.
17394 * lib/lbitset.c (lbitset_bytes): Likewise.
17395
17396 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
17397 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
17398 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
17399 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
17400 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
17401 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
17402 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
17403 to improve the type-checking that GCC can do.
17404 * lib/bitset.c (bitset_op4_cmp): Likewise.
17405 * lib/bitset_stats.c (bitset_stats_count,
17406 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
17407 bitset_stats_copy, bitset_stats_disjoint_p,
17408 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
17409 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
17410 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
17411 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
17412 bitset_stats_and_or_cmp, bitset_stats_andn_or,
17413 bitset_stats_andn_or_cmp, bitset_stats_or_and,
17414 bitset_stats_or_and_cmp): Likewise.
17415 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
17416 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
17417 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
17418 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
17419
17420 * lib/abitset.h: Include bitset.h, not bbitset.h.
17421 * lib/ebitset.h: Likewise.
17422 * lib/lbitset.h: Likewise.
17423
17424 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
17425 All instances of parameters of type enum bitset_opts are now of
17426 type enum_bitset_opts, to conform to the C Standard, and similarly
17427 for enum_bitset_type.
17428 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
17429 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
17430
17431 Do not use "struct bitset_struct" to mean different things in
17432 different modules. Not only is this confusing, it violates
17433 the C Standard, which requires that structure types in different
17434 modules must be compatible if one is to be passed to the other.
17435 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
17436 All instances of "struct bitset_struct *" replaced with "bitset".
17437 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
17438 (union bitset_union, struct abitset_struct, struct ebitset_struct,
17439 struct lbitset_struct, struct bitset_stats_struct): New types.
17440 All uses of struct bitset_struct changed to union bitset_union,
17441 etc.
17442 * lib/abitset.c (struct abitset_struct, abitset,
17443 struct bitset_struct): Remove.
17444 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
17445 struct bitset_struct): Remove.
17446 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
17447 bitset_struct): Remove.
17448 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
17449 Likewise.
17450
17451 Do not call a function of type T using a call that assumes the
17452 function is of a different type U. Standard C requires that a
17453 function must be called with a type that is compatible with its
17454 definition.
17455 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
17456 New decls.
17457 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
17458 New functions.
17459 * lib/ebitset.c (PFV): Remove.
17460 * lib/lbitset.c (PFV): Likewise.
17461 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
17462 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
17463 decls.
17464 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
17465 (ebitset_vtable): Use them.
17466 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
17467 lbitset_xor): New functions.
17468 (lbitset_vtable): Use them.
17469
17470 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
17471 Declare.
17472
17473 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
17474 GCC warning.
17475 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
17476 Use offsetof, for simplicity.
17477
17478 2002-10-06 Paul Eggert <eggert@twinsun.com>
17479
17480 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
17481 the same width as int. This reapplies a hunk of the 2002-08-12 patch
17482 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
17483 which was inadvertently undone by the 2002-09-30 patch.
17484 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
17485 the same width as int.
17486
17487 2002-10-04 Paul Eggert <eggert@twinsun.com>
17488
17489 Version 1.50.
17490
17491 * configure.ac (AC_INIT), NEWS: Increment version number.
17492
17493 * doc/bison.texinfo: Minor spelling, grammar, and white space
17494 fixes.
17495 (Symbols): Mention that any negative value returned from yylex
17496 signifies end-of-input. Warn about negative chars. Mention
17497 the portable Standard C character set.
17498
17499 The GNU coding standard says CFLAGS and YFLAGS are reserved
17500 for the installer to set.
17501 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
17502 * src/Makefile.am (AM_CFLAGS): Likewise.
17503 (AM_YFLAGS): Renamed from YFLAGS.
17504
17505 Fix some MAX and MIN problems.
17506 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
17507 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
17508 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
17509 * src/reader.c (reader): Use it.
17510
17511 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
17512 POSIX 1003.1-2001 has removed fgrep.
17513
17514 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
17515
17516 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
17517 interpreted as signed.
17518 * lib/ebitset.c (ebitset_list): Fix bug.
17519
17520 2002-10-01 Paul Eggert <eggert@twinsun.com>
17521
17522 More fixes for 64-bit hosts and large bitsets.
17523
17524 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
17525 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
17526 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
17527 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
17528 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
17529 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
17530 bitset_count_): Likewise.
17531 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
17532 bitset_first, bitset_last): Likewise.
17533 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
17534 bitset_stats_list_reverse, bitset_stats_size,
17535 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
17536 Likewise.
17537 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
17538 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
17539 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
17540 bitsetv_reflexive_transitive_closure): Likewise.
17541 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
17542 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
17543 Likewise.
17544 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
17545 Likewise.
17546
17547 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
17548 Use size_t, not unsigned int, to count bytes.
17549 * lib/abitset.h (abitset_bytes): Likewise.
17550 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
17551 Likewise.
17552 * lib/bitset.h (bitset_bytes): Likewise.
17553 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
17554 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
17555 * lib/bitsetv.c (bitsetv_alloc): Likewise.
17556 * lib/ebitset.c (ebitset_bytes): Likewise.
17557 * lib/ebitset.h (ebitset_bytes): Likewise.
17558 * lib/lbitset.c (lbitset_bytes): Likewise.
17559 * lib/lbitset.h (lbitset_bytes): Likewise.
17560
17561 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
17562 abitset_subset_p, abitset_disjoint_p, abitset_and,
17563 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
17564 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
17565 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
17566 abitset_or_and, abitset_or_and_cmp):
17567 Use bitset_windex instead of unsigned int.
17568 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
17569 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
17570 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
17571 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
17572 Likewise.
17573 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
17574
17575 * lib/bitset.c (bitset_print):
17576 Use proper printf formats for widths of integer types.
17577 * lib/bitset_stats.c (bitset_percent_histogram_print,
17578 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
17579 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
17580 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
17581 * lib/lbitset.c (lbitset_bytes): Likewise.
17582
17583 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
17584 BITSET_SIZE_MAX): New macros.
17585 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
17586 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
17587 to BITSET_WINDEX_MAX.
17588
17589 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
17590 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
17591 since we now return the bitset_bindex type (not int).
17592
17593 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
17594 when computing sizes.
17595 * lib/ebitset.c (ebitset_elts_grow): Likewise.
17596
17597 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
17598 and avoid cast to unsigned.
17599
17600 2002-09-30 Akim Demaille <akim@epita.fr>
17601
17602 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
17603 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
17604 Updates from Michael Hayes.
17605
17606 2002-09-30 Art Haas <ahaas@neosoft.com>
17607
17608 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
17609 invocations.
17610 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
17611 defined.
17612
17613 2002-09-27 Akim Demaille <akim@epita.fr>
17614
17615 Version 1.49c.
17616
17617 2002-09-27 Akim Demaille <akim@epita.fr>
17618
17619 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
17620 (Because of AC_LIBSOURCE).
17621
17622 2002-09-27 Akim Demaille <akim@epita.fr>
17623
17624 Playing with Autoscan.
17625
17626 * configure.ac: Remove the old LIBOBJ tweaks.
17627 (AC_REPLACE_FUNCS): Add strrchr and strtol.
17628 * lib/strrchr.c: New.
17629 * lib/strtol.c: New, from the Coreutils 4.5.1.
17630
17631 2002-09-27 Akim Demaille <akim@epita.fr>
17632
17633 Playing with Autoscan.
17634
17635 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
17636 * lib/Makefile.am (libbison_a_SOURCES): No longer include
17637 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
17638 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
17639 Coreutils 4.5.1.
17640
17641 2002-09-24 Akim Demaille <akim@epita.fr>
17642
17643 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
17644 (Frequently Asked Questions, Parser Stack Overflow): New.
17645
17646 2002-09-13 Akim Demaille <akim@epita.fr>
17647
17648 Playing with autoscan.
17649
17650 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
17651 * src/files.c (skeleton_find): Remove, unused.
17652 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
17653 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
17654
17655 2002-09-13 Akim Demaille <akim@epita.fr>
17656
17657 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
17658 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
17659
17660 2002-09-13 Akim Demaille <akim@epita.fr>
17661
17662 * configure.ac: Require 2.54.
17663 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
17664 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
17665 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
17666 Remove, provided by Autoconf macros.
17667
17668 2002-09-12 Akim Demaille <akim@epita.fr>
17669
17670 * m4/prereq.m4: Update, from Coreutils 4.5.1.
17671
17672 2002-09-12 Akim Demaille <akim@epita.fr>
17673
17674 * m4/prereq.m4: Update, from Fileutils 4.1.5.
17675 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
17676 Reported by Martin Mokrejs.
17677
17678 2002-09-10 Akim Demaille <akim@epita.fr>
17679
17680 * src/parse-gram.y: Associate a human readable string to each
17681 token type.
17682 * tests/regression.at (Invalid inputs): Adjust.
17683
17684 2002-09-10 Gary V. Vaughan <gary@gnu.org>
17685
17686 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
17687 with an Autoconf-2.5x style configure.ac.
17688
17689 2002-09-06 Paul Eggert <eggert@twinsun.com>
17690
17691 * doc/bison.texinfo (Conditions): Make explicit that the GPL
17692 exception applies only to yacc.c. This is a modification of a
17693 patch originally suggested by Akim Demaille.
17694
17695 2002-09-06 Akim Demaille <akim@epita.fr>
17696
17697 * data/c.m4 (b4_copyright): Move the GPL exception comment from
17698 here to...
17699 * data/yacc.c: here.
17700
17701 * data/lalr1.cc (struct yyltype): Don't define it, since we use
17702 LocationType.
17703 (b4_ltype): Default to yy::Location from location.hh.
17704
17705 2002-09-04 Jim Meyering <jim@meyering.net>
17706
17707 * data/yacc.c: Guard the declaration of yytoknum also with
17708 `#ifdef YYPRINT', so it is declared only when used.
17709
17710 2002-09-04 Akim Demaille <akim@epita.fr>
17711
17712 * configure.in: Rename as...
17713 * configure.ac: this.
17714 Bump to 1.49c.
17715
17716 2002-09-04 Akim Demaille <akim@epita.fr>
17717
17718 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
17719 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
17720 translate maintainer only messages.
17721
17722 2002-08-12 Paul Eggert <eggert@twinsun.com>
17723
17724 Version 1.49b.
17725
17726 * Makefile.am (SUBDIRS): Remove intl.
17727 (DISTCLEANFILES): Remove.
17728 * NEWS: Mention that GNU M4 is now required. Clarify what is
17729 meant by "larger grammars". Mention the pt_BR translation.
17730 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
17731 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
17732 Bump version from 0.11.2 to 0.11.5.
17733 (BISON_PREREQ_STAGE): Remove.
17734 (AM_GNU_GETTEXT): Use external gettext.
17735 (AC_OUTPUT): Remove intl/Makefile.
17736
17737 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
17738
17739 * data/glr.c: Include string.h, for strlen.
17740 (yyreportParseError): Use size_t for yysize.
17741 (yy_yypstack): No longer nested inside yypstates, as nested
17742 functions are not portable. Do not assume size_t is the
17743 same width as int.
17744 (yypstates): Do not assume that ptrdiff_t is the same width
17745 as int, and similarly for yyposn and YYINDEX.
17746
17747 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
17748
17749 * lib/Makefile.am (INCLUDES): Do not include from the intl
17750 directory, which has been removed.
17751 * src/Makefile.am (INCLUDES): Likewise.
17752
17753 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
17754 (bitsets_sources, additional_bitsets_sources, timevars_sources):
17755 New vars.
17756
17757 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
17758 * tests/Makefile.am (EXTRA_DIST): Likewise.
17759
17760 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
17761 Do not assume that bitset_windex is the same width as unsigned.
17762
17763 * lib/abitset.c (abitset_unused_clear): Do not assume that
17764 bitset_word is the same width as int.
17765 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
17766 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
17767 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
17768 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
17769 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
17770
17771 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
17772 portability to one's complement hosts!).
17773 * lib/ebitset.c (ebitset_op1): Likewise.
17774 * lib/lbitset.c (lbitset_op1): Likewise.
17775
17776 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
17777 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
17778 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
17779 Sync with fileutils.
17780 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
17781 lib/gettext.h: Sync with diffutils.
17782
17783 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
17784 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
17785
17786 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
17787 PROTOTYPES to check for prototypes, and "defined __STDC__" to
17788 check for void *.
17789
17790 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
17791 size_t; the old version tried to do this but casted improperly.
17792 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
17793 (bitset_test): Now returns int, not unsigned long.
17794
17795 * lib/bitset_stats.c: Include "gettext.h".
17796 (_): New macro.
17797 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
17798 name locals "index", as it generates unnecessary warnings on some
17799 hosts that have an "index" function.
17800
17801 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
17802 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
17803 they need translation.
17804 * src/LR0.c (state_list_append, new_itemsets, get_state,
17805 append_states, generate_states): Likewise.
17806 * src/assoc.c (assoc_to_string): Likewise.
17807 * src/closure.c (print_closure, set_firsts, closure): Likewise.
17808 * src/gram.c (grammar_dump): Likewise.
17809 * src/injections.c (injections_compute): Likewise.
17810 * src/lalr.c (lookaheads_print): Likewise.
17811 * src/relation.c (relation_transpose): Likewise.
17812 * src/scan-gram.l: Likewise.
17813 * src/tables.c (table_grow, pack_vector): Likewise.
17814
17815 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
17816 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
17817 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
17818 * m4/mbstate_t.m4: Sync with fileutils.
17819 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
17820
17821 * po/LINGUAS: Add pt_BR.
17822 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
17823 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
17824 lib/timevar.c.
17825 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
17826 manual recommends.
17827 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
17828
17829 * src/complain.c (strerror_r): Remove decl; not needed.
17830 (strerror): Use same pattern as ../lib/error.c.
17831
17832 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
17833
17834 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
17835
17836 * src/main.c (main): Cast result of bindtextdomain and textdomain
17837 to void, to avoid a GCC warning when --disable-nls is in effect.
17838
17839 * src/scan-gram.l: Use strings rather than escapes when possible,
17840 to minimize the number of warnings from xgettext.
17841 (handle_action_dollar, handle_action_at): Don't use isdigit,
17842 as it mishandles negative chars and it may not work as expected
17843 outside the C locale.
17844
17845 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
17846 this is a GCC extension and is not portable to other compilers.
17847
17848 * src/system.h (alloca): Use same pattern as ../lib/error.c.
17849 Do not include <ctype.h>; no longer needed.
17850 Do not include <malloc.h>; no longer needed (and generates
17851 warnings on OpenBSD 3.0).
17852
17853 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
17854 it's not portable.
17855
17856 * tests/regression.at: Do not use 'cc -c input.c -o input';
17857 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
17858
17859 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
17860 exit status as failure, not just exit status 1. Sun C exits
17861 with status 2 sometimes.
17862
17863 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
17864 Use it for the two large tests.
17865
17866 2002-08-02 Akim Demaille <akim@epita.fr>
17867
17868 * src/conflicts.c (conflicts_output): Don't output rules never
17869 reduced here, since anyway that computation doesn't work.
17870 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
17871 (rule_useless_p, rule_never_reduced_p): New.
17872 (grammar_rules_partial_print): Use a filter instead of a range.
17873 Display the title only if needed.
17874 (grammar_rules_print): Adjust.
17875 (grammar_rules_never_reduced_report): New.
17876 * src/tables.c (action_row): Move the computation of rules never
17877 reduced to...
17878 (token_actions): here.
17879 * src/main.c (main): Make the parser before making the report, so
17880 that rules never reduced are computed.
17881 Call grammar_rules_never_reduced_report.
17882 * src/print.c (print_results): Report rules never reduced.
17883 * tests/conflicts.at, tests/reduce.at: Adjust.
17884
17885 2002-08-01 Akim Demaille <akim@epita.fr>
17886
17887 Instead of attaching lookaheads and duplicating the rules being
17888 reduced by a state, attach the lookaheads to the reductions.
17889
17890 * src/state.h (state_t): Remove the `lookaheads',
17891 `lookaheads_rule' member.
17892 (reductions_t): Add a `lookaheads' member.
17893 Use a regular array for the `rules'.
17894 * src/state.c (reductions_new): Initialize the lookaheads member
17895 to 0.
17896 (state_rule_lookaheads_print): Adjust.
17897 * src/state.h, src/state.c (state_reductions_find): New.
17898 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
17899 (count_rr_conflicts): Adjust.
17900 * src/lalr.c (LArule): Remove.
17901 (add_lookback_edge): Adjust.
17902 (state_lookaheads_count): New.
17903 (states_lookaheads_initialize): Merge into...
17904 (initialize_LA): this.
17905 (lalr_free): Adjust.
17906 * src/main.c (main): Don't free nullable and derives too early: it
17907 is used by --verbose.
17908 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
17909
17910 2002-08-01 Akim Demaille <akim@epita.fr>
17911
17912 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
17913 `rule_number_t**'.
17914 (set_derives, free_derives): Rename as...
17915 (derives_compute, derives_free): this.
17916 Adjust all dependencies.
17917 * src/nullable.c (set_nullable, free_nullable): Rename as...
17918 (nullable_compute, nullable_free): these.
17919 (rule_list_t): Store rule_t *, not rule_number_t.
17920 * src/state.c (state_rule_lookaheads_print): Directly compare rule
17921 pointers, instead of their numbers.
17922 * src/main.c (main): Call nullable_free, and derives_free earlier,
17923 as they were lo longer used.
17924
17925 2002-08-01 Akim Demaille <akim@epita.fr>
17926
17927 * lib/timevar.c (get_time): Include children time.
17928 * src/lalr.h (LA, LArule): Don't export them: used with the
17929 state_t.
17930 * src/lalr.c (LA, LArule): Static.
17931 * src/lalr.h, src/lalr.c (lalr_free): New.
17932 * src/main.c (main): Call it.
17933 * src/tables.c (pack_vector): Check whether loc is >= to the
17934 table_size, not >.
17935 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
17936 (tables_generate): do it, since that's also it which allocates
17937 them.
17938 Don't free LA and LArule, main does.
17939
17940 2002-07-31 Akim Demaille <akim@epita.fr>
17941
17942 Separate parser tables computation and output.
17943
17944 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
17945 (conflict_list, conflict_list_cnt, table, check, table_ninf)
17946 (yydefgoto, yydefact, high): Move to...
17947 * src/tables.h, src/tables.c: here.
17948 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
17949 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
17950 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
17951 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
17952 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
17953 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
17954 (action_row, save_row, token_actions, save_column, default_goto)
17955 (goto_actions, sort_actions, matching_state, pack_vector)
17956 (table_ninf_remap, pack_table, prepare_actions): Move to...
17957 * src/tables.c: here.
17958 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
17959 * src/output.c (token_actions, output_base, output_conflicts)
17960 (output_check): Merge into...
17961 (prepare_actions): this.
17962 (actions_output): Rename as...
17963 (user_actions_output): this.
17964 * src/main.c (main): Call tables_generate and tables_free.
17965
17966 2002-07-31 Akim Demaille <akim@epita.fr>
17967
17968 Steal GCC's --time-report support.
17969
17970 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
17971 stolen/adjusted from GCC.
17972 * m4/stage.m4: Remove time related checks.
17973 * m4/timevar.m4: New.
17974 * configure.in: Adjust.
17975 * src/system.h: Adjust to using timevar.h.
17976 * src/getargs.h, src/getargs.c: Support trace_time for
17977 --trace=time.
17978 * src/main.c (stage): Remove.
17979 (main): Replace `stage' invocations with timevar calls.
17980 * src/output.c: Insert pertinent timevar calls.
17981
17982 2002-07-31 Akim Demaille <akim@epita.fr>
17983
17984 Let --trace have arguments.
17985
17986 * src/getargs.h (enum trace_e): New.
17987 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
17988 (long_options, short_options): --trace/-T takes an optional
17989 argument.
17990 Change all the uses of trace_flag to reflect the new flags.
17991 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
17992
17993 Strengthen `stage' portability.
17994
17995 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
17996 * configure.in: Use it.
17997 Don't check for malloc.h and sys/times.h.
17998 * src/system.h: Include them when appropriate.
17999 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
18000 times and struct tms are available.
18001
18002 2002-07-30 Akim Demaille <akim@epita.fr>
18003
18004 In verbose parse error message, don't report `error' as an
18005 expected token.
18006 * tests/actions.at (Printers and Destructors): Adjust.
18007 * tests/calc.at (Calculator $1): Adjust.
18008 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
18009 error message, do not report the parser accepts the error token in
18010 that state.
18011
18012 2002-07-30 Akim Demaille <akim@epita.fr>
18013
18014 Normalize conflict related messages.
18015
18016 * src/complain.h, src/complain.c (warn, complain): New.
18017 * src/conflicts.c (conflicts_print): Use them.
18018 (conflict_report_yacc): New, extracted from...
18019 (conflicts_print): here.
18020 * tests/conflicts.at, tests/existing.at: Adjust.
18021
18022 2002-07-30 Akim Demaille <akim@epita.fr>
18023
18024 Report rules which are never reduced by the parser: those hidden
18025 by conflicts.
18026
18027 * src/LR0.c (save_reductions): Don't make the final state too
18028 different: save its reduction (accept) instead of having a state
18029 without any action (no shift or goto, no reduce).
18030 Note: the final state is now a ``regular'' state, i.e., the
18031 parsers now contain `reduce 0' as default reduction.
18032 Nevertheless, since they decide to `accept' when yystate =
18033 final_state, they still will not reduce rule 0.
18034 * src/print.c (print_actions, print_reduction): Adjust.
18035 * src/output.c (action_row): Track reduced rules.
18036 (token_actions): Report rules never reduced.
18037 * tests/conflicts.at, tests/regression.at: Adjust.
18038
18039 2002-07-30 Akim Demaille <akim@epita.fr>
18040
18041 `stage' was accidently included in a previous patch.
18042 Initiate its autoconfiscation.
18043
18044 * configure.in: Look for malloc.h and sys/times.h.
18045 * src/main.c (stage): Adjust.
18046 Report only when trace_flag.
18047
18048 2002-07-29 Akim Demaille <akim@epita.fr>
18049
18050 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
18051 state_number_t.
18052 (errs_t): symbol_t*, not symbol_number_t.
18053 (reductions_t): rule_t*, not rule_number_t.
18054 (FOR_EACH_SHIFT): New.
18055 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
18056 * src/print.c, src/print_graph.c: Adjust.
18057
18058 2002-07-29 Akim Demaille <akim@epita.fr>
18059
18060 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
18061
18062 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
18063 (endtoken, accept): these.
18064 * src/reader.c (reader): Set endtoken's default tag to "$end".
18065 Set undeftoken's tag to "$undefined" instead of "$undefined.".
18066 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
18067 Adjust.
18068
18069 2002-07-29 Akim Demaille <akim@epita.fr>
18070
18071 * src/reduce.c (reduce_grammar): When the language is empty,
18072 complain about the start symbol, not the axiom.
18073 Use its location.
18074 * tests/reduce.at (Empty Language): New.
18075
18076 2002-07-26 Akim Demaille <akim@epita.fr>
18077
18078 * src/reader.h, src/reader.c (gram_error): ... can't get
18079 yycontrol without making too strong assumptions on the parser
18080 itself.
18081 * src/output.c (prepare_tokens): Use the real 0th value of
18082 token_translations instead of `0'.
18083 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
18084 visible here.
18085 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
18086 for the time being: %locations ought to provide it to yyerror.
18087
18088 2002-07-25 Akim Demaille <akim@epita.fr>
18089
18090 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
18091 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
18092 * tests/regression.at (Web2c Actions): Adjust.
18093
18094 2002-07-25 Akim Demaille <akim@epita.fr>
18095
18096 Stop storing rules from 1 to nrules + 1.
18097
18098 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
18099 * src/nullable.c, src/output.c, src/print.c, src/reader.c
18100 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
18101 Iterate from 0 to nrules.
18102 Use rule_number_as_item_number and item_number_as_rule_number.
18103 Adjust to `derive' now containing possibly 0.
18104 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
18105 Handle the `- 1' part in rule numbers from/to item numbers.
18106 * src/conflicts.c (log_resolution): Fix the message which reversed
18107 shift and reduce.
18108 * src/output.c (action_row): Initialize default_rule to -1.
18109 (token_actions): Adjust.
18110 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
18111 expected output.
18112 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
18113
18114 2002-07-25 Akim Demaille <akim@epita.fr>
18115
18116 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
18117 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
18118 (b4_c_knr_arg_decl): New.
18119 * data/yacc.c: Use it to define yysymprint, yydestruct, and
18120 yyreport_parse_error.
18121
18122 2002-07-25 Akim Demaille <akim@epita.fr>
18123
18124 * data/yacc.c (yyreport_parse_error): New, extracted from...
18125 (yyparse): here.
18126 (yydestruct, yysymprint): Move above yyparse.
18127 Be K&R compliant.
18128
18129 2002-07-25 Akim Demaille <akim@epita.fr>
18130
18131 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
18132 replace...
18133 (b4_sint_type, b4_uint_type): these.
18134 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
18135 * tests/regression.at (Web2c Actions): Adjust.
18136
18137 2002-07-25 Akim Demaille <akim@epita.fr>
18138
18139 * src/gram.h (TIEM_NUMBER_MAX): New.
18140 (item_number_of_rule_number, rule_number_of_item_number): Rename
18141 as...
18142 (rule_number_as_item_number, item_number_as_rule_number): these.
18143 Adjust dependencies.
18144 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
18145 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
18146 (symbol_number_to_vector_number): New.
18147 (order): Of vector_number_t* type.
18148 (base_t, BASE_MAX, BASE_MIN): New.
18149 (froms, tos, width, pos, check): Of base_t type.
18150 (action_number_t, ACTION_MIN, ACTION_MAX): New.
18151 (actrow): Of action_number_t type.
18152 (conflrow): Of unsigned int type.
18153 (table_ninf, base_ninf): New.
18154 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
18155 (muscle_insert_int_table, muscle_insert_base_table)
18156 (muscle_insert_rule_number_table): New.
18157 (prepare_tokens): Output `toknum' as int_table.
18158 (action_row): Returns a rule_number_t.
18159 Use ACTION_MIN, not SHRT_MIN.
18160 (token_actions): yydefact is rule_number_t*.
18161 (table_ninf_remap): New.
18162 (pack_table): Use it for `base' and `table'.
18163 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
18164 replaced with...
18165 (YYPACT_NINF, YYTABLE_NINF): these.
18166 (yypact, yytable): Compute their types instead of hard-coded
18167 `short'.
18168 * tests/regression.at (Web2c Actions): Adjust.
18169
18170 2002-07-19 Akim Demaille <akim@epita.fr>
18171
18172 * src/scan-gram.l (id): Can start with an underscore.
18173
18174 2002-07-16 Akim Demaille <akim@epita.fr>
18175
18176 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
18177 Adjust all former `associativity' dependencies.
18178 * src/symtab.c (symbol_new): Default associativity is `undef', not
18179 `right'.
18180 (symbol_check_alias_consistence): Adjust.
18181
18182 2002-07-09 Akim Demaille <akim@epita.fr>
18183
18184 * doc/bison.texinfo: Properly set the ``header'' part.
18185 Use @dircategory ``GNU programming tools'' as per Texinfo's
18186 documentation.
18187 Use @copying.
18188
18189 2002-07-09 Akim Demaille <akim@epita.fr>
18190
18191 * lib/quotearg.h: Protect against multiple inclusions.
18192 * src/location.h (location_t): Add a `file' member.
18193 (LOCATION_RESET, LOCATION_PRINT): Adjust.
18194 * src/complain.c (warn_at, complain_at, fatal_at): Drop
18195 `error_one_per_line' support.
18196
18197 2002-07-09 Akim Demaille <akim@epita.fr>
18198
18199 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
18200 * src/reader.c (lineno): Remove.
18201 Adjust all dependencies.
18202 (get_merge_function): Take a location and use complain_at.
18203 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
18204 * tests/regression.at (Invalid inputs, Mixing %token styles):
18205 Adjust.
18206
18207 2002-07-09 Akim Demaille <akim@epita.fr>
18208
18209 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
18210 recovery rule, and forbid extensions when --yacc.
18211 (gram_error): Use complain_at.
18212 * src/reader.c (reader): Exit if there were parse errors.
18213
18214 2002-07-09 Akim Demaille <akim@epita.fr>
18215
18216 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
18217 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
18218 Reported by R Blake <blakers@mac.com>.
18219
18220 2002-07-09 Akim Demaille <akim@epita.fr>
18221
18222 * data/yacc.c: Output the copyright notive in the header.
18223
18224 2002-07-03 Akim Demaille <akim@epita.fr>
18225
18226 * src/output.c (froms, tos): Are state_number_t.
18227 (save_column): sp, sp1, and sp2 are state_number_t.
18228 (prepare): Rename `final' as `final_state_number', `nnts' as
18229 `nterms_number', `nrules' as `rules_number', `nstates' as
18230 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
18231 unused.
18232 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
18233 * data/lalr1.cc (nsym_): Remove, unused.
18234
18235 2002-07-03 Akim Demaille <akim@epita.fr>
18236
18237 * src/lalr.h, src/lalr.c (goto_number_t): New.
18238 * src/lalr.c (goto_list_t): New.
18239 Propagate them.
18240 * src/nullable.c (rule_list_t): New.
18241 Propagate.
18242 * src/types.h: Remove.
18243
18244 2002-07-03 Akim Demaille <akim@epita.fr>
18245
18246 * src/closure.c (print_fderives): Use rule_rhs_print.
18247 * src/derives.c (print_derives): Use rule_rhs_print.
18248 (rule_list_t): New, replaces `shorts'.
18249 (set_derives): Add comments.
18250 * tests/sets.at (Nullable, Firsts): Adjust.
18251
18252 2002-07-03 Akim Demaille <akim@epita.fr>
18253
18254 * src/output.c (prepare_actions): Free `tally' and `width'.
18255 (prepare_actions): Allocate and free `order'.
18256 * src/symtab.c (symbols_free): Free `symbols'.
18257 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
18258 * src/output.c (m4_invoke): Move to...
18259 * src/scan-skel.l: here.
18260 (<<EOF>>): Close yyout, and free its name.
18261
18262 2002-07-03 Akim Demaille <akim@epita.fr>
18263
18264 Fix some memory leaks, and fix a bug: state 0 was examined twice.
18265
18266 * src/LR0.c (new_state): Merge into...
18267 (state_list_append): this.
18268 (new_states): Merge into...
18269 (generate_states): here.
18270 (set_states): Don't ensure a proper `errs' state member here, do it...
18271 * src/conflicts.c (conflicts_solve): here.
18272 * src/state.h, src/state.c: Comment changes.
18273 (state_t): Rename member `shifts' as `transitions'.
18274 Adjust all dependencies.
18275 (errs_new): For consistency, also take the values as argument.
18276 (errs_dup): Remove.
18277 (state_errs_set): New.
18278 (state_reductions_set, state_transitions_set): Assert that no
18279 previous value was assigned.
18280 (state_free): New.
18281 (states_free): Use it.
18282 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
18283 temporary storage: use `errs' and `nerrs' as elsewhere.
18284 (set_conflicts): Allocate and free this `errs'.
18285
18286 2002-07-02 Akim Demaille <akim@epita.fr>
18287
18288 * lib/libiberty.h: New.
18289 * lib: Update the bitset implementation from upstream.
18290 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
18291 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
18292 * src/main.c: Adjust bitset stats calls.
18293
18294 2002-07-01 Paul Eggert <eggert@twinsun.com>
18295
18296 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
18297 char, so that negative chars don't collide with $.
18298
18299 2002-06-30 Akim Demaille <akim@epita.fr>
18300
18301 Have the GLR tests be `warning' checked, and fix the warnings.
18302
18303 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
18304 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
18305 (yyremoveDeletes): `yyi' and `yyj' are size_t.
18306 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
18307 (yyaddDeferredAction): static.
18308 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
18309 (yyreportParseError): yyprefix is const.
18310 yytokenp is used only when verbose.
18311 (yy__GNUC__): Replace with __GNUC__.
18312 (yypdumpstack): yyi is size_t.
18313 (yypreference): Un-yy local variables and arguments, to avoid
18314 clashes with `yyr1'. Anyway, we are not in the user name space.
18315 (yytname_size): be an int, as is compared with ints.
18316 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
18317 Use them.
18318 * tests/cxx-gram.at: Use quotation to protect $1.
18319 Use AT_COMPILE to enable warnings hunts.
18320 Prototype yylex and yyerror.
18321 `Use' argc.
18322 Include `string.h', not `strings.h'.
18323 Produce and prototype stmtMerge only when used.
18324 yylex takes a location.
18325
18326 2002-06-30 Akim Demaille <akim@epita.fr>
18327
18328 We spend a lot of time in quotearg, in particular when --verbose.
18329
18330 * src/symtab.c (symbol_get): Store a quoted version of the key.
18331 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
18332 Adjust all callers.
18333
18334 2002-06-30 Akim Demaille <akim@epita.fr>
18335
18336 * src/state.h (reductions_t): Rename member `nreds' as num.
18337 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
18338 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
18339
18340 2002-06-30 Akim Demaille <akim@epita.fr>
18341
18342 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
18343 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
18344 (shifts_to): Rename as...
18345 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
18346 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
18347 (TRANSITION_IS_DISABLED, transitions_to): these.
18348
18349 2002-06-30 Akim Demaille <akim@epita.fr>
18350
18351 * src/print.c (print_shifts, print_gotos): Merge into...
18352 (print_transitions): this.
18353 (print_transitions, print_errs, print_reductions): Align the
18354 lookaheads columns.
18355 (print_core, print_transitions, print_errs, print_state,
18356 print_grammar): Output empty lines separator before, not after.
18357 (state_default_rule_compute): Rename as...
18358 (state_default_rule): this.
18359 * tests/conflicts.at (Defaulted Conflicted Reduction),
18360 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
18361 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
18362
18363 2002-06-30 Akim Demaille <akim@epita.fr>
18364
18365 Display items as we display rules.
18366
18367 * src/gram.h, src/gram.c (rule_lhs_print): New.
18368 * src/gram.c (grammar_rules_partial_print): Use it.
18369 * src/print.c (print_core): Likewise.
18370 * tests/conflicts.at (Defaulted Conflicted Reduction),
18371 (Unresolved SR Conflicts): Adjust.
18372 (Unresolved SR Conflicts): Adjust and rename as...
18373 (Resolved SR Conflicts): this, as was meant.
18374 * tests/regression.at (Web2c Report): Adjust.
18375
18376 2002-06-30 Akim Demaille <akim@epita.fr>
18377
18378 * src/print.c (state_default_rule_compute): New, extracted from...
18379 (print_reductions): here.
18380 Pessimize, but clarify the code.
18381 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
18382
18383 2002-06-30 Akim Demaille <akim@epita.fr>
18384
18385 * src/output.c (action_row): Let default_rule be always a rule
18386 number.
18387
18388 2002-06-30 Akim Demaille <akim@epita.fr>
18389
18390 * src/closure.c (print_firsts, print_fderives, closure):
18391 Use BITSET_EXECUTE.
18392 * src/lalr.c (lookaheads_print): Likewise.
18393 * src/state.c (state_rule_lookaheads_print): Likewise.
18394 * src/print_graph.c (print_core): Likewise.
18395 * src/print.c (print_reductions): Likewise.
18396 * src/output.c (action_row): Likewise.
18397 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
18398
18399 2002-06-30 Akim Demaille <akim@epita.fr>
18400
18401 * src/print_graph.c: Use report_flag.
18402
18403 2002-06-30 Akim Demaille <akim@epita.fr>
18404
18405 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
18406 to...
18407 * src/relation.h, src/relation.c (traverse, relation_digraph)
18408 (relation_print, relation_transpose): New.
18409
18410 2002-06-30 Akim Demaille <akim@epita.fr>
18411
18412 * src/state.h, src/state.c (shifts_to): New.
18413 * src/lalr.c (build_relations): Use it.
18414
18415 2002-06-30 Akim Demaille <akim@epita.fr>
18416
18417 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
18418 (item_number_of_rule_number, rule_number_of_item_number): New.
18419 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
18420 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
18421 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
18422 Propagate their use.
18423 Much remains to be done, in particular wrt `shorts' from types.h.
18424
18425 2002-06-30 Akim Demaille <akim@epita.fr>
18426
18427 * src/symtab.c (symbol_new): Initialize the `printer' member.
18428
18429 2002-06-30 Akim Demaille <akim@epita.fr>
18430
18431 * src/LR0.c (save_reductions): Remove, replaced by...
18432 * src/state.h, src/state.c (state_reductions_set): New.
18433 (reductions, errs): Rename as...
18434 (reductions_t, errs_t): these.
18435 Adjust all dependencies.
18436
18437 2002-06-30 Akim Demaille <akim@epita.fr>
18438
18439 * src/LR0.c (state_list_t, state_list_append): New.
18440 (first_state, last_state): Now symbol_list_t.
18441 (this_state): Remove.
18442 (new_itemsets, append_states, save_reductions): Take a state_t as
18443 argument.
18444 (set_states, generate_states): Adjust.
18445 (save_shifts): Remove, replaced by...
18446 * src/state.h, src/state.c (state_shifts_set): New.
18447 (shifts): Rename as...
18448 (shifts_t): this.
18449 Adjust all dependencies.
18450 * src/state.h (state_t): Remove the `next' member.
18451
18452 2002-06-30 Akim Demaille <akim@epita.fr>
18453
18454 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
18455 escaped in slot 0.
18456
18457 2002-06-30 Akim Demaille <akim@epita.fr>
18458
18459 Use hash.h for the state hash table.
18460
18461 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
18462 (allocate_storage): Use state_hash_new.
18463 (free_storage): Use state_hash_free.
18464 (new_state, get_state): Adjust.
18465 * src/lalr.h, src/lalr.c (states): Move to...
18466 * src/states.h (state_t): Remove the `link' member, no longer
18467 used.
18468 * src/states.h, src/states.c: here.
18469 (state_hash_new, state_hash_free, state_hash_lookup)
18470 (state_hash_insert, states_free): New.
18471 * src/states.c (state_table, state_compare, state_hash): New.
18472 * src/output.c (output_actions): Do not free states now, since we
18473 still need to know the final_state number in `prepare', called
18474 afterwards. Do it...
18475 * src/main.c (main): here: call states_free after `output'.
18476
18477 2002-06-30 Akim Demaille <akim@epita.fr>
18478
18479 * src/state.h, src/state.c (state_new): New, extracted from...
18480 * src/LR0.c (new_state): here.
18481 * src/state.h (STATE_ALLOC): Move to...
18482 * src/state.c: here.
18483 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
18484 * src/state.h, src/state.c: here.
18485
18486 2002-06-30 Akim Demaille <akim@epita.fr>
18487
18488 * src/reader.c (gensym): Rename as...
18489 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
18490 (getsym): Rename as...
18491 (symbol_get): this.
18492
18493 2002-06-30 Akim Demaille <akim@epita.fr>
18494
18495 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
18496 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
18497 * src/output.c, src/print.c, src/print_graph.c: Propagate.
18498 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
18499
18500 2002-06-30 Akim Demaille <akim@epita.fr>
18501
18502 Make the test suite pass with warnings checked.
18503
18504 * tests/actions.at (Printers and Destructors): Improve.
18505 Avoid unsigned vs. signed issues.
18506 * tests/calc.at: Don't exercise the scanner here, do it...
18507 * tests/input.at (Torturing the Scanner): here.
18508
18509 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18510
18511 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
18512 reorganize first lines parallel to yacc.c.
18513
18514 2002-06-28 Akim Demaille <akim@epita.fr>
18515
18516 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
18517 (b4_token_enum, b4_token_defines): New, factored from...
18518 * data/lalr1.cc, data/yacc.c, glr.c: here.
18519
18520 2002-06-28 Akim Demaille <akim@epita.fr>
18521
18522 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
18523 unused variables.
18524 * src/output.c (merger_output): static.
18525
18526 2002-06-28 Akim Demaille <akim@epita.fr>
18527
18528 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
18529 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
18530 pacify GCC.
18531 * src/output.c (save_row): Initialize all the variables to pacify GCC.
18532
18533 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18534
18535 Accumulated changelog for new GLR parsing features.
18536
18537 * src/conflicts.c (count_total_conflicts): Change name to
18538 conflicts_total_count.
18539 * src/conflicts.h: Ditto.
18540 * src/output.c (token_actions): Use the new name.
18541 (output_conflicts): Change conflp => conflict_list_heads, and
18542 confl => conflict_list for better readability.
18543 * data/glr.c: Use the new names.
18544 * NEWS: Add self to GLR announcement.
18545
18546 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
18547
18548 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
18549 Akim Demaille.
18550
18551 * data/bison.glr: Change name to glr.c
18552 * data/glr.c: Renamed from bison.glr.
18553 * data/Makefile.am: Add glr.c
18554
18555 * src/getargs.c:
18556
18557 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
18558 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
18559
18560 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18561
18562 * data/bison.glr: Be sure to restore the
18563 current #line when returning to the skeleton contents after having
18564 exposed the input file's #line.
18565
18566 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18567
18568 * data/bison.glr: Bring up to date with changes to bison.simple.
18569
18570 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18571
18572 * data/bison.glr: Correct definitions that use b4_prefix.
18573 Various reformatting.
18574 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
18575 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
18576 yytokenp argument; now part of stack.
18577 (yychar): Define to behave as documented.
18578 (yyclearin): Ditto.
18579
18580 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
18581
18582 * src/reader.h: Add declaration for free_merger_functions.
18583
18584 * src/reader.c (merge_functions): New variable.
18585 (get_merge_function): New function.
18586 (free_merger_functions): New function.
18587 (readgram): Check for %prec that is not followed by a symbol.
18588 Handle %dprec and %merge declarations.
18589 (packgram): Initialize dprec and merger fields in rules array.
18590
18591 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
18592 conflict_list_cnt, conflict_list_free): New variables.
18593 (table_grow): Also grow conflict_table.
18594 (prepare_rules): Output dprec and merger tables.
18595 (conflict_row): New function.
18596 (action_row): Output conflict lists for GLR parser. Don't use
18597 default reduction in conflicted states for GLR parser so that there
18598 are spaces for the conflict lists.
18599 (save_row): Also save conflict information.
18600 (token_actions): Allocate conflict list.
18601 (merger_output): New function.
18602 (pack_vector): Pack conflict table, too.
18603 (output_conflicts): New function to output yyconflp and yyconfl.
18604 (output_check): Allocate conflict_tos.
18605 (output_actions): Output conflict tables, also.
18606 (output_skeleton): Output b4_mergers definition.
18607 (prepare): Output b4_max_rhs_length definition.
18608 Use 'bison.glr' as default skeleton for GLR parsers.
18609
18610 * src/gram.c (glr_parser): New flag.
18611 (grammar_free): Call free_merger_functions.
18612
18613 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
18614 all pairs of conflicting reductions, rather than just all tokens
18615 causing conflicts. Needed to size conflict tables.
18616 (conflicts_output): Modify call to count_rr_conflicts for new
18617 interface.
18618 (conflicts_print): Ditto.
18619 (count_total_conflicts): New function.
18620
18621 * src/reader.h (merger_list): New type.
18622 (merge_functions): New variable.
18623
18624 * src/lex.h (tok_dprec, tok_merge): New token types.
18625
18626 * src/gram.h (rule_s): Add dprec and merger fields.
18627 (glr_parser): New flag.
18628
18629 * src/conflicts.h (count_total_conflicts): New function.
18630
18631 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
18632
18633 * doc/bison.texinfo (Generalized LR Parsing): New section.
18634 (GLR Parsers): New section.
18635 (Language and Grammar): Mention GLR parsing.
18636 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
18637 Correct typo ("tge" -> "the").
18638
18639 * data/bison.glr: New skeleton for GLR parsing.
18640
18641 * tests/cxx-gram.at: New tests for GLR parsing.
18642
18643 * tests/testsuite.at: Include cxx-gram.at.
18644
18645 * tests/Makefile.am: Add cxx-gram.at.
18646
18647 * src/parse-gram.y:
18648
18649 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
18650
18651 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
18652
18653 2002-06-27 Akim Demaille <akim@epita.fr>
18654
18655 * src/options.h, src/options.c: Remove.
18656 * src/getargs.c (short_options, long_options): New.
18657
18658 2002-06-27 Akim Demaille <akim@epita.fr>
18659
18660 * data/bison.simple, data/bison.c++: Rename as...
18661 * data/yacc.c, data/lalr1.cc: these.
18662 * doc/bison.texinfo (Environment Variables): Remove.
18663
18664 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
18665
18666 * src/getargs.c (report_argmatch): Initialize strtok().
18667
18668 2002-06-20 Akim Demaille <akim@epita.fr>
18669
18670 * data/bison.simple (b4_symbol_actions): New, replaces...
18671 (b4_symbol_destructor, b4_symbol_printer): these.
18672 (yysymprint): Be sure to call YYPRINT only for tokens, and using
18673 user token numbers.
18674
18675 2002-06-20 Akim Demaille <akim@epita.fr>
18676
18677 * data/bison.simple (yydestructor): Rename as...
18678 (yydestruct): this.
18679
18680 2002-06-20 Akim Demaille <akim@epita.fr>
18681
18682 * src/symtab.h, src/symtab.c (symbol_type_set)
18683 (symbol_destructor_set, symbol_precedence_set): The location is
18684 the last argument.
18685 Adjust all callers.
18686
18687 2002-06-20 Akim Demaille <akim@epita.fr>
18688
18689 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
18690 internals.
18691 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
18692 Takes a location.
18693 * src/symtab.h, src/symtab.c (symbol_class_set)
18694 (symbol_user_token_number_set): Likewise.
18695 Adjust all callers.
18696 Promote complain_at.
18697 * tests/input.at (Type Clashes): Adjust.
18698
18699 2002-06-20 Akim Demaille <akim@epita.fr>
18700
18701 * data/bison.simple (YYLEX): Fix the declaration when
18702 %pure-parser.
18703
18704 2002-06-20 Akim Demaille <akim@epita.fr>
18705
18706 * data/bison.simple (yysymprint): Don't print the token number,
18707 just its name.
18708 * tests/actions.at (Destructors): Rename as...
18709 (Printers and Destructors): this.
18710 Also exercise %printer.
18711
18712 2002-06-20 Akim Demaille <akim@epita.fr>
18713
18714 * data/bison.simple (YYDSYMPRINT): New.
18715 Use it to remove many of the #if YYDEBUG/if (yydebug).
18716
18717 2002-06-20 Akim Demaille <akim@epita.fr>
18718
18719 * src/symtab.h, src/symtab.c (symbol_t): printer and
18720 printer_location are new members.
18721 (symbol_printer_set): New.
18722 * src/parse-gram.y (PERCENT_PRINTER): New token.
18723 Handle its associated rule.
18724 * src/scan-gram.l: Adjust.
18725 (handle_destructor_at, handle_destructor_dollar): Rename as...
18726 (handle_symbol_code_at, handle_symbol_code_dollar): these.
18727 * src/output.c (symbol_printers_output): New.
18728 (output_skeleton): Call it.
18729 * data/bison.simple (yysymprint): New. Cannot be named yyprint
18730 since there are already many grammar files with a user `yyprint'.
18731 Replace the calls to YYPRINT to calls to yysymprint.
18732 * tests/calc.at: Adjust.
18733 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
18734 taking advantage of parser very internal details (stack size!).
18735
18736 2002-06-20 Akim Demaille <akim@epita.fr>
18737
18738 * src/scan-gram.l: Complete the scanner with the missing patterns
18739 to pacify Flex.
18740 Use `quote' and `symbol_tag_get' where appropriate.
18741
18742 2002-06-19 Akim Demaille <akim@epita.fr>
18743
18744 * tests/actions.at (Destructors): Augment to test locations.
18745 * data/bison.simple (yydestructor): Pass it the current location
18746 if locations are enabled.
18747 Prototype only when __STDC__ or C++.
18748 Change the argument names to move into the yy name space: there is
18749 user code here.
18750
18751 2002-06-19 Akim Demaille <akim@epita.fr>
18752
18753 * data/bison.simple (b4_pure_if): New.
18754 Use it instead of #ifdef YYPURE.
18755
18756 2002-06-19 Akim Demaille <akim@epita.fr>
18757
18758 * data/bison.simple (b4_location_if): New.
18759 Use it instead of #ifdef YYLSP_NEEDED.
18760
18761 2002-06-19 Akim Demaille <akim@epita.fr>
18762
18763 Prepare @$ in %destructor, but currently don't bind it in the
18764 skeleton, as %location use is not cleaned up yet.
18765
18766 * src/scan-gram.l (handle_dollar, handle_destructor_at)
18767 (handle_action_at): New.
18768 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
18769 a braced_code_t and a location as additional arguments.
18770 (handle_destructor_dollar): Instead of requiring `b4_eval', just
18771 unquote one when outputting `b4_dollar_dollar'.
18772 Adjust callers.
18773 * data/bison.simple (b4_eval): Remove.
18774 (b4_symbol_destructor): Adjust.
18775 * tests/input.at (Invalid @n): Adjust.
18776
18777 2002-06-19 Zack Weinberg <zack@codesourcery.com>
18778
18779 * doc/bison.texinfo: Document ability to have multiple
18780 prologue sections.
18781
18782 2002-06-18 Akim Demaille <akim@epita.fr>
18783
18784 * src/files.c (compute_base_names): When computing the output file
18785 names from the input file name, strip the directory part.
18786
18787 2002-06-18 Akim Demaille <akim@epita.fr>
18788
18789 * data/bison.simple.new: Comment changes.
18790 Reported by Andreas Schwab.
18791
18792 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
18793
18794 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
18795 there are no `label `yyoverflowlab' defined but not used' warnings
18796 when yyoverflow is defined.
18797
18798 2002-06-18 Akim Demaille <akim@epita.fr>
18799
18800 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
18801 new member.
18802 (symbol_destructor_set): Adjust.
18803 * src/output.c (symbol_destructors_output): Output the destructor
18804 locations.
18805 Output the symbol name.
18806 * data/bison.simple (b4_symbol_destructor): Adjust.
18807
18808 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
18809 and Akim Demaille <akim@epita.fr>
18810
18811 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
18812 what's left on the stack when the error recovery hits EOF.
18813 * tests/actions.at (Destructors): Complete to exercise this case.
18814
18815 2002-06-17 Akim Demaille <akim@epita.fr>
18816
18817 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
18818 arguments is really empty, not only equal to `[]'.
18819 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
18820 member.
18821 (symbol_destructor_set): New.
18822 * src/output.c (symbol_destructors_output): New.
18823 * src/reader.h (brace_code_t, current_braced_code): New.
18824 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
18825 (handle_dollar): Rename as...
18826 (handle_action_dollar): this.
18827 (handle_destructor_dollar): New.
18828 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
18829 (grammar_declaration): Use it.
18830 * data/bison.simple (yystos): Is always defined.
18831 (yydestructor): New.
18832 * tests/actions.at (Destructors): New.
18833 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
18834
18835 2002-06-17 Akim Demaille <akim@epita.fr>
18836
18837 * src/symlist.h, src/symlist.c (symbol_list_length): New.
18838 * src/scan-gram.l (handle_dollar, handle_at): Compute the
18839 rule_length only when needed.
18840 * src/output.c (actions_output, token_definitions_output): Output
18841 the full M4 block.
18842 * src/symtab.c: Don't access directly to the symbol tag, use
18843 symbol_tag_get.
18844 * src/parse-gram.y: Use symbol_list_free.
18845
18846 2002-06-17 Akim Demaille <akim@epita.fr>
18847
18848 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
18849 (symbol_list_prepend, get_type_name): Move to...
18850 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
18851 (symbol_list_prepend, symbol_list_n_type_name_get): here.
18852 Adjust all callers.
18853 (symbol_list_free): New.
18854 * src/scan-gram.l (handle_dollar): Takes a location.
18855 * tests/input.at (Invalid $n): Adjust.
18856
18857 2002-06-17 Akim Demaille <akim@epita.fr>
18858
18859 * src/reader.h, src/reader.c (symbol_list_new): Export it.
18860 (symbol_list_prepend): New.
18861 * src/parse-gram.y (%union): `list' is a new member.
18862 (symbols.1): New, replaces...
18863 (terms_to_prec.1, nterms_to_type.1): these.
18864 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
18865 Take a location as additional argument.
18866 Adjust all callers.
18867
18868 2002-06-15 Akim Demaille <akim@epita.fr>
18869
18870 * src/parse-gram.y: Move %token in the declaration section so that
18871 we don't depend upon CVS Bison.
18872
18873 2002-06-15 Akim Demaille <akim@epita.fr>
18874
18875 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
18876 * src/print.c (print_core): Use it.
18877
18878 2002-06-15 Akim Demaille <akim@epita.fr>
18879
18880 * src/conflicts.c (log_resolution): Accept the rule involved in
18881 the sr conflicts instead of the lookahead number that points to
18882 that rule.
18883 (flush_reduce): Accept the current lookahead vector as argument,
18884 instead of the index in LA.
18885 (resolve_sr_conflict): Accept the current number of lookahead
18886 bitset to consider for the STATE, instead of the index in LA.
18887 (set_conflicts): Adjust.
18888 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
18889
18890 2002-06-15 Akim Demaille <akim@epita.fr>
18891
18892 * src/state.h (state_t): Replace the `lookaheadsp' member, a
18893 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
18894 Adjust all dependencies.
18895 * src/lalr.c (initialize_lookaheads): Split into...
18896 (states_lookaheads_count, states_lookaheads_initialize): these.
18897 (lalr): Adjust.
18898
18899 2002-06-15 Akim Demaille <akim@epita.fr>
18900
18901 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
18902 out of...
18903 (grammar_rules_print): here.
18904 * src/reduce.c (reduce_output): Use it.
18905 * tests/reduce.at (Useless Rules, Reduced Automaton)
18906 (Underivable Rules): Adjust.
18907
18908 2002-06-15 Akim Demaille <akim@epita.fr>
18909
18910 Copy BYacc's nice way to report the grammar.
18911
18912 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
18913 New.
18914 Don't print the rules' location, it is confusing and useless.
18915 (rule_print): Use grammar_rhs_print.
18916 * src/print.c (print_grammar): Use grammar_rules_print.
18917
18918 2002-06-15 Akim Demaille <akim@epita.fr>
18919
18920 Complete and rationalize `useless thing' warnings.
18921
18922 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
18923 (symbol_tag_print): New.
18924 Use them everywhere in place of accessing directly the tag member.
18925 * src/gram.h, src/gram.c (rule_print): New.
18926 Use it where a rule used to be printed `by hand'.
18927 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
18928 (reduce_grammar_tables): Report the useless rules.
18929 (reduce_print): Useless things are a warning, not an error.
18930 Report it as such.
18931 * tests/reduce.at (Useless Nonterminals, Useless Rules):
18932 (Reduced Automaton, Underivable Rules): Adjust.
18933 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
18934 * tests/conflicts.at (Unresolved SR Conflicts)
18935 (Solved SR Conflicts): Adjust.
18936
18937 2002-06-15 Akim Demaille <akim@epita.fr>
18938
18939 Let symbols have a location.
18940
18941 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
18942 (getsym): Adjust.
18943 Adjust all callers.
18944 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
18945 Use location_t, not int.
18946 * src/symtab.c (symbol_check_defined): Take advantage of the
18947 location.
18948 * tests/regression.at (Invalid inputs): Adjust.
18949
18950 2002-06-15 Akim Demaille <akim@epita.fr>
18951
18952 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
18953 (input): Don't try to initialize yylloc here, do it in the
18954 scanner.
18955 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
18956 * src/gram.h (rule_t): Change line and action_line into location
18957 and action_location, of location_t type.
18958 Adjust all dependencies.
18959 * src/location.h, src/location.c (empty_location): New.
18960 * src/reader.h, src/reader.c (grammar_start_symbol_set)
18961 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
18962 (grammar_current_rule_symbol_append)
18963 (grammar_current_rule_action_append): Expect a location as argument.
18964 * src/reader.c (grammar_midrule_action): Adjust to attach an
18965 action's location as dummy symbol location.
18966 * src/symtab.h, src/symtab.c (startsymbol_location): New.
18967 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
18968 the line numbers.
18969
18970 2002-06-14 Akim Demaille <akim@epita.fr>
18971
18972 Grammar declarations may be found in the grammar section.
18973
18974 * src/parse-gram.y (rules_or_grammar_declaration): New.
18975 (declarations): Each declaration may end with a semicolon, not
18976 just...
18977 (grammar_declaration): `"%union"'.
18978 (grammar): Branch to rules_or_grammar_declaration.
18979
18980 2002-06-14 Akim Demaille <akim@epita.fr>
18981
18982 * src/main.c (main): Invoke scanner_free.
18983
18984 2002-06-14 Akim Demaille <akim@epita.fr>
18985
18986 * src/output.c (m4_invoke): Extracted from...
18987 (output_skeleton): here.
18988 Free tempfile.
18989
18990 2002-06-14 Akim Demaille <akim@epita.fr>
18991
18992 * src/parse-gram.y (directives, directive, gram)
18993 (grammar_directives, precedence_directives, precedence_directive):
18994 Rename as...
18995 (declarations, declaration, grammar, grammar_declaration)
18996 (precedence_declaration, precedence_declarator): these.
18997 (symbol_declaration): New.
18998
18999 2002-06-14 Akim Demaille <akim@epita.fr>
19000
19001 * src/files.c (action_obstack): Remove, unused.
19002 (output_obstack): Remove it, and all its dependencies, as it is no
19003 longer needed.
19004 * src/reader.c (epilogue_set): Build the epilogue in the
19005 muscle_obstack.
19006 * src/output.h, src/output.c (muscle_obstack): Move to...
19007 * src/muscle_tab.h, src/muscle_tab.h: here.
19008 (muscle_init): Initialize muscle_obstack.
19009 (muscle_free): New.
19010 * src/main.c (main): Call it.
19011
19012 2002-06-14 Akim Demaille <akim@epita.fr>
19013
19014 * src/location.h: New, extracted from...
19015 * src/reader.h: here.
19016 * src/Makefile.am (noinst_HEADERS): Merge into
19017 (bison_SOURCES): this.
19018 Add location.h.
19019 * src/parse-gram.y: Use location_t instead of Bison's.
19020 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
19021 Use location_t instead of ints.
19022
19023 2002-06-14 Akim Demaille <akim@epita.fr>
19024
19025 * data/bison.simple, data/bison.c++: Be sure to restore the
19026 current #line when returning to the skeleton contents after having
19027 exposed the input file's #line.
19028
19029 2002-06-12 Akim Demaille <akim@epita.fr>
19030
19031 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
19032 eager.
19033 * tests/actions.at (Exotic Dollars): New.
19034
19035 2002-06-12 Akim Demaille <akim@epita.fr>
19036
19037 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
19038 ['"/] too eagerly.
19039 * tests/input.at (Torturing the Scanner): New.
19040
19041 2002-06-11 Akim Demaille <akim@epita.fr>
19042
19043 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
19044 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
19045 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
19046 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
19047 * src/reader.c (reader): Use it.
19048
19049 2002-06-11 Akim Demaille <akim@epita.fr>
19050
19051 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
19052 Adjust all callers.
19053 (scanner_last_string_free): New.
19054
19055 2002-06-11 Akim Demaille <akim@epita.fr>
19056
19057 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
19058 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
19059 (last_string, YY_OBS_FREE): New.
19060 Use them when returning an ID.
19061
19062 2002-06-11 Akim Demaille <akim@epita.fr>
19063
19064 Have Bison grammars parsed by a Bison grammar.
19065
19066 * src/reader.c, src/reader.h (prologue_augment): New.
19067 * src/reader.c (copy_definition): Remove.
19068
19069 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
19070 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
19071 (grammar_current_rule_prec_set, grammar_current_rule_check)
19072 (grammar_current_rule_symbol_append)
19073 (grammar_current_rule_action_append): Export.
19074 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
19075 (symbol_list_action_append): Remove.
19076 Hook the routines from reader.
19077 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
19078 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
19079
19080 * src/reader.c (read_declarations): Remove, unused.
19081
19082 * src/parse-gram.y: Handle the epilogue.
19083 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
19084 (grammar_start_symbol_set): this.
19085 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
19086 * src/reader.c (readgram): Remove, unused.
19087 (reader): Adjust to insert eoftoken and axiom where appropriate.
19088
19089 * src/reader.c (copy_dollar): Replace with...
19090 * src/scan-gram.h (handle_dollar): this.
19091 * src/parse-gram.y: Remove `%thong'.
19092
19093 * src/reader.c (copy_at): Replace with...
19094 * src/scan-gram.h (handle_at): this.
19095
19096 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
19097 New.
19098
19099 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
19100 time being.
19101
19102 * src/reader.h, src/reader.c (grammar_rule_end): New.
19103
19104 * src/parse.y (current_type, current_class): New.
19105 Implement `%nterm', `%token' support.
19106 Merge `%term' into `%token'.
19107 (string_as_id): New.
19108 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
19109 type name.
19110
19111 * src/parse-gram.y: Be sure to handle properly the beginning of
19112 rules.
19113
19114 * src/parse-gram.y: Handle %type.
19115 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
19116
19117 * src/parse-gram.y: More directives support.
19118 * src/options.c: No longer handle source directives.
19119
19120 * src/parse-gram.y: Fix %output.
19121
19122 * src/parse-gram.y: Handle %union.
19123 Use the prologue locations.
19124 * src/reader.c (parse_union_decl): Remove.
19125
19126 * src/reader.h, src/reader.c (epilogue_set): New.
19127 * src/parse-gram.y: Use it.
19128
19129 * data/bison.simple, data/bison.c++: b4_stype is now either not
19130 defined, then default to int, or to the contents of %union,
19131 without `union' itself.
19132 Adjust.
19133 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
19134
19135 * src/output.c (actions_output): Don't output braces, as they are
19136 already handled by the scanner.
19137
19138 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
19139 characters to themselves.
19140
19141 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
19142 that the epilogue has a proper #line.
19143
19144 * src/parse-gram.y: Handle precedence/associativity.
19145
19146 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
19147 a terminal.
19148 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
19149 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
19150 at all to define terminals that cannot be emitted.
19151
19152 * src/scan-gram.l: Escape M4 characters.
19153
19154 * src/scan-gram.l: Working properly with escapes in user
19155 strings/characters.
19156
19157 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
19158 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
19159 grammar.
19160 Use more modest sizes, as for the time being the parser does not
19161 release memory, and therefore the process swallows a huge amount
19162 of memory.
19163
19164 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
19165 stricter %token grammar.
19166
19167 * src/symtab.h (associativity): Add `undef_assoc'.
19168 (symbol_precedence_set): Do nothing when passed an undef_assoc.
19169 * src/symtab.c (symbol_check_alias_consistence): Adjust.
19170
19171 * tests/regression.at (Invalid %directive): Remove, as it is now
19172 meaningless.
19173 (Invalid inputs): Adjust to the new error messages.
19174 (Token definitions): The new grammar doesn't allow too many
19175 eccentricities.
19176
19177 * src/lex.h, src/lex.c: Remove.
19178 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
19179 (copy_character, copy_string2, copy_string, copy_identifier)
19180 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
19181 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
19182 (parse_action): Remove.
19183 * po/POTFILES.in: Adjust.
19184
19185 2002-06-11 Akim Demaille <akim@epita.fr>
19186
19187 * src/reader.c (parse_action): Don't store directly into the
19188 rule's action member: return the action as a string.
19189 Don't require `rule_length' as an argument: compute it.
19190 (grammar_current_rule_symbol_append)
19191 (grammar_current_rule_action_append): New, eved out from
19192 (readgram): here.
19193 Remove `action_flag', `rulelength', unused now.
19194
19195 2002-06-11 Akim Demaille <akim@epita.fr>
19196
19197 * src/reader.c (grammar_current_rule_prec_set).
19198 (grammar_current_rule_check): New, eved out from...
19199 (readgram): here.
19200 Remove `xaction', `first_rhs': useless.
19201 * tests/input.at (Type clashes): New.
19202 * tests/existing.at (GNU Cim Grammar): Adjust.
19203
19204 2002-06-11 Akim Demaille <akim@epita.fr>
19205
19206 * src/reader.c (grammar_midrule_action): New, Eved out from
19207 (readgram): here.
19208
19209 2002-06-11 Akim Demaille <akim@epita.fr>
19210
19211 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
19212 New.
19213 (readgram): Use them as replacement of inlined code, crule and
19214 crule1.
19215
19216 2002-06-11 Akim Demaille <akim@epita.fr>
19217
19218 * src/reader.c (grammar_end, grammar_symbol_append): New.
19219 (readgram): Use them.
19220 Make the use of `p' as local as possible.
19221
19222 2002-06-10 Akim Demaille <akim@epita.fr>
19223
19224 GCJ's parser requires the tokens to be defined before the prologue.
19225
19226 * data/bison.simple: Output the token definition before the user's
19227 prologue.
19228 * tests/regression.at (Braces parsing, Duplicate string)
19229 (Mixing %token styles): Check the output from bison.
19230 (Early token definitions): New.
19231
19232 2002-06-10 Akim Demaille <akim@epita.fr>
19233
19234 * src/symtab.c (symbol_user_token_number_set): Don't complain when
19235 assigning twice the same user number to a token, so that we can
19236 use it in...
19237 * src/lex.c (lex): here.
19238 Also use `symbol_class_set' instead of hand written code.
19239 * src/reader.c (parse_assoc_decl): Likewise.
19240
19241 2002-06-10 Akim Demaille <akim@epita.fr>
19242
19243 * src/symtab.c, src/symtab.c (symbol_class_set)
19244 (symbol_user_token_number_set): New.
19245 * src/reader.c (parse_token_decl): Use them.
19246 Use a switch instead of ifs.
19247 Use a single argument.
19248
19249 2002-06-10 Akim Demaille <akim@epita.fr>
19250
19251 Remove `%thong' support as it is undocumented, unused, duplicates
19252 `%token's job, and creates useless e-mail traffic with people who
19253 want to know what it is, why it is undocumented, unused, and
19254 duplicates `%token's job.
19255
19256 * src/reader.c (parse_thong_decl): Remove.
19257 * src/options.c (option_table): Remove "thong".
19258 * src/lex.h (tok_thong): Remove.
19259
19260 2002-06-10 Akim Demaille <akim@epita.fr>
19261
19262 * src/symtab.c, src/symtab.c (symbol_type_set)
19263 (symbol_precedence_set): New.
19264 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
19265 (value_components_used): Remove, unused.
19266
19267 2002-06-09 Akim Demaille <akim@epita.fr>
19268
19269 Move symbols handling code out of the reader.
19270
19271 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
19272 (axiom): Move to...
19273 * src/symtab.h, src/symtab.c: here.
19274
19275 * src/gram.c (start_symbol): Remove: use startsymbol->number.
19276 * src/reader.c (startval): Rename as...
19277 * src/symtab.h, src/symtab.c (startsymbol): this.
19278 * src/reader.c: Adjust.
19279
19280 * src/reader.c (symbol_check_defined, symbol_make_alias)
19281 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
19282 (token_translations_init)
19283 Move to...
19284 * src/symtab.c: here.
19285 * src/reader.c (packsymbols): Move to...
19286 * src/symtab.h, src/symtab.c (symbols_pack): here.
19287 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
19288 argument.
19289
19290 2002-06-03 Akim Demaille <akim@epita.fr>
19291
19292 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
19293 then statements.
19294
19295 2002-06-03 Akim Demaille <akim@epita.fr>
19296
19297 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
19298 structs with non literals.
19299 * src/scan-skel.l: never-interactive.
19300 * src/conflicts.c (enum conflict_resolution_e): No trailing
19301 comma.
19302 * src/getargs.c (usage): Split long literal strings.
19303 Reported by Hans Aberg.
19304
19305 2002-05-28 Akim Demaille <akim@epita.fr>
19306
19307 * data/bison.c++: Use C++ ostreams.
19308 (cdebug_): New member.
19309
19310 2002-05-28 Akim Demaille <akim@epita.fr>
19311
19312 * src/output.c (output_skeleton): Be sure to allocate enough room
19313 for `/' _and_ for `\0' in full_skeleton.
19314
19315 2002-05-28 Akim Demaille <akim@epita.fr>
19316
19317 * data/bison.c++: Catch up with bison.simple:
19318 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19319 and Paul Eggert <eggert@twinsun.com>: `error' handing.
19320 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
19321 and popping traces.
19322
19323 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19324
19325 * src/output.c (output_skeleton): Put an explicit path in front of
19326 the skeleton file name, rather than relying on the -I directory,
19327 to partially alleviate effects of having a skeleton file lying around
19328 in the current directory.
19329
19330 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19331
19332 * src/conflicts.c (log_resolution): Correct typo:
19333 obstack_printf should be obstack_fgrow1.
19334
19335 2002-05-26 Akim Demaille <akim@epita.fr>
19336
19337 * src/state.h (state_t): `solved_conflicts' is a new member.
19338 * src/LR0.c (new_state): Set it to 0.
19339 * src/conflicts.h, src/conflicts.c (print_conflicts)
19340 (free_conflicts, solve_conflicts): Rename as...
19341 (conflicts_print, conflicts_free, conflicts_solve): these.
19342 Adjust callers.
19343 * src/conflicts.c (enum conflict_resolution_e)
19344 (solved_conflicts_obstack): New, used by...
19345 (log_resolution): this.
19346 Adjust to attach the conflict resolution to each state.
19347 Complete the description with the precedence/associativity
19348 information.
19349 (resolve_sr_conflict): Adjust.
19350 * src/print.c (print_state): Output its solved_conflicts.
19351 * tests/conflicts.at (Unresolved SR Conflicts)
19352 (Solved SR Conflicts): Exercise --report=all.
19353
19354 2002-05-26 Akim Demaille <akim@epita.fr>
19355
19356 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
19357 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
19358 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
19359 (token_number_t, item_number_as_token_number)
19360 (token_number_as_item_number, muscle_insert_token_number_table):
19361 Rename as...
19362 (symbol_number_t, item_number_as_symbol_number)
19363 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
19364 these, since it is more appropriate.
19365
19366 2002-05-26 Akim Demaille <akim@epita.fr>
19367
19368 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
19369 `Error:' lines.
19370 * data/bison.simple (yystos) [YYDEBUG]: New.
19371 (yyparse) [YYDEBUG]: Display the symbols which are popped during
19372 error recovery.
19373 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
19374
19375 2002-05-25 Akim Demaille <akim@epita.fr>
19376
19377 * doc/bison.texinfo (Debugging): Split into...
19378 (Tracing): this new section, its former contents, and...
19379 (Understanding): this new section.
19380 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
19381 by...
19382 (report_flag): this.
19383 Adjust all dependencies.
19384 (report_args, report_types, report_argmatch): New.
19385 (usage, getargs): Report/support -r, --report.
19386 * src/options.h
19387 (struct option_table_struct): Rename as..,
19388 (struct option_table_s): this.
19389 Rename the `set_flag' member to `flag' to match with getopt_long's
19390 struct.
19391 * src/options.c (option_table): Split verbose into an entry for
19392 %verbose, and another for --verbose.
19393 Support --report/-r, so remove -r from the obsolete --raw.
19394 * src/print.c: Attach full item sets and lookaheads reports to
19395 report_flag instead of trace_flag.
19396 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
19397
19398 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19399 and Paul Eggert <eggert@twinsun.com>
19400
19401 * data/bison.simple (yyparse): Correct error handling to conform to
19402 POSIX and yacc. Specifically, after syntax error is discovered,
19403 do not reduce further before shifting the error token.
19404 Clean up the code a bit by removing the labels yyerrdefault,
19405 yyerrhandle, yyerrpop.
19406 * NEWS: Document the above.
19407
19408 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19409
19410 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
19411 type; it isn't always big enough, since it doesn't necessarily
19412 include non-terminals.
19413 (yytranslate): Expand definition of yy_token_number_type, so that
19414 the latter can be removed.
19415 (yy_token_number_type): Remove, only one use.
19416 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
19417 don't use TokenNumberType as element type.
19418
19419 * tests/regression.at: Modify expected output to agree with change
19420 to yyr1 and yytranslate.
19421
19422 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
19423
19424 * src/reader.c (parse_action): Use copy_character instead of
19425 obstack_1grow.
19426
19427 2002-05-13 Akim Demaille <akim@epita.fr>
19428
19429 * tests/regression.at (Token definitions): Prototype yylex and
19430 yyerror.
19431
19432 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
19433
19434 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
19435 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
19436 32-bit arithmetic.
19437 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
19438
19439 2002-05-07 Akim Demaille <akim@epita.fr>
19440
19441 * tests/synclines.at: Be sure to prototype yylex and yyerror to
19442 avoid GCC warnings.
19443
19444 2002-05-07 Akim Demaille <akim@epita.fr>
19445
19446 Kill GCC warnings.
19447
19448 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
19449 over the RHS of each rule.
19450 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
19451 * src/state.h (state_t): Member `nitems' is unsigned short.
19452 * src/LR0.c (get_state): Adjust.
19453 * src/reader.c (packgram): Likewise.
19454 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
19455 `Type'.
19456 (muscle_insert_int_table): Remove, unused.
19457 (prepare_rules): Remove `max'.
19458
19459 2002-05-06 Akim Demaille <akim@epita.fr>
19460
19461 * src/closure.c (print_firsts): Display of the symbol tags.
19462 (bitmatrix_print): Move to...
19463 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
19464 here.
19465 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
19466
19467 2002-05-06 Akim Demaille <akim@epita.fr>
19468
19469 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
19470 hash_do_for_each.
19471
19472 2002-05-06 Akim Demaille <akim@epita.fr>
19473
19474 * src/LR0.c (new_state, get_state): Instead of using the global
19475 `kernel_size' and `kernel_base', have two new arguments:
19476 `core_size' and `core'.
19477 Adjust callers.
19478
19479 2002-05-06 Akim Demaille <akim@epita.fr>
19480
19481 * src/reader.c (packgram): No longer end `ritem' with a 0
19482 sentinel: it is not used.
19483
19484 2002-05-05 Akim Demaille <akim@epita.fr>
19485
19486 New experimental feature: display the lookaheads in the report and
19487 graph.
19488
19489 * src/print (print_core): When --trace-flag, display the rules
19490 lookaheads.
19491 * src/print_graph.c (print_core): Likewise.
19492 Swap the arguments.
19493 Adjust caller.
19494
19495 2002-05-05 Akim Demaille <akim@epita.fr>
19496
19497 * tests/torture.at (Many lookaheads): New test.
19498
19499 2002-05-05 Akim Demaille <akim@epita.fr>
19500
19501 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
19502 (GENERATE_MUSCLE_INSERT_TABLE): this.
19503 (output_int_table, output_unsigned_int_table, output_short_table)
19504 (output_token_number_table, output_item_number_table): Replace with...
19505 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
19506 (muscle_insert_short_table, muscle_insert_token_number_table)
19507 (muscle_insert_item_number_table): these.
19508 Adjust all callers.
19509 (prepare_tokens): Don't free `translations', since...
19510 * src/reader.h, src/reader.c (grammar_free): do it.
19511 Move to...
19512 * src/gram.h, src/gram.c (grammar_free): here.
19513 * data/bison.simple, data/bison.c++: b4_token_number_max is now
19514 b4_translate_max.
19515
19516 2002-05-05 Akim Demaille <akim@epita.fr>
19517
19518 * src/output.c (output_unsigned_int_table): New.
19519 (prepare_rules): `i' is unsigned.
19520 `prhs', `rline', `r2' are unsigned int.
19521 Rename muscle `rhs_number_max' as `rhs_max'.
19522 Output muscles `prhs_max', `rline_max', and `r2_max'.
19523 Free rline and r1.
19524 * data/bison.simple, data/bison.c++: Adjust to use these muscles
19525 to compute types instead of constant types.
19526 * tests/regression.at (Web2c Actions): Adjust.
19527
19528 2002-05-04 Akim Demaille <akim@epita.fr>
19529
19530 * src/symtab.h (SALIAS, SUNDEF): Rename as...
19531 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
19532 Adjust dependencies.
19533 * src/output.c (token_definitions_output): Be sure not to output a
19534 `#define 'a'' when fed with `%token 'a' "a"'.
19535 * tests/regression.at (Token definitions): New.
19536
19537 2002-05-03 Paul Eggert <eggert@twinsun.com>
19538
19539 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
19540 for K&R C.
19541
19542 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
19543
19544 * Makefile.am (SUBDIRS): Remove intl.
19545 (EXTRA_DIST): Add config/config.rpath.
19546
19547 2002-05-03 Akim Demaille <akim@epita.fr>
19548
19549 * data/bison.simple (m4_if): Don't output empty enums.
19550 And actually, output valid enum definitions :(.
19551
19552 2002-05-03 Akim Demaille <akim@epita.fr>
19553
19554 * configure.bat: Remove, completely obsolete.
19555 * Makefile.am (EXTRA_DIST): Adjust.
19556 Don't distribute config.rpath...
19557 * config/Makefile.am (EXTRA_DIST): Do it.
19558
19559 2002-05-03 Akim Demaille <akim@epita.fr>
19560
19561 * configure.in (GETTEXT_VERSION): New.
19562 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
19563
19564 2002-05-03 Akim Demaille <akim@epita.fr>
19565
19566 * data/bison.simple (b4_token_enum): New.
19567 (b4_token_defines): Use it to output tokens both as #define and
19568 enums.
19569 Suggested by Paul Eggert.
19570 * src/output.c (token_definitions_output): Don't output spurious
19571 white spaces.
19572
19573 2002-05-03 Akim Demaille <akim@epita.fr>
19574
19575 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
19576
19577 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
19578
19579 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
19580 Update the stack class, give a try to deque as the default container.
19581
19582 2002-05-02 Akim Demaille <akim@epita.fr>
19583
19584 * data/bison.simple (yyparse): Do not implement @$ = @1.
19585 (YYLLOC_DEFAULT): Adjust to do it.
19586 * doc/bison.texinfo (Location Default Action): Fix.
19587
19588 2002-05-02 Akim Demaille <akim@epita.fr>
19589
19590 * src/reader.c (parse_braces): Merge into...
19591 (parse_action): this.
19592
19593 2002-05-02 Akim Demaille <akim@epita.fr>
19594
19595 * configure.in (ALL_LINGUAS): Remove.
19596 * po/LINGUAS, hr.po: New.
19597
19598 2002-05-02 Akim Demaille <akim@epita.fr>
19599
19600 Remove the so called hairy (semantic) parsers.
19601
19602 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
19603 * src/gram.h, src/gram.c (semantic_parser): Remove.
19604 (rule_t): Remove the guard and guard_line members.
19605 * src/lex.h (token_t): remove tok_guard.
19606 * src/options.c (option_table): Remove %guard and %semantic_parser
19607 support.
19608 * src/output.c, src/output.h (guards_output): Remove.
19609 (prepare): Adjust.
19610 (token_definitions_output): Don't output the `T'
19611 tokens (???).
19612 (output_skeleton): Don't output the guards.
19613 * src/files.c, src/files.c (attrsfile): Remove.
19614 * src/reader.c (symbol_list): Remove the guard and guard_line
19615 members.
19616 Adjust dependencies.
19617 (parse_guard): Remove.
19618 * data/bison.hairy: Remove.
19619 * doc/bison.texinfo (Environment Variables): Remove occurrences of
19620 BISON_HAIRY.
19621
19622 2002-05-02 Akim Demaille <akim@epita.fr>
19623
19624 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
19625 (parse_guard): Rename the formal argument `stack_offset' as
19626 `rule_length', which is more readable.
19627 Adjust callers.
19628 (copy_at, copy_dollar): Instead of outputting the hard coded
19629 values of $$, $n and so forth, output invocation to b4_lhs_value,
19630 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
19631 Note: this patch partially drops `semantic-parser' support: it
19632 always does `rule_length - n', where semantic parsers ought to
19633 always use `-n'.
19634 * data/bison.simple, data/bison.c++ (b4_lhs_value)
19635 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
19636
19637 2002-05-02 Akim Demaille <akim@epita.fr>
19638
19639 * configure.in (AC_INIT): Bump to 1.49b.
19640 (AM_INIT_AUTOMAKE): Short invocation.
19641
19642 2002-05-02 Akim Demaille <akim@epita.fr>
19643
19644 Version 1.49a.
19645
19646 2002-05-01 Akim Demaille <akim@epita.fr>
19647
19648 * src/skeleton.h: Remove.
19649
19650 2002-05-01 Akim Demaille <akim@epita.fr>
19651
19652 * src/skeleton.h: Fix the #endif.
19653 Reported by Magnus Fromreide.
19654
19655 2002-04-26 Paul Eggert <eggert@twinsun.com>
19656
19657 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
19658 Define if we define YYSTYPE and YYLTYPE, respectively.
19659 (YYCOPY): Fix [] quoting problem in the non-GCC case.
19660
19661 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
19662
19663 * src/scan-skel.l: Postprocess quadrigraphs.
19664
19665 * src/reader.c (copy_character): New function, used to output
19666 single characters while replacing `[' and `]' with quadrigraphs, to
19667 avoid troubles with M4 quotes.
19668 (copy_comment): Output characters with copy_character.
19669 (read_additionnal_code): Likewise.
19670 (copy_string2): Likewise.
19671 (copy_definition): Likewise.
19672
19673 * tests/calc.at: Exercise M4 quoting.
19674
19675 2002-04-25 Akim Demaille <akim@epita.fr>
19676
19677 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
19678 between `!' and the command.
19679 Reported by Paul Eggert.
19680
19681 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
19682
19683 * tests/calc.at: Exercise prologue splitting.
19684
19685 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
19686 `b4_post_prologue' instead of `b4_prologue'.
19687
19688 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
19689 muscles.
19690 (output): Free pre_prologue_obstack and post_prologue_obstack.
19691 * src/files.h, src/files.c (attrs_obstack): Remove.
19692 (pre_prologue_obstack, post_prologue_obstack): New.
19693 * src/reader.c (copy_definition): Add a parameter to specify the
19694 obstack to fill, instead of using attrs_obstack unconditionally.
19695 (read_declarations): Pass pre_prologue_obstack to copy_definition if
19696 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
19697
19698 2002-04-23 Paul Eggert <eggert@twinsun.com>
19699
19700 * data/bison.simple: Remove unnecessary commentary and white
19701 space differences from 1_29-branch.
19702 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
19703
19704 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
19705 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
19706 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
19707 constructors or destructors.
19708
19709 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
19710
19711 2002-04-23 Akim Demaille <akim@epita.fr>
19712
19713 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
19714 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
19715 location with columns.
19716 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
19717 All reported by Paul Eggert.
19718
19719 2002-04-22 Akim Demaille <akim@epita.fr>
19720
19721 * src/reduce.c (dump_grammar): Move to...
19722 * src/gram.h, src/gram.c (grammar_dump): here.
19723 Be sure to separate long item numbers.
19724 Don't read the members of a rule's prec if its nil.
19725
19726 2002-04-22 Akim Demaille <akim@epita.fr>
19727
19728 * src/output.c (table_size, table_grow): New.
19729 (MAXTABLE): Remove, replace uses with table_size.
19730 (pack_vector): Instead of dying when the table is too big, grow it.
19731
19732 2002-04-22 Akim Demaille <akim@epita.fr>
19733
19734 * data/bison.simple (yyr1): Its type is that of a token number.
19735 * data/bison.c++ (r1_): Likewise.
19736 * tests/regression.at (Web2c Actions): Adjust.
19737
19738 2002-04-22 Akim Demaille <akim@epita.fr>
19739
19740 * src/reader.c (token_translations_init): 256 is now the default
19741 value for the error token, i.e., it will be assigned another
19742 number if the user assigned 256 to one of her tokens.
19743 (reader): Don't force 256 to error.
19744 * doc/bison.texinfo (Symbols): Adjust.
19745 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
19746 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
19747 etc. instead of 10, 20, 30 (which was used to `jump' over error
19748 (256) and undefined (2)).
19749
19750 2002-04-22 Akim Demaille <akim@epita.fr>
19751
19752 Propagate more token_number_t.
19753
19754 * src/gram.h (token_number_as_item_number)
19755 (item_number_as_token_number): New.
19756 * src/output.c (GENERATE_OUTPUT_TABLE): New.
19757 Use it to create output_item_number_table and
19758 output_token_number_table.
19759 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
19760 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
19761 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
19762 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
19763
19764 2002-04-22 Akim Demaille <akim@epita.fr>
19765
19766 * src/output.h, src/output.c (get_lines_number): Remove.
19767
19768 2002-04-19 Akim Demaille <akim@epita.fr>
19769
19770 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
19771 as Lex/Flex'.
19772 (Debugging): More details about enabling the debugging features.
19773 (Table of Symbols): Describe $$, $n, @$, and @n.
19774 Suggested by Tim Josling.
19775
19776 2002-04-19 Akim Demaille <akim@epita.fr>
19777
19778 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
19779
19780 2002-04-10 Akim Demaille <akim@epita.fr>
19781
19782 * src/system.h: Rely on HAVE_LIMITS_H.
19783 Suggested by Paul Eggert.
19784
19785 2002-04-09 Akim Demaille <akim@epita.fr>
19786
19787 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
19788 full stderr, and strip it according to the bison options, instead
19789 of composing the error message from different bits.
19790 This makes it easier to check for several error messages.
19791 Adjust all the invocations.
19792 Add an invocation exercising the error token.
19793 Add an invocation demonstrating a stupid error message.
19794 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
19795 Adjust the tests.
19796 Error message are for stderr, not stdout.
19797
19798 2002-04-09 Akim Demaille <akim@epita.fr>
19799
19800 * src/gram.h, src/gram.c (error_token_number): Remove, use
19801 errtoken->number.
19802 * src/reader.c (reader): Don't specify the user token number (2)
19803 for $undefined, as it uselessly prevents using it.
19804 * src/gram.h (token_number_t): Move to...
19805 * src/symtab.h: here.
19806 (state_t.number): Is a token_number_t.
19807 * src/print.c, src/reader.c: Use undeftoken->number instead of
19808 hard coded 2.
19809 (Even though this 2 is not the same as above: the number of the
19810 undeftoken remains being 2, it is its user token number which
19811 might not be 2).
19812 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
19813 `user_token_number_max'.
19814 Output `undef_token_number'.
19815 * data/bison.simple, data/bison.c++: Use them.
19816 Be sure to map invalid yylex return values to
19817 `undef_token_number'. This saves us from gratuitous SEGV.
19818
19819 * tests/conflicts.at (Solved SR Conflicts)
19820 (Unresolved SR Conflicts): Adjust.
19821 * tests/regression.at (Web2c Actions): Adjust.
19822
19823 2002-04-08 Akim Demaille <akim@epita.fr>
19824
19825 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
19826 Adding #line.
19827 Remove the duplicate `typedefs'.
19828 (RhsNumberType): Fix the declaration and various other typos.
19829 Use __ofile__.
19830 * data/bison.simple: Use __ofile__.
19831 * src/scan-skel.l: Handle __ofile__.
19832
19833 2002-04-08 Akim Demaille <akim@epita.fr>
19834
19835 * src/gram.h (item_number_t): New, the type of item numbers in
19836 RITEM. Note that it must be able to code symbol numbers as
19837 positive number, and the negation of rule numbers as negative
19838 numbers.
19839 Adjust all dependencies (pretty many).
19840 * src/reduce.c (rule): Remove this `short *' pointer: use
19841 item_number_t.
19842 * src/system.h (MINSHORT, MAXSHORT): Remove.
19843 Include `limits.h'.
19844 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
19845 (shortcpy): Remove.
19846 (MAXTABLE): Move to...
19847 * src/output.c (MAXTABLE): here.
19848 (prepare_rules): Use output_int_table to output rhs.
19849 * data/bison.simple, data/bison.c++: Adjust.
19850 * tests/torture.at (Big triangle): Move the limit from 254 to
19851 500.
19852 * tests/regression.at (Web2c Actions): Ajust.
19853
19854 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
19855 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
19856 passes, but produces negative #line number, once fixed, GCC is
19857 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
19858 C), it passes.
19859 * src/state.h (state_h): Code input lines on ints, not shorts.
19860
19861 2002-04-08 Akim Demaille <akim@epita.fr>
19862
19863 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
19864 and then the grammar.
19865
19866 2002-04-08 Akim Demaille <akim@epita.fr>
19867
19868 * src/system.h: No longer using strndup.
19869
19870 2002-04-07 Akim Demaille <akim@epita.fr>
19871
19872 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
19873 * src/output.c (output_table_data): Return the longest number.
19874 (prepare_tokens): Output `token_number_max').
19875 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
19876 New.
19877 Use them to define yy_token_number_type/TokenNumberType.
19878 Use this type for yytranslate.
19879 * tests/torture.at (Big triangle): Push the limit from 124 to
19880 253.
19881 * tests/regression.at (Web2c Actions): Adjust.
19882
19883 2002-04-07 Akim Demaille <akim@epita.fr>
19884
19885 * tests/torture.at (Big triangle): New.
19886 (GNU AWK Grammar, GNU Cim Grammar): Move to...
19887 * tests/existing.at: here.
19888
19889 2002-04-07 Akim Demaille <akim@epita.fr>
19890
19891 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
19892 nritems.
19893 Adjust dependencies.
19894
19895 2002-04-07 Akim Demaille <akim@epita.fr>
19896
19897 * src/reader.c: Normalize increments to prefix form.
19898
19899 2002-04-07 Akim Demaille <akim@epita.fr>
19900
19901 * src/reader.c, symtab.c: Remove debugging code.
19902
19903 2002-04-07 Akim Demaille <akim@epita.fr>
19904
19905 Rename all the `bucket's as `symbol_t'.
19906
19907 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
19908 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
19909 * src/symtab.c, src/symtab.h (bucket): Rename as...
19910 (symbol_t): this.
19911 (symbol_list_new, bucket_check_defined, bucket_make_alias)
19912 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
19913 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
19914 (buckets_new, buckets_free, buckets_do): Rename as...
19915 (symbol_list_new, symbol_check_defined, symbol_make_alias)
19916 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
19917 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
19918 (symbols_new, symbols_free, symbols_do): these.
19919
19920 2002-04-07 Akim Demaille <akim@epita.fr>
19921
19922 Use lib/hash for the symbol table.
19923
19924 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
19925 EOF.
19926 * src/lex.c (lex): Set the `number' member of new terminals.
19927 * src/reader.c (bucket_check_defined, bucket_make_alias)
19928 (bucket_check_alias_consistence, bucket_translation): New.
19929 (reader, grammar_free, readgram, token_translations_init)
19930 (packsymbols): Adjust.
19931 (reader): Number the predefined tokens.
19932 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
19933 for predefined tokens.
19934 * src/symtab.h (bucket): Remove all the hash table related
19935 members.
19936 * src/symtab.c (symtab): Replace by...
19937 (bucket_table): this.
19938 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
19939 (buckets_new, buckets_do): New.
19940
19941 2002-04-07 Akim Demaille <akim@epita.fr>
19942
19943 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
19944 (start_symbol, max_user_token_number, semantic_parser)
19945 (error_token_number): Initialize.
19946 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
19947 Initialize.
19948 (reader): Don't.
19949 (errtoken, eoftoken, undeftoken, axiom): Extern.
19950
19951 2002-04-07 Akim Demaille <akim@epita.fr>
19952
19953 * src/gram.h (rule_s): prec and precsym are now pointers
19954 to the bucket giving the priority/associativity.
19955 Member `associativity' removed: useless.
19956 * src/reduce.c, src/conflicts.c: Adjust.
19957
19958 2002-04-07 Akim Demaille <akim@epita.fr>
19959
19960 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
19961 Properly escape the symbols' TAG when outputting them.
19962
19963 2002-04-07 Akim Demaille <akim@epita.fr>
19964
19965 * src/lalr.h (LA): Is a bitsetv, not bitset*.
19966
19967 2002-04-07 Akim Demaille <akim@epita.fr>
19968
19969 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
19970 (LArule): this, which is an array to rule_t*.
19971 * src/print.c, src/conflicts.c: Adjust.
19972
19973 2002-04-07 Akim Demaille <akim@epita.fr>
19974
19975 * src/gram.h (rule_t): Rename `number' as `user_number'.
19976 `number' is a new member.
19977 Adjust dependencies.
19978 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
19979
19980 2002-04-07 Akim Demaille <akim@epita.fr>
19981
19982 As a result of the previous patch, it is no longer needed
19983 to reorder ritem itself.
19984
19985 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
19986
19987 2002-04-07 Akim Demaille <akim@epita.fr>
19988
19989 Be sure never to walk through RITEMS, but use only data related to
19990 the rules themselves. RITEMS should be banished.
19991
19992 * src/output.c (output_token_translations): Rename as...
19993 (prepare_tokens): this.
19994 In addition to `translate', prepare the muscles `tname' and
19995 `toknum', which were handled by...
19996 (output_rule_data): this.
19997 Remove, and move the remainder of its outputs into...
19998 (prepare_rules): this new routines, which also merges content from
19999 (output_gram): this.
20000 (prepare_rules): Be sure never to walk through RITEMS.
20001 (output_stos): Rename as...
20002 (prepare_stos): this.
20003 (output): Always invoke prepare_states, after all, just don't use it
20004 in the output if you don't need it.
20005
20006 2002-04-07 Akim Demaille <akim@epita.fr>
20007
20008 * src/LR0.c (new_state): Display `nstates' as the name of the
20009 newly created state.
20010 Adjust to initialize first_state and last_state if needed.
20011 Be sure to distinguish the initial from the final state.
20012 (new_states): Create the itemset of the initial state, and use
20013 new_state.
20014 * src/closure.c (closure): Now that the initial state has its
20015 items properly set, there is no need for a special case when
20016 creating `ruleset'.
20017
20018 As a result, now the rule 0, reducing to $axiom, is visible in the
20019 outputs. Adjust the test suite.
20020
20021 * tests/conflicts.at (Solved SR Conflicts)
20022 (Unresolved SR Conflicts): Adjust.
20023 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
20024 * tests/conflicts.at (S/R in initial): New.
20025
20026 2002-04-07 Akim Demaille <akim@epita.fr>
20027
20028 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
20029 the RHS of the rules.
20030 * src/output.c (output_gram): Likewise.
20031
20032 2002-04-07 Akim Demaille <akim@epita.fr>
20033
20034 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
20035 bucket.
20036 Adjust all dependencies.
20037 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
20038 `number' of the buckets too.
20039 * src/gram.h: Include `symtab.h'.
20040 (associativity): Move to...
20041 * src/symtab.h: here.
20042 No longer include `gram.h'.
20043
20044 2002-04-07 Akim Demaille <akim@epita.fr>
20045
20046 * src/gram.h, src/gram.c (rules_rhs_length): New.
20047 (ritem_longest_rhs): Use it.
20048 * src/gram.h (rule_t): `number' is a new member.
20049 * src/reader.c (packgram): Set it.
20050 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
20051 the end of `rules', and count them out of `nrules'.
20052 (reduce_output, dump_grammar): Adjust.
20053 * src/print.c (print_grammar): It is no longer needed to check for
20054 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
20055 * tests/reduce.at (Reduced Automaton): New test.
20056
20057 2002-04-07 Akim Demaille <akim@epita.fr>
20058
20059 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
20060 lacking `+ 1' to nrules, Bison reported as useless a token if it
20061 was used solely to set the precedence of the last rule...
20062
20063 2002-04-07 Akim Demaille <akim@epita.fr>
20064
20065 * data/bison.c++, data/bison.simple: Don't output the current file
20066 name in #line, to avoid useless diffs between two identical
20067 outputs under different names.
20068
20069 2002-04-07 Akim Demaille <akim@epita.fr>
20070
20071 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
20072 Normalize loops to using `< nrules + 1', not `<= nrules'.
20073
20074 2002-04-07 Akim Demaille <akim@epita.fr>
20075
20076 * TODO: Update.
20077
20078 2002-04-07 Akim Demaille <akim@epita.fr>
20079
20080 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
20081 bucket.value as bucket.number.
20082
20083 2002-04-07 Akim Demaille <akim@epita.fr>
20084
20085 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
20086 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
20087 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
20088 RHS, instead of being an index in RITEMS.
20089
20090 2002-04-04 Paul Eggert <eggert@twinsun.com>
20091
20092 * doc/bison.texinfo: Update copyright date.
20093 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
20094 (Symbols): Warn about running Bison in one character set,
20095 but compiling and/or running in an incompatible one.
20096 Warn about character code 256, too.
20097
20098 2002-04-03 Paul Eggert <eggert@twinsun.com>
20099
20100 * src/bison.data (YYSTACK_ALLOC): Depend on whether
20101 YYERROR_VERBOSE is nonzero, not whether it is defined.
20102
20103 Merge changes from bison-1_29-branch.
20104
20105 2002-03-20 Paul Eggert <eggert@twinsun.com>
20106
20107 Merge fixes from Debian bison_1.34-1.diff.
20108
20109 * configure.in (AC_PREREQ): 2.53.
20110
20111 2002-03-20 Akim Demaille <akim@epita.fr>
20112
20113 * src/conflicts.c (log_resolution): Argument `resolution' is const.
20114
20115 2002-03-19 Paul Eggert <eggert@twinsun.com>
20116
20117 * src/bison.simple (YYCOPY): New macro.
20118 (YYSTACK_RELOCATE): Use it.
20119 Remove Type arg; no longer needed. All callers changed.
20120 (yymemcpy): Remove; no longer needed.
20121
20122 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
20123 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
20124
20125 2002-03-19 Akim Demaille <akim@epita.fr>
20126
20127 Test and fix the #line outputs.
20128
20129 * tests/atlocal.at (GCC): New.
20130 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
20131 (Prologue synch line, %union synch line, Postprologue synch line)
20132 (Action synch line, Epilogue synch line): New tests.
20133 * src/reader.c (parse_union_decl): Define the muscle stype_line.
20134 * data/bison.simple, data/bison.c++: Use it.
20135
20136 2002-03-19 Akim Demaille <akim@epita.fr>
20137
20138 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
20139 (Solved SR Conflicts, %expect not enough, %expect right)
20140 (%expect too much): Move to...
20141 * tests/conflicts.at: this new file.
20142
20143 2002-03-19 Akim Demaille <akim@epita.fr>
20144
20145 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
20146 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
20147 that we can move to enums for instance.
20148 * src/output.c (token_definitions_output): Output a list of
20149 `token-name, token-number' instead of the #define.
20150 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
20151
20152 2002-03-14 Akim Demaille <akim@epita.fr>
20153
20154 Use Gettext 0.11.1.
20155
20156 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
20157
20158 * data/bison.c++: Make the user able to add members to the generated
20159 parser by subclassing.
20160
20161 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
20162
20163 * src/reader.c (read_additionnal_code): `c' should be an integer, not
20164 a character.
20165 Reported by Nicolas Tisserand and Nicolas Burrus.
20166
20167 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
20168
20169 * src/reader.c: Warn about lacking semi-colons, do not complain.
20170
20171 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
20172
20173 * data/bison.c++: Remove a debug line.
20174
20175 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
20176
20177 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
20178 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
20179 provide a default implementation.
20180
20181 2002-03-04 Akim Demaille <akim@epita.fr>
20182
20183 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
20184 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
20185 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
20186 * tests/semantic.at (Parsing Guards): Similarly.
20187 * src/reader.at (readgram): Complain if the last rule is not ended
20188 with a semi-colon.
20189
20190 2002-03-04 Akim Demaille <akim@epita.fr>
20191
20192 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
20193 * src/closure.c: here.
20194 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
20195 RTC.
20196 * src/warshall.h, src/warshall.c: Remove.
20197 * tests/sets.at (Broken Closure): Adjust.
20198
20199 2002-03-04 Akim Demaille <akim@epita.fr>
20200
20201 * src/output.c (output_skeleton): tempdir is const.
20202 bytes_read is unused.
20203
20204 2002-03-04 Akim Demaille <akim@epita.fr>
20205
20206 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
20207 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
20208 Update.
20209 From Michael Hayes.
20210
20211 2002-03-04 Akim Demaille <akim@epita.fr>
20212
20213 * src/closure.c (closure): `r' is unused.
20214
20215 2002-03-04 Akim Demaille <akim@epita.fr>
20216
20217 * tests/sets.at (Broken Closure): Add the ending `;'.
20218 * src/reader.at (readgram): Complain if a rule is not ended with a
20219 semi-colon.
20220
20221 2002-03-04 Akim Demaille <akim@epita.fr>
20222
20223 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
20224 (count_sr_conflicts): Use bitset_count.
20225 * src/reduce.c (inaccessable_symbols): Ditto.
20226 (bits_size): Remove.
20227 * src/warshall.h, src/warshall.c: Convert to bitsetv.
20228
20229 2002-03-04 Akim Demaille <akim@epita.fr>
20230
20231 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
20232 * src/reduce.c: Remove the `bitset_zero's following the
20233 `bitset_create's, as now it is performed by the latter.
20234
20235 2002-03-04 Akim Demaille <akim@epita.fr>
20236
20237 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
20238 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
20239 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
20240 latest sources from Michael.
20241
20242 2002-03-04 Akim Demaille <akim@epita.fr>
20243
20244 * src/output.c (output): Don't free the grammar.
20245 * src/reader.c (grammar_free): New.
20246 * src/main.c (main): Call it and don't free symtab here.
20247
20248 2002-03-04 Akim Demaille <akim@epita.fr>
20249
20250 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
20251 before returning.
20252 Reported by Benoit Perrot.
20253
20254 2002-03-04 Akim Demaille <akim@epita.fr>
20255
20256 Use bitset operations when possible, not loops over bits.
20257
20258 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
20259 bitset_or.
20260 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
20261 * src/reduce.c (useless_nonterminals): Formatting changes.
20262 * src/warshall.c (TC): Use bitset_or.
20263
20264 2002-03-04 Akim Demaille <akim@epita.fr>
20265
20266 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
20267 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
20268 Ditto.
20269
20270 2002-03-04 Akim Demaille <akim@epita.fr>
20271
20272 * src/lalr.c (F): Now a bitset*.
20273 Adjust all dependencies.
20274
20275 2002-03-04 Akim Demaille <akim@epita.fr>
20276
20277 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
20278 Adjust all dependencies.
20279
20280 2002-03-04 Akim Demaille <akim@epita.fr>
20281
20282 * src/L0.c, src/LR0.h (nstates): Be size_t.
20283 Adjust comparisons (signed vs unsigned).
20284 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
20285 bitset*.
20286 Adjust all dependencies.
20287
20288 2002-03-04 Akim Demaille <akim@epita.fr>
20289
20290 * src/closure.c (firsts): Now, also a bitset.
20291 Adjust all dependencies.
20292 (varsetsize): Remove, now unused.
20293 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
20294
20295 2002-03-04 Akim Demaille <akim@epita.fr>
20296
20297 * src/print.c: Convert to use bitset.h, not hand coded iterations
20298 over ints.
20299
20300 2002-03-04 Akim Demaille <akim@epita.fr>
20301
20302 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
20303
20304 2002-03-04 Akim Demaille <akim@epita.fr>
20305
20306 * src/closure.c (ruleset): Be a bitset.
20307 (rulesetsize): Remove.
20308
20309 2002-03-04 Akim Demaille <akim@epita.fr>
20310
20311 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
20312 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
20313 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
20314 * src/closure.c (fderives): Be an array of bitsets.
20315
20316 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
20317
20318 * data/bison.c++: Merge the two generated headers. Insert a copyright
20319 notice in each output file.
20320
20321 2002-02-28 Akim Demaille <akim@epita.fr>
20322
20323 * data/bison.c++: Copy the prologue of bison.simple to fetch
20324 useful M4 definitions, such as b4_header_guard.
20325
20326 2002-02-25 Akim Demaille <akim@epita.fr>
20327
20328 * src/getargs.c (version): Give the name of the authors, and use a
20329 translator friendly scheme for the bgr
20330 copyright notice.
20331
20332 2002-02-25 Akim Demaille <akim@epita.fr>
20333
20334 * src/output.c (header_output): Remove, now handled completely via
20335 M4.
20336
20337 2002-02-25 Akim Demaille <akim@epita.fr>
20338
20339 * m4/m4.m4: New, from CVS Autoconf.
20340 * configure.in: Invoke it.
20341 * src/output.c (output_skeleton): Use its result instead of the
20342 hard coded name.
20343
20344 2002-02-25 Akim Demaille <akim@epita.fr>
20345
20346 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
20347 Fileutils 4.1.5.
20348 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
20349 * src/output.c (output_skeleton): Use mkstemp to create a real
20350 temporary file.
20351 Move the filling of `skeleton' and its muscle to...
20352 (prepare): here.
20353 (output): Move the definition of the prologue muscle to...
20354 (prepare): here.
20355 * src/system.h (DEFAULT_TMPDIR): New.
20356
20357 2002-02-14 Paul Eggert <eggert@twinsun.com>
20358
20359 Remove the support for C++ namespace cleanliness; it was
20360 causing more problems than it was curing, since it didn't work
20361 properly on some nonstandard C++ compilers. This can wait
20362 for a proper C++ parser.
20363
20364 * NEWS: Document this.
20365 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
20366 of C++, as it's treated like C now.
20367 * src/bison.simple (YYSTD): Remove.
20368 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
20369 Treat C++ just like Standard C instead of trying to support
20370 namespace cleanliness.
20371
20372 2002-02-14 Akim Demaille <akim@epita.fr>
20373
20374 * tests/regression.at (else): Adjust to Andreas' change.
20375
20376 2002-02-14 Akim Demaille <akim@epita.fr>
20377
20378 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
20379
20380 2002-02-13 Andreas Schwab <schwab@suse.de>
20381
20382 * src/output.c (output_rule_data): Don't output NULL, it might
20383 not be defined yet.
20384
20385 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
20386
20387 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
20388 (Copyright notice): Update.
20389
20390 2002-02-11 Akim Demaille <akim@epita.fr>
20391
20392 * tests/regression.at (%nonassoc and eof): Don't include
20393 nonportable headers.
20394
20395 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
20396
20397 * data/bison.c++: Correct error recovery. Make the user able to
20398 initialize the starting location.
20399
20400 2002-02-07 Akim Demaille <akim@epita.fr>
20401
20402 * tests/input.at: New.
20403
20404 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
20405
20406 * data/bison.c++: Replace some direct m4 expansions by constants. Be
20407 more consistent when naming methods and variables. Put preprocessor
20408 directives around tables only needed for debugging.
20409
20410 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
20411
20412 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
20413 C++ parsers.
20414 (yy::b4_name::parse): Use print_.
20415
20416 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
20417
20418 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
20419
20420 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
20421
20422 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
20423 C++ parsers.
20424 (yy::b4_name::parse): Build verbose error messages, and use error_.
20425
20426 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
20427
20428 * data/bison.c++: Fix m4 quoting in comments.
20429
20430 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
20431
20432 * data/bison.c++: Adjust the parser code. Fix some muscles that were
20433 not expanded by m4.
20434
20435 2002-02-05 Akim Demaille <akim@epita.fr>
20436
20437 * data/bison.c++: Adjust to the M4 back end.
20438 More is certainly needed.
20439
20440 2002-02-05 Akim Demaille <akim@epita.fr>
20441
20442 Give a try to M4 as a back end.
20443
20444 * lib/readpipe.c: New, from wdiff.
20445 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
20446 BISON_HAIRY.
20447 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
20448 specific values. Now it is m4 that performs the lookup.
20449 * src/parse-skel.y: Remove.
20450 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
20451 * src/output.c (actions_output, guards_output)
20452 (token_definitions_output): No longer keeps track of the output
20453 line number, hence remove the second argument.
20454 (guards_output): Check against the guard member of a rule, not the
20455 action member.
20456 Adjust callers.
20457 (output_skeleton): Don't look for the skeleton location, let m4 do
20458 that.
20459 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
20460 file will be used.
20461 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
20462 (prepare): Given that for the time being changesyntax is not
20463 usable in M4, rename the muscles using `-' to `_'.
20464 Define `defines_flag', `output_parser_name' and `output_header_name'.
20465 * src/output.h (actions_output, guards_output)
20466 (token_definitions_output): Adjust prototypes.
20467 * src/scan-skel.l: Instead of scanning the skeletons, it now
20468 processes the output of m4: `__oline__' and `#output'.
20469 * data/bison.simple: Adjust to be used by M4(sugar).
20470 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
20471 to date.
20472 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
20473 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
20474 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
20475 shamelessly stolen from CVS Autoconf.
20476
20477 2002-02-05 Akim Demaille <akim@epita.fr>
20478
20479 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
20480 * configure.in: Check for the declarations of free and malloc.
20481 * src/muscle_tab.c: Adjust.
20482
20483 2002-02-05 Akim Demaille <akim@epita.fr>
20484
20485 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
20486 which have no values.
20487
20488 2002-02-05 Akim Demaille <akim@epita.fr>
20489
20490 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
20491 * data/: here.
20492
20493 2002-01-29 Paul Eggert <eggert@twinsun.com>
20494
20495 * src/bison.simple (YYSIZE_T): Do not define merely because
20496 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
20497 On some platforms, <alloca.h> does not declare YYSTD (size_t).
20498
20499 2002-01-27 Akim Demaille <akim@epita.fr>
20500
20501 Fix `%nonassoc and eof'.
20502
20503 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
20504 which were not properly copied! Replace
20505 memcpy (res->errs, src->errs, src->nerrs);
20506 with
20507 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
20508 !!!
20509 * tests/regression.at (%nonassoc and eof): Adjust to newest
20510 Autotest: `.' is not in the PATH.
20511
20512 2002-01-27 Akim Demaille <akim@epita.fr>
20513
20514 * tests/sets.at (AT_EXTRACT_SETS): New.
20515 (Nullable): Use it.
20516 (Firsts): New.
20517
20518 2002-01-26 Akim Demaille <akim@epita.fr>
20519
20520 * tests/actions.at, tests/calc.at, tests/headers.at,
20521 * tests/torture.at: Adjust to the newest Autotest which no longer
20522 forces `.' in the PATH.
20523
20524 2002-01-25 Akim Demaille <akim@epita.fr>
20525
20526 * tests/regression.at (%nonassoc and eof): New.
20527 Suggested by Robert Anisko.
20528
20529 2002-01-24 Akim Demaille <akim@epita.fr>
20530
20531 Bison dumps core when trying to complain about broken input files.
20532 Reported by Cris van Pelt.
20533
20534 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
20535 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
20536 into...
20537 (Invalid inputs): Strengthen: exercise parse_percent_token.
20538
20539 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
20540
20541 * src/Makefile.am: Add bison.c++.
20542 * src/bison.c++: New skeleton.
20543
20544 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
20545
20546 * po/it.po: New.
20547
20548 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
20549
20550 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
20551
20552 2002-01-20 Marc Autret <marc@gnu.org>
20553
20554 * src/files.c (compute_output_file_names): Fix
20555
20556 2002-01-20 Marc Autret <marc@gnu.org>
20557
20558 * tests/output.at: New test.
20559 * src/files.c (compute_base_names): Don't map extensions when
20560 the YACC flag is set, use defaults.
20561 Reported by Evgeny Stambulchik.
20562
20563 2002-01-20 Marc Autret <marc@gnu.org>
20564
20565 * src/system.h: Need to define __attribute__ away for non-GCC
20566 compilers as well (i.e., the vendor C compiler).
20567 Suggested by Albert Chin-A-Young.
20568
20569 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
20570
20571 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
20572 canonical definition.
20573 * src/system.h: Use the canonical definition for PARAMS (avoids
20574 a conflict with the macro from lib/hash.h).
20575
20576 2002-01-11 Akim Demaille <akim@epita.fr>
20577
20578 * configure.in: Use AC_FUNC_STRNLEN.
20579 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
20580
20581 2002-01-09 Akim Demaille <akim@epita.fr>
20582
20583 * src/files.c, src/files.h (output_infix): New.
20584 (tab_extension): Remove.
20585 (compute_base_names): Compute the former, drop the latter.
20586 * src/output.c (prepare): Insert the muscles `output-infix', and
20587 `output-suffix'.
20588 * src/parse-skel.y (string, string.1): New.
20589 (section.header): Use it.
20590 (section.yacc): Remove.
20591 (prefix): Remove too.
20592 * src/scan-skel.l: Adjust.
20593 * src/bison.simple, src/bison.hairy: Adjust.
20594
20595 2002-01-09 Akim Demaille <akim@epita.fr>
20596
20597 * configure.in (WERROR_CFLAGS): Compute it.
20598 * src/Makefile.am (CFLAGS): Pass it.
20599 * tests/atlocal.in (CFLAGS): Idem.
20600 * src/files.c: Fix a few warnings.
20601 (get_extension_index): Remove, unused.
20602
20603 2002-01-08 Akim Demaille <akim@epita.fr>
20604
20605 * src/getargs.c (AS_FILE_NAME): New.
20606 (getargs): Use it to convert DOSish file names.
20607 * src/files.c (base_name): Rename as full_base_name to avoid
20608 clashes with `base_name ()'.
20609 (filename_split): New.
20610 (compute_base_names): N-th rewrite, using filename_split.
20611
20612 2002-01-08 Akim Demaille <akim@epita.fr>
20613
20614 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
20615 New, stolen from the Fileutils 4.1.
20616 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
20617 * configure.in: Check for the presence of memrchr, and of its
20618 prototype.
20619
20620 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
20621
20622 * lib/hash.h (__P): Added definition for this macro.
20623 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
20624 BUILT_SOURCES, to ensure they are generated first.
20625 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
20626 %error-verbose to allow bootstrapping with bison 1.30x.
20627
20628 2002-01-06 Akim Demaille <akim@epita.fr>
20629
20630 * src/reader.c (parse_braces): Don't fetch the next char, the
20631 convention is to fetch on entry.
20632 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
20633 'switch' without a following semicolon.
20634 * tests/regression.at (braces parsing): New.
20635
20636 2002-01-06 Akim Demaille <akim@epita.fr>
20637
20638 Bison is dead wrong in its RR conflict reports.
20639
20640 * tests/torture.at (GNU Cim Grammar): New.
20641 * src/conflicts.c (count_rr_conflicts): Fix.
20642
20643 2002-01-06 Akim Demaille <akim@epita.fr>
20644
20645 Creating package.m4 from configure.ac causes too many problems.
20646
20647 * tests/Makefile.am (package.m4): Create it by hand,
20648 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
20649
20650 2002-01-06 Akim Demaille <akim@epita.fr>
20651
20652 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
20653 skeleton.h.
20654
20655 2002-01-04 Paul Eggert <eggert@twinsun.com>
20656
20657 * doc/bison.texinfo (Debugging):
20658 Remove YYSTDERR; it's no longer defined or used.
20659 Also, s/cstdio.h/cstdio/.
20660
20661 2002-01-03 Akim Demaille <akim@epita.fr>
20662
20663 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
20664
20665 2002-01-03 Akim Demaille <akim@epita.fr>
20666
20667 * src/parse-skel.y (process_skeleton): Don't bind the parser's
20668 tracing code to --trace, wait for a better --trace option, with
20669 args.
20670
20671 2002-01-03 Akim Demaille <akim@epita.fr>
20672
20673 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
20674 The ISO C++ standard is extremely clear about it: stderr is
20675 considered a macro, not a regular symbol (see table 94 `Header
20676 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
20677 Therefore std:: does not apply to it. It still does with fprintf.
20678 Also, s/cstdio.h/cstdio/.
20679
20680 2002-01-03 Akim Demaille <akim@epita.fr>
20681
20682 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
20683 for non system headers.
20684
20685 2002-01-02 Akim Demaille <akim@epita.fr>
20686
20687 Equip the skeleton chain with location tracking, runtime trace,
20688 pure parser and scanner.
20689
20690 * src/parse-skel.y: Request a pure parser, locations, and prefix
20691 renaming.
20692 (%union): Having several members with the same type does not help
20693 type mismatches, simplify.
20694 (YYPRINT, yyprint): New.
20695 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
20696 (skel_error): this.
20697 Handle locations.
20698 * src/scan-skel.l: Adjust to these changes.
20699 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
20700 (LOCATION_PRINT, skel_control_t): New.
20701
20702 2001-12-30 Akim Demaille <akim@epita.fr>
20703
20704 * src/parse-skel.y: Get rid of the shift/reduce conflict:
20705 replace `gb' with BLANKS.
20706 * src/scan-skel.l: Adjust.
20707
20708 2001-12-30 Akim Demaille <akim@epita.fr>
20709
20710 * src/system.h: We don't need nor want bcopy.
20711 Throw away MS-DOS crap: we don't need getpid.
20712 * configure.in: We don't need strndup. It was even causing
20713 problems: because Flex includes the headers *before* us,
20714 _GNU_SOURCE is not defined by config.h, and therefore strndup was
20715 not visible.
20716 * lib/xstrndup.c: New.
20717 * src/scan-skel.l: Use it.
20718 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
20719 * src/parse-skel.y: Use %directives instead of #defines.
20720
20721 2001-12-30 Akim Demaille <akim@epita.fr>
20722
20723 * src/skeleton.h: New.
20724 * src/output.c (output_parser, output_master_parser): Remove, dead
20725 code.
20726 * src/output.h (get_lines_number, actions_output, guards_output)
20727 (token_definitions_output): Prototype them.
20728 * src/parse-skel.y: Add the license notice.
20729 Include output.h and skeleton.h.
20730 (process_skeleton): Returns void, and takes a single parameter.
20731 * src/scan-skel.l: Add the license notice.
20732 Include skeleton.h.
20733 Don't use %option yylineno: it seems that then Flex imagines
20734 REJECT has been used, and therefore it won't reallocate its
20735 buffers (which makes no other sense to me than a bug). It results
20736 in warnings for `unused: yy_flex_realloc'.
20737
20738 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
20739
20740 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
20741 (MUSCLE_INSERT_PREFIX): ...to there.
20742 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
20743 (MUSCLE_INSERT_PREFIX): Move from here...
20744
20745 * src/bison.hairy: Add a section directive. Put braces around muscle
20746 names. This parser skeleton is still broken, but Bison should not
20747 choke on a bad muscle 'syntax'.
20748 * src/bison.simple: Add a section directive. Put braces around muscle
20749 names.
20750
20751 * src/files.h (strsuffix, stringappend): Add declarations.
20752 (tab_extension): Add declaration.
20753 (short_base_name): Add declaration.
20754
20755 * src/files.c (strsuffix, stringappend): No longer static. These
20756 functions are used in the skeleton parser.
20757 (tab_extension): New.
20758 (compute_base_names): Use the computations done in this function
20759 to guess if the generated parsers should have '.tab' in their
20760 names.
20761 (short_base_name): No longer static.
20762
20763 * src/output.c (output_skeleton): New.
20764 (output): Disable call to output_master_parser, and give a try to
20765 a new skeleton handling system.
20766 (guards_output, actions_output): No longer static.
20767 (token_definitions_output, get_lines_number): No longer static.
20768
20769 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
20770
20771 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
20772 parse-skel.y.
20773
20774 * src/parse-skel.y: New file.
20775 * src/scan-skel.l: New file.
20776
20777 2001-12-29 Akim Demaille <akim@epita.fr>
20778
20779 %name-prefix is broken.
20780
20781 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
20782 Adjust all dependencies.
20783 * tests/headers.at (export YYLTYPE): Strengthen this test: use
20784 %name-prefix.
20785
20786 Renaming yylval but not yylloc is not consistent. Now we do.
20787
20788 * src/bison.simple: Prefix yylloc if used.
20789 * doc/bison.texinfo (Decl Summary): Document that.
20790
20791 2001-12-29 Akim Demaille <akim@epita.fr>
20792
20793 * doc/bison.texinfo: Promote `%long-directive' over
20794 `%long_directive'.
20795 Remove all references to fixed-output-files, yacc is enough.
20796
20797 2001-12-29 Akim Demaille <akim@epita.fr>
20798
20799 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
20800 user prologue. These are defaults.
20801 * tests/actions.at (Mid-rule actions): Make sure the user can
20802 define YYDEBUG and YYERROR_VERBOSE.
20803
20804 2001-12-29 Akim Demaille <akim@epita.fr>
20805
20806 * src/output.c (header_output): Don't forget to export YYLTYPE and
20807 yylloc.
20808 * tests/headers.at (export YYLTYPE): New, make sure it does.
20809 * tests/regression.at (%union and --defines, Invalid CPP headers):
20810 Move to...
20811 * tests/headers.at: here.
20812
20813 2001-12-29 Akim Demaille <akim@epita.fr>
20814
20815 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
20816
20817 2001-12-29 Akim Demaille <akim@epita.fr>
20818
20819 * tests/actions.at (Mid-rule actions): Output on a single line
20820 instead of several.
20821
20822 2001-12-29 Akim Demaille <akim@epita.fr>
20823
20824 * doc/bison.texinfo: Formatting changes.
20825
20826 2001-12-29 Akim Demaille <akim@epita.fr>
20827
20828 Don't store the token defs in a muscle, just be ready to output it
20829 on command. Now possible via `symbols'. Fixes a memory leak.
20830
20831 * src/output.c (token_definitions_output): New.
20832 (output_parser, header_output): Use it.
20833 * src/reader.c (symbols_save): Remove.
20834
20835 2001-12-29 Akim Demaille <akim@epita.fr>
20836
20837 * src/bison.simple: Do not provide a default for YYSTYPE and
20838 YYLTYPE before the user's prologue. Otherwise it's hardly... a
20839 default.
20840
20841 2001-12-29 Akim Demaille <akim@epita.fr>
20842
20843 Mid-rule actions are simply... ignored!
20844
20845 * src/reader.c (readgram): Be sure to attach mid-rule actions to
20846 the empty-rule associated to the dummy symbol, not to the host
20847 rule.
20848 * tests/actions.at (Mid-rule actions): New.
20849
20850 2001-12-29 Akim Demaille <akim@epita.fr>
20851
20852 Memory leak.
20853
20854 * src/reader.c (reader): Free grammar.
20855
20856 2001-12-29 Akim Demaille <akim@epita.fr>
20857
20858 Memory leak.
20859
20860 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
20861 since it allocates it for each state, although only one is needed.
20862 (allocate_storage): Do it here.
20863
20864 2001-12-29 Akim Demaille <akim@epita.fr>
20865
20866 * src/options.h, src/options.c (create_long_option_table): Rename
20867 as...
20868 (long_option_table_new): this, with a clearer prototype.
20869 (percent_table): Remove, unused,
20870 * src/getargs.c (getargs): Adjust.
20871
20872 2001-12-29 Akim Demaille <akim@epita.fr>
20873
20874 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
20875 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
20876 as states.
20877
20878 2001-12-29 Akim Demaille <akim@epita.fr>
20879
20880 * src/lalr.c (build_relations): Rename `states' as `states1'.
20881 Sorry, I don't understand exactly what it is, no better name...
20882
20883 2001-12-29 Akim Demaille <akim@epita.fr>
20884
20885 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
20886 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
20887 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
20888 as rules.
20889
20890 2001-12-29 Akim Demaille <akim@epita.fr>
20891
20892 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
20893 ago.
20894
20895 2001-12-29 Akim Demaille <akim@epita.fr>
20896
20897 * src/reader.c, src/reader.h (user_toknums): Remove.
20898 Adjust all users to use symbols[i]->user_token_number.
20899
20900 2001-12-29 Akim Demaille <akim@epita.fr>
20901
20902 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
20903 Adjust all users to use symbols[i]->prec or ->assoc.
20904
20905 2001-12-29 Akim Demaille <akim@epita.fr>
20906
20907 * src/reader.c, src/reader.h (tags): Remove.
20908 Adjust all users to use symbols[i]->tag.
20909
20910 2001-12-29 Akim Demaille <akim@epita.fr>
20911
20912 * src/gram.h, src/gram.c (symbols): New, similar to state_table
20913 and rule_table.
20914 * src/reader.c (packsymbols): Fill this table.
20915 Drop sprec.
20916 * src/conflicts.c (resolve_sr_conflict): Adjust.
20917 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
20918 single table.
20919 Use symbols[i]->tag instead of tags[i].
20920
20921 2001-12-29 Akim Demaille <akim@epita.fr>
20922
20923 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
20924 In addition, put a comment in there, to replace...
20925 * tests/regression.at (%union and C comments): Remove.
20926
20927 2001-12-29 Akim Demaille <akim@epita.fr>
20928
20929 * tests/regression.at (Web2c Actions): Blindly move the actual
20930 output as expected output. The contents *seem* right to me, but I
20931 can't pretend reading perfectly parser tables... Nonetheless, all
20932 the other tests pass correctly, the table look OK, even though the
20933 presence of `$axiom' is to be noted: AFAICS it is useless (but
20934 harmless).
20935
20936 2001-12-29 Akim Demaille <akim@epita.fr>
20937
20938 * src/reader.c (readgram): Don't add the rule 0 if there were no
20939 rules read. In other words, add it _after_ having performed
20940 grammar sanity checks.
20941 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
20942
20943 2001-12-29 Akim Demaille <akim@epita.fr>
20944
20945 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
20946 visible, and some states have now a different number.
20947
20948 2001-12-29 Akim Demaille <akim@epita.fr>
20949
20950 * src/reader.c (readgram): Bind the initial rule's lineno to that
20951 of the first rule.
20952 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
20953 (Solved SR Conflicts): Adjust rule 0's line number.
20954
20955 2001-12-29 Akim Demaille <akim@epita.fr>
20956
20957 Fix the `GAWK Grammar' failure.
20958
20959 * src/LR0.c (final_state): Initialize to -1 so that we do compute
20960 the reductions of the first state which was mistakenly confused
20961 with the final state because precisely final_state was initialized
20962 to 0.
20963 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
20964 now noticed by Bison.
20965 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
20966 have a reduction on $default.
20967
20968 2001-12-29 Akim Demaille <akim@epita.fr>
20969
20970 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
20971 rule line numbers.
20972 * src/closure.c (print_closure): Likewise.
20973 * src/derives.c (print_derives): Likewise.
20974 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
20975 now.
20976
20977 2001-12-29 Akim Demaille <akim@epita.fr>
20978
20979 * src/lalr.c (lookaheads_print): New.
20980 (lalr): Call it when --trace-flag.
20981 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
20982 are dumped.
20983
20984 2001-12-29 Akim Demaille <akim@epita.fr>
20985
20986 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
20987 when walking through ritem, even via rule->rhs.
20988 * src/reduce.c (dump_grammar, useful_production, reduce_output)
20989 (useful_production, useless_nonterminals): Likewise.
20990 (reduce_grammar_tables): Likewise, plus update nritems.
20991 * src/nullable.c (set_nullable): Likewise.
20992 * src/lalr.c (build_relations): Likewise.
20993 * tests/sets.at (Nullable): Adjust.
20994 Fortunately, now, the $axiom is no longer nullable.
20995
20996 2001-12-29 Akim Demaille <akim@epita.fr>
20997
20998 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
20999 the 0-sentinel.
21000 * src/gram.c (ritem_longest_rhs): Likewise.
21001 * src/reduce.c (nonterminals_reduce): Likewise.
21002 * src/print_graph.c (print_graph): Likewise.
21003 * src/output.c (output_rule_data): Likewise.
21004 * src/nullable.c (set_nullable): Likewise.
21005
21006 2001-12-29 Akim Demaille <akim@epita.fr>
21007
21008 * src/output.c: Comment changes.
21009
21010 2001-12-27 Paul Eggert <eggert@twinsun.com>
21011
21012 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
21013 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
21014 Sparc, as they were causing more porting problems than the
21015 (minor) performance improvement was worth.
21016
21017 Also, catch up with 1.31's YYSTD.
21018
21019 2001-12-27 Akim Demaille <akim@epita.fr>
21020
21021 * src/output.c (output_gram): Rely on nritems, not the
21022 0-sentinel. See below.
21023 Use -1 as separator, not 0.
21024 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
21025 Rely on -1 as separator in yyrhs, instead of 0.
21026 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
21027 twice `Now at end of input', therefore there are two lines less to
21028 expect.
21029
21030 2001-12-27 Akim Demaille <akim@epita.fr>
21031
21032 * tests/regression.at (Unresolved SR Conflicts):
21033 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
21034 below.
21035
21036 2001-12-27 Akim Demaille <akim@epita.fr>
21037
21038 * src/LR0.c (new_state): Recognize the final state by the fact it
21039 is reached by eoftoken.
21040 (insert_start_shifting_state, insert_eof_shifting_state)
21041 (insert_accepting_state, augment_automaton): Remove, since now
21042 these states are automatically computed from the initial state.
21043 (generate_states): Adjust.
21044 * src/print.c: When reporting a rule number to the user, substract
21045 1, so that the axiom rule is rule 0, and the first user rule is 1.
21046 * src/reduce.c: Likewise.
21047 * src/print_graph.c (print_core): For the time being, just as for
21048 the report, depend upon --trace-flags to dump the full set of
21049 items.
21050 * src/reader.c (readgram): Once the grammar read, insert the rule
21051 0: `$axiom: START-SYMBOL $'.
21052 * tests/set.at: Adjust: rule 0 is now displayed, and since the
21053 number of the states has changed (the final state is no longer
21054 necessarily the last), catch up.
21055
21056 2001-12-27 Akim Demaille <akim@epita.fr>
21057
21058 Try to make the use of the eoftoken valid. Given that its value
21059 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
21060 is used instead of > 0 where appropriate, (ii), depend upon nritems
21061 instead of the 0-sentinel.
21062
21063 * src/gram.h, src/gram.c (nritems): New.
21064 Expected to be duplication of nitems, but for the time being...
21065 * src/reader.c (packgram): Assert nritems and nitems are equal.
21066 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
21067 * src/closure.c (print_closure, print_fderives): Likewise.
21068 * src/gram.c (ritem_print): Likewise.
21069 * src/print.c (print_core, print_grammar): Likewise.
21070 * src/print_graph.c: Likewise.
21071
21072 2001-12-27 Akim Demaille <akim@epita.fr>
21073
21074 * src/main.c (main): If there are complains after grammar
21075 reductions, then output the report anyway if requested, then die.
21076 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
21077 * src/reader.c (eoftoken): New.
21078 (parse_token_decl): If the token being defined has value `0', it
21079 is the eoftoken.
21080 (packsymbols): No longer hack `tags' to insert `$' by hand.
21081 Be sure to preserve the value of the eoftoken.
21082 (reader): Make sure eoftoken is defined.
21083 Initialize nsyms to 0: now eoftoken is created just like the others.
21084 * src/print.c (print_grammar): Don't special case the eof token.
21085 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
21086 lie anyway, albeit pleasant.
21087 * tests/calc.at: Exercise error messages with eoftoken.
21088 Change the grammar so that empty input is invalid.
21089 Adjust expectations.
21090 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
21091
21092 2001-12-27 Akim Demaille <akim@epita.fr>
21093
21094 * configure.in: Check the protos of strchr ans strspn.
21095 Replace strchr if needed.
21096 * src/system.h: Provide the protos of strchr, strspn and memchr if
21097 missing.
21098 * lib/strchr.c: New.
21099 * src/reader.c (symbols_save): Use strchr.
21100
21101 2001-12-27 Akim Demaille <akim@epita.fr>
21102
21103 * src/print.c, src/print_graph.c (escape): New.
21104 Use it to quote the TAGS outputs.
21105 * src/print_graph.c (print_state): Now errors are in red, and
21106 reductions in green.
21107 Prefer high to wide: output the state number on a line of its own.
21108
21109 2001-12-27 Akim Demaille <akim@epita.fr>
21110
21111 * src/state.h, src/state.c (reductions_new): New.
21112 * src/LR0.c (set_state_table): Let all the states have a
21113 `reductions', even if reduced to 0.
21114 (save_reductions): Adjust.
21115 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
21116 * src/print.c (print_reductions, print_actions): Adjust.
21117 * src/output.c (action_row): Adjust.
21118
21119 2001-12-27 Akim Demaille <akim@epita.fr>
21120
21121 * src/state.h, src/state.c (errs_new, errs_dup): New.
21122 * src/LR0.c (set_state_table): Let all the states have an errs,
21123 even if reduced to 0.
21124 * src/print.c (print_errs, print_reductions): Adjust.
21125 * src/output.c (output_actions, action_row): Adjust.
21126 * src/conflicts.c (resolve_sr_conflict): Adjust.
21127
21128 2001-12-27 Akim Demaille <akim@epita.fr>
21129
21130 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
21131
21132 2001-12-27 Akim Demaille <akim@epita.fr>
21133
21134 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
21135 * src/print.c: here.
21136 (lookaheadset, shiftset): New, used as additional storage by
21137 print_reductions.
21138 (print_results): Adjust.
21139 (print_shifts, print_gotos, print_errs): New, extracted from...
21140 (print_actions): here.
21141 * src/print_graph.c (print_actions): Remove dead code.
21142
21143 2001-12-27 Akim Demaille <akim@epita.fr>
21144
21145 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
21146 `$n' and `@n'.
21147
21148 2001-12-27 Akim Demaille <akim@epita.fr>
21149
21150 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
21151 (build_relations): Adjust.
21152
21153 2001-12-27 Akim Demaille <akim@epita.fr>
21154
21155 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
21156 duplication.
21157
21158 2001-12-27 Akim Demaille <akim@epita.fr>
21159
21160 * src/reader.c (packgram): Catch nitems overflows.
21161
21162 2001-12-27 Akim Demaille <akim@epita.fr>
21163
21164 * src/files.c, src/files.h (guard_obstack): Remove.
21165 * src/output.c (output): Adjust.
21166 * src/reader.c (parse_braces): New, factoring...
21167 (copy_action, copy_guard): these two which are renamed as...
21168 (parse_action, parse_guard): these.
21169 As a voluntary consequence, using braces around guards is now
21170 mandatory.
21171
21172 2001-12-27 Akim Demaille <akim@epita.fr>
21173
21174 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
21175 * src/reader.c (symbol_list): `guard' and `guard_line' are new
21176 members.
21177 (symbol_list_new): Adjust.
21178 (copy_action): action_line is the first line, not the last.
21179 (copy_guard): Just as for actions, store the `action' only, not
21180 the switch/case/break flesh.
21181 Don't parse the user action that might follow the guard, let...
21182 (readgram): do it, i.e., now, there can be an action after a
21183 guard.
21184 In other words the guard is just explicitly optional.
21185 (packgram): Adjust.
21186 * src/output.c (guards_output): New.
21187 (output_parser): Call it when needed.
21188 (output): Also free the guard and attrs obstacks.
21189 * src/files.c, src/files.h (obstack_save): Remove.
21190 (output_files): Remove.
21191 As a result, if one needs the former `.act' file, using an
21192 appropriate skeleton which requires actions and guards is now
21193 required.
21194 * src/main.c (main): Adjust.
21195 * tests/semantic.at: New.
21196 * tests/regression.at: Use `input.y' as input file name.
21197 Avoid 8+3 problems by requiring input.c when the test needs the
21198 parser.
21199
21200 2001-12-27 Akim Demaille <akim@epita.fr>
21201
21202 * src/reader.c (symbol_list_new): Be sure to initialize all the
21203 fields.
21204
21205 2001-12-27 Akim Demaille <akim@epita.fr>
21206
21207 All the hacks using a final pseudo state are now useless.
21208
21209 * src/LR0.c (set_state_table): state_table holds exactly nstates.
21210 * src/lalr.c (nLA): New.
21211 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
21212 instead of lookaheadsp from the pseudo state (nstate + 1).
21213
21214 2001-12-27 Akim Demaille <akim@epita.fr>
21215
21216 * src/output.c (action_row, token_actions): Use a state_t instead
21217 of a integer, and nlookaheads instead of the following state's
21218 lookaheadsp.
21219
21220 2001-12-27 Akim Demaille <akim@epita.fr>
21221
21222 * src/conflicts.c (log_resolution, flush_shift)
21223 (resolve_sr_conflict, set_conflicts, solve_conflicts)
21224 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
21225 (conflicts_print, print_reductions): Use a state_t instead of an
21226 integer when referring to a state.
21227 As much as possible, depend upon nlookaheads, instead of the
21228 `lookaheadsp' member of the following state (since lookaheads of
21229 successive states are successive, the difference between state n + 1
21230 and n served as the number of lookaheads for state n).
21231 * src/lalr.c (add_lookback_edge): Likewise.
21232 * src/print.c (print_core, print_actions, print_state)
21233 (print_results): Likewise.
21234 * src/print_graph.c (print_core, print_actions, print_state)
21235 (print_graph): Likewise.
21236 * src/conflicts.h: Adjust.
21237
21238 2001-12-27 Akim Demaille <akim@epita.fr>
21239
21240 * src/bison.hairy: Formatting/comment changes.
21241 ANSIfy.
21242 Remove `register' indications.
21243 Add plenty of `static'.
21244
21245 2001-12-27 Akim Demaille <akim@epita.fr>
21246
21247 * src/output.c (prepare): Drop the muscle `ntbase' which
21248 duplicates ntokens.
21249 * src/bison.simple: Formatting/comment changes.
21250 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
21251 is an undocumented synonym.
21252
21253 2001-12-22 Akim Demaille <akim@epita.fr>
21254
21255 * src/output.c (output_table_data): Change the prototype to use
21256 `int' for array ranges: some invocations do pass an int, not a
21257 short.
21258 Reported by Wayne Green.
21259
21260 2001-12-22 Akim Demaille <akim@epita.fr>
21261
21262 Some actions of web2c.y are improperly triggered.
21263 Reported by Mike Castle.
21264
21265 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
21266 * tests/regression.at (Web2c): Rename as...
21267 (Web2c Report): this.
21268 (Web2c Actions): New.
21269
21270 2001-12-22 Akim Demaille <akim@epita.fr>
21271
21272 Reductions in web2c.y are improperly reported.
21273 Reported by Mike Castle.
21274
21275 * src/conflicts.c (print_reductions): Fix.
21276 * tests/regression.at (Web2c): New.
21277
21278 2001-12-18 Akim Demaille <akim@epita.fr>
21279
21280 Some host fail on `assert (!"foo")', which expands to
21281 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
21282 Reported by Nelson Beebee.
21283
21284 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
21285 `#define it_succeeded 0' and `assert (it_succeeded)'.
21286
21287 2001-12-17 Marc Autret <autret_m@epita.fr>
21288
21289 * src/bison.simple: Don't hard code the skeleton line and filename.
21290 * src/output.c (output_parser): Rename 'line' as 'output_line'.
21291 New line counter 'skeleton_line' (skeleton-line muscle).
21292
21293 2001-12-17 Paul Eggert <eggert@twinsun.com>
21294
21295 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
21296 YYDEBUG must be defined to a nonzero value.
21297
21298 * src/bison.simple (yytname): Do not assume that the user defines
21299 YYDEBUG to a properly parenthesized expression.
21300
21301 2001-12-17 Akim Demaille <akim@epita.fr>
21302
21303 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
21304 nlookaheads is a new member.
21305 Adjust all users.
21306 * src/lalr.h (nlookaheads): Remove this orphan declaration.
21307 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
21308 state.
21309
21310 2001-12-17 Akim Demaille <akim@epita.fr>
21311
21312 * src/files.h, src/files.c (open_files, close_files): Remove.
21313 * src/main.c (main): Don't open/close files, nor invoke lex_free,
21314 let...
21315 * src/reader.c (reader): Do it.
21316
21317 2001-12-17 Akim Demaille <akim@epita.fr>
21318
21319 * src/conflicts.c (print_reductions): Formatting changes.
21320
21321 2001-12-17 Akim Demaille <akim@epita.fr>
21322
21323 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
21324 (flush_reduce): New.
21325 (resolve_sr_conflict): Adjust.
21326
21327 2001-12-17 Akim Demaille <akim@epita.fr>
21328
21329 * src/output.c (output_obstack): Be static and rename as...
21330 (format_obstack): this, to avoid any confusion with files.c's
21331 output_obstack.
21332 * src/reader.h (muscle_obstack): Move to...
21333 * src/output.h: here, since it's defined in output.c.
21334
21335 2001-12-17 Akim Demaille <akim@epita.fr>
21336
21337 * src/output.c (action_row, save_column, default_goto)
21338 (sort_actions, matching_state, pack_vector): Better variable
21339 locality.
21340
21341 2001-12-17 Akim Demaille <akim@epita.fr>
21342
21343 * src/output.c: Various formatting changes.
21344
21345 2001-12-17 Akim Demaille <akim@epita.fr>
21346
21347 * src/files.c (output_files): Free the output_obstack.
21348 * src/main.c (main): Call print and print_graph conditionally.
21349 * src/print.c (print): Work unconditionally.
21350 * src/print_graph.c (print_graph): Work unconditionally.
21351 * src/conflicts.c (log_resolution): Output only if verbose_flag.
21352
21353 2001-12-16 Marc Autret <autret_m@epita.fr>
21354
21355 * src/output.c (actions_output): Fix. When we use %no-lines,
21356 there is one less line per action.
21357
21358 2001-12-16 Marc Autret <autret_m@epita.fr>
21359
21360 * src/bison.simple: Remove a useless #line directive.
21361 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
21362 * src/output.c (get_lines_number): New.
21363 (output_parser): Adjust, now takes care about the lines of a
21364 output muscles.
21365 Fix line numbering.
21366 (actions_output): Computes the number of lines taken by actions.
21367 (output_master_parser): Insert new skeleton which is the name of
21368 the output parser file name.
21369
21370 2001-12-15 Marc Autret <autret_m@epita.fr>
21371
21372 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
21373
21374 2001-12-15 Marc Autret <autret_m@epita.fr>
21375
21376 * src/output.c (output_gram): Keep track of the hairy one.
21377
21378 2001-12-15 Akim Demaille <akim@epita.fr>
21379
21380 Make `make distcheck' work.
21381
21382 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
21383 system.h which uses libgettext.h.
21384
21385 2001-12-15 Akim Demaille <akim@epita.fr>
21386
21387 * src/nullable.c (set_nullable): Useless rules must be skipped,
21388 otherwise, since we range over their symbols, we might look at a
21389 nonterminal which no longer ``exists'', i.e., it is not counted in
21390 `nvars', hence we overflow our arrays.
21391
21392 2001-12-15 Akim Demaille <akim@epita.fr>
21393
21394 The header can also be produced directly, without any obstack!
21395 Yahoo!
21396
21397 * src/files.c, src/files.h (defines_obstack): Remove.
21398 (compute_header_macro): Global.
21399 (defines_obstack_save): Remove.
21400 * src/reader.c (parse_union_decl): No longer output to
21401 defines_obstack: its content can be found in the `stype' muscle
21402 anyway.
21403 (output_token_translations): Merge into...
21404 (symbols_output): this.
21405 Rename as...
21406 (symbols_save): this.
21407 (reader): Adjust.
21408 * src/output.c (header_output): New.
21409 (output): Call it.
21410
21411 2001-12-15 Akim Demaille <akim@epita.fr>
21412
21413 * src/reader.c (parse_union_decl): Instead of handling two obstack
21414 simultaneously, use one to define the `stype' muscle, and use the
21415 value of the latter to fill defines_obstack.
21416 (copy_comment): Remove.
21417 (copy_comment2): Work for a single obstack.
21418 Rename as...
21419 (copy_comment): this.
21420
21421 2001-12-15 Akim Demaille <akim@epita.fr>
21422
21423 * src/lex.c, src/lex.h (xgetc): No longer static.
21424 * src/reader.c (parse_union_decl): Revamp.
21425
21426 2001-12-15 Akim Demaille <akim@epita.fr>
21427
21428 Still making progress in separating Bison into (i) input, (ii)
21429 process, (iii) output: now we can directly output the parser file
21430 without using table_obstack at all.
21431
21432 * src/files.c, src/files.h (table_obstack): Bye bye.
21433 (parser_file_name): New.
21434 * src/files.c (compute_output_file_names): Compute it.
21435 * src/output.c (actions_output, output_parser)
21436 (output_master_parser): To a file instead of an obstack.
21437
21438 2001-12-15 Akim Demaille <akim@epita.fr>
21439
21440 Attach actions to rules, instead of pre-outputting them to
21441 actions_obstack.
21442
21443 * src/gram.h (rule_t): action and action_line are new members.
21444 * src/reader.c (symbol_list): Likewise.
21445 (copy_action): Save the actions within the rule.
21446 (packgram): Save them in rule_table.
21447 * src/output.c (actions_output): New.
21448 (output_parser): Use it on `%%actions'.
21449 (output_rule_data): Don't free rule_table.
21450 (output): Do it.
21451 (prepare): Don't save the `action' muscle.
21452 * src/bison.simple: s/%%action/%%actions/.
21453
21454 2001-12-15 Akim Demaille <akim@epita.fr>
21455
21456 * src/reader.c (copy_action): When --yacc, don't append a `;'
21457 to the user action: let it fail if lacking.
21458 Suggested by Arnold Robbins and Tom Tromey.
21459
21460 2001-12-14 Akim Demaille <akim@epita.fr>
21461
21462 * src/lex.c (literalchar): Simply return the char you decoded, non
21463 longer mess around with obstacks and int pointers.
21464 Adjust all callers.
21465
21466 2001-12-14 Akim Demaille <akim@epita.fr>
21467
21468 * src/lex.c (literalchar): Don't escape the special characters,
21469 just decode them, and keep them as char (before, eol was output as
21470 the 2 char string `\n' etc.).
21471 * src/output.c (output_rule_data): Use quotearg to output the
21472 token strings.
21473
21474 2001-12-13 Paul Eggert <eggert@twinsun.com>
21475
21476 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
21477 Do not infringe on the global user namespace when using C++.
21478 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
21479 All uses of `fprintf' and `stderr' changed.
21480
21481 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
21482
21483 2001-12-13 Akim Demaille <akim@epita.fr>
21484
21485 The computation of nullable is broken: it doesn't handle empty
21486 RHS's properly.
21487
21488 * tests/torture.at (GNU AWK Grammar): New.
21489 * tests/sets.at (Nullable): New.
21490 * src/nullable.c (set_nullable): Instead of blindly looping over
21491 `ritems', loop over the rules, and then over their rhs's.
21492
21493 Work around Autotest bugs.
21494
21495 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
21496 frame, because Autotest understand lines starting with a `+' as
21497 traces from the shell. Then, they are not processed properly.
21498 Admittedly an Autotest bug, but we don't have time to wait for
21499 Autotest to catch up.
21500 * tests/regression.at (Broken Closure): Adjust to the new table
21501 frames.
21502 Move to...
21503 * tests/sets.at: here.
21504
21505 2001-12-13 Akim Demaille <akim@epita.fr>
21506
21507 * src/closure.c (closure): Use nrules instead of playing tricks
21508 with BITS_PER_WORD.
21509
21510 2001-12-13 Akim Demaille <akim@epita.fr>
21511
21512 * src/print.c (print_actions): Output the handling of `$' as the
21513 traces do: shifting the token EOF. Before EOF was treated as a
21514 nonterminal.
21515 * tests/regression.at: Adjust some tests.
21516 * src/print_graph.c (print_core): Complete the set of items via
21517 closure. The next-to-final and final states are still unsatisfying,
21518 but that's to be addressed elsewhere.
21519 No longer output the rule numbers, but do output the state number.
21520 A single loop for the shifts + gotos is enough, but picked a
21521 distinct color for each.
21522 (print_graph): Initialize and finalize closure.
21523
21524 2001-12-13 Akim Demaille <akim@epita.fr>
21525
21526 * src/reader.c (readgram): Remove dead code, an strip useless
21527 braces.
21528 (get_type): Remove, unused.
21529
21530 2001-12-12 Akim Demaille <akim@epita.fr>
21531
21532 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
21533 on that of lib/error.c.
21534
21535 2001-12-12 Akim Demaille <akim@epita.fr>
21536
21537 Some hosts don't like `/' in includes.
21538
21539 * src/system.h: Include libgettext.h without qualifying the path.
21540 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
21541 $(top_srcdir).
21542
21543 2001-12-11 Marc Autret <autret_m@epita.fr>
21544
21545 * src/output.c (output_parser): Remove useless muscle.
21546
21547 2001-12-11 Marc Autret <autret_m@epita.fr>
21548
21549 * src/bison.simple: Remove #line just before %%epilogue. It
21550 is now handled in ...
21551 * src/reader.c (read_additionnal_code): Add the output of a
21552 #line for the epilogue.
21553
21554 2001-12-10 Marc Autret <autret_m@epita.fr>
21555
21556 * src/reader.c (copy_definition): Re-use CPP-outed code which
21557 replace precedent remove.
21558 * src/bison.simple: Remove #line before %%prologue because
21559 %%input-line is wrong at this time.
21560
21561 2001-12-10 Marc Autret <autret_m@epita.fr>
21562
21563 * src/reader.c (symbols_output): Clean up.
21564 * src/output.c (output_gram, output): Clean up.
21565
21566 2001-12-10 Akim Demaille <akim@epita.fr>
21567
21568 * src/lalr.c (initialize_lookaheads): New. Extracted from...
21569 * src/LR0.c (set_state_table): here.
21570 * src/lalr.c (lalr): Call it.
21571
21572 2001-12-10 Akim Demaille <akim@epita.fr>
21573
21574 * src/state.h (shifts): Remove the `number' member: shifts are
21575 attached to state, hence no longer need to be labelled with a
21576 state number.
21577
21578 2001-12-10 Akim Demaille <akim@epita.fr>
21579
21580 Now that states have a complete set of members, the linked list of
21581 shifts is useless: just fill directly the state's shifts member.
21582
21583 * src/state.h (shifts): Remove the `next' member.
21584 * src/LR0.c (first_state, last_state): Remove.
21585 Adjust the callers.
21586 (augment_automaton): Don't look for the shifts that must be added
21587 a shift on EOF: it is those of the state we looked for! But now,
21588 since shifts are attached, it is no longer needed to looking
21589 merely by its id: its number.
21590
21591 2001-12-10 Akim Demaille <akim@epita.fr>
21592
21593 * src/LR0.c (augment_automaton): Better variable locality.
21594 Remove an impossible branch: if there is a state corresponding to
21595 the start symbol being shifted, then there is shift for the start
21596 symbol from the initial state.
21597
21598 2001-12-10 Akim Demaille <akim@epita.fr>
21599
21600 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
21601 only when appropriate: when insert_start_shifting_state' is not
21602 invoked.
21603 * tests/regression.at (Rule Line Numbers): Adjust.
21604
21605 2001-12-10 Akim Demaille <akim@epita.fr>
21606
21607 * src/LR0.c (augment_automaton): Now that all states have shifts,
21608 merge the two cases addition shifts to the initial state.
21609
21610 2001-12-10 Akim Demaille <akim@epita.fr>
21611
21612 * src/lalr.c (set_state_table): Move to...
21613 * src/LR0.c: here.
21614 * src/lalr.c (lalr): Don't call it...
21615 * src/LR0.c (generate_states): do it.
21616 * src/LR0.h (first_state): Remove, only the table is used.
21617
21618 2001-12-10 Akim Demaille <akim@epita.fr>
21619
21620 * src/LR0.h (first_shift, first_reduction): Remove.
21621 * src/lalr.c: Don't use first_shift: find shifts through the
21622 states.
21623
21624 2001-12-10 Akim Demaille <akim@epita.fr>
21625
21626 * src/LR0.c: Attach shifts to states as soon as they are
21627 computed.
21628 * src/lalr.c (set_state_table): Instead of assigning shifts to
21629 state, just assert that the mapping was properly done.
21630
21631 2001-12-10 Akim Demaille <akim@epita.fr>
21632
21633 * src/LR0.c (insert_start_shift): Rename as...
21634 (insert_start_shifting_state): this.
21635 (insert_eof_shifting_state, insert_accepting_state): New.
21636 (augment_automaton): Adjust.
21637 Better locality of the variables.
21638 When looking if the start_symbol is shifted from the initial
21639 state, using `while (... symbol != start_symbol ...)' sounds
21640 better than `while (... symbol < start_symbol ...)': If fail
21641 to see how the order between symbols could be relevant!
21642
21643 2001-12-10 Akim Demaille <akim@epita.fr>
21644
21645 * src/getargs.h: Don't declare `spec_name_prefix' and
21646 `spec_file_prefix', declared by src/files.h.
21647 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
21648 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
21649 * src/output.c (prepare): Adjust.
21650 * src/reader.c (symbols_output): Likewise.
21651 * src/vmsgetargs.c: Vaguely adjust, but who cares?
21652
21653 2001-12-10 Akim Demaille <akim@epita.fr>
21654
21655 * src/muscle_tab.c (muscle_init): NULL is a better default than
21656 `"0"'.
21657
21658 2001-12-10 Akim Demaille <akim@epita.fr>
21659
21660 * src/reader.c (reader): Calling symbols_output once is enough.
21661
21662 2001-12-10 Akim Demaille <akim@epita.fr>
21663
21664 Now that states have a complete set of members, the linked list of
21665 reductions is useless: just fill directly the state's reductions
21666 member.
21667
21668 * src/state.h (struct reductions): Remove member `number' and
21669 `next'.
21670 * src/LR0.c (first_reduction, last_reduction): Remove.
21671 (save_reductions): Don't link the new reductions, store them in
21672 this_state.
21673 * src/lalr.c (set_state_table): No need to attach reductions to
21674 states, it's already done.
21675 * src/output.c (output_actions): No longer free the shifts, then
21676 the reductions, then the states: free all the states and their
21677 members.
21678
21679 2001-12-10 Akim Demaille <akim@epita.fr>
21680
21681 * src/options.c (OPTN, DRTV, BOTH): New.
21682 (option_table): Use them.
21683
21684 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
21685 the job of system.h.
21686 * src/options.c: Don't include stdio.h and xalloc.h for the same
21687 reasons.
21688
21689 2001-12-10 Akim Demaille <akim@epita.fr>
21690
21691 * src/output.c (output, prepare): Make sure the values of the
21692 muscles `action' and `prologue' are 0-terminated.
21693
21694 2001-12-10 Akim Demaille <akim@epita.fr>
21695
21696 Clean up GCC warnings.
21697
21698 * src/reader.c (copy_action): `buf' is not used.
21699 (parse_skel_decl): Be static.
21700 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
21701 * src/options.h (create_long_option_table): Have a real prototype.
21702 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
21703 (hash_delete_at): Return const void *.
21704 Adjust casts to preserve the const.
21705
21706 2001-12-10 Akim Demaille <akim@epita.fr>
21707
21708 * configure.in: Require 2.52g.
21709 M4 is not needed, but AUTOM4TE is.
21710 * m4/m4.m4: Remove.
21711 * tests/Makefile.am: Adjust.
21712
21713 2001-12-10 Akim Demaille <akim@epita.fr>
21714
21715 One structure for states is enough, even though theoretically
21716 there are LR(0) states and LALR(1) states.
21717
21718 * src/lalr.h (state_t): Remove.
21719 (state_table): Be state_t **, not state_t *.
21720 * src/state.h (core, CORE_ALLOC): Rename as...
21721 (state_t, STATE_ALLOC): this.
21722 Add the LALR(1) members: shifts, reductions, errs.
21723 * src/LR0.c (state_table): Rename as...
21724 (state_hash): this, to avoid name clashes with the global
21725 `state_table'.
21726 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
21727 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
21728
21729 2001-12-10 Akim Demaille <akim@epita.fr>
21730
21731 Bison dumps core on bash.y.
21732 Reported by Pascal Bart.
21733
21734 * src/warshall.c (bitmatrix_print): New.
21735 (TC): Use it.
21736 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
21737 j must be the outer loop.
21738 * tests/regression.at (Broken Closure): New.
21739
21740 2001-12-05 Akim Demaille <akim@epita.fr>
21741
21742 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
21743 its argument.
21744 Reported by Peter Hamorsky.
21745
21746 2001-12-05 Akim Demaille <akim@epita.fr>
21747
21748 * src/conflicts.c (err_table): Remove.
21749 (resolve_sr_conflict): Adjust.
21750 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
21751 Rename as...
21752 (state_t.reductions, state_t.shifts): this.
21753
21754 2001-12-05 Akim Demaille <akim@epita.fr>
21755
21756 * src/reduce.c (reduce_grammar_tables): No longer disable the
21757 removal of useless rules via CPP but via `if (0)', so that the
21758 compiler still check the code is valid.
21759 For instance, it should have noticed `rline' no longer exists: use
21760 the `line' member of rule_t.
21761 * src/gram.c (dummy, rline): Remove, unused.
21762
21763 2001-12-05 Akim Demaille <akim@epita.fr>
21764
21765 * src/output.c (pack_vector): Use assert, not berror.
21766 * src/main.c (berror): Remove, unused.
21767
21768 2001-12-05 Akim Demaille <akim@epita.fr>
21769
21770 New experimental feature: if --verbose --trace output all the
21771 items of a state, not only its kernel.
21772
21773 * src/print.c (print_core): If `trace_flag', then invoke closure
21774 before outputting the items of the state (print_core is no longer
21775 a correct name them).
21776 (print_results): Invoke new_closure/free_closure if needed.
21777
21778 2001-12-05 Akim Demaille <akim@epita.fr>
21779
21780 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
21781 * src/closure.c, src/closure.h (itemsetsize): Rename as...
21782 (nitemset): for consistency with the rest of the project.
21783
21784 2001-12-05 Akim Demaille <akim@epita.fr>
21785
21786 * src/closure.c (print_closure): Improve.
21787 (closure): Use it for printing input and output.
21788
21789 2001-12-05 Akim Demaille <akim@epita.fr>
21790
21791 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
21792 indexed by nonterminals.
21793
21794 2001-12-05 Akim Demaille <akim@epita.fr>
21795
21796 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
21797 what it was!).
21798 * src/warshall.h: Remove accidental duplication of the content.
21799
21800 2001-12-05 Akim Demaille <akim@epita.fr>
21801
21802 * src/closure.c (set_fderives): De-obfuscate.
21803
21804 2001-12-05 Akim Demaille <akim@epita.fr>
21805
21806 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
21807
21808 2001-12-05 Akim Demaille <akim@epita.fr>
21809
21810 * src/closure.c (set_firsts): De-obfuscate.
21811
21812 2001-12-05 Akim Demaille <akim@epita.fr>
21813
21814 * src/output.c (action_row): De-obfuscate
21815 using the good o' techniques: arrays not pointers, variable
21816 locality, BITISSET, RESETBIT etc.
21817
21818 2001-12-05 Akim Demaille <akim@epita.fr>
21819
21820 Pessimize the code to simplify it: from now on, all the states
21821 have a valid SHIFTS, which NSHIFTS is possibly 0.
21822
21823 * src/LR0.c (shifts_new): Be global and move to..
21824 * src/state.c, src/state.h: here.
21825 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
21826 * src/print_graph: Adjust.
21827
21828 2001-12-05 Akim Demaille <akim@epita.fr>
21829
21830 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
21831 * src/conflicts.c: Use it.
21832 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
21833 incorrectly ``simplified''.
21834
21835 2001-12-05 Akim Demaille <akim@epita.fr>
21836
21837 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
21838 using the good o' techniques: arrays not pointers, variable
21839 locality, BITISSET, RESETBIT etc.
21840
21841 2001-12-05 Akim Demaille <akim@epita.fr>
21842
21843 * src/state.h (SHIFT_SYMBOL): New.
21844 * src/conflicts.c: Use it to deobfuscate.
21845
21846 2001-12-05 Akim Demaille <akim@epita.fr>
21847
21848 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
21849 (print_reductions): De-obfuscate using the good o' techniques:
21850 arrays not pointers, variable locality, BITISSET.
21851
21852 2001-12-05 Akim Demaille <akim@epita.fr>
21853
21854 * src/conflicts.c (print_reductions): Arrays, not pointers.
21855 Use BITISSET.
21856
21857 2001-12-05 Akim Demaille <akim@epita.fr>
21858
21859 * src/conflicts.c (print_reductions): Pessimize, but clarify.
21860
21861 2001-12-05 Akim Demaille <akim@epita.fr>
21862
21863 * src/conflicts.c (print_reductions): Improve variable locality.
21864
21865 2001-12-05 Akim Demaille <akim@epita.fr>
21866
21867 * src/conflicts.c (print_reductions): Pessimize, but clarify.
21868
21869 2001-12-05 Akim Demaille <akim@epita.fr>
21870
21871 * src/conflicts.c (print_reductions): Improve variable locality.
21872
21873 2001-12-05 Akim Demaille <akim@epita.fr>
21874
21875 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
21876 * src/lalr.c: Use them.
21877
21878 2001-12-05 Akim Demaille <akim@epita.fr>
21879
21880 * src/LR0.c (augment_automaton): Formatting changes.
21881 Better variable locality.
21882
21883 2001-12-05 Akim Demaille <akim@epita.fr>
21884
21885 * src/lalr.c (matrix_print): New.
21886 (transpose): Use it.
21887 Use arrays instead of pointers.
21888
21889 2001-12-05 Akim Demaille <akim@epita.fr>
21890
21891 * src/lalr.c (maxrhs): Move to...
21892 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
21893 * src/lalr.c (build_relations): Adjust.
21894
21895 2001-12-05 Akim Demaille <akim@epita.fr>
21896
21897 * src/lalr.c (transpose): Free the memory allocated to the
21898 argument, as it is replaced by the results by the unique caller.
21899 (build_relations): Merely invoke transpose: it handles the memory
21900 deallocation.
21901 Improve variable locality.
21902 Avoid variables used as mere abbreviations.
21903 (compute_lookaheads): Use arrays instead of pointers.
21904
21905 2001-12-05 Akim Demaille <akim@epita.fr>
21906
21907 * src/lalr.c (initialize_F): Improve variable locality.
21908 Avoid variables used as mere abbreviations.
21909
21910 2001-12-05 Akim Demaille <akim@epita.fr>
21911
21912 * src/derives.c (print_derives): Display the ruleno.
21913 * src/lalr.c (initialize_F, transpose): Better variable locality
21914 to improve readability.
21915 Avoid variables used as mere abbreviations.
21916
21917 2001-12-05 Akim Demaille <akim@epita.fr>
21918
21919 * src/lalr.c (traverse): Use arrays instead of pointers.
21920
21921 2001-12-05 Akim Demaille <akim@epita.fr>
21922
21923 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
21924 the handling of squeue.
21925 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
21926
21927 2001-12-05 Akim Demaille <akim@epita.fr>
21928
21929 Because useless nonterminals are now kept alive (instead of being
21930 `destroyed'), we now sometimes examine them, and store information
21931 related to them. Hence we need to know their number, and adjust
21932 memory allocations.
21933
21934 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
21935 static.
21936 * src/LR0.c (allocate_itemsets): The memory allocated to
21937 `symbol_count' was used for two different purpose: once to count
21938 the number of occurrences of each symbol, and later reassigned to
21939 `shift_symbol', containing the symbol that can be shifted from a
21940 given state.
21941 Deobfuscate, i.e., allocate, use and free `symbol_count' here
21942 only, and...
21943 (new_itemsets): Allocate `shift_symbol' here.
21944 (allocate_itemsets): symbol_count includes useless nonterminals.
21945 Make room for them.
21946 (free_storage): Use `free', not `XFREE', for pointers that cannot
21947 be null.
21948
21949 2001-12-05 Akim Demaille <akim@epita.fr>
21950
21951 * src/nullable.c (set_nullable): Deobfuscate the handling of
21952 ritem.
21953 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
21954
21955 2001-12-05 Akim Demaille <akim@epita.fr>
21956
21957 * src/gram.c, src/gram.h (ritem_print): New.
21958 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
21959 (This useless function was defined only to work around VMS linkers
21960 that can't handle compilation units with variables only).
21961 * src/reduce.c (dump_grammar): Use it to trace the construction of
21962 ritem.
21963
21964 2001-12-04 Paul Eggert <eggert@twinsun.com>
21965
21966 * src/bison.simple (union yyalloc): Change member names
21967 to be the same as the stack names.
21968 (yyparse): yyptr is now union yyalloc *, not char *.
21969 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
21970 and may generate better code on some machines.
21971 (yystpcpy): Use prototype if __STDC__ is defined, not just
21972 if __cplusplus is defined.
21973
21974 2001-11-30 Akim Demaille <akim@epita.fr>
21975
21976 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
21977 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
21978 Gettext doesn't compile cleanly, and dies with -Werror.
21979 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
21980 Include WARNING_CFLAGS here.
21981 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
21982 before being defined.
21983
21984 2001-11-27 Paul Eggert <eggert@twinsun.com>
21985
21986 * lib/quotearg.h (quotearg_n, quotearg_n_style):
21987 First arg is int, not unsigned.
21988 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
21989 (SIZE_MAX, UINT_MAX): New macros.
21990 (quotearg_n_options): Abort if N is negative.
21991 Avoid overflow check on hosts where size_t is 64 bits and int
21992 is 32 bits, as overflow is impossible there.
21993 Fix off-by-one typo that caused unnecessary reallocation.
21994
21995 2001-11-29 Paul Eggert <eggert@twinsun.com>
21996
21997 Name space cleanup in generated parser.
21998
21999 * doc/bison.texinfo (Bison Parser): Discuss system headers
22000 and their effect on the user name space.
22001
22002 * src/bison.simple:
22003 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
22004 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
22005 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
22006
22007 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
22008 on user names when possible.
22009
22010 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
22011 Simplify test for whather <alloca.h> exists.
22012
22013 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
22014
22015 (<stdio.h>): Include if YYDEBUG.
22016
22017 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
22018 ! defined (yyoverflow) && ! defined (yymemcpy).
22019
22020 (yymemcpy, yyparse): Rename local variables as needed so that
22021 they all begin with 'yy'.
22022
22023 (yystrlen, yystpcpy): New functions.
22024
22025 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
22026 All uses changed.
22027
22028 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
22029 instead of relying on string.h functions. Use YYSTACK_ALLOC
22030 and YYSTACK_FREE instead of malloc and free.
22031
22032 2001-11-30 Akim Demaille <akim@epita.fr>
22033
22034 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
22035 before their first uses.
22036 (YYBISON, YYPURE): Move to the top of the output.
22037
22038 2001-11-30 Akim Demaille <akim@epita.fr>
22039
22040 * tests/reduce.at (Useless Nonterminals): Fix.
22041
22042 2001-11-30 Akim Demaille <akim@epita.fr>
22043
22044 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
22045 if body instead of `;' to pacify GCC's warnings.
22046
22047 2001-11-30 Akim Demaille <akim@epita.fr>
22048
22049 Instead of mapping the LHS of unused rules to -1, keep the LHS
22050 valid, but flag the rules as invalid.
22051
22052 * src/gram.h (rule_t): `useful' is a new member.
22053 * src/print.c (print_grammar): Adjust.
22054 * src/derives.c (set_derives): Likewise.
22055 * src/reader.c (packgram, reduce_output): Likewise.
22056 * src/reduce.c (reduce_grammar_tables): Likewise.
22057 * tests/reduce.at (Underivable Rules, Useless Rules): New.
22058
22059 2001-11-30 Akim Demaille <akim@epita.fr>
22060
22061 * src/reduce.c (reduce_output): Formatting changes.
22062 * src/print.c (print_results, print_grammar): Likewise.
22063 * tests/regression.at (Rule Line Numbers)
22064 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
22065
22066 2001-11-30 Akim Demaille <akim@epita.fr>
22067
22068 * src/reduce.c (nonterminals_reduce): Instead of throwing away
22069 useless nonterminals, move them at the end of the symbol arrays.
22070 (reduce_output): Adjust.
22071 * tests/reduce.at (Useless Nonterminals): Adjust.
22072
22073 2001-11-30 Akim Demaille <akim@epita.fr>
22074
22075 * src/reduce.c: Various comment/formatting changes.
22076 (nonterminals_reduce): New, extracted from...
22077 (reduce_grammar_tables): here.
22078 (reduce_grammar): Call nonterminals_reduce.
22079
22080 2001-11-29 Paul Eggert <eggert@twinsun.com>
22081
22082 * src/bison.simple (YYSTACK_REALLOC): Remove.
22083 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
22084 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
22085 New macros.
22086 (union yyalloc): New type.
22087 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
22088 an arbitrary restriction on hosts where size_t is wider than int.
22089
22090 (yyparse): Don't dump core if alloca or malloc fails; instead, report
22091 a parser stack overflow. Allocate just one block of memory for all
22092 three stacks, instead of allocating three blocks; this typically is
22093 faster and reduces fragmentation.
22094
22095 Do not limit the number of items in the stack to a value that fits
22096 in 'int', as this is an arbitrary limit on hosts with 64-bit
22097 size_t and 32-bit int.
22098
22099 2001-11-29 Marc Autret <autret_m@epita.fr>
22100
22101 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
22102 of defining YYERROR_VERBOSE.
22103 [AT_DATA]: $4 is now out of C declarations in the prologue.
22104
22105 2001-11-28 Marc Autret <autret_m@epita.fr>
22106
22107 * src/reader.c (parse_dquoted_param): New.
22108 (parse_skel_decl): Use it.
22109 * src/lex.h: Add its prototype.
22110 * src/lex.c (literalchar): Become not static.
22111
22112 2001-11-28 Marc Autret <autret_m@epita.fr>
22113
22114 * src/output.h: And put its extern declaration here.
22115 * src/output.c (error_verbose): Define here.
22116 (prepare): Echo name modification.
22117 * src/getargs.h: Clean its extern declaration.
22118 * src/getargs.c (error_verbose_flag): Remove.
22119 (getargs): Remove case 'e'.
22120 * src/options.c (option_table): 'error-verbose' is now seen as simple
22121 percent option.
22122 Include output.h.
22123
22124 * src/reader.c (read_declarations): Remove case tok_include.
22125 (parse_include_decl): Remove.
22126 * src/lex.h (token_t): Remove tok_include.
22127 * src/options.c (option_table): 'include' is now a simple command line
22128 option.
22129
22130 2001-11-28 Marc Autret <autret_m@epita.fr>
22131
22132 * src/bison.simple: Adjust muscle names.
22133 * src/muscle_tab.c (muscle_init): Also rename the muscles.
22134 * src/output.c (prepare): s/_/-/ for the muscles names.
22135 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
22136
22137 2001-11-28 Marc Autret <autret_m@epita.fr>
22138
22139 * src/bison.simple: Fix debug.
22140 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
22141
22142 2001-11-28 Akim Demaille <akim@epita.fr>
22143
22144 * src/LR0.c (shifts_new): New.
22145 (save_shifts, insert_start_shift, augment_automaton): Use it.
22146
22147 2001-11-28 Akim Demaille <akim@epita.fr>
22148
22149 * src/closure.c (closure): `b' and `ruleno' denote the same value:
22150 keep ruleno only.
22151
22152 2001-11-28 Akim Demaille <akim@epita.fr>
22153
22154 * src/closure.c (closure): Instead of looping over word in array
22155 then bits in words, loop over bits in array.
22156
22157 2001-11-28 Akim Demaille <akim@epita.fr>
22158
22159 * src/closure.c (closure): No longer optimize the special case
22160 where all the bits of `ruleset[r]' are set to 0, to make the code
22161 clearer.
22162
22163 2001-11-28 Akim Demaille <akim@epita.fr>
22164
22165 * src/closure.c (closure): `r' and `c' are new variables, used to
22166 de-obfuscate accesses to RULESET and CORE.
22167
22168 2001-11-28 Akim Demaille <akim@epita.fr>
22169
22170 * src/reduce.c (reduce_print): Use ngettext.
22171 (dump_grammar): Improve the trace accuracy.
22172
22173 2001-11-28 Akim Demaille <akim@epita.fr>
22174
22175 * src/reduce.c (dump_grammar): Don't translate trace messages.
22176
22177 2001-11-28 Akim Demaille <akim@epita.fr>
22178
22179 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
22180 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
22181 as all tags are free'ed afterwards.
22182 From Enrico Scholz.
22183
22184 2001-11-27 Paul Eggert <eggert@twinsun.com>
22185
22186 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
22187 use alloca when we didn't want to, and vice versa.
22188
22189 2001-11-27 Marc Autret <autret_m@epita.fr>
22190
22191 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
22192 initialization.
22193 * src/output.c (prepare): Remove its update.
22194
22195 2001-11-27 Marc Autret <autret_m@epita.fr>
22196
22197 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
22198 Use %error-verbose.
22199
22200 2001-11-27 Marc Autret <autret_m@epita.fr>
22201
22202 * src/bison.simple: Remove YYERROR_VERBOSE using.
22203 Use %%error_verbose.
22204 (yyparse): Likewise.
22205 * src/output.c (prepare): Give its final value.
22206 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
22207 * src/getargs.h: Add its extern declaration.
22208 * src/getargs.c (error_verbose_flag): New int.
22209 (getargs): Update to catch new case.
22210 * src/options.c (option_table): 'error-verbose' is a new option.
22211 (shortopts): Update.
22212
22213 2001-11-27 Akim Demaille <akim@epita.fr>
22214
22215 * src/system.h: Use intl/libgettext.h.
22216 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
22217
22218 2001-11-27 Akim Demaille <akim@epita.fr>
22219
22220 * tests/torture.at (Exploding the Stack Size with Malloc):
22221 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
22222
22223 2001-11-27 Akim Demaille <akim@epita.fr>
22224
22225 * src/files.c: Include error.h.
22226 Reported by Hans Aberg.
22227
22228 2001-11-26 Marc Autret <autret_m@epita.fr>
22229
22230 * src/reader.c (parse_include_decl): New, not yet implemented.
22231 (read_declarations): Add case tok_include.
22232 * src/getargs.h (include): Add its extern definition.
22233 * src/getargs.c (include): New const char *.
22234 (getargs): Add case '-I'.
22235 * src/options.c (option_table): Add include as command line and
22236 percent option.
22237 * src/lex.h (token_t): Add tok_include.
22238
22239 2001-11-26 Akim Demaille <akim@epita.fr>
22240
22241 * src/reader.c (readgram): Make sure rules for mid-rule actions
22242 have a lineno equal to that of their host rule.
22243 Reported by Hans Aberg.
22244 * tests/regression.at (Rule Line Numbers): New.
22245
22246 2001-11-26 Akim Demaille <akim@epita.fr>
22247
22248 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
22249 size_ts.
22250
22251 2001-11-26 Akim Demaille <akim@epita.fr>
22252
22253 * src/complain.c, src/complain.h (error): Remove, provided by
22254 lib/error.[ch].
22255
22256 2001-11-26 Akim Demaille <akim@epita.fr>
22257
22258 * src/reader.c (read_declarations): Don't abort on tok_illegal,
22259 issue an error message.
22260 * tests/regression.at (Invalid %directive): New.
22261 Reported by Hans Aberg.
22262
22263 2001-11-26 Akim Demaille <akim@epita.fr>
22264
22265 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
22266 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
22267
22268 2001-11-26 Akim Demaille <akim@epita.fr>
22269
22270 * src/conflicts.c (conflicts_print): Don't complain at all when
22271 there are no reduce/reduce conflicts, and as many shift/reduce
22272 conflicts as expected.
22273 * tests/regression.at (%expect right): Adjust.
22274
22275 2001-11-23 Akim Demaille <akim@epita.fr>
22276
22277 * lib/alloca.c: Update, from fileutils.
22278
22279 2001-11-23 Akim Demaille <akim@epita.fr>
22280
22281 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
22282
22283 2001-11-23 Akim Demaille <akim@epita.fr>
22284
22285 * src/system.h: Include alloca.h.
22286 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
22287
22288 2001-11-23 Akim Demaille <akim@epita.fr>
22289
22290 * src/print_graph.c (print_actions): Remove `rule', unused.
22291 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
22292 pacify GCC's signed < unsigned warnings.
22293 * src/closure.c (itemsetsize): Likewise.
22294 * src/reader.c (symbol_list_new): Static.
22295
22296 2001-11-23 Akim Demaille <akim@epita.fr>
22297
22298 Attaching lineno to buckets is stupid, since only one copy of each
22299 symbol is kept, only the line of the first occurrence is kept too.
22300
22301 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
22302 * src/reader.c (rline_allocated): Remove, unused.
22303 (symbol_list): Have a `line' member.
22304 (symbol_list_new): New.
22305 (readgram): Use it.
22306 * src/print.c (print_grammar): Output the rule line numbers.
22307 * tests/regression.at (Solved SR Conflicts)
22308 (Unresolved SR Conflicts): Adjust.
22309 Reported by Hans Aberg.
22310
22311 2001-11-22 Marc Autret <autret_m@epita.fr>
22312
22313 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
22314
22315 2001-11-22 Marc Autret <autret_m@epita.fr>
22316
22317 * src/muscle_tab.c (muscle_init): Remove initialization of
22318 skeleton muscle.
22319 * src/output.c (output_master_parser): Do it here.
22320
22321 2001-11-20 Akim Demaille <akim@epita.fr>
22322
22323 * po/sv.po: New.
22324 * configure.in (ALL_LINGUAS): Adjust.
22325 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
22326 longer contains strings to translate.
22327
22328 2001-11-19 Akim Demaille <akim@epita.fr>
22329
22330 * src/conflicts.c (conflicts_print): Add a missing \n.
22331
22332 2001-11-19 Akim Demaille <akim@epita.fr>
22333
22334 * src/nullable.c (nullable_print): New.
22335 (set_nullable): Call it when tracing.
22336 Better locality of variables.
22337
22338 2001-11-19 Akim Demaille <akim@epita.fr>
22339
22340 * src/print.c (print_actions): Better locality of variables.
22341
22342 2001-11-19 Akim Demaille <akim@epita.fr>
22343
22344 * src/derives.c (print_derives): Fix and enrich.
22345 * src/closure.c (print_fderives): Likewise.
22346
22347 2001-11-19 Akim Demaille <akim@epita.fr>
22348
22349 * src/closure.c (itemsetend): Remove, replaced with...
22350 (itemsetsize): new.
22351
22352 2001-11-19 Akim Demaille <akim@epita.fr>
22353
22354 * src/LR0.c (kernel_end): Remove, replaced with...
22355 (kernel_size): new.
22356
22357 2001-11-19 Akim Demaille <akim@epita.fr>
22358
22359 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
22360 to clarify.
22361
22362 2001-11-19 Akim Demaille <akim@epita.fr>
22363
22364 * src/closure.c (closure): Use arrays instead of pointers to clarify.
22365
22366 2001-11-19 Akim Demaille <akim@epita.fr>
22367
22368 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
22369 trace messages.
22370 * src/LR0.c: Likewise.
22371 (allocate_itemsets): Use arrays instead of pointers to clarify.
22372
22373 2001-11-19 Akim Demaille <akim@epita.fr>
22374
22375 * src/getargs.c (statistics_flag): Replace with...
22376 (trace_flag): New.
22377 (longopts): Accept --trace instead of --statistics.
22378 * src/getargs.h, src/options.c: Adjust.
22379 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
22380 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
22381
22382 2001-11-19 Akim Demaille <akim@epita.fr>
22383
22384 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
22385 pointers to clarify the code.
22386 (save_reductions, save_shifts): Factor common parts of alternatives.
22387
22388 2001-11-19 Akim Demaille <akim@epita.fr>
22389
22390 * src/LR0.c (new_state, get_state): Complete TRACE code.
22391 * src/closure.c: Include `reader.h' to get `tags', needed by the
22392 trace code.
22393 Rename the conditional DEBUG as TRACE.
22394 Output consistently TRACEs to stderr, not stdout.
22395 * src/derives.c: Likewise.
22396 * src/reduce.c: (inaccessable_symbols): Using if is better style
22397 than goto.
22398 Use `#if TRACE' instead of `#if 0' for tracing code.
22399
22400 2001-11-19 Akim Demaille <akim@epita.fr>
22401
22402 * src/system.h (LIST_FREE, shortcpy): New.
22403 * src/LR0.c: Use them.
22404 * src/output.c (free_itemsets, free_reductions, free_shifts):
22405 Remove, replaced by LIST_FREE.
22406
22407 2001-11-19 Akim Demaille <akim@epita.fr>
22408
22409 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
22410 (REDUCTIONS_ALLOC): New.
22411 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
22412 allocation.
22413
22414 2001-11-19 Akim Demaille <akim@epita.fr>
22415
22416 * src/LR0.c (new_state): Complete trace code.
22417 * src/nullable.c (set_nullable): Don't translate traces.
22418
22419 2001-11-19 Akim Demaille <akim@epita.fr>
22420
22421 * src/print_graph.c (print_core): Better locality of variables.
22422 * src/print.c (print_core): Likewise.
22423
22424 2001-11-19 Akim Demaille <akim@epita.fr>
22425
22426 * src/vcg.c: You do the output, so you are responsible of the
22427 handling of VCG syntax, in particular: use quotearg.
22428 * src/print_graph.c: Don't.
22429 (print_actions): Don't output the actions as part of the nodes,
22430 since that's the job of the edges.
22431 (print_state): Don't output by hand: fill the node description,
22432 and ask for its output.
22433
22434 2001-11-19 Akim Demaille <akim@epita.fr>
22435
22436 * src/bison.simple (yyparse): When verbosely reporting an error,
22437 no longer put additional quotes around token names.
22438 * tests/calc.at: Adjust.
22439
22440 2001-11-19 Akim Demaille <akim@epita.fr>
22441
22442 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
22443 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
22444 * src/output.c: Adjust.
22445
22446 2001-11-19 Akim Demaille <akim@epita.fr>
22447
22448 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
22449 (rule_t): this.
22450 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
22451
22452 2001-11-19 Akim Demaille <akim@epita.fr>
22453
22454 * src/gram.h (rule_t): New.
22455 (rule_table): New.
22456 (rrhs, rlhs): Remove, part of state_t.
22457 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
22458 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
22459 * src/reader.c, src/reduce.c: Adjust.
22460
22461 2001-11-19 Akim Demaille <akim@epita.fr>
22462
22463 * src/reader.c (symbols_output): New, extracted from...
22464 (packsymbols): Here.
22465 (reader): Call it.
22466
22467 2001-11-19 Akim Demaille <akim@epita.fr>
22468
22469 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
22470 (maxrhs): this new function.
22471
22472 2001-11-19 Akim Demaille <akim@epita.fr>
22473
22474 * src/lalr.c (F): New macro to access the variable F.
22475 Adjust.
22476
22477 2001-11-19 Akim Demaille <akim@epita.fr>
22478
22479 * src/lalr.h (LA): New macro to access the variable LA.
22480 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
22481 * src/lalr.c: Adjust.
22482
22483 2001-11-19 Akim Demaille <akim@epita.fr>
22484
22485 * src/lalr.c (initialize_LA): Only initialize LA. Let...
22486 (set_state_table): handle the `lookaheads' members.
22487
22488 2001-11-19 Akim Demaille <akim@epita.fr>
22489
22490 * src/lalr.h (lookaheads): Removed array, whose contents is now
22491 a member of...
22492 (state_t): this structure.
22493 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
22494 Adjust.
22495
22496 2001-11-19 Akim Demaille <akim@epita.fr>
22497
22498 * src/lalr.h (consistent): Removed array, whose contents is now
22499 a member of...
22500 (state_t): this structure.
22501 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
22502 Adjust.
22503
22504 2001-11-19 Akim Demaille <akim@epita.fr>
22505
22506 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
22507 contents are now members of...
22508 (state_t): this structure.
22509 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
22510 Adjust.
22511
22512 2001-11-19 Akim Demaille <akim@epita.fr>
22513
22514 * src/lalr.h (state_t): New.
22515 (state_table): Be a state_t * instead of a core **.
22516 (accessing_symbol): Remove, part of state_t.
22517 * src/lalr.c: Adjust.
22518 (set_accessing_symbol): Merge into...
22519 (set_state_table): this.
22520 * src/print_graph.c, src/conflicts.c: Adjust.
22521
22522 2001-11-14 Akim Demaille <akim@epita.fr>
22523
22524 * tests/calc.at, tests/output.at, tests/regression.at,
22525 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
22526 now the tests are run in private dirs, therefore AC_CLEANUP and
22527 family can be simplified to 0-ary.
22528 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
22529 use abs. path to find config.h.
22530 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
22531 stderr, there can be way too much random noise.
22532 Instead pass -Werror to GCC and rely on the exit status.
22533 Reported by Wolfram Wagner.
22534
22535 2001-11-14 Akim Demaille <akim@epita.fr>
22536
22537 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
22538 defined only if yyoverflow is defined, to avoid `warning: unused
22539 variable `yyvs1''.
22540 Reported by The Test Suite.
22541
22542 2001-11-14 Akim Demaille <akim@epita.fr>
22543
22544 * src/print.c: Include reduce.h.
22545 Reported by Hans Aberg.
22546
22547 2001-11-14 Akim Demaille <akim@epita.fr>
22548
22549 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
22550 Revert a previous patch: these are really const.
22551 * src/conflicts.c (conflict_report): Additional useless pair of
22552 braces to pacify GCC's warnings for `if () if () {} else {}'.
22553 * src/lex.c (parse_percent_token): Replace equal_offset with
22554 arg_offset.
22555 arg is const.
22556 Be sure to strdup `arg' when used, since there is no reason for
22557 token_buffer not to change.
22558
22559 2001-11-14 Akim Demaille <akim@epita.fr>
22560
22561 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
22562 definition.
22563 * src/main.c (main): Use them.
22564 Suggested by Hans Aberg.
22565
22566 2001-11-12 Akim Demaille <akim@epita.fr>
22567
22568 * src/system.h (ngettext): Now that we use ngettext, be sure to
22569 provide a default definition when NLS are not used.
22570
22571 2001-11-12 Akim Demaille <akim@epita.fr>
22572
22573 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
22574 Use @kbd to denote user input.
22575 (Language and Grammar): ANSIfy the example.
22576 Adjust its layout for info/notinfo.
22577 (Location Tracking Calc): Output error messages to stderr.
22578 Output locations in a more GNUtically correct way.
22579 Fix a couple of Englishos.
22580 Adjust @group/@end group pairs.
22581
22582 2001-11-12 Akim Demaille <akim@epita.fr>
22583
22584 %expect was not functioning at all.
22585
22586 * src/conflicts.c (expected_conflicts): Set to -1.
22587 (conflict_report): Use ngettext.
22588 (conflicts_print): Check %expect and make its violation an error.
22589 * doc/bison.texinfo (Expect Decl): Adjust.
22590 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
22591 * tests/regression.at (%expect not enough, %expect right)
22592 (%expect too much): New.
22593
22594 2001-11-12 Akim Demaille <akim@epita.fr>
22595
22596 * tests/regression.at (Conflicts): Rename as...
22597 (Unresolved SR Conflicts): this.
22598 (Solved SR Conflicts): New.
22599
22600 2001-11-12 Akim Demaille <akim@epita.fr>
22601
22602 * src/reduce.c (print_results): Rename as...
22603 (reduce_output): This.
22604 Output to OUT, passed as argument, instead of output_obstack.
22605 (dump_grammar): Likewise.
22606 (reduce_free): New.
22607 Also free V1.
22608 (reduce_grammar): No longer call reduce_output, since...
22609 * src/print.c (print_results): do it.
22610 * src/main.c (main): Call reduce_free;
22611
22612 2001-11-12 Akim Demaille <akim@epita.fr>
22613
22614 * src/conflicts.c (print_reductions): Accept OUT as argument.
22615 Output to it, not to output_obstack.
22616 * src/print.c (print_actions): Adjust.
22617
22618 2001-11-12 Akim Demaille <akim@epita.fr>
22619
22620 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
22621 the result instead of using...
22622 (src_total, rrc_total, src_count, rrc_count): Remove.
22623 (any_conflicts): Remove.
22624 (print_conflicts): Split into...
22625 (conflicts_print, conflicts_output): New.
22626 * src/conflicts.h: Adjust.
22627 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
22628 * src/print.c (print_grammar): Issue `\n' between two rules.
22629 * tests/regression.at (Conflicts): New.
22630 Reported by Tom Lane.
22631
22632 2001-11-12 Akim Demaille <akim@epita.fr>
22633
22634 * tests/regression.at (Invalid input): Remove, duplicate with
22635 ``Invalid input: 1''.
22636
22637 2001-11-12 Akim Demaille <akim@epita.fr>
22638
22639 * tests/torture.at (AT_DATA_STACK_TORTURE)
22640 (Exploding the Stack Size with Alloca)
22641 (Exploding the Stack Size with Malloc): New.
22642
22643 2001-11-12 Akim Demaille <akim@epita.fr>
22644
22645 * src/bison.simple (YYSTACK_REALLOC): New.
22646 (yyparse) [!yyoverflow]: Use it and free the old stack.
22647 Reported by Per Allansson.
22648
22649 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
22650
22651 * src/bison.simple: Define type yystype instead of YYSTYPE, and
22652 define CPP macro, which substitute YYSTYPE by yystype.
22653 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
22654 with yyltype/YYLTYPE. This allows inclusion of the generated
22655 header within the parser if the compiler, such as GGC, accepts
22656 multiple equivalent #defines.
22657 From Akim.
22658
22659 2001-11-05 Akim Demaille <akim@epita.fr>
22660
22661 * src/reader.c (symbols_output): New, extracted from...
22662 (packsymbols): here.
22663 (reader): Adjust.
22664
22665 2001-11-05 Akim Demaille <akim@epita.fr>
22666
22667 * src/lex.c (parse_percent_token): s/quotearg/quote/.
22668
22669 2001-11-05 Akim Demaille <akim@epita.fr>
22670
22671 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
22672 pattern.
22673
22674 2001-11-05 Akim Demaille <akim@epita.fr>
22675
22676 * src/options.h (struct option_table_struct): set_flags is void*.
22677 * src/options.c (longopts): Support `--output' and `%output'.
22678 (usage): Adjust.
22679 * src/lex.h (tok_setopt): Remove, replaced with...
22680 (tok_intopt, tok_stropt): these new guys.
22681 * src/lex.c (getopt.h): Not needed.
22682 (token_buffer, unlexed_token_buffer): Not const.
22683 (percent_table): Promote `-' over `_' in directive names.
22684 Active `%name-prefix', `file-prefix', and `output'.
22685 (parse_percent_token): Accept possible arguments to directives.
22686 Promote `-' over `_' in directive names.
22687
22688 2001-11-04 Akim Demaille <akim@epita.fr>
22689
22690 * doc/bison.texinfo (Decl Summary): Split the list into
22691 `directives for grammars' and `directives for bison'.
22692 Sort'em.
22693 Add description of `%name-prefix', `file-prefix', and `output'.
22694 Promote `-' over `_' in directive names.
22695 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
22696 Simplify the description of `--name-prefix'.
22697 Promote `-' over `_' in directive names.
22698 Promote `--output' over `--output-file'.
22699 Fix the description of `--defines'.
22700 * tests/output.at: Exercise %file-prefix and %output.
22701
22702 2001-11-02 Akim Demaille <akim@epita.fr>
22703
22704 * doc/refcard.tex: Update.
22705
22706 2001-11-02 Akim Demaille <akim@epita.fr>
22707
22708 * src/symtab.h (SUNDEF): New.
22709 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
22710 stand for `uninitialized', instead of 0.
22711 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
22712 * src/lex.c (lex): Adjust.
22713
22714 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
22715 Number it 0.
22716 Let yylex return it instead of a plain 0.
22717 Reported by Dick Streefland.
22718
22719 2001-11-02 Akim Demaille <akim@epita.fr>
22720
22721 * tests/regression.at (Mixing %token styles): New test.
22722
22723 2001-11-02 Akim Demaille <akim@epita.fr>
22724
22725 * src/reader.c (parse_thong_decl): Formatting changes.
22726 (token_translations_init): New, extracted from...
22727 (packsymbols): Here.
22728 Adjust.
22729
22730 2001-11-01 Akim Demaille <akim@epita.fr>
22731
22732 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
22733 Check that `9foo.y' produces correct cpp guards.
22734 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
22735 guards.
22736 Reported by Wwp.
22737
22738 2001-11-01 Akim Demaille <akim@epita.fr>
22739
22740 * tests/regression.at (Invalid input: 2): New.
22741 * src/lex.c (unlexed_token_buffer): New.
22742 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
22743 too.
22744 Reported by Wwp.
22745
22746 2001-11-01 Akim Demaille <akim@epita.fr>
22747
22748 * tests/calc.at: Catch up with 1.30.
22749 * configure.in: Bump to 1.49a.
22750 Adjust to newer Autotest.
22751
22752 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
22753
22754 * src/conflicts.c: Move global variables rrc_total and src_total ...
22755 (print_conflicts): here.
22756 * src/output.c (output): Free global variable user_toknums.
22757 * src/lex.c (token_obstack): Become static.
22758
22759 2001-10-18 Akim Demaille <akim@epita.fr>
22760
22761 * tests/atlocal.in (GCC): Add.
22762 * tests/calc.at: s/m4_match/m4_bmatch/.
22763 s/m4_patsubst/m4_bpatsubst/.
22764 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
22765 * configure.in: AC_SUBST(GCC).
22766
22767 2001-10-14 Marc Autret <autret_m@epita.fr>
22768
22769 * src/options.c (create_long_option_table): Fix.
22770
22771 2001-10-10 Akim Demaille <akim@epita.fr>
22772
22773 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
22774
22775 2001-10-04 Akim Demaille <akim@epita.fr>
22776
22777 * src/reader.c (parse_union_decl): Push the caracters in
22778 union_obstack, not attrs_obstack.
22779
22780 2001-10-04 Akim Demaille <akim@epita.fr>
22781
22782 Merge in the branch 1.29.
22783
22784 * src/reader.c (packsymbols): Use a temporary obstack for
22785 `%%tokendef', since output_stack is already used elsewhere.
22786
22787 2001-10-02 Akim Demaille <akim@epita.fr>
22788
22789 Bump 1.29d.
22790
22791 2001-10-02 Akim Demaille <akim@epita.fr>
22792
22793 Version 1.29c.
22794
22795 2001-10-02 Akim Demaille <akim@epita.fr>
22796
22797 * tests/regression.at (Invalid CPP headers): New.
22798 From Alexander Belopolsky.
22799 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
22800
22801 2001-10-02 Akim Demaille <akim@epita.fr>
22802
22803 * tests/regression.at (Invalid input): New.
22804 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
22805 Reported by Shura.
22806
22807 2001-10-02 Akim Demaille <akim@epita.fr>
22808
22809 * tests/calc.at: Now that --debug works, the tests must be adjusted.
22810
22811 2001-10-02 Akim Demaille <akim@epita.fr>
22812
22813 * src/output.c (output_parser): Assert `skeleton'.
22814 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
22815 systems.
22816 From Shura.
22817
22818 2001-10-01 Marc Autret <autret_m@epita.fr>
22819
22820 * src/lex.h: Echo modifications.
22821 * src/lex.c (unlex): Parameter is now token_t.
22822 From Hans Aberg.
22823
22824 2001-10-01 Marc Autret <autret_m@epita.fr>
22825
22826 * src/main.c: Include lex.h.
22827 From Hans Aberg.
22828
22829 2001-09-29 Akim Demaille <akim@epita.fr>
22830
22831 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
22832
22833 2001-09-28 Akim Demaille <akim@epita.fr>
22834
22835 * tests/testsuite.at: Update to newer Autotest.
22836 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
22837
22838 2001-09-27 Akim Demaille <akim@epita.fr>
22839
22840 Position independent wrapper.
22841
22842 * tests/bison: Remove.
22843 * tests/bison.in: New.
22844 * configure.in: Adjust.
22845
22846 2001-09-27 Paul Eggert <eggert@twinsun.com>
22847
22848 Port quotearg fixes from tar 1.13.24.
22849
22850 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
22851 tm to be declared.
22852 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
22853 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
22854
22855 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
22856 * m4/mbrtowc.m4: New file.
22857 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
22858 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
22859
22860 2001-09-27 Akim Demaille <akim@epita.fr>
22861
22862 Bump to 1.29c.
22863
22864 2001-09-27 Akim Demaille <akim@epita.fr>
22865
22866 Version 1.29b.
22867
22868 2001-09-25 Akim Demaille <akim@epita.fr>
22869
22870 * src/system.h: Include `xalloc.h'.
22871 Remove it from the C files.
22872 * src/files.c (output_files): Free the obstacks.
22873 * src/lex.c (init_lex): Rename as...
22874 (lex_init): this.
22875 (lex_free): New.
22876 * src/main.c (main): Use it.
22877
22878 2001-09-24 Marc Autret <autret_m@epita.fr>
22879
22880 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
22881 to output informations in fout (FILE*).
22882 (open_graph, close_graph): Likewise.
22883 (output_graph, output_edge, output_node): Likewise.
22884 * src/vcg.h: Update function prototypes.
22885 * src/print_graph.c (print_graph): Open output graph file.
22886 (print_actions): Adjust.
22887 * src/files.h: Remove extern declaration.
22888 * src/files.c: Remove graph_obstack declaration.
22889 (open_files): Remove graph_obstack initialization.
22890 (output_files): Remove graph_obstack saving.
22891
22892 2001-09-24 Marc Autret <autret_m@epita.fr>
22893
22894 * src/files.c (compute_output_file_names): Fix.
22895
22896 2001-09-24 Marc Autret <autret_m@epita.fr>,
22897 Akim Demaille <akim@epita.fr>
22898
22899 * src/reader.c (reader): Remove call to free_symtab ().
22900 * src/main.c (main): Call it here.
22901 Include symtab.h.
22902 * src/conflicts.c (initialize_conflicts): Rename as...
22903 (solve_conflicts): this.
22904 * src/print.c (print_core, print_actions, print_state)
22905 (print_grammar): Dump to a file instead a `output_obstack'.
22906 (print_results): Dump `output_obstack', and then proceed with the
22907 FILE *.
22908 * src/files.c (compute_output_file_names, close_files): New.
22909 (output_files): Adjust.
22910 * src/main.c (main): Adjust.
22911
22912 2001-09-23 Marc Autret <autret_m@epita.fr>
22913
22914 * src/files.c (compute_header_macro): Computes header macro name
22915 from spec_defines_file when given.
22916
22917 2001-09-23 Marc Autret <autret_m@epita.fr>
22918
22919 * src/files.c (output_files): Add default extensions.
22920
22921 2001-09-22 Akim Demaille <akim@epita.fr>
22922
22923 * src/conflicts.c (finalize_conflicts): Rename as...
22924 (free_conflicts): this.
22925
22926 2001-09-22 Akim Demaille <akim@epita.fr>
22927
22928 * src/gram.c (gram_free): Rename back as...
22929 (dummy): this.
22930 (output_token_translations): Free `token_translations'.
22931 * src/symtab.c (free_symtab): Free the tag field.
22932
22933 2001-09-22 Akim Demaille <akim@epita.fr>
22934
22935 Remove `translations' as it is always set to true.
22936
22937 * src/gram.h: Adjust.
22938 * src/reader.c (packsymbols, parse_token_decl): Adjust
22939 * src/print.c (print_grammar): Adjust.
22940 * src/output.c (output_token_translations): Adjust.
22941 * src/lex.c (lex): Adjust.
22942 * src/gram.c: Be sure the set pointers to NULL.
22943 (dummy): Rename as...
22944 (gram_free): this.
22945
22946 2001-09-22 Akim Demaille <akim@epita.fr>
22947
22948 * configure.in: Invoke AM_LIB_DMALLOC.
22949 * src/system.h: Use dmalloc.
22950 * src/LR0.c: Be sure to have pointers initialized to NULL.
22951 (allocate_itemsets): Allocate kernel_items only if needed.
22952
22953 2001-09-22 Akim Demaille <akim@epita.fr>
22954
22955 * configure.in: Bump to 1.29b.
22956 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
22957 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
22958 need xmalloc.c in calc.y.
22959 From Pascal Bart.
22960
22961 2001-09-21 Akim Demaille <akim@epita.fr>
22962
22963 Version 1.29a.
22964 * Makefile.maint, config/config.guess, config/config.sub,
22965 * config/missing: Update from masters.
22966 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
22967 upon package.m4.
22968 * configure.in (ALL_LINGUAS): Add `tr'.
22969
22970 2001-09-21 Akim Demaille <akim@epita.fr>
22971
22972 * tests/Makefile.am (package.m4): Move to...
22973 ($(srcdir)/$(TESTSUITE)): here.
22974
22975 2001-09-20 Akim Demaille <akim@epita.fr>
22976
22977 * src/complain.c: No longer try to be standalone: use system.h.
22978 Don't assume __STDC__ is defined to 1. Just test if it is defined.
22979 * src/complain.h: Likewise.
22980 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
22981 Remove the unused variable `n'.
22982 From Albert Chin-A-Young.
22983
22984 2001-09-18 Marc Autret <autret_m@epita.fr>
22985
22986 * doc/bison.1: Update.
22987 * doc/bison.texinfo (Bison Options): Update --defines and --graph
22988 descriptions.
22989 (Option Cross Key): Update.
22990 Add --graph.
22991
22992 2001-09-18 Marc Autret <autret_m@epita.fr>
22993
22994 * tests/regression.at: New test (comment in %union).
22995
22996 2001-09-18 Marc Autret <autret_m@epita.fr>
22997
22998 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
22999 do that.
23000 Reported by Keith Browne.
23001
23002 2001-09-18 Marc Autret <autret_m@epita.fr>
23003
23004 * tests/output.at: Add tests for --defines and --graph.
23005
23006 2001-09-18 Marc Autret <autret_m@epita.fr>
23007
23008 * tests/output.at: Removes tests of %{header,src}_extension features.
23009
23010 2001-09-18 Akim Demaille <akim@epita.fr>
23011
23012 * tests/Makefile.am (package.m4): New.
23013 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
23014 (_AT_CHECK_CALC_ERROR): Likewise.
23015 Factor the `, ' part of verbose error messages.
23016
23017 2001-09-18 Marc Autret <autret_m@epita.fr>
23018
23019 * src/getargs.c (longopts): Declare --defines and --graph as options
23020 with optional arguments.
23021 * src/files.h: Add extern declarations.
23022 * src/files.c (spec_graph_file, spec_defines_file): New.
23023 (output_files): Update.
23024 Remove CPP-outed code.
23025
23026 2001-09-18 Marc Autret <autret_m@epita.fr>
23027
23028 Turn off %{source,header}_extension feature.
23029
23030 * src/files.c (compute_exts_from_gf): Update.
23031 (compute_exts_from_src): Update.
23032 (output_files): CPP-out useless code.
23033 * src/files.h: Remove {header,source}_extension extern declarations.
23034 * src/reader.c (parse_dquoted_param): CPP-out.
23035 (parse_header_extension_decl): Remove.
23036 (parse_source_extension_decl): Remove.
23037 (read_declarations): Remove cases tok_{hdrext,srcext}.
23038 * src/lex.c (percent_table): Remove {header,source}_extension entries.
23039 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
23040
23041 2001-09-10 Akim Demaille <akim@epita.fr>
23042
23043 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
23044 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
23045 (AT_CHECK_OUTPUT): this.
23046 Merely check ls' exit status, its output is useless.
23047
23048 2001-09-10 Akim Demaille <akim@epita.fr>
23049
23050 * tests/calc.at: Use m4_match.
23051 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
23052
23053 2001-09-10 Marc Autret <autret_m@epita.fr>,
23054 Akim Demaille <akim@epita.fr>
23055
23056 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
23057 enum color_e.
23058 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
23059 to `normal'.
23060 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
23061 * src/lex.h: Adjust prototype.
23062 (token_t): Add `tok_undef'.
23063 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
23064 (parse_percent_token): Now returns token_t.
23065 Add default statement in switch.
23066 (lex): Separate `c' as an input variable, from the token_t result
23067 part.
23068 (unlexed): Is a token_t.
23069
23070 2001-09-10 Akim Demaille <akim@epita.fr>
23071
23072 * configure.in: Bump to 1.29a.
23073
23074 2001-09-07 Akim Demaille <akim@epita.fr>
23075
23076 Version 1.29.
23077
23078 2001-08-30 Akim Demaille <akim@epita.fr>
23079
23080 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
23081 * m4/atconfig.m4: Remove.
23082 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
23083 * tests/bison: New.
23084 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
23085 m4_if, m4_patsubst, and m4_regexp.
23086 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
23087 `input' file instead of echo.
23088
23089 2001-08-29 Akim Demaille <akim@epita.fr>
23090
23091 Bump to 1.28e.
23092
23093 2001-08-29 Akim Demaille <akim@epita.fr>
23094
23095 Version 1.28d.
23096
23097 2001-08-29 Paul Eggert <eggert@twinsun.com>
23098
23099 * src/bison.simple (yyparse): Don't take the address of an
23100 item before the start of an array, as that doesn't conform to
23101 the C Standard.
23102
23103 2001-08-29 Robert Anisko <anisko_r@epita.fr>
23104
23105 * doc/bison.texinfo (Location Tracking Calc): New node.
23106
23107 2001-08-29 Paul Eggert <eggert@twinsun.com>
23108
23109 * src/output.c (output): Do not define const, as this now
23110 causes more problems than it cures.
23111
23112 2001-08-29 Akim Demaille <akim@epita.fr>
23113
23114 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
23115 the nodes.
23116 Be sure to tag the `detailmenu'.
23117
23118 2001-08-29 Akim Demaille <akim@epita.fr>
23119
23120 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
23121 download in a tmp dir.
23122
23123 2001-08-28 Marc Autret <autret_m@epita.fr>
23124
23125 * config/depcomp: New file.
23126
23127 2001-08-28 Marc Autret <autret_m@epita.fr>
23128
23129 * doc/bison.1 (mandoc): Adjust.
23130 From Juan Manuel Guerrero.
23131
23132 2001-08-28 Marc Autret <autret_m@epita.fr>
23133
23134 * src/print_graph.c (print_state): Fix.
23135
23136 2001-08-27 Marc Autret <autret_m@epita.fr>
23137
23138 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
23139 char * members.
23140 Echo modifications to the functions prototypes.
23141 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
23142
23143 2001-08-27 Marc Autret <autret_m@epita.fr>
23144
23145 * src/vcg.c: Include `xalloc.h'.
23146 (add_colorentry): New.
23147 (add_classname): New.
23148 (add_infoname): New.
23149 * src/vcg.h: Add new prototypes.
23150
23151 2001-08-27 Akim Demaille <akim@epita.fr>
23152
23153 * Makefile.maint: Sync. again with CVS Autoconf.
23154
23155 2001-08-27 Akim Demaille <akim@epita.fr>
23156
23157 * Makefile.maint: Formatting changes.
23158 (po-update, cvs-update, update): New targets.
23159 (AMTAR): Remove.
23160
23161 2001-08-27 Akim Demaille <akim@epita.fr>
23162
23163 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
23164 * Makefile.maint: Sync. with CVS Autoconf.
23165
23166 2001-08-27 Marc Autret <autret_m@epita.fr>
23167
23168 * src/vcg.h (struct infoname_s): New.
23169 (struct colorentry_s): New.
23170 (graph_s): New fields {vertical,horizontal}_order in structure.
23171 Add `infoname' field.
23172 Add `colorentry' field;
23173 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
23174 (G_HORIZONTAL_ORDER): New.
23175 (G_INFONAME): New.
23176 (G_COLORENTRY): New.
23177 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
23178 Add output of `infoname'.
23179 Add output of `colorentry'.
23180
23181 2001-08-27 Marc Autret <autret_m@epita.fr>
23182
23183 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
23184 This one shadowed a global parameter.
23185
23186 2001-08-24 Marc Autret <autret_m@epita.fr>
23187
23188 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
23189 instead of `unsigned'.
23190 (print_state): Do not call obstack_object_size () in obstack_grow ()
23191 to avoid macro variables shadowing.
23192
23193 2001-08-23 Marc Autret <autret_m@epita.fr>
23194
23195 * src/lex.c (percent_table): Typo: s/naem/name/.
23196 Add graph option.
23197 Normalize new options declarations.
23198
23199 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
23200
23201 * tests/suite.at: Exercise %header_extension and %source_extension.
23202
23203 2001-08-16 Marc Autret <autret_m@epita.fr>
23204
23205 * src/reader.c (parse_dquoted_param): New.
23206 (parse_header_extension_decl): Use it.
23207 (parse_source_extension_decl): Likewise.
23208
23209 2001-08-16 Marc Autret <autret_m@epita.fr>
23210
23211 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
23212 (get_xxxx_str): Use assert () instead of complain ().
23213 Remove return invokations in default cases.
23214 (get_decision_str): Modify default behaviour. Remove second argument.
23215 Echo modifications on calls.
23216 (output_graph): Fix.
23217
23218 2001-08-16 Marc Autret <autret_m@epita.fr>
23219
23220 * src/getargs.c (usage): Update with ``-g, --graph''.
23221
23222 2001-08-16 Marc Autret <autret_m@epita.fr>
23223
23224 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
23225 (Option Cross Key): Likewise.
23226 * doc/bison.1: Update.
23227
23228 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
23229
23230 * src/output.c (output_master_parser): Don't finish action_obstack.
23231 (output_parser): Don't care about the muscle action, here.
23232 (prepare): Copy the action_obstack in the action muscle.
23233 (output): Free action_obstack.
23234
23235 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
23236
23237 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
23238 will contain `%union' declaration.
23239 (parse_union_decl): Delete #line directive output.
23240 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
23241 informations about %union.
23242 (parse_union_decl): Copy the union_obstack in the muscle stype.
23243 * src/bison.simple: Add new #line directive.
23244 Add typdef %%stype YYSTYPE.
23245
23246 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
23247
23248 * src/bison.simple: Add new `#line' directive.
23249
23250 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
23251
23252 * src/bison.simple: New `#line' directive.
23253 * src/output.c (output_parser): Support new dynamic muscle input_line.
23254
23255 2001-09-22 Marc Autret <autret_m@epita.fr>
23256
23257 * src/output.c (output_master_parser): New.
23258 (output_parser): Be more re-entrant.
23259
23260 2001-09-21 Marc Autret <autret_m@epita.fr>
23261
23262 * src/reader.c (copy_definition, parse_union_decl): Update and use
23263 `linef' muscle.
23264 (copy_action): Likewise.
23265 Use obstack_1grow ().
23266 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
23267
23268 2001-09-21 Marc Autret <autret_m@epita.fr>
23269
23270 * src/options.c (option_table): Adjust.
23271 * src/lex.c (parse_percent_token): Fix.
23272
23273 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
23274
23275 * src/options.c (symtab.h): Include it, need by lex.h.
23276
23277 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
23278
23279 * src/lex.c (parse_percent_token): Change type of variable `tx', which
23280 is now an option_table_struct*.
23281 (option_strcmp): New function option_strcmp.
23282 (parse_percent_token): Call option_strcmp.
23283 * src/getargs.c (xalloc.h, options.h): Include it.
23284 (getargs): Call create_long_option_table.
23285 (getargs): Free longopts at the end of the function.
23286 (shortopts): Move in options.c.
23287 * src/options.c (create_long_option_table): New function. Convert
23288 information from option_table to option structure.
23289 * src/reader.c (options.h): Include it.
23290
23291 * src/Makefile.am: Adjust.
23292 * src/options.c (option_table): Create from longopts and percent_table.
23293 * src/getargs.c (longopts): Delete.
23294 * src/lex.c (struct percent_table_struct): Delete.
23295 (percent_table): Delete.
23296 (options.h): Include it.
23297 * src/options.c: Create.
23298 * src/options.h: Create.
23299 Declare enum opt_access_e.
23300 Define struct option_table_struct.
23301
23302 2001-09-20 Marc Autret <autret_m@epita.fr>
23303
23304 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
23305 sections of Bison.
23306
23307 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
23308
23309 * src/bison.simple: s/%%filename/%%skeleton.
23310 * src/muscle_tab.c (getargs.h): Include it.
23311 (muscle_init): Insert new muscle skeleton.
23312
23313 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
23314
23315 * src/output.c (output_parser): Delete unused variable actions_dumped.
23316
23317 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
23318
23319 * src/output.c (output): Delete call to reader_output_yylsp.
23320 * src/reader.c (reader): Likewise.
23321 * src/reader.h: Delete declaration of reader_output_yylsp.
23322
23323 2001-09-02 Marc Autret <autret_m@epita.fr>
23324
23325 * src/reader.c: Include muscle_tab.h.
23326 (parse_union_decl): Update.
23327 (parse_macro_decl): Rename parse_muscle_decl.
23328 Update to use renamed functions and variable.
23329 (read_declarations, copy_action, read_additionnal_code, : Updated
23330 with correct variables and functions names.
23331 (packsymbols, reader): Likewise.
23332
23333 * src/reader.h (muscle_obstack): Extern declaration update.
23334
23335 * src/output.c: Include muscle_tab.h
23336 In all functions using macro_insert, change by using muscle_insert ().
23337 (macro_obstack): Rename muscle_obstack.
23338 Echo modifications in the whole file.
23339 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
23340 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
23341 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
23342
23343 * src/muscle_tab.h: Update double inclusion macros.
23344 (macro_entry_s): Rename muscle_entry_s.
23345 Update prototypes.
23346
23347 * src/muscle_tab.c: Include muscle_tab.h.
23348 Rename macro_tabble to muscle_table.
23349 (mhash1, mhash2, mcmp): Use muscle_entry.
23350 (macro_init): Rename muscle_init. Update.
23351 (macro_insert): Rename muscle_insert. Update.
23352 (macro_find): Rename muscle_find. Update.
23353
23354 * src/main.c: Include muscle_tab.h.
23355 (main): Call muscle_init ().
23356 * src/Makefile.am (bison_SOURCES): Echo modifications.
23357
23358 2001-09-02 Marc Autret <autret_m@epita.fr>
23359
23360 Now the files macro_tab.[ch] are named muscle_tab.[ch].
23361
23362 * src/muscle_tab.c, src/muscle_tab.h: Add files.
23363
23364 2001-09-02 Marc Autret <autret_m@epita.fr>
23365
23366 * src/macrotab.c, src/macrotab.h: Remove.
23367
23368 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
23369
23370 * src/reader.c (copy_guard): Use muscle to specify the `#line'
23371 filename.
23372
23373 2001-09-01 Marc Autret <autret_m@epita.fr>
23374
23375 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
23376 to an explicit value to activate the feature. We do it here.
23377
23378 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
23379
23380 * src/output.c (prepare): Delete the `filename' muscule insertion.
23381 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
23382 (parse_union_decl): Likewise.
23383 * src/macrotab.c (macro_init): Initialize filename by infile.
23384
23385 2001-08-31 Marc Autret <autret_m@epita.fr>
23386
23387 * src/bison.simple (YYLSP_NEEDED): New definition.
23388 * src/output.c (prepare): Add macro insertion of `locations_flag'
23389
23390 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
23391
23392 * src/output.c (prepare): Delete insertion of previous muscles,
23393 and insert the `prefix' muscles.
23394 * src/macrotab.c (macro_init): Likewise.
23395 (macro_init): Initialization prefix directive by `yy'.
23396 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
23397 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
23398 yylval, yydebug, yyerror, yynerrs and yyparse.
23399 New directive `#define' to substitute yydebug, ... with option
23400 name_prefix.
23401
23402 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
23403
23404 * src/main.c (main): Standardize.
23405 * src/output.c (output_table_data, output_parser): Likewise.
23406 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
23407
23408 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
23409
23410 * src/reader.c (read_additionnal_code): Rename %%user_code to
23411 %%epilogue.
23412 * src/output.c (output): Rename %%declarations to %%prologue.
23413 * src/bison.simple: Echo modifications.
23414
23415 2001-08-31 Marc Autret <autret_m@epita.fr>
23416
23417 * src/reader.c (readgram): CleanUp.
23418 (output_token_defines): Likewise.
23419 (packsymbols): Likewise.
23420 (reader): Likewise.
23421 * src/output.c (output): CPP-out useless code.
23422
23423 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
23424
23425 * src/reader.c (reader): Delete obsolete call to function
23426 output_trailers and output_headers.
23427 * src/output.h: Remove obsolete functions prototypes of output_headers
23428 and output_trailers.
23429
23430 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
23431
23432 * src/main.c: Include macrotab.h.
23433 * src/macrotab.h (macro_entry_s): Constify fields.
23434 Adjust functions prototypes.
23435 * src/macrotab.c (macro_insert): Constify key and value.
23436 (macro_find): Constify key.
23437 (macro_insert): Include 'xalloc.h'
23438 (macro_insert): Use XMALLOC.
23439 (macro_find): Constify return value.
23440 * src/output.c (output_table_data): Rename table to table_data.
23441 (output_parser): Constify macro_key, macro_value.
23442
23443 2001-08-30 Marc Autret <autret_m@epita.fr>
23444
23445 * src/reader.c (parse_skel_decl): New.
23446 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
23447 * src/lex.h (token_t): New token `tok_skel'.
23448 * src/lex.c (percent_table): Add skeleton option entry.
23449 Standardize.
23450
23451 2001-08-29 Marc Autret <autret_m@epita.fr>
23452
23453 * src/bison.simple: Add %%user_code directive at the end.
23454 * src/reader.c (read_additionnal_code): New.
23455 (reader): Use it.
23456 * src/output.c (output_program): Remove.
23457 (output): Update.
23458
23459 2001-08-28 Marc Autret <autret_m@epita.fr>
23460
23461 * src/output.c (output_actions): Clean up.
23462 (output_gram): CPP-out useless code.
23463 * src/reader.c (reader): Clean up, CPP-out useless code.
23464
23465 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
23466
23467 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
23468 directive.
23469 * src/bison.simple: Add `%%definitions'.
23470
23471 2001-08-28 Marc Autret <autret_m@epita.fr>
23472
23473 * config/depcomp: New file.
23474
23475 2001-08-27 Paul Eggert <eggert@twinsun.com>
23476
23477 * src/bison.simple (yyparse): Don't take the address of an
23478 item before the start of an array, as that doesn't conform to
23479 the C Standard.
23480
23481 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
23482
23483 * src/output.c (output): Remove the initialization of the macro
23484 obstack. It was done too late here.
23485
23486 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
23487 completely wrong.
23488 (reader): Initialize the macro obstack here, since we need it to grow
23489 '%define' directives.
23490
23491 * src/reader.h: Declare the macro obstack as extern.
23492
23493 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
23494
23495 * src/output.c (output_parser): Fix. Store single '%' characters in
23496 the output obstack instead of throwing them away.
23497
23498 2001-08-27 Akim Demaille <akim@epita.fr>
23499
23500 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
23501
23502 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
23503
23504 * lib/Makefile.am: Adjust.
23505
23506 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
23507
23508 * src/bison.simple: Update and add '%%' directives.
23509
23510 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
23511
23512 * src/reader.c (reader): Remove calls to 'output_headers' and
23513 'output_trailers'. Remove some C output.
23514 (readgram): Disable a piece of code that was writing a default
23515 definition for 'YYSTYPE'.
23516 (reader_output_yylsp): Remove.
23517 (packsymbols): Output token defintions to a macro.
23518 (copy_definition): Disable C output.
23519
23520 * src/reader.c (parse_macro_decl): New function used to parse macro
23521 declarations.
23522 (copy_string2): Put the body of copy_string into this new function.
23523 Add a parameter to let the caller choose whether he wants to copy the
23524 string delimiters or not.
23525 (copy_string): Be a simple call to copy_string2 with the last argument
23526 bound to true.
23527 (read_declarations): Add case for macro definition.
23528 (copy_identifier): New.
23529 (parse_macro_decl): Read macro identifiers using copy_identifier
23530 rather than lex.
23531
23532 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
23533
23534 * src/output.c (prepare): Add prefixed names.
23535 (output_parser): Output semantic actions.
23536 (output_parser): Fix bug on '%%line' directives.
23537
23538 * src/output.c (output_headers): Remove. The C code printed by this
23539 function should now be in the skeletons.
23540 (output_trailers): Remove.
23541 (output): Disable call to 'reader_output_yylsp'.
23542 (output_rule_data): Do not output tables to the table obstack.
23543
23544 * src/output.c: Remove some C dedicated output.
23545 Improve the use of macro and output obstacks.
23546 (output_defines): Remove.
23547
23548 * src/output.c (output_token_translations): Associate 'translate'
23549 table with a macro. No output to the table obstack.
23550 (output_gram): Same for 'rhs' and 'prhs'.
23551 (output_stos): Same for 'stos'.
23552 (output_rule_data): Same for 'r1' and 'r2'.
23553 (token_actions): Same for 'defact'.
23554 (goto_actions): Same for 'defgoto'.
23555 (output_base): Same for 'pact' and 'pgoto'.
23556 (output_table): Same for 'table'.
23557 (output_check): Same for 'check'.
23558
23559 * src/output.c (output_table_data): New function.
23560 (output_short_table): Remove.
23561 (output_short_or_char_table): Remove.
23562
23563 * src/output.c (output_parser): Replace most of the skeleton copy code
23564 with something new. Skeletons are now processed character by character
23565 rather than line by line, and Bison looks for '%%' macros. This is the
23566 first step in making Bison's output process (a lot) more flexible.
23567 (output_parser): Use the macro table.
23568
23569 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
23570
23571 * src/main.c (main): Initialize the macro table.
23572
23573 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
23574
23575 * src/lex.c (percent_table): Add tok_define.
23576 * src/lex.h: Add tok_define.
23577
23578 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
23579
23580 * src/macrotab.c: New file.
23581 * src/macrotab.h: New file.
23582 * src/Makefile.am: Update.
23583
23584 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
23585
23586 * lib/hash.c: New file.
23587 * lib/hash.h: New file.
23588 * lib/Makefile.am: Update.
23589
23590 2001-08-15 Akim Demaille <akim@epita.fr>
23591
23592 Version 1.28c.
23593
23594 2001-08-15 Marc Autret <autret_m@epita.fr>
23595
23596 * src/reader.c (readgram): Indent output macro YYSTYPE.
23597 (packsymbols): Likewise.
23598 (output_token_defines): Likewise.
23599 * src/files.c: Standardize.
23600 (compute_header_macro): New.
23601 (defines_obstack_save): New. Use compute_header_macro.
23602 (output_files): Update. Use defines_obstack_save.
23603
23604 2001-08-15 Akim Demaille <akim@epita.fr>
23605
23606 * doc/bison.texinfo (Table of Symbols): Document
23607 YYSTACK_USE_ALLOCA.
23608
23609 2001-08-15 Akim Demaille <akim@epita.fr>
23610
23611 * missing: Update from CVS Automake.
23612 * config/config.guess, config/config.sub, config/texinfo.tex:
23613 Update from gnu.org.
23614
23615 2001-08-15 Akim Demaille <akim@epita.fr>
23616
23617 * Makefile.maint: Sync with CVS Autoconf.
23618
23619 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
23620
23621 * doc/bison.texinfo: Include GNU Free Documentation License from
23622 `fdl.texi'.
23623 * doc/fdl.texi: Add to package.
23624
23625 2001-08-14 Marc Autret <autret_m@epita.fr>
23626
23627 Turn on %{source,header}_extension features.
23628
23629 * src/lex.c (percent_table): Un-CPP out header_extension and
23630 source_extension.
23631 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
23632 (compute_exts_from_src): Remove conditions. It restores priorities
23633 between options.
23634
23635 2001-08-14 Marc Autret <autret_m@epita.fr>
23636
23637 * src/files.c (compute_base_names): Add extensions computing when
23638 `--file-prefix' used.
23639 Standardize function calls.
23640
23641 2001-08-13 Marc Autret <autret_m@epita.fr>
23642
23643 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
23644 defining it (defined but null disables alloca).
23645
23646 2001-08-13 Marc Autret <autret_m@epita.fr>
23647
23648 * src/bison.simple (_yy_memcpy): CPP reformat.
23649
23650 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
23651
23652 * tests/atconfig.in (CPPFLAGS): Fix.
23653
23654 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
23655
23656 * doc/bison.texinfo: Include GNU General Public License from
23657 `gpl.texi'.
23658 * doc/gpl.texi: Add to package.
23659
23660 2001-08-10 Marc Autret <autret_m@epita.fr>
23661
23662 * src/print_graph.h: Fix.
23663 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
23664
23665 2001-08-10 Akim Demaille <akim@epita.fr>
23666
23667 * src/system.h: Provide default declarations for stpcpy, strndup,
23668 and strnlen.
23669
23670 2001-08-10 Robert Anisko <anisko_r@epita.fr>
23671
23672 * doc/bison.texinfo (Locations): Update @$ stuff.
23673
23674 2001-08-09 Robert Anisko <anisko_r@epita.fr>
23675
23676 * src/bison.simple (YYLLOC_DEFAULT): Update.
23677 (yyparse): Adjust.
23678
23679 2001-08-08 Marc Autret <autret_m@epita.fr>
23680
23681 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
23682 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
23683 Reported by Fabrice Bauzac.
23684
23685 2001-08-08 Marc Autret <autret_m@epita.fr>
23686
23687 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
23688 * src/vcg.c (output_node): Fix.
23689 * src/vcg.h: Cleanup.
23690 * src/print_graph.c: Add comments.
23691 (node_output_size): New global variable. Simplify the formatting of
23692 the VCG graph output.
23693 (print_actions): Unused code is now used. It notifies the final state
23694 and no action states in the VCG graph. It also give the reduce actions.
23695 The `shift and goto' edges are red and the `go to state' edges are
23696 blue.
23697 Get the current node name and node_obstack by argument.
23698 (node_obstack): New variable.
23699 (print_state): Manage node_obstack.
23700 (print_core): Use node_obstack given by argument.
23701 A node is not only computed here but in print_actions also.
23702 (print_graph): CPP out useless code instead of commenting it.
23703
23704 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
23705
23706 * tests/atconfig.in (CPPFLAGS): Fix.
23707
23708 2001-08-07 Akim Demaille <akim@epita.fr>
23709
23710 * src/print_graph.c (quote): New.
23711 (print_core): Use it.
23712
23713 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
23714
23715 * src/vcg.c (complain.h): Include it.
23716 Unepitaize `return' invocations.
23717 [NDEBUG] (main): Remove.
23718 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
23719 * src/files.c (open_files): Initialize graph_obstack.
23720 * src/print_graph.c (print_actions): CPP out useless code.
23721 (print_core): Don't output the last `\n' in labels.
23722 Use `quote'.
23723 * src/files.c (output_files): Output the VCG file.
23724 * src/main.c (main): Invoke print_graph ();
23725
23726 2001-08-06 Marc Autret <autret_m@epita.fr>
23727
23728 Automaton VCG graph output.
23729 Using option ``-g'' or long option ``--graph'', you can generate
23730 a gram_filename.vcg file containing a VCG description of the LALR (1)
23731 automaton of your grammar.
23732
23733 * src/main.c: Call to print_graph() function.
23734 * src/getargs.h: Update.
23735 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
23736 (graph_flag): New flag.
23737 (longopts): Update.
23738 (getargs): Add case `g'.
23739 * src/files.c (graph_obstack): New obstack struct.
23740 (open_files): Initialize new obstack.
23741 (output_files): Saves graph_obstack if required.
23742 * src/files.h (graph_obstack): New extern declaration.
23743 * src/Makefile.am: Add new source files.
23744
23745 2001-08-06 Marc Autret <autret_m@epita.fr>
23746
23747 * src/print_graph.c, src/print_graph.h (graph): New.
23748 * src/vcg.h: New file.
23749 * src/vcg.c: New file, VCG graph handling.
23750
23751 2001-08-06 Marc Autret <autret_m@epita.fr>
23752
23753 Add of %source_extension and %header_extension which specify
23754 the source or/and the header output file extension.
23755
23756 * src/files.c (compute_base_names): Remove initialisation of
23757 src_extension and header_extension.
23758 (compute_exts_from_gf): Update.
23759 (compute_exts_from_src): Update.
23760 (output_files): Update.
23761 * src/reader.c (parse_header_extension_decl): New.
23762 (parse_source_extension_decl): New.
23763 (read_declarations): New case statements for the new tokens.
23764 * src/lex.c (percent_table): Add entries for %source_extension
23765 and %header_extension.
23766 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
23767
23768 2001-08-06 Marc Autret <autret_m@epita.fr>
23769
23770 * configure.in: Bump to 1.28c.
23771 * doc/bison.texinfo: Texinfo thingies.
23772
23773 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
23774
23775 * tests/atconfig.in (CPPFLAGS): Add.
23776 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
23777
23778 2001-08-03 Akim Demaille <akim@epita.fr>
23779
23780 Version 1.28b.
23781
23782 2001-08-03 Akim Demaille <akim@epita.fr>
23783
23784 * tests/Makefile.am (check-local): Ship testsuite.
23785 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
23786 Include `string.h'.
23787
23788 2001-08-03 Akim Demaille <akim@epita.fr>
23789
23790 * configure.in: Try using -Wformat when compiling.
23791
23792 2001-08-03 Akim Demaille <akim@epita.fr>
23793
23794 * configure.in: Bump to 1.28b.
23795
23796 2001-08-03 Akim Demaille <akim@epita.fr>
23797
23798 * src/complain.c: Adjust strerror_r portability issues.
23799
23800 2001-08-03 Akim Demaille <akim@epita.fr>
23801
23802 Version 1.28a.
23803
23804 2001-08-03 Akim Demaille <akim@epita.fr>
23805
23806 * src/getargs.c, src/getarg.h (skeleton)): Constify.
23807 * src/lex.c (literalchar): Avoid name clashes on `buf'.
23808 * src/getargs.c: Include complain.h.
23809 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
23810 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
23811
23812 2001-08-03 Akim Demaille <akim@epita.fr>
23813
23814 * src/reader.c (readgram): Display hidden chars in error messages.
23815
23816 2001-08-03 Akim Demaille <akim@epita.fr>
23817
23818 Update to gettext 0.10.39.
23819
23820 2001-08-03 Akim Demaille <akim@epita.fr>
23821
23822 * lib/strspn.c: New.
23823
23824 2001-08-01 Marc Autret <autret_m@epita.fr>
23825
23826 * doc/bison.texinfo: Update.
23827 * doc/bison.1 (mandoc): Update.
23828 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
23829 * src/files.c: Support output files extensions computing.
23830 (src_extension): New static variable.
23831 (header_extension): New static variable.
23832 (tr): New function.
23833 (get_extension_index): New function, gets the index of an extension
23834 filename in a string.
23835 (compute_exts_from_gf): New function, computes extensions from the
23836 grammar file extension.
23837 (compute_exts_from_src): New functions, computes extensions from the
23838 C source file extension, file given by ``-o'' option.
23839 (compute_base_names): Update.
23840 (output_files): Update.
23841
23842 2001-08-01 Robert Anisko <anisko_r@epita.fr>
23843
23844 * doc/bison.texi: Document @$.
23845 (Locations): New section.
23846
23847 2001-07-18 Akim Demaille <akim@epita.fr>
23848
23849 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
23850 * config/prev-version.txt, config/move-if-change: New.
23851 * Makefile.am: Adjust.
23852
23853 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
23854
23855 * src/bison.simple (yyparse): Suppress warning `comparaison
23856 between signed and unsigned'.
23857
23858 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
23859
23860 * src/getargs.h (raw_flag): Remove.
23861 * src/getargs.c: Die on `-r'/`--raw'.
23862 * src/lex.c (parse_percent_token): Die on `%raw'.
23863 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
23864 * tests/calc.at: Suppress test with option `--raw'.
23865
23866 2001-07-14 Akim Demaille <akim@epita.fr>
23867
23868 * config/: New.
23869 * configure.in: Require Autoconf 2.50.
23870 Update to gettext 0.10.38.
23871
23872 2001-03-16 Akim Demaille <akim@epita.fr>
23873
23874 * doc/bison.texinfo: ANSIfy the examples.
23875
23876 2001-03-16 Akim Demaille <akim@epita.fr>
23877
23878 * getargs.c (skeleton): New variable.
23879 (longopts): --skeleton is a new option.
23880 (shortopts, getargs): -S is a new option.
23881 * getargs.h: Declare skeleton.
23882 * output.c (output_parser): Use it.
23883
23884 2001-03-16 Akim Demaille <akim@epita.fr>
23885
23886 * m4/strerror_r.m4: New.
23887 * m4/error.m4: Run AC_FUNC_STRERROR_R.
23888 * lib/error.h, lib/error.c: Update.
23889
23890 2001-03-16 Akim Demaille <akim@epita.fr>
23891
23892 * src/getargs.c (longopts): Clean up.
23893
23894 2001-02-21 Akim Demaille <akim@epita.fr>
23895
23896 * src/reader.c (gensym): `gensym_count' is your own.
23897 Use a static buf to create the symbol name, as token_buffer is no
23898 longer a buffer.
23899
23900 2001-02-08 Akim Demaille <akim@epita.fr>
23901
23902 * src/conflicts.c (conflict_report): Be sure not to append to res
23903 between two calls, which could happen if both first sprintf were
23904 skipped, but not the first cp += strlen.
23905
23906 2001-02-08 Akim Demaille <akim@epita.fr>
23907
23908 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
23909 New, from fileutils 4.0.37.
23910 * configure.in: Require Autoconf 2.49c. I took some time before
23911 making this decision. This is the only way out for portability
23912 issues in Bison, it would mean way too much duplicate effort to
23913 import in Bison features implemented in 2.49c since 2.13.
23914 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
23915
23916 2001-02-02 Akim Demaille <akim@epita.fr>
23917
23918 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
23919 * lib/xalloc.h, lib/xmalloc.c: Update.
23920
23921 2001-01-19 Akim Demaille <akim@epita.fr>
23922
23923 Get rid of the ad hoc handling of token_buffer in the scanner: use
23924 the obstacks.
23925
23926 * src/lex.c (token_obstack): New.
23927 (init_lex): Initialize it. No longer call...
23928 (grow_token_buffer): this. Remove it.
23929 Adjust all the places which used it to use the obstack.
23930
23931 2001-01-19 Akim Demaille <akim@epita.fr>
23932
23933 * src/lex.h: Rename all the tokens:
23934 s/\bENDFILE\b/tok_eof/g;
23935 s/\bIDENTIFIER\b/tok_identifier/g;
23936 etc.
23937 Let them be enums, not #define, to ease debugging.
23938 Adjust all the code.
23939
23940 2001-01-18 Akim Demaille <akim@epita.fr>
23941
23942 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
23943 * src/lex.c (maxtoken, grow_token_buffer): Static.
23944
23945 2001-01-18 Akim Demaille <akim@epita.fr>
23946
23947 Since we now use obstacks, more % directives can be enabled.
23948
23949 * src/lex.c (percent_table): Also accept `%yacc',
23950 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
23951 `%debug'.
23952 Handle the actions for `%semantic_parser' and `%pure_parser' here,
23953 instead of returning a token.
23954 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
23955 * src/reader.c (read_declarations): Adjust.
23956 * src/files.c (open_files): Don't call `compute_base_names', don't
23957 compute `attrsfile' since they depend upon data which might be
23958 *in* the input file now.
23959 (output_files): Do it here.
23960 * src/output.c (output_headers): Document the fact that this patch
23961 introduces a guaranteed SEGV for semantic parsers.
23962 * doc/bison.texinfo: Document them.
23963 * tests/suite.at: Exercise these %options.
23964
23965 2000-12-20 Akim Demaille <akim@epita.fr>
23966
23967 Also handle the output file (--verbose) with obstacks.
23968
23969 * files.c (foutput): Remove.
23970 (output_obstack): New.
23971 Adjust all dependencies.
23972 * src/conflicts.c: Return a string.
23973 * src/system.h (obstack_grow_string): Rename as...
23974 (obstack_sgrow): this. Be ready to work with non literals.
23975 (obstack_fgrow4): New.
23976
23977 2000-12-20 Akim Demaille <akim@epita.fr>
23978
23979 * src/files.c (open_files): Fix the computation of short_base_name
23980 in the case of `-o foo.tab.c'.
23981
23982 2000-12-20 Akim Demaille <akim@epita.fr>
23983
23984 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
23985 (copy_dollar): Now that everything uses obstacks, get rid of the
23986 FILE * parameters.
23987
23988 2000-12-20 Akim Demaille <akim@epita.fr>
23989
23990 * src/files.c (open_files): Actually the `.output' file is based
23991 on the short_base_name, not base_name.
23992 * tests/suite.at (Checking output file names): Adjust.
23993
23994 2000-12-20 Akim Demaille <akim@epita.fr>
23995
23996 * src/bison.s1: Remove, we now use directly...
23997 * src/bison.simple: this.
23998 * src/Makefile.am: Use pkgdata instead of data.
23999
24000 2000-12-20 Akim Demaille <akim@epita.fr>
24001
24002 * src/files.c (guard_obstack): New.
24003 (open_files): Initialize it.
24004 (output_files): Dump it...
24005 * src/files.h: Export it.
24006 * src/reader.c (copy_guard): Use it.
24007
24008 2000-12-19 Akim Demaille <akim@epita.fr>
24009
24010 * src/files.c (outfile, defsfile, actfile): Removed as global
24011 vars.
24012 (open_files): Don't compute them.
24013 (output_files): Adjust.
24014 (base_name, short_base_name): Be global.
24015 Adjust dependencies.
24016
24017 2000-12-19 Akim Demaille <akim@epita.fr>
24018
24019 * src/files.c (strsuffix): New.
24020 (stringappend): Be just like strcat but allocate.
24021 (base_names): Eve out from open_files.
24022 Try to simplify the rather hairy computation of base_name and
24023 short_base_name.
24024 (open_files): Use it.
24025 * tests/suite.at (Checking output file names): New test.
24026
24027 2000-12-19 Akim Demaille <akim@epita.fr>
24028
24029 * src/system.h (obstack_grow_literal_string): Rename as...
24030 (obstack_grow_string): this.
24031 * src/output.c (output_parser): Recognize `%% actions' instead of
24032 `$'.
24033 * src/bison.s1: s/$/%% actions/.
24034 * src/bison.hairy: Likewise.
24035
24036 2000-12-19 Akim Demaille <akim@epita.fr>
24037
24038 * src/output.c (output_parser): Compute the `#line' lines when
24039 there are.
24040 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
24041 Suggested by Hans Aberg.
24042
24043 2000-12-19 Akim Demaille <akim@epita.fr>
24044
24045 Let the handling of the skeleton files be local to the procedures
24046 that use it.
24047
24048 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
24049 longer static.
24050 (fparser, open_extra_files): Remove.
24051 (open_files, output_files): Don't take care of fparser.
24052 * src/files.h: Adjust.
24053 * src/output.c (output_parser): Open and close the file to the
24054 skeleton.
24055 * src/reader.c (read_declarations): When %semantic_parser, open
24056 fguard.
24057
24058 2000-12-19 Akim Demaille <akim@epita.fr>
24059
24060 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
24061 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
24062
24063 2000-12-19 Akim Demaille <akim@epita.fr>
24064
24065 * src/files.c (open_files): Yipee! We no longer need all the code
24066 looking for `/tmp' since we have no tmp file.
24067
24068 2000-12-19 Akim Demaille <akim@epita.fr>
24069
24070 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
24071 New macros.
24072 * src/files.c (open_files): Less dependency on MSDOS etc.
24073
24074 2000-12-14 Akim Demaille <akim@epita.fr>
24075
24076 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
24077 Provide a default definition.
24078 Use it when executing the default @ action.
24079 * src/reader.c (reader_output_yylsp): No longer include
24080 `timestamp' and `text' in the default YYLTYPE.
24081
24082 2000-12-12 Akim Demaille <akim@epita.fr>
24083
24084 * src/reader.c (copy_definition, parse_union_decl, copy_action)
24085 (copy_guard): Quote the file names.
24086 Reported by Laurent Mascherpa.
24087
24088 2000-12-12 Akim Demaille <akim@epita.fr>
24089
24090 * src/output.c (output_headers, output_program, output): Be sure
24091 to escape special characters when outputting filenames.
24092 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
24093 (output_headers): Don't depend on them, Use ACTSTR.
24094
24095 2000-11-17 Akim Demaille <akim@epita.fr>
24096
24097 * lib/obstack.h: Formatting changes.
24098 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
24099 prevents type checking.
24100 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
24101 cast the value to (void *): assigning a `foo *' to a `void *'
24102 variable is valid.
24103 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
24104 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
24105 append characters.
24106
24107 2000-11-17 Akim Demaille <akim@epita.fr>
24108
24109 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
24110 as...
24111 (suite.m4, regression.m4, calc.m4): these.
24112 * tests/atgeneral.m4: Update from CVS Autoconf.
24113
24114 2000-11-17 Akim Demaille <akim@epita.fr>
24115
24116 * tests/regression.m4 (%union and --defines): New test,
24117 demonstrating a current bug in the obstack implementation.
24118
24119 2000-11-17 Akim Demaille <akim@epita.fr>
24120
24121 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
24122 macros.
24123 Use them to declare the variables which are global or local to
24124 `yyparse'.
24125
24126 2000-11-17 Akim Demaille <akim@epita.fr>
24127
24128 * acconfig.h: Remove, no longer used.
24129
24130 2000-11-07 Akim Demaille <akim@epita.fr>
24131
24132 * src: s/Copyright (C)/Copyright/g.
24133
24134 2000-11-07 Akim Demaille <akim@epita.fr>
24135
24136 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
24137 defining.
24138 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
24139
24140 2000-11-07 Akim Demaille <akim@epita.fr>
24141
24142 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
24143 Merge in a single CPP if/else.
24144
24145 2000-11-07 Akim Demaille <akim@epita.fr>
24146
24147 * src/output.c (output): Remove useless variables.
24148 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
24149 argument `data' for consistency with the prototypes.
24150 Qualify it `const'.
24151 (obstack_copy, obstack_copy0): Rename the second argument as
24152 `address' for consistency. Qualify it `const'.
24153 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
24154 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
24155 `const' their input argument (`data' or `address').
24156 Adjust the corresponding macros to include `const' in casts.
24157
24158 2000-11-03 Akim Demaille <akim@epita.fr>
24159
24160 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
24161 s/PFILE1/BISON_HAIRY/.
24162 Adjust dependencies.
24163
24164 2000-11-03 Akim Demaille <akim@epita.fr>
24165
24166 For some reason, this was not applied.
24167
24168 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
24169 `unlink': it's no longer used.
24170
24171 2000-11-03 Akim Demaille <akim@epita.fr>
24172
24173 * src/files.c (skeleton_find): New function, eved out of...
24174 (open_files, open_extra_files): here.
24175
24176 2000-11-03 Akim Demaille <akim@epita.fr>
24177
24178 Don't use `atexit'.
24179
24180 * src/files.c (obstack_save): New function.
24181 (done): Rename as...
24182 (output_files): this.
24183 Use `obstack_save'.
24184 * src/main.c (main): Don't use `atexit' to register `done', since
24185 it no longer has to remove tmp files, just call `output_files'
24186 when there are no errors.
24187
24188 2000-11-02 Akim Demaille <akim@epita.fr>
24189
24190 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
24191 `unlink': it's no longer used.
24192 * src/files.h: Formatting changes.
24193
24194 2000-11-02 Akim Demaille <akim@epita.fr>
24195
24196 Remove the last uses of mktemp and unlink/delete.
24197
24198 * src/files.c (fdefines, ftable): Removed.
24199 (defines_ostack, table_obstack): New.
24200 Adjust dependencies of the former into uses of the latter.
24201 * src/output.c (output_short_or_char_table, output_short_table):
24202 Convert to using obstacks.
24203 * src/reader.c (copy_comment2): Accept one FILE * and two
24204 obstacks.
24205 (output_token_defines, reader_output_yylsp): Use obstacks.
24206 * src/system.h (obstack_fgrow3): New.
24207 * po/POTFILES.in: Adjust.
24208
24209 2000-11-01 Akim Demaille <akim@epita.fr>
24210
24211 Change each use of `fattrs' into a use of `attrs_obstack'.
24212
24213 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
24214 * src/files.c (fattrs): Remove.
24215 (attrs_obstack): New.
24216 Adjust all dependencies.
24217 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
24218
24219 2000-11-01 Akim Demaille <akim@epita.fr>
24220
24221 Introduce obstacks.
24222 Change each use of `faction' into a use of `action_obstack'.
24223
24224 * lib/obstack.h, lib/obstack.c: New files.
24225 * src/files.c (faction): Remove.
24226 (action_obstack): New.
24227 Adjust all dependencies.
24228
24229 2000-10-20 Akim Demaille <akim@epita.fr>
24230
24231 * lib/quote.h (PARAMS): New macro. Use it.
24232
24233 2000-10-16 Akim Demaille <akim@epita.fr>
24234
24235 * src/output.c (output_short_or_char_table): New function.
24236 (output_short_table, output_token_translations): Use it.
24237 (goto_actions): Use output_short_table.
24238
24239 2000-10-16 Akim Demaille <akim@epita.fr>
24240
24241 * src/symtab.c (bucket_new): New function.
24242 (getsym): Use it.
24243
24244 * src/output.c (output_short_table): New argument to display the
24245 comment associated with the table.
24246 Adjust dependencies.
24247 (output_gram): Use it.
24248 (output_rule_data): Nicer output layout for YYTNAME.
24249
24250 2000-10-16 Akim Demaille <akim@epita.fr>
24251
24252 * src/lex.c (read_typename): New function.
24253 (lex): Use it.
24254 * src/reader.c (copy_dollar): Likewise.
24255
24256 2000-10-16 Akim Demaille <akim@epita.fr>
24257
24258 * src/reader.c (copy_comment2): Expect the input stream to be on
24259 the `/' which is suspected to open a comment, instead of being
24260 called after `//' or `/*' was read.
24261 (copy_comment, copy_definition, parse_union_decl, copy_action)
24262 (copy_guard): Adjust.
24263
24264 2000-10-16 Akim Demaille <akim@epita.fr>
24265
24266 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
24267 `read_signed_integer'.
24268
24269 2000-10-16 Akim Demaille <akim@epita.fr>
24270
24271 * src/reader.c (copy_dollar): New function.
24272 (copy_guard, copy_action): Use it.
24273
24274 2000-10-16 Akim Demaille <akim@epita.fr>
24275
24276 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
24277 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
24278 New files, from Fileutils 4.0.27.
24279 * src/main.c (printable_version): Remove.
24280 * src/lex.c, src/reader.c: Use `quote'.
24281
24282 2000-10-04 Akim Demaille <akim@epita.fr>
24283
24284 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
24285
24286 2000-10-04 Akim Demaille <akim@epita.fr>
24287
24288 * doc/bison.texinfo: Various typos spotted by Neil Booth.
24289
24290 2000-10-04 Akim Demaille <akim@epita.fr>
24291
24292 When a literal string is used to define two different tokens,
24293 `bison -v' segfaults.
24294 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
24295
24296 * tests/regression.m4: New file.
24297 Include the core of the sample provided by Piotr Gackiewicz.
24298 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
24299 properly.
24300
24301 2000-10-04 Akim Demaille <akim@epita.fr>
24302
24303 * src/reader.c (parse_expect_decl): Keep `count' within the size
24304 of `buffer'.
24305 From Neil Booth.
24306
24307 2000-10-02 Paul Eggert <eggert@twinsun.com>
24308
24309 * bison.s1 (yyparse): Assign the default value
24310 unconditionally, to avoid a GCC warning and make the parser a
24311 tad smaller.
24312
24313 2000-10-02 Akim Demaille <akim@epita.fr>
24314
24315 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
24316 options.
24317
24318 2000-10-02 Akim Demaille <akim@epita.fr>
24319
24320 * src/derives.c, src/print.c, src/reduce.c: To ease the
24321 translation, move some `\n' out of the translated strings.
24322
24323 2000-10-02 Akim Demaille <akim@epita.fr>
24324
24325 The location tracking mechanism is precious for parse error
24326 messages. Nevertheless, it is enabled only when `@n' is used in
24327 the grammar, which is a different issue (you can use it in error
24328 message, but not in the grammar per se). Therefore, there should
24329 be another means to enable it.
24330
24331 * src/getargs.c (getargs): Support `--locations'.
24332 (usage): Report it.
24333 * src/getargs.h (locationsflag): Export it.
24334 * src/lex.c (percent_table): Support `%locations'.
24335 * src/reader.c (yylsp_needed): Remove this variable, now replaced
24336 with `locationsflag'.
24337 * doc/bison.texinfo: Document `--locations' and `%locations'.
24338 Sort the options.
24339 * tests/calc.m4: Test it.
24340
24341 For regularity of the names, replace each
24342 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
24343 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
24344 In addition replace each `flag' with `_flag'.
24345
24346 2000-10-02 Akim Demaille <akim@epita.fr>
24347
24348 Also test parse error messages, including with YYERROR_VERBOSE.
24349
24350 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
24351 associative).
24352 Use it to check the computations.
24353 Use it to check `nonassoc' is honored.
24354 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
24355 `--yyerror-verbose'.
24356 (_AT_CHECK_CALC): Adjust to this option.
24357 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
24358
24359 2000-10-02 Akim Demaille <akim@epita.fr>
24360
24361 Test also `--verbose', `--defines' and `--name-prefix'. Testing
24362 the latter demonstrates a flaw in the handling of non debugging
24363 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
24364 was used in order to simplify:
24365
24366 #if YYDEBUG
24367 if (yydebug)
24368 {
24369 ...
24370 }
24371 #endif
24372
24373 into
24374
24375 if (yydebug)
24376 {
24377 ...
24378 }
24379
24380 unfortunately this leads to a CPP conflict when
24381 `--name-prefix=foo' is used since it produces `#define yydebug
24382 foodebug'.
24383
24384 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
24385 (YYDPRINTF): New macro.
24386 Spread its use.
24387 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
24388 the bison options.
24389 Also test `--verbose', `--defines' and `--name-prefix'.
24390
24391 2000-10-02 Akim Demaille <akim@epita.fr>
24392
24393 Improve the readability of the produced parsers.
24394
24395 * src/bison.s1: Formatting changes.
24396 Improve the comment related to the `$' mark.
24397 (yydefault): Don't fall through to `yyresume': `goto' there.
24398 * src/output.c (output_parser): When the `$' is met, skip the end
24399 of its line.
24400 New variable, `number_of_dollar_signs', to check there's exactly
24401 one `$' in the parser skeleton.
24402
24403 2000-10-02 Akim Demaille <akim@epita.fr>
24404
24405 * lib/xstrdup.c: New file, from the fileutils.
24406 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
24407 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
24408 instead of strlen + xmalloc + strcpy.
24409 * src/symtab.c (copys): Remove, use xstrdup instead.
24410
24411 2000-10-02 Akim Demaille <akim@epita.fr>
24412
24413 * src/gram.h (associativity): New enum type which replaces the
24414 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
24415 `right_assoc', `left_assoc' and `non_assoc'.
24416 Adjust all dependencies.
24417 * src/reader.c: Formatting changes.
24418 (LTYPESTR): Don't define it, use it as a literal in
24419 `reader_output_yylsp'.
24420 * src/symtab.h (symbol_class): New enum type which replaces the
24421 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
24422 `sunknown', `stoken and `snterm'.
24423
24424 2000-10-02 Akim Demaille <akim@epita.fr>
24425
24426 * src/getargs.c (fixed_outfiles): Rename as...
24427 (yaccflag): for consistency and accuracy.
24428 Adjust dependencies.
24429
24430 2000-10-02 Akim Demaille <akim@epita.fr>
24431
24432 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
24433 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
24434 difficult and introduced a lot of core dump. It turns out that
24435 Bison used an implementation of `xmalloc' based on `calloc', and
24436 at various places it does depend upon the initialization to 0. I
24437 have not tried to isolate the pertinent places, and all the former
24438 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
24439 someone should address this issue.
24440
24441 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
24442 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
24443 files.
24444 Adjust dependencies.
24445 * src/warshall.h: New file.
24446 Propagate.
24447
24448 2000-10-02 Akim Demaille <akim@epita.fr>
24449
24450 Various anti-`extern in *.c' changes.
24451
24452 * src/system.h: Include `assert.h'.
24453
24454 2000-10-02 Akim Demaille <akim@epita.fr>
24455
24456 * src/state.h (nstates, final_state, first_state, first_shift)
24457 (first_reduction): Move their exportation from here...
24458 * src/LR0.h: to here.
24459 Adjust dependencies.
24460 * src/getargs.c (statisticsflag): New variable.
24461 Add support for `--statistics'.
24462 Adjust dependencies.
24463
24464 Remove a lot of now useless `extern' statements in most files.
24465
24466 2000-10-02 Akim Demaille <akim@epita.fr>
24467
24468 * src/LR0.h: New file.
24469 Propagate its use.
24470
24471 2000-10-02 Akim Demaille <akim@epita.fr>
24472
24473 * src/print.h: New file.
24474 Propagate its use.
24475 * src/print.c: Formatting and ordering changes.
24476 (verbose, terse): Replace with...
24477 (print_results): this new function.
24478 Adjust dependencies.
24479
24480 2000-10-02 Akim Demaille <akim@epita.fr>
24481
24482 * src/conflicts.c (conflict_report): New function.
24483 (conflict_log, verbose_conflict_log): Replace with...
24484 (print_conflicts): this function.
24485 Adjust dependencies.
24486 * src/conflicts.h: New file.
24487 Propagate its inclusion.
24488
24489 2000-10-02 Akim Demaille <akim@epita.fr>
24490
24491 * src/nullable.h: New file.
24492 Propagate its inclusion.
24493 * src/nullable.c: Formatting changes.
24494
24495 2000-10-02 Akim Demaille <akim@epita.fr>
24496
24497 * src/reduce.h: New file.
24498 Propagate its inclusion.
24499 * src/reduce.c: Topological sort and other formatting changes.
24500 (bool, TRUE, FALSE): Move their definition to...
24501 * src/system.h: here.
24502
24503 2000-10-02 Akim Demaille <akim@epita.fr>
24504
24505 * src/files.c: Formatting changes.
24506 (tryopen, tryclose, openfiles): Rename as...
24507 (xfopen, xfclose, open_files): this.
24508 (stringappend): static.
24509 * src/files.h: Complete the list of exported symbols.
24510 Propagate its use.
24511
24512 2000-10-02 Akim Demaille <akim@epita.fr>
24513
24514 * src/reader.h: New file.
24515 Propagate its use instead of tedious list of `extern' and
24516 prototypes.
24517 * src/reader.c: Formatting changes, topological sort,
24518 s/register//.
24519
24520 2000-10-02 Akim Demaille <akim@epita.fr>
24521
24522 * src/lex.h: Prototype `lex.c' exported functions.
24523 * src/reader.c: Adjust.
24524 * src/lex.c: Formatting changes.
24525 (safegetc): Rename as...
24526 (xgetc): this.
24527
24528 2000-10-02 Akim Demaille <akim@epita.fr>
24529
24530 * src/lalr.h: New file.
24531 Propagate its inclusion instead of prototypes and `extern'.
24532 * src/lalr.c: Formatting changes, topological sorting etc.
24533
24534 2000-10-02 Akim Demaille <akim@epita.fr>
24535
24536 * src/output.c (token_actions): Introduce a temporary array,
24537 YYDEFACT, that makes it possible for this function to use
24538 output_short_table.
24539
24540 2000-10-02 Akim Demaille <akim@epita.fr>
24541
24542 `user_toknums' is output as a `short[]' in `output.c', while it is
24543 defined as a `int[]' in `reader.c'. For consistency with the
24544 other output tables, `user_toknums' is now defined as a table of
24545 shorts.
24546
24547 * src/reader.c (user_toknums): Be a short table instead of an int
24548 table.
24549 Adjust dependencies.
24550
24551 Factor the short table outputs.
24552
24553 * src/output.c (output_short_table): New function.
24554 * src/output.c (output_gram, output_stos, output_rule_data)
24555 (output_base, output_table, output_check): Use it.
24556
24557 2000-10-02 Akim Demaille <akim@epita.fr>
24558
24559 * src/output.c (output): Topological sort of the functions, in
24560 order to get rid of the `static' prototypes.
24561 No longer use `register'.
24562 * src/output.h: New file.
24563 Propagate its inclusion in files explicitly prototyping functions
24564 from output.c.
24565
24566 2000-09-21 Akim Demaille <akim@epita.fr>
24567
24568 * src/atgeneral.m4: Update from Autoconf.
24569
24570 2000-09-21 Akim Demaille <akim@epita.fr>
24571
24572 * src/closure.h: New file.
24573 * src/closure.c: Formatting changes, topological sort over the
24574 functions, use of closure.h.
24575 (initialize_closure, finalize_closure): Rename as...
24576 (new_closure, free_closure): these. Adjust dependencies.
24577 * src/LR0.c: Formatting changes, topological sort, use of
24578 cloture.h.
24579 (initialize_states): Rename as...
24580 (new_states): this.
24581 * src/Makefile.am (noinst_HEADERS): Adjust.
24582
24583 2000-09-20 Akim Demaille <akim@epita.fr>
24584
24585 * src/acconfig.h: Don't protect config.h against multiple
24586 inclusion.
24587 Don't define PARAMS.
24588 * src/system.h: Define PARAMS.
24589 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
24590 purpose of config.h. system.h must not try to fix wrong
24591 definitions in config.h.
24592
24593 2000-09-20 Akim Demaille <akim@epita.fr>
24594
24595 * src/derives.h: New file.
24596 * src/main.c, src/derives.h: Use it.
24597 Formatting changes.
24598 * src/Makefile.am (noinst_HEADERS): Adjust.
24599
24600 2000-09-20 Akim Demaille <akim@epita.fr>
24601
24602 * tests/atgeneral.m4: Update from Autoconf.
24603 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
24604 (AT_CHECK_CALC): New macros.
24605 Use these macros to test bison with options `', `--raw',
24606 `--debug', `--yacc', `--yacc --debug'.
24607
24608 2000-09-19 Akim Demaille <akim@epita.fr>
24609
24610 * src/output.c: Formatting changes.
24611 * src/machine.h: Remove, leaving its contents in...
24612 * src/system.h: here.
24613 Include stdio.h.
24614 Adjust all dependencies on stdio.h and machine.h.
24615 * src/getargs.h: New file.
24616 Let all `extern' declarations about getargs.c be replaced with
24617 inclusion of `getargs.h'.
24618 * src/Makefile.am (noinst_HEADERS): Adjust.
24619
24620 * tests/calc.m4 (yyin): Be initialized in main, not on the global
24621 scope.
24622 (yyerror): Returns void, not int.
24623 * doc/bison.texinfo: Formatting changes.
24624
24625 2000-09-19 Akim Demaille <akim@epita.fr>
24626
24627 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
24628 portable.
24629
24630 2000-09-18 Akim Demaille <akim@epita.fr>
24631
24632 * configure.in: Append WARNING_CFLAGS to CFLAGS.
24633 * src/Makefile.am (INCLUDES): Don't.
24634 Be ready to fetch headers in lib/.
24635
24636 2000-09-18 Akim Demaille <akim@epita.fr>
24637
24638 * doc/bison.texinfo: Update the copyright.
24639 ANSIfy and GNUify the examples.
24640 Remove the old menu.
24641
24642 2000-09-18 Akim Demaille <akim@epita.fr>
24643
24644 First set of tests: use the `calc' example from the documentation.
24645
24646 * src/bison.s1 (yyparse): Condition the code using `yytname' which
24647 is defined only when YYDEBUG is.
24648 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
24649 * src/files.c (tryopen, tryclose): Formatting changes.
24650 Move to the top and be static.
24651 * src/reader.c (read_signed_integer): Likewise.
24652 * tests/calc.m4: New file.
24653 * Makefile.am, suite.m4: Adjust.
24654 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
24655
24656 2000-09-18 Akim Demaille <akim@epita.fr>
24657
24658 Add support for an Autotest test suite for Bison.
24659
24660 * m4/m4.m4, m4/atconfig.m4: New files.
24661 * m4/Makefile.am (EXTRA_DIST): Adjust.
24662 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
24663 files.
24664 * src/getargs.c: Display a more standard --version message.
24665 * src/reader.c (reader): Formatting changes.
24666 No longer depend upon VERSION_STRING.
24667 * configure.in: No longer use `dnl'.
24668 Set up the test suite and the new directory `tests/.
24669 (VERSION_STRING): Remove.
24670
24671 2000-04-14 Akim Demaille <akim@epita.fr>
24672
24673 * src/reader.c (copy_comment2): New function, same as former
24674 `copy_comment', but outputs into two FILE *.
24675 (copy_comment): Use it.
24676 (parse_union_decl): Use it.
24677 (get_type, parse_start_decl): Use the same `invalid' message.
24678 (parse_start_decl, parse_union_decl): Use the same `multiple'
24679 message.
24680 (parse_union_decl, copy_guard, copy_action): Use the same
24681 `unmatched' message.
24682 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
24683
24684 2000-03-31 Akim Demaille <akim@epita.fr>
24685
24686 * src/files.c (tryopen, tryclose): Move to the top.
24687 Be static.
24688
24689 2000-03-31 Akim Demaille <akim@epita.fr>
24690
24691 * src/main.c (main): Don't call `done', exit does it.
24692
24693 2000-03-31 Akim Demaille <akim@epita.fr>
24694
24695 * allocate.c: s/return (foo)/return foo/.
24696 * lalr.c: Likewise.
24697 * LR0.c: Likewise.
24698 * output.c: Likewise.
24699 * reader.c: Likewise.
24700 * symtab.c: Likewise.
24701 * vmsgetargs.c: Likewise.
24702
24703 2000-03-31 Akim Demaille <akim@epita.fr>
24704
24705 Clean up the error reporting functions.
24706
24707 * src/report.c: New file.
24708 * src/report.h: Likewise.
24709 * src/Makefile.am: Adjust.
24710 * m4/error.m4: New file.
24711 * m4/Makefile.am: Adjust.
24712 * configure.in (jm_PREREQ_ERROR): Call it.
24713 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
24714 Remove.
24715 (fatal, fatals): Remove. All callers use complain.c::fatal.
24716 (warn, warni, warns, warnss, warnss): Remove. All callers use
24717 complain.c::complain.
24718 (toomany): Remove, use fatal instead.
24719 * src/files.c (done): No argument, use complain_message_count.
24720 * src/main.c (main): Register `done' to `atexit'.
24721
24722 * src/getargs.c (usage): More `fputs', less `fprintf'.
24723
24724 2000-03-28 Akim Demaille <akim@epita.fr>
24725
24726 * lib/: New directory.
24727 * Makefile.am (SUBDIRS): Adjust.
24728 * configure.in: Adjust.
24729 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
24730 useless.
24731 * src/alloca.c: Moved to lib/.
24732 * src/getopt.c: Likewise.
24733 * src/getopt1.c: Likewise.
24734 * src/getopt.h: Likewise.
24735 * src/ansi2knr.c: Likewise.
24736 * src/ansi2knr.1: Likewise.
24737 * src/Makefile.am: Adjust.
24738 * lib/Makefile.am: New file.
24739
24740 2000-03-28 Akim Demaille <akim@epita.fr>
24741
24742 * src/getargs.c (usage): Refresh the help message.
24743
24744 2000-03-17 Akim Demaille <akim@epita.fr>
24745
24746 * src/getopt1.c: Updated from textutils 2.0e
24747 * src/getopt.c: Likewise.
24748 * src/getopt.h: Likewise.
24749
24750 2000-03-17 Akim Demaille <akim@epita.fr>
24751
24752 * src/Makefile.am (bison.simple): Fix the awk program: quote only
24753 the file name, not the whole `#line LINE FILE'.
24754
24755 2000-03-17 Akim Demaille <akim@epita.fr>
24756
24757 On syntax errors, report the token on which we choked.
24758
24759 * src/bison.s1 (yyparse): In the label yyerrlab, when
24760 YYERROR_VERBOSE, add yychar in msg.
24761
24762 2000-03-17 Akim Demaille <akim@epita.fr>
24763
24764 * src/reader.c (copy_at): New function.
24765 (copy_guard): Use it.
24766 (copy_action): Use it.
24767
24768 2000-03-17 Akim Demaille <akim@epita.fr>
24769
24770 Be kind to translators, save some useless translations.
24771
24772 * src/main.c (banner): New function.
24773 (fatal_banner): Use it.
24774 (warn_banner): Use it.
24775
24776 2000-03-17 Akim Demaille <akim@epita.fr>
24777
24778 * src/reader.c (copy_definition): Use copy_string and
24779 copy_comment. Removed now unused `match', `ended',
24780 `cplus_comment'.
24781 (copy_comment, copy_string): Moved, to be visible from
24782 copy_definition.
24783
24784 2000-03-17 Akim Demaille <akim@epita.fr>
24785
24786 * src/reader.c (copy_string): Declare `static inline'. No
24787 problems with inline, since it is checked by configure.
24788 (copy_comment): Likewise.
24789
24790 2000-03-17 Akim Demaille <akim@epita.fr>
24791
24792 * src/reader.c (packsymbols): Formatting changes.
24793
24794 2000-03-17 Akim Demaille <akim@epita.fr>
24795
24796 * src/reader.c (copy_comment): New function, factored out from:
24797 (copy_action): Use it. Removed now unused `match', `ended',
24798 `cplus_comment'.
24799 (copy_guard): Likewise.
24800
24801 2000-03-17 Akim Demaille <akim@epita.fr>
24802
24803 * src/reader.c (copy_string): New function, factored out from:
24804 (copy_action): Use it.
24805 (copy_guard): Likewise.
24806
24807 2000-03-17 Akim Demaille <akim@epita.fr>
24808
24809 Change the handling of @s so that they behave exactly like $s.
24810 There is now a pseudo variable @$ (readble and writable), location
24811 of the lhs of the rule (by default ranging from the location of
24812 the first symbol of the rhs, to the location of the last symbol,
24813 or, if the rhs is empty, YYLLOC).
24814
24815 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
24816 yyval.
24817 (yyparse): When providing a default semantic action, provide a
24818 default location action.
24819 (after the $): No longer change `*YYLSP', just stack YYLOC the
24820 same way you stack YYVAL.
24821 * src/reader.c (read_declarations): Use warns.
24822 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
24823 (copy_action, case '@'): Likewise.
24824 Use a standard error message, to save useless work from
24825 translators.
24826
24827 2000-03-17 Akim Demaille <akim@epita.fr>
24828
24829 * src/bison.s1: Formatting and cosmetics changes.
24830 * src/reader.c: Likewise.
24831 Update the Copyright notice.
24832
24833 2000-03-17 Akim Demaille <akim@epita.fr>
24834
24835 * src/bison.s1 (#line): All set to `#line' only, since the
24836 Makefile now handles them.
24837
24838 2000-03-16 Akim Demaille <akim@epita.fr>
24839
24840 * src/output.c (output_rule_data): Output the documentation of
24841 some of the tables.
24842 (Copyright notice): Update.
24843 Formatting changes.
24844
24845 2000-03-16 Akim Demaille <akim@epita.fr>
24846
24847 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
24848 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
24849 One `#if YYDEBUG' remains, since it uses variables which are
24850 defined only if `YYDEBUG != 0'.
24851
24852 2000-03-16 Akim Demaille <akim@epita.fr>
24853
24854 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
24855 and related variables so that the similarities are highlighted.
24856
24857 2000-03-16 Akim Demaille <akim@epita.fr>
24858
24859 * src/bison.s1: Properly indent CPP directives.
24860
24861 2000-03-16 Akim Demaille <akim@epita.fr>
24862
24863 * src/bison.s1: Properly indent the `alloca' CPP section.
24864
24865 2000-03-16 Akim Demaille <akim@epita.fr>
24866
24867 Do not hard code values of directories in `configure.in'.
24868 Update the `configure' tool chain.
24869
24870 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
24871 src/makefile.am.
24872 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
24873 (AC_OUTPUT): Add m4/Makefile.
24874 Bump to bison 1.28a, 1.29 has never been released.
24875 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
24876 handled via src/Makefile.am.
24877 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
24878 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
24879 autoheader.
24880 * Makefile.am (SUBDIRS): Add m4.
24881 (ACLOCAL_AM_FLAGS): New variable.
24882 (AUTOMAKE_OPTIONS): Add check-news.
24883 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
24884 the proper line number and file name.
24885 (DEFS): Propagate the location of bison library files and of the
24886 locale files.
24887 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
24888 builddir.
24889 * acinclude.m4: Remove, replaced by the directory m4.
24890 * m4/Makefile.am (EXTRA_DIST): New variable.
24891 * m4/gettext.m4: New file, from the fileutils.
24892 * m4/lcmessage.m4: Likewise
24893 * m4/progtest.m4: Likewise.
24894 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
24895
24896 2000-03-10 Akim Demaille <akim@epita.fr>
24897
24898 * src/closure.c:
24899 Formatting changes of various comments.
24900 Respect the GNU coding standards at various places.
24901 Don't use `_()' when no translation is needed.
24902
24903 1999-12-13 Jesse Thilo <jthilo@gnu.org>
24904
24905 * src/files.c:
24906 OS/2 honors TMPDIR environment variable.
24907
24908 1999-12-13 Jesse Thilo <jthilo@gnu.org>
24909
24910 * doc/bison.texinfo: Tweaked spelling and grammar.
24911 Updated ISBN.
24912 Removed reference to price of printed copy.
24913 Mention BISON_SIMPLE and BISON_HAIRY.
24914
24915 1999-12-13 Jesse Thilo <jthilo@gnu.org>
24916
24917 * configure.in, NEWS:
24918 Bison 1.29 released.
24919
24920 1999-10-27 Jesse Thilo <jthilo@gnu.org>
24921
24922 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
24923 Added reference card.
24924
24925 1999-07-26 Jesse Thilo <jthilo@gnu.org>
24926
24927 * po/ru.po: Added Russian translation.
24928
24929 1999-07-26 Jesse Thilo <jthilo@gnu.org>
24930
24931 * configure.in: Added Russian translation.
24932
24933 1999-07-06 Jesse Thilo <jthilo@gnu.org>
24934
24935 * configure.in, NEWS, README:
24936 Released version 1.28.
24937
24938 1999-06-14 Jesse Thilo <jthilo@gnu.org>
24939
24940 * src/system.h:
24941 Squashed redefinition warning on some systems.
24942
24943 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
24944 Have configure build version string instead of relying on ANSI string
24945 concatentation.
24946
24947 1999-06-14 Jesse Thilo <jthilo@gnu.org>
24948
24949 * po/POTFILES.in: Got rid of version.c.
24950
24951 1999-06-14 Jesse Thilo <jthilo@gnu.org>
24952
24953 * acconfig.h, configure.in:
24954 Have configure build version string instead of relying on ANSI string
24955 concatentation.
24956
24957 1999-06-08 Jesse Thilo <jthilo@gnu.org>
24958
24959 * doc/bison.1:
24960 Dropped mention of `+' for long-named options.
24961
24962 1999-05-30 Jesse Thilo <jthilo@gnu.org>
24963
24964 * src/files.c: Added <unistd.h> for unlink().
24965
24966 * src/Makefile.am, src/system.h:
24967 I18n fixes.
24968
24969 1999-05-30 Jesse Thilo <jthilo@gnu.org>
24970
24971 * README: Added a FAQ list.
24972
24973 * configure.in, acconfig.h:
24974 I18n fixes.
24975
24976 1999-05-30 Jesse Thilo <jthilo@gnu.org>
24977
24978 * doc/FAQ, doc/Makefile.am:
24979 Added a FAQ list.
24980
24981 1999-05-19 Jesse Thilo <jthilo@gnu.org>
24982
24983 * src/alloc.h, src/symtab.h, src/version.c:
24984 Protected inclusion of "config.h" with HAVE_CONFIG_H.
24985
24986 1999-04-18 Jesse Thilo <jthilo@gnu.org>
24987
24988 * src/.cvsignore, src/Makefile.am:
24989 Reorganized: sources in `src', documentation in `doc'.
24990
24991 * src/lex.c (literalchar):
24992 fixed the code for escaping double quotes (thanks
24993 Jonathan Czisny.)
24994
24995 1999-04-18 Jesse Thilo <jthilo@gnu.org>
24996
24997 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
24998 Adjusted paths to reflect directory reorganization.
24999
25000 1999-04-18 Jesse Thilo <jthilo@gnu.org>
25001
25002 * doc/.cvsignore, doc/Makefile.am:
25003 Reorganized: sources in `src', documentation in `doc'.
25004
25005 1999-04-18 Jesse Thilo <jthilo@gnu.org>
25006
25007 * configure.in:
25008 Updated AC_INIT file to reflect directory reorganization.
25009
25010 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
25011 Reorganized: sources in `src', documentation in `doc'.
25012
25013 1999-04-13 Jesse Thilo <jthilo@gnu.org>
25014
25015 * src/allocate.c:
25016 Don't declare calloc() and realloc() if not necessary.
25017
25018 1999-04-13 Jesse Thilo <jthilo@gnu.org>
25019
25020 * configure.in, acconfig.h, acinclude.m4:
25021 Don't declare calloc() and realloc() if not necessary.
25022
25023 1999-03-23 Jesse Thilo <jthilo@gnu.org>
25024
25025 * po/.cvsignore: Added i18n support.
25026
25027 1999-03-23 Jesse Thilo <jthilo@gnu.org>
25028
25029 * acconfig.h, configure.in, Makefile.am:
25030 Added i18n support.
25031
25032 1999-03-22 Jesse Thilo <jthilo@gnu.org>
25033
25034 * src/bison.s1: Fixed #line numbers.
25035
25036 1999-03-15 Jesse Thilo <jthilo@gnu.org>
25037
25038 * po/es.po, po/fr.po, po/nl.po, po/de.po:
25039 Added PO files from Translation Project.
25040
25041 1999-03-03 Jesse Thilo <jthilo@gnu.org>
25042
25043 * Makefile.am:
25044 Added support for non-ANSI compilers (ansi2knr).
25045
25046 1999-02-16 Jesse Thilo <jthilo@gnu.org>
25047
25048 * configure.in: Bumped version number to 1.27.
25049
25050 * Makefile.am:
25051 Added `bison.simple' to list of files removed by `make distclean'.
25052
25053 1999-02-12 Jesse Thilo <jthilo@gnu.org>
25054
25055 * src/files.c, src/files.h:
25056 Defined locations of parser files in config.h instead of Makefile.
25057
25058 1999-02-12 Jesse Thilo <jthilo@gnu.org>
25059
25060 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
25061 Defined locations of parser files in config.h instead of Makefile.
25062
25063 1999-02-09 Jesse Thilo <jthilo@gnu.org>
25064
25065 * Makefile.am:
25066 Removed inappropriate use of $< macro.
25067
25068 1999-02-05 Jesse Thilo <jthilo@gnu.org>
25069
25070 * po/Makefile.in.in, po/POTFILES.in:
25071 Add `po' directory skeleton.
25072
25073 1999-01-27 Jesse Thilo <jthilo@gnu.org>
25074
25075 * README: Document help-bison list.
25076
25077 * configure.in: Add check for mkstemp().
25078
25079 1999-01-20 Jesse Thilo <jthilo@gnu.org>
25080
25081 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
25082 Hush a few compiler warnings.
25083
25084 * src/files.c:
25085 Add tryclose(), which verifies that fclose was successful.
25086 Hush a couple of compiler warnings.
25087
25088 1999-01-20 Jesse Thilo <jthilo@gnu.org>
25089
25090 * Makefile.am, OChangeLog:
25091 ChangeLog is now automatically generated. Include the old version as
25092 OChangeLog.
25093
25094 1999-01-14 Jesse Thilo <jthilo@gnu.org>
25095
25096 * 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:
25097 Update FSF address.
25098
25099 1999-01-14 Jesse Thilo <jthilo@gnu.org>
25100
25101 * doc/bison.texinfo: Fix formatting glitch.
25102
25103 * doc/bison.texinfo: Update FSF address.
25104
25105 1999-01-14 Jesse Thilo <jthilo@gnu.org>
25106
25107 * acconfig.h: Update FSF address.
25108
25109 1999-01-08 Jesse Thilo <jthilo@gnu.org>
25110
25111 * src/system.h:
25112 Don't define PACKAGE here, since config.h defines it.
25113
25114 1998-12-30 Jesse Thilo <jthilo@gnu.org>
25115
25116 * src/reader.c: Update copyright date.
25117
25118 * src/main.c:
25119 Ditch sprintf to statically-sized buffers in fatal/warn functions in
25120 favor of output directly to stderr (avoids buffer overruns).
25121
25122 * src/reader.c: Some checks for premature EOF.
25123
25124 * 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:
25125 Use prototypes if the compiler understands them.
25126
25127 * src/files.c: Honor TMPDIR on Unix hosts.
25128 Use prototypes if the compiler understands them.
25129
25130 * src/reader.c:
25131 Fix a couple of buffer overrun bugs.
25132 Use prototypes if the compiler understands them.
25133
25134 * src/system.h: Include unistd.h and ctype.h.
25135 Use #ifdef instead of #if for NLS symbols.
25136
25137 1998-12-30 Jesse Thilo <jthilo@gnu.org>
25138
25139 * doc/bison.texinfo:
25140 Delete comment "consider using @set for edition number, etc..." since
25141 we now are doing so.
25142
25143 1998-12-30 Jesse Thilo <jthilo@gnu.org>
25144
25145 * configure.in:
25146 Use prototypes if the compiler understands them.
25147
25148 * NEWS: Document 1.26 highlights.
25149
25150 * Makefile.am: Require Automake 1.3 or later.
25151
25152 * acconfig.h:
25153 Use prototypes if the compiler understands them.
25154
25155 1998-12-29 Jesse Thilo <jthilo@gnu.org>
25156
25157 * src/version.c:
25158 Use VERSION symbol from automake for version number.
25159
25160 1998-12-29 Jesse Thilo <jthilo@gnu.org>
25161
25162 * acconfig.h, configure.in, version.cin:
25163 Use VERSION symbol from automake for version number.
25164
25165 1998-11-28 Jesse Thilo <jthilo@gnu.org>
25166
25167 * Makefile.am:
25168 Distribute original version of simple parser (bison.s1), not built
25169 version (bison.simple).
25170
25171 1998-11-28 Jesse Thilo <jthilo@gnu.org>
25172
25173 * doc/bison.texinfo: Add info dir entry.
25174
25175 * doc/bison.texinfo:
25176 Let automake put version number into documentation.
25177
25178 1998-11-26 Jesse Thilo <jthilo@gnu.org>
25179
25180 * src/bison.cld, src/build.com, src/vmshlp.mar:
25181 Add non-RCS files from /gd/gnu/bison.
25182
25183 1998-11-26 Jesse Thilo <jthilo@gnu.org>
25184
25185 * doc/bison.1:
25186 Document the BISON_HAIRY and BISON_SIMPLE variables.
25187
25188 1998-11-25 Jesse Thilo <jthilo@gnu.org>
25189
25190 * src/version.c: Build version.c automatically.
25191
25192 * src/reader.c:
25193 Fix token numbering (used to start at 258, not 257).
25194
25195 * src/system.h: Include config.h.
25196
25197 * src/getargs.c: Update bug report address.
25198
25199 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
25200 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
25201
25202 1998-11-25 Jesse Thilo <jthilo@gnu.org>
25203
25204 * Makefile.am:
25205 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
25206
25207 * configure.in, version.cin:
25208 Build version.c automatically.
25209
25210 * AUTHORS: Add AUTHORS file.
25211
25212 * README: Update bug report address.
25213
25214 * bison.simple:
25215 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
25216
25217 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
25218 Add automake stuff.
25219
25220 1998-11-25 Jesse Thilo <jthilo@gnu.org>
25221
25222 * doc/bison.texinfo: Clean up some formatting.
25223
25224 1998-05-05 Richard Stallman <rms@gnu.org>
25225
25226 * doc/bison.texinfo:
25227 Explain better why to make a pure parser.
25228
25229 1998-01-05 Richard Stallman <rms@gnu.org>
25230
25231 * src/files.c (openfiles):
25232 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
25233 find a temporary directory, if possible. Do not unlink files while
25234 they are open.
25235
25236 1997-08-25 Richard Stallman <rms@gnu.org>
25237
25238 * src/reader.c (stack_offset;):
25239 Change some warni to warns.
25240
25241 * src/lex.c (literalchar): Use warns, not warni.
25242
25243 1997-06-28 Richard Stallman <rms@gnu.org>
25244
25245 * src/bison.s1: Add a Bison version comment.
25246
25247 * src/main.c (fatal, warn, berror):
25248 Use program_name.
25249
25250 1997-06-28 Richard Stallman <rms@gnu.org>
25251
25252 * Makefile.in (bison_version): New variable.
25253 (dist): Use that variable.
25254 (bison.s1): Substitute the Bison version into bison.simple.
25255
25256 * bison.simple: Add a Bison version comment.
25257
25258 1997-06-18 Richard Stallman <rms@gnu.org>
25259
25260 * src/main.c (fatal, warn, berror):
25261 Make error messages standard.
25262 (toomany): Improve error message text.
25263
25264 * 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:
25265 new.h renamed to alloc.h.
25266
25267 1997-06-18 Richard Stallman <rms@gnu.org>
25268
25269 * Makefile.in: new.h renamed to alloc.h.
25270
25271 1997-05-24 Richard Stallman <rms@gnu.org>
25272
25273 * src/lex.c (literalchar):
25274 Fix the code for escaping \, " and '.
25275
25276 (lex): Avoid trouble when there are many chars
25277 to discard in a char literal with just several chars in it.
25278
25279 1997-05-17 Richard Stallman <rms@gnu.org>
25280
25281 * src/bison.s1:
25282 Use malloc, if using alloca is troublesome.
25283 (YYSTACK_USE_ALLOCA): New flag macro.
25284 Define it for some systems and compilers.
25285 (YYSTACK_ALLOC): New macro.
25286 (yyparse): Use YYSTACK_ALLOC to allocate stack.
25287 If it was malloc'd, free it.
25288
25289 1997-05-17 Richard Stallman <rms@gnu.org>
25290
25291 * bison.simple:
25292 Use malloc, if using alloca is troublesome.
25293 (YYSTACK_USE_ALLOCA): New flag macro.
25294 Define it for some systems and compilers.
25295 (YYSTACK_ALLOC): New macro.
25296 (yyparse): Use YYSTACK_ALLOC to allocate stack.
25297 If it was malloc'd, free it.
25298
25299 1997-04-23 Richard Stallman <rms@gnu.org>
25300
25301 * src/bison.s1:
25302 (alloca) [__hpux]: Always define as __builtin_alloca.
25303
25304 1997-04-23 Richard Stallman <rms@gnu.org>
25305
25306 * bison.simple:
25307 (alloca) [__hpux]: Always define as __builtin_alloca.
25308
25309 1997-04-22 Richard Stallman <rms@gnu.org>
25310
25311 * src/bison.s1:
25312 [__hpux]: Include alloca.h (right for HPUX 10)
25313 instead of declaring alloca (right for HPUX 9).
25314
25315 * src/bison.s1 (__yy_memcpy):
25316 Declare arg `count' as unsigned int.
25317 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
25318
25319 1997-04-22 Richard Stallman <rms@gnu.org>
25320
25321 * bison.simple:
25322 [__hpux]: Include alloca.h (right for HPUX 10)
25323 instead of declaring alloca (right for HPUX 9).
25324
25325 * bison.simple (__yy_memcpy):
25326 Declare arg `count' as unsigned int.
25327 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
25328
25329 1997-01-03 Richard Stallman <rms@gnu.org>
25330
25331 * src/allocate.c: [__STDC__ or _MSC_VER]:
25332 Declare calloc and realloc to return void *.
25333
25334 1997-01-02 Richard Stallman <rms@gnu.org>
25335
25336 * src/system.h:
25337 [_MSC_VER]: Include stdlib.h and process.h.
25338 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
25339
25340 * src/main.c (main): Return FAILURE as a value.
25341 (printable_version): Declare arg as int, not char.
25342
25343 1997-01-02 Richard Stallman <rms@gnu.org>
25344
25345 * Makefile.in (dist):
25346 Explicitly check for symlinks, and copy them.
25347
25348 1996-12-19 Richard Stallman <rms@gnu.org>
25349
25350 * src/files.c:
25351 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
25352
25353 1996-12-18 Paul Eggert <eggert@gnu.org>
25354
25355 * src/bison.s1 (yyparse):
25356 If __GNUC__ and YYPARSE_PARAM are both defined,
25357 declare yyparse to have a void * argument.
25358
25359 1996-12-18 Paul Eggert <eggert@gnu.org>
25360
25361 * bison.simple (yyparse):
25362 If __GNUC__ and YYPARSE_PARAM are both defined,
25363 declare yyparse to have a void * argument.
25364
25365 1996-12-17 Richard Stallman <rms@gnu.org>
25366
25367 * src/reduce.c (nbits): Add some casts.
25368
25369 1996-08-12 Richard Stallman <rms@gnu.org>
25370
25371 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
25372
25373 1996-08-12 Richard Stallman <rms@gnu.org>
25374
25375 * bison.simple: Test _MSDOS as well as _MSDOS_.
25376
25377 1996-07-31 Richard Stallman <rms@gnu.org>
25378
25379 * src/bison.s1:
25380 [__sun && __i386]: Include alloca.h.
25381
25382 1996-07-31 Richard Stallman <rms@gnu.org>
25383
25384 * bison.simple:
25385 [__sun && __i386]: Include alloca.h.
25386
25387 1996-07-30 Richard Stallman <rms@gnu.org>
25388
25389 * src/bison.s1: Comment change.
25390
25391 * src/bison.s1: Test _MSDOS_, not MSDOS.
25392
25393 1996-07-30 Richard Stallman <rms@gnu.org>
25394
25395 * bison.simple: Comment change.
25396
25397 * bison.simple: Test _MSDOS_, not MSDOS.
25398
25399 1996-06-01 Richard Stallman <rms@gnu.org>
25400
25401 * 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:
25402 Insert `_' macro around many string constants.
25403
25404 * src/main.c:
25405 Insert `_' macro around many string constants.
25406
25407 (main): Call setlocale, bindtextdomain and textdomain.
25408
25409 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
25410 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
25411 [ENABLE_NLS]: Include libintl.h.
25412 [ENABLE_NLS] (gettext): Define.
25413 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
25414 (N_, PACKAGE, LOCALEDIR): New macros.
25415
25416 1996-06-01 Richard Stallman <rms@gnu.org>
25417
25418 * POTFILES.in: New file.
25419
25420 * Makefile.in (allocate.o):
25421 Define target explicitly.
25422
25423 * Makefile.in (CFLAGS): Set to @CFLAGS@.
25424 (LDFLAGS): Set to @LDFLAGS@.
25425 (configure): Run autoconf only if preceding `cd' succeeds.
25426 (bison.s1): Redirect output to temporary file then move the
25427 temporary to the target, rather than redirecting directly to bison.s1.
25428 (clean): Remove config.status and config.log.
25429 (distclean): Don't remove config.status here.
25430
25431 1996-05-12 Richard Stallman <rms@gnu.org>
25432
25433 * src/bison.s1:
25434 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
25435
25436 1996-05-12 Richard Stallman <rms@gnu.org>
25437
25438 * bison.simple:
25439 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
25440
25441 1996-05-11 Richard Stallman <rms@gnu.org>
25442
25443 * src/bison.s1 (__yy_memcpy):
25444 Really reorder the args, as was supposedly done on Feb 14 1995.
25445 (yyparse): Calls changed accordingly.
25446
25447 1996-05-11 Richard Stallman <rms@gnu.org>
25448
25449 * Makefile.in (dist): Don't use $(srcdir).
25450
25451 * bison.simple (__yy_memcpy):
25452 Really reorder the args, as was supposedly done on Feb 14 1995.
25453 (yyparse): Calls changed accordingly.
25454
25455 1996-01-27 Richard Stallman <rms@gnu.org>
25456
25457 * src/output.c (output_rule_data):
25458 Test YYERROR_VERBOSE in the conditional
25459 around the definition of ttyname.
25460
25461 1995-12-29 Richard Stallman <rms@gnu.org>
25462
25463 * src/bison.s1:
25464 Fix line numbers in #line commands.
25465
25466 1995-12-29 Richard Stallman <rms@gnu.org>
25467
25468 * bison.simple:
25469 Fix line numbers in #line commands.
25470
25471 1995-12-27 Richard Stallman <rms@gnu.org>
25472
25473 * src/bison.s1 (YYPARSE_PARAM_DECL):
25474 In C++, make it always null.
25475 (YYPARSE_PARAM_ARG): New macro.
25476 (yyparse): Use YYPARSE_PARAM_ARG.
25477
25478 1995-12-27 Richard Stallman <rms@gnu.org>
25479
25480 * bison.simple (YYPARSE_PARAM_DECL):
25481 In C++, make it always null.
25482 (YYPARSE_PARAM_ARG): New macro.
25483 (yyparse): Use YYPARSE_PARAM_ARG.
25484
25485 1995-11-29 Richard Stallman <rms@gnu.org>
25486
25487 * doc/bison.texinfo:
25488 Describe literal string tokens, %raw, %no_lines, %token_table.
25489
25490 1995-11-29 Daniel Hagerty <hag@gnu.org>
25491
25492 * doc/bison.texinfo: Fixed update date
25493
25494 1995-10-16 Richard Stallman <rms@gnu.org>
25495
25496 * src/version.c: Version 1.25.
25497
25498 1995-10-16 Richard Stallman <rms@gnu.org>
25499
25500 * NEWS: *** empty log message ***
25501
25502 1995-10-16 Richard Stallman <rms@gnu.org>
25503
25504 * doc/bison.1, doc/bison.rnh:
25505 Add new options.
25506
25507 1995-10-15 Richard Stallman <rms@gnu.org>
25508
25509 * src/vmsgetargs.c, src/getargs.c:
25510 Added -n, -k, and -raw switches.
25511 (noparserflag, toknumflag, rawtoknumflag): New variables.
25512
25513 * src/symtab.h (SALIAS):
25514 New #define for adding aliases to %token.
25515 (struct bucket): Added `alias' field.
25516
25517 * src/reduce.c (reduce_grammar):
25518 Revise error message.
25519 (print_notices): Remove final `.' from error message.
25520
25521 * src/reader.c (reader_output_yylsp):
25522 New function.
25523 (readgram): Use `#if 0' around code that accepted %command
25524 inside grammar rules: The documentation doesn't allow it,
25525 and it will fail since the %command processors scan for the next %.
25526 (parse_token_decl): Extended the %token
25527 declaration to allow a multi-character symbol as an alias.
25528 (parse_thong_decl): New function.
25529 (read_declarations): Added %thong declarations.
25530 (read_declarations): Handle NOOP to deal with allowing
25531 % declarations as another means to specify the flags.
25532 (readgram): Allow %prec prior to semantics embedded in a rule.
25533 (skip_to_char, read_declarations, copy_definition)
25534 (parse_token_decl, parse_start_decl, parse_type_decl)
25535 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
25536 (get_type_name, copy_guard, copy_action, readgram)
25537 (get_type, packsymbols): Revised most error messages.
25538 Changed `fatal' to `warnxxx' to avoid aborting for error.
25539 Revised and use multiple warnxxx functions to avoid using VARARGS1.
25540 (read_declarations): Improve the error message for
25541 an invalid character. Do not abort.
25542 (read_declarations, copy_guard, copy_action): Use
25543 printable_version to avoid unprintable characters in printed output.
25544 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
25545 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
25546 Allow the type of a non-terminal can be given
25547 more than once, as long as all specifications give the same type.
25548
25549 * src/output.c:
25550 (output_headers, output_trailers, output, output_gram)
25551 (output_rule_data): Implement noparserflag variable.
25552 Implement toknumflag variable.
25553 (output): Call reader_output_yylsp to output LTYPESTR.
25554
25555 * src/main.c (main):
25556 If reader sees an error, don't process the grammar.
25557 (fatals): Updated to not use VARARGS1.
25558 (printable_version, int_to_string, warn, warni, warns, warnss)
25559 (warnsss): New error reporting functions. Avoid abort for error.
25560
25561 * src/lex.h:
25562 Added THONG and NOOP for alias processing.
25563 Added SETOPT for the new code that allows setting options with %flags.
25564
25565 * src/lex.c:
25566 Include getopt.h. Add some extern decls.
25567 (safegetc): New function to deal with EOF gracefully.
25568 (literalchar); new function to deal with reading \ escapes.
25569 (lex): Use literalchar.
25570 (lex): Implemented "..." tokens.
25571 (literalchar, lex, parse_percent_token): Made tokenbuffer
25572 always contain the token. This includes growing the token
25573 buffer while reading an integer.
25574 (parse_percent_token): Replaced if-else statement with percent_table.
25575 (parse_percent_token): Added % declarations as another
25576 way to specify the flags -n, -l, and -r. Also added hooks for
25577 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
25578 major changes to files.c.
25579 (lex) Retain in the incoming stream a character following
25580 an incorrect '/'.
25581 (skip_white_space, lex): Revised most error messages
25582 and changed fatal to warn to avoid aborting.
25583 (percent_table): Added %thong declarations.
25584
25585 * src/gram.h: Comment changes.
25586
25587 * src/files.c (openfiles, open_extra_files, done):
25588 Add faction flag
25589 and actfile file. Handle noparserflag. Both for -n switch.
25590
25591 * src/conflicts.c (resolve_sr_conflict):
25592 Remove use of alloca.
25593
25594 1995-06-01 Jim Meyering <meyering@gnu.org>
25595
25596 * doc/bison.texinfo: *** empty log message ***
25597
25598 1995-05-06 Richard Stallman <rms@gnu.org>
25599
25600 * src/bison.s1: Comment change.
25601
25602 1995-05-06 Richard Stallman <rms@gnu.org>
25603
25604 * bison.simple: Comment change.
25605
25606 1995-05-03 Richard Stallman <rms@gnu.org>
25607
25608 * src/version.c: Version now 1.24.
25609
25610 * src/bison.s1: Change distribution terms.
25611
25612 * src/version.c: Version now 1.23.
25613
25614 1995-05-03 Richard Stallman <rms@gnu.org>
25615
25616 * doc/bison.texinfo:
25617 Rewrite "Conditions for Using Bison".
25618 Update version to 1.24.
25619
25620 1995-05-03 Richard Stallman <rms@gnu.org>
25621
25622 * bison.simple: Change distribution terms.
25623
25624 1995-02-23 Richard Stallman <rms@gnu.org>
25625
25626 * src/files.c: Test __VMS_POSIX as well as VMS.
25627
25628 1995-02-14 Jim Meyering <meyering@gnu.org>
25629
25630 * src/bison.s1 (__yy_memcpy):
25631 Renamed from __yy_bcopy to avoid
25632 confusion. Reverse FROM and TO arguments to be consistent with
25633 those of memcpy.
25634
25635 1995-02-14 Jim Meyering <meyering@gnu.org>
25636
25637 * bison.simple (__yy_memcpy):
25638 Renamed from __yy_bcopy to avoid
25639 confusion. Reverse FROM and TO arguments to be consistent with
25640 those of memcpy.
25641
25642 1994-11-10 David J. MacKenzie <djm@gnu.org>
25643
25644 * NEWS: reformat
25645
25646 * NEWS: New file.
25647
25648 * Makefile.in (DISTFILES): Include NEWS.
25649
25650 * Makefile.in (DISTFILES):
25651 Include install-sh, not install.sh.
25652
25653 * configure.in: Update to Autoconf v2 macro names.
25654
25655 1994-10-05 David J. MacKenzie <djm@gnu.org>
25656
25657 * Makefile.in: fix typo
25658
25659 * Makefile.in (prefix, exec_prefix):
25660 Let configure set them.
25661
25662 1994-09-28 David J. MacKenzie <djm@gnu.org>
25663
25664 * Makefile.in: Set datadir to $(prefix)/share.
25665
25666 1994-09-15 Richard Stallman <rms@gnu.org>
25667
25668 * src/bison.s1:
25669 Update copyright notice and GPL version.
25670
25671 1994-09-15 Richard Stallman <rms@gnu.org>
25672
25673 * bison.simple:
25674 Update copyright notice and GPL version.
25675
25676 1994-07-12 Richard Stallman <rms@gnu.org>
25677
25678 * src/reduce.c, src/reader.c:
25679 entered into RCS
25680
25681 1994-05-05 David J. MacKenzie <djm@gnu.org>
25682
25683 * Makefile.in: entered into RCS
25684
25685 1994-03-26 Richard Stallman <rms@gnu.org>
25686
25687 * src/bison.s1: entered into RCS
25688
25689 1994-03-26 Richard Stallman <rms@gnu.org>
25690
25691 * bison.simple: entered into RCS
25692
25693 1994-03-25 Richard Stallman <rms@gnu.org>
25694
25695 * src/main.c: entered into RCS
25696
25697 1994-03-24 Richard Stallman <rms@gnu.org>
25698
25699 * src/conflicts.c: entered into RCS
25700
25701 1994-01-02 Richard Stallman <rms@gnu.org>
25702
25703 * Makefile.in: *** empty log message ***
25704
25705 1993-11-21 Richard Stallman <rms@gnu.org>
25706
25707 * src/bison.s1: *** empty log message ***
25708
25709 1993-11-21 Richard Stallman <rms@gnu.org>
25710
25711 * doc/bison.texinfo: entered into RCS
25712
25713 * doc/bison.texinfo: *** empty log message ***
25714
25715 1993-11-21 Richard Stallman <rms@gnu.org>
25716
25717 * bison.simple: *** empty log message ***
25718
25719 1993-10-25 David J. MacKenzie <djm@gnu.org>
25720
25721 * doc/bison.texinfo: *** empty log message ***
25722
25723 1993-10-19 Richard Stallman <rms@gnu.org>
25724
25725 * src/bison.s1: *** empty log message ***
25726
25727 1993-10-19 Richard Stallman <rms@gnu.org>
25728
25729 * bison.simple: *** empty log message ***
25730
25731 1993-10-14 Richard Stallman <rms@gnu.org>
25732
25733 * src/bison.s1: *** empty log message ***
25734
25735 1993-10-14 Richard Stallman <rms@gnu.org>
25736
25737 * bison.simple: *** empty log message ***
25738
25739 1993-09-14 David J. MacKenzie <djm@gnu.org>
25740
25741 * doc/bison.texinfo: *** empty log message ***
25742
25743 1993-09-13 Noah Friedman <friedman@gnu.org>
25744
25745 * Makefile.in: *** empty log message ***
25746
25747 1993-09-10 Richard Stallman <rms@gnu.org>
25748
25749 * src/conflicts.c: *** empty log message ***
25750
25751 * src/system.h: entered into RCS
25752
25753 1993-09-10 Richard Stallman <rms@gnu.org>
25754
25755 * doc/bison.1: entered into RCS
25756
25757 1993-09-06 Noah Friedman <friedman@gnu.org>
25758
25759 * src/version.c: entered into RCS
25760
25761 1993-09-06 Noah Friedman <friedman@gnu.org>
25762
25763 * Makefile.in: *** empty log message ***
25764
25765 1993-07-30 David J. MacKenzie <djm@gnu.org>
25766
25767 * Makefile.in: *** empty log message ***
25768
25769 1993-07-24 Richard Stallman <rms@gnu.org>
25770
25771 * src/bison.s1: *** empty log message ***
25772
25773 1993-07-24 Richard Stallman <rms@gnu.org>
25774
25775 * bison.simple: *** empty log message ***
25776
25777 1993-07-08 David J. MacKenzie <djm@gnu.org>
25778
25779 * Makefile.in: *** empty log message ***
25780
25781 1993-07-04 Richard Stallman <rms@gnu.org>
25782
25783 * src/bison.s1: *** empty log message ***
25784
25785 1993-07-04 Richard Stallman <rms@gnu.org>
25786
25787 * bison.simple: *** empty log message ***
25788
25789 1993-06-26 David J. MacKenzie <djm@gnu.org>
25790
25791 * src/getargs.c: entered into RCS
25792
25793 1993-06-26 David J. MacKenzie <djm@gnu.org>
25794
25795 * doc/bison.texinfo: *** empty log message ***
25796
25797 * doc/bison.1: New file.
25798
25799 1993-06-25 Richard Stallman <rms@gnu.org>
25800
25801 * src/getargs.c: New file.
25802
25803 1993-06-16 Richard Stallman <rms@gnu.org>
25804
25805 * src/bison.s1: *** empty log message ***
25806
25807 1993-06-16 Richard Stallman <rms@gnu.org>
25808
25809 * bison.simple: *** empty log message ***
25810
25811 1993-06-03 Richard Stallman <rms@gnu.org>
25812
25813 * src/bison.s1: New file.
25814
25815 1993-06-03 Richard Stallman <rms@gnu.org>
25816
25817 * doc/bison.texinfo: *** empty log message ***
25818
25819 1993-06-03 Richard Stallman <rms@gnu.org>
25820
25821 * bison.simple: New file.
25822
25823 1993-05-19 Richard Stallman <rms@gnu.org>
25824
25825 * doc/bison.texinfo: New file.
25826
25827 1993-05-07 Noah Friedman <friedman@gnu.org>
25828
25829 * Makefile.in: *** empty log message ***
25830
25831 1993-04-28 Noah Friedman <friedman@gnu.org>
25832
25833 * src/reader.c: *** empty log message ***
25834
25835 1993-04-23 Noah Friedman <friedman@gnu.org>
25836
25837 * src/alloc.h: entered into RCS
25838
25839 1993-04-20 David J. MacKenzie <djm@gnu.org>
25840
25841 * src/version.c: *** empty log message ***
25842
25843 * src/files.c, src/allocate.c:
25844 entered into RCS
25845
25846 * src/reader.c: *** empty log message ***
25847
25848 * src/lex.c: entered into RCS
25849
25850 * src/conflicts.c: New file.
25851
25852 * src/symtab.c: entered into RCS
25853
25854 * src/alloc.h: New file.
25855
25856 * src/LR0.c: entered into RCS
25857
25858 1993-04-18 Noah Friedman <friedman@gnu.org>
25859
25860 * src/reader.c: New file.
25861
25862 * src/version.c: *** empty log message ***
25863
25864 1993-04-18 Noah Friedman <friedman@gnu.org>
25865
25866 * Makefile.in: *** empty log message ***
25867
25868 1993-04-17 Noah Friedman <friedman@gnu.org>
25869
25870 * Makefile.in: *** empty log message ***
25871
25872 1993-04-15 Richard Stallman <rms@gnu.org>
25873
25874 * src/main.c, src/files.c:
25875 New file.
25876
25877 1993-04-15 Noah Friedman <friedman@gnu.org>
25878
25879 * configure.in: entered into RCS
25880
25881 * configure.in: *** empty log message ***
25882
25883 * configure.in: New file.
25884
25885 1993-04-14 Richard Stallman <rms@gnu.org>
25886
25887 * Makefile.in: New file.
25888
25889 1993-04-13 Richard Stallman <rms@gnu.org>
25890
25891 * src/version.c: New file.
25892
25893 1993-03-25 Richard Stallman <rms@gnu.org>
25894
25895 * src/output.c: entered into RCS
25896
25897 1992-09-25 Richard Stallman <rms@gnu.org>
25898
25899 * configure.bat: entered into RCS
25900
25901 1992-06-22 Richard Stallman <rms@gnu.org>
25902
25903 * src/vmsgetargs.c: entered into RCS
25904
25905 1992-06-22 Richard Stallman <rms@gnu.org>
25906
25907 * doc/bison.rnh: entered into RCS
25908
25909 1992-04-20 David J. MacKenzie <djm@gnu.org>
25910
25911 * README: entered into RCS
25912
25913 1992-01-22 Richard Stallman <rms@gnu.org>
25914
25915 * src/machine.h: entered into RCS
25916
25917 1991-12-21 Richard Stallman <rms@gnu.org>
25918
25919 * src/lalr.c, src/closure.c:
25920 entered into RCS
25921
25922 1991-12-20 Richard Stallman <rms@gnu.org>
25923
25924 * src/state.h: entered into RCS
25925
25926 1991-12-18 Richard Stallman <rms@gnu.org>
25927
25928 * src/print.c, src/nullable.c, src/derives.c:
25929 entered into RCS
25930
25931 1991-11-03 David J. MacKenzie <djm@gnu.org>
25932
25933 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
25934 entered into RCS
25935
25936 1988-09-09 Richard Stallman <rms@gnu.org>
25937
25938 * src/bison.hairy: entered into RCS
25939
25940 1987-12-16 Richard Stallman <rms@gnu.org>
25941
25942 * REFERENCES: entered into RCS
25943
25944
25945 -----
25946
25947 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
25948 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
25949 2008, 2009, 2010 Free Software Foundation, Inc.
25950
25951 Copying and distribution of this file, with or without
25952 modification, are permitted provided the copyright notice and this
25953 notice are preserved.